/* ========================
   VARIABLES & DESIGN TOKENS
   ======================== */
:root {
    /* Primary Colors */
    --primary-color: #FFC107;
    --primary-hover: #FFB300;
    --primary-dark: #FFB300;
    --secondary-color: #212529;

    /* Secondary & Backgrounds */
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --dark-heading: #222222;
    --text-color: #555555;
    --border-color: #EEEEEE;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(244, 124, 32, 0.15);
    
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ========================
   BOOTSTRAP OVERRIDES
   ======================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--dark-heading) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: var(--dark-heading) !important;
}

/* ========================
   RESET & TYPOGRAPHY
   ======================== */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-heading);
    font-weight: 700;
}

p {
    font-size: 1.05rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

section {
    padding: 100px 0;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-hover);
    transition: var(--transition-smooth);
    z-index: -1;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline-dark {
    border-radius: 50px;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--dark-heading);
    color: var(--dark-heading);
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-outline-dark:hover {
    background-color: var(--dark-heading);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-transparent .navbar {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    border-bottom: none;
}

.header-transparent .nav-link {
    color: var(--white) !important;
}

.header-transparent .logo-text {
    color: var(--white);
}

.navbar-scrolled {
    background: #ffffff !important;
    backdrop-filter: none;
    box-shadow: var(--shadow-soft);
}

.navbar-scrolled .navbar {
    padding: 10px 0;
}

.navbar-scrolled .nav-link {
    color: var(--dark-heading) !important;
}

.navbar-scrolled .logo-text {
    color: var(--dark-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    margin: 0 12px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    padding-top: 160px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    /* Fix line gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* ========================
   GLOBAL SECTION STYLES
   ======================== */
.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* ========================
   ABOUT SECTION
   ======================== */
.split-layout {
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-content-box {
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-left: 0;
    z-index: 2;
    border-left: 5px solid var(--primary-color);
}

.timeline-item {
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
    position: relative;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* ========================
   WORK CARDS
   ======================== */
.work-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.work-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.work-card-content {
    padding: 30px;
    background: var(--white);
}

.work-icon-box {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 3px solid var(--white);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.work-card:hover .work-card-img {
    transform: scale(1.05);
}

.work-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ========================
   MISSION / COUNTERS
   ======================== */
.mission-parallax {
    background: linear-gradient(rgba(63, 63, 63, 0.8), rgba(34, 34, 34, 0.9)), url('../images/image1.webp') fixed center/cover;
    color: var(--white);

    padding: 120px 0;
    text-align: center;
}

.counter-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.counter-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 20px 10px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(244, 124, 32, 0.1);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ========================
   GALLERY (MASONRY)
   ======================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 34, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* ========================
   CALL TO ACTION
   ======================== */
.cta-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
}

.cta-blob-1 {
    top: -100px;
    left: -100px;
}

.cta-blob-2 {
    bottom: -100px;
    right: -100px;
    background: var(--secondary-color);
}

.cta-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ========================
   CAMPAIGNS SECTION
   ======================== */
.campaign-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.campaign-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.campaign-card:hover .campaign-img {
    transform: scale(1.05);
}

.campaign-content {
    padding: 30px;
    position: relative;
    background: var(--white);
}

.campaign-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.campaign-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
    margin-top: 10px;
}

.btn-link:hover {
    color: var(--dark-heading);
    transform: translateX(5px);
}

/* ========================
   PARTNERS SECTION
   ======================== */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.partner-box {
    transition: all 0.3s ease;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.partner-box h5 {
    color: #000 !important;
}
.partner-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ========================
   FOOTER
   ======================== */
.footer-section {
    background-color: #222222;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hover-primary {
    transition: var(--transition-smooth);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
        box-shadow: var(--shadow-soft);
    }

    .navbar-transparent .nav-link,
    .navbar-transparent .logo-text {
        color: var(--dark-heading) !important;
    }

    .about-content-box {
        margin-left: 0;
        margin-top: 30px;
    }

    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .gallery-grid {
        column-count: 1;
    }
}

/* ========================
   ABOUT PAGE REDESIGN
   ======================== */

.about-hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding-top: 100px;
}

.timeline-container {
    border-left: 3px solid rgba(255, 193, 7, 0.3);
    margin-left: 20px;
    padding-left: 30px;
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.value-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.value-card-content {
    padding: 30px;
    position: relative;
}

.value-icon {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}

.team-member-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.team-member-card:hover {
    box-shadow: var(--shadow-soft);
}

.team-member-img {
    position: relative;
    overflow: hidden;
}

.team-member-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-member-card:hover .team-member-img img {
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: var(--transition-smooth);
    opacity: 0;
}

.team-member-card:hover .team-social-overlay {
    bottom: 0;
    opacity: 1;
}

.team-social-overlay a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social-overlay a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.team-member-info {
    padding: 20px 0;
    text-align: center;
}

/* ========================
   PREMIUM UTILITIES
   ======================== */

.bg-gradient-dark {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}

.bg-gradient-theme {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
}

/* Global Responsive Typography & Spacing Fixes */
@media (max-width: 768px) {
    .display-1 { font-size: 3rem !important; }
    .display-2 { font-size: 2.5rem !important; }
    .display-3 { font-size: 2rem !important; }
    .display-4 { font-size: 1.8rem !important; }
    .display-5 { font-size: 1.5rem !important; }
    .hero-section { padding-top: 100px !important; }
    .page-header { padding-top: 100px !important; }
    
    /* Fix horizontal overflow on rows */
    .row { margin-left: 0 !important; margin-right: 0 !important; }
    .container { padding-left: 15px !important; padding-right: 15px !important; }
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.premium-team-card:hover .grayscale-hover {
    filter: grayscale(0%);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.opacity-0 {
    opacity: 0;
}

.premium-team-card:hover .team-social-modern {
    opacity: 1 !important;
    bottom: 20px !important;
}

.team-social-modern {
    border-radius: 12px;
    bottom: 0px !important;
    width: 80% !important;
}

.hover-primary {
    transition: color 0.3s ease;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Responsiveness fixes */
@media (max-width: 991px) {
    .border-end-lg {
        border-right: none !important;
    }
}
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(0,0,0,0.1);
    }
}

/* ========================
   RESPONSIVE DESIGN (All Devices)
   ======================== */

/* Large Tablets & Small Desktops (max-width: 991px) */
@media (max-width: 991px) {
    section {
        padding: 60px 0 !important;
    }
    .display-1 { font-size: 3.5rem !important; }
    .display-2 { font-size: 3rem !important; }
    .display-3 { font-size: 2.5rem !important; }
    .display-4 { font-size: 2.2rem !important; }
    .display-5 { font-size: 2rem !important; }
    
    .p-5 { padding: 2rem !important; }
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .my-5 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
    
    /* Responsive image heights */
    .responsive-img-tall { height: 400px !important; }
    .responsive-img-team { height: 280px !important; }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    section {
        padding: 40px 0 !important;
    }
    .display-1 { font-size: 2.5rem !important; }
    .display-2 { font-size: 2.2rem !important; }
    .display-3 { font-size: 2rem !important; }
    .display-4 { font-size: 1.8rem !important; }
    .display-5 { font-size: 1.5rem !important; }
    
    .p-5, .p-4 { padding: 1.5rem !important; }
    .py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    
    /* Responsive image heights */
    .responsive-img-tall { height: 250px !important; }
    .responsive-img-team { height: 220px !important; }
    
    /* Fix video backgrounds on mobile */
    .video-hero { min-height: 70vh !important; }
    
    /* Fix hero container padding on mobile */
    .hero-container { padding-top: 100px !important; padding-bottom: 40px !important; }
}


/* Base Heights for Responsive Images (Desktop) */
.responsive-img-tall { height: 500px; }
.responsive-img-team { height: 320px; }

