@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reduce opacity for TV Commercial thumbnail */
.tv-com-opacity {
    opacity: 0.9;
    transform: scale(1.3);
    transition: transform 0.3s, opacity 0.3s;
}

/* TV Commercial Background Image */
.tv-com-bg {
    background-image: url('tv_com.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 0.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1), box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.tv-com-bg::after {
    display: none;
}

.portfolio-img-label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.pop-hover:hover.tv-com-bg {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.18);
    z-index: 2;
}

/* Portfolio Thumbnail Pop Animation */
.portfolio-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75em;
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1), box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.pop-hover:hover .portfolio-thumb {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.18);
    z-index: 2;
}

/* Product Shoot Gallery Styles */
.product-shoot-section {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.gallery-photos,
.gallery-videos {
    flex: 1 1 400px;
    min-width: 320px;
}

.gallery-photos h3,
.gallery-videos h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
    border-color: var(--accent-color);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-video {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: #000;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .product-gallery {
        flex-direction: column;
        gap: 40px;
}

    .video-grid {
        grid-template-columns: 1fr;
}
}

/* Make portfolio links cover the whole card */
.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    --gradient-start: #fbbf24;
    --gradient-end: #f59e0b;
    --border-color: #2a2a2a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ensure the document and index-page take full height so flex footer anchoring works reliably */
html,
body {
    height: 100%;
}

/* Make index page a column flex layout so footer can be pushed to the bottom (no gap) */
.index-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.index-page footer.footer {
    margin-top: auto;
    /* push footer to bottom on short pages (anchor to bottom) */
}

/* Index-page specific fixes to ensure footer bottom is the last scroll point */
.index-page .contact-band {
    margin-bottom: 0;
}

.index-page .footer {
    margin-bottom: 0;
}

.index-page .footer.full-bleed {
    margin-bottom: 0;
}

.container {
    max-width: 1400px;
    /* increased container width to allow larger media */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Banner & Navbar Redesign (site-wide) ---
   Replaces the previous banner and navbar rules with a single, modern
   compact banner + glassy navbar. Keeps existing HTML markup unchanged.
*/

/* Top banner: slim, content-centered, non-fixed (pushes content down)
   Use a subtle gradient and small action button. */
.top-banner {
    background: linear-gradient(90deg, rgb(245, 159, 11), rgba(247, 177, 56, 0.922));
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
    /* no fixed to avoid overlap issues */
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
}

.banner-content p {
    margin: 0;
    opacity: 0.95;
    font-weight: 600;
}

.book-now-btn {
    background: #fff;
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.book-now-btn:hover {
    transform: translateY(-2px);
}

/* Navbar: compact glass bar, fixed to top, sits above page content.
   We keep the banner as part of the document flow so pages don't get
   unexpected overlap; the navbar is fixed and sized to avoid covering
   content by applying padding to .page-hero below. */
.navbar {
    position: fixed;
    top: 0;
    /* flush to top of viewport */
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.45));
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
    z-index: 999998 !important;
    /* extremely high to ensure visibility */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

/* Navbar scrolled state - compressed by 15% with golden yellow background */
.navbar.scrolled {
    position: fixed;
    top: 10px;
    left: 75px;
    right: 75px;
    width: calc(100% - 150px);
    height: 54px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0.9));
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

/* Make sure page content (page-hero) is not hidden under the fixed navbar. */
.page-hero,
.hero {
    padding-top: 140px;
    /* navbar height (64) + banner height (~28) + spacing (~48) */
}

/* Portfolio page navbar - black background positioned under banner */
.portfolio-page .navbar {
    top: 55px;
    /* positioned under the banner */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Portfolio page navbar scrolled state - golden yellow background with white text */
.portfolio-page .navbar.scrolled {
    top: 10px;
    left: 75px;
    right: 75px;
    width: calc(100% - 150px);
    height: 54px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0.9));
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

/* Portfolio page navbar scrolled - white text for all links */
.portfolio-page .navbar.scrolled .nav-links a {
    color: #ffffff;
}

/* Portfolio page navbar scrolled - white text on hover */
.portfolio-page .navbar.scrolled .nav-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* Portfolio page navbar scrolled - logo text white */
.portfolio-page .navbar.scrolled .logo-text {
    color: #ffffff;
}

/* Portfolio page navbar scrolled - CTA button styling */
.portfolio-page .navbar.scrolled .nav-links .cta-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.portfolio-page .navbar.scrolled .nav-links .cta-btn:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

/* Portfolio page navbar scrolled - dropdown arrow white */
.portfolio-page .navbar.scrolled .dropdown-arrow {
    color: #ffffff;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 999998;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
    gap: 80px;
}

.navbar.scrolled .nav-content {
    height: 54px;
    padding: 0 40px;
    gap: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-right: 200px;
}

.logo-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo-image {
    width: 37px;
    height: 37px;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    /* Increased by 50% from 16px */
    letter-spacing: -0.6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    /* Increased proportionally */
    line-height: 1.2;
    color: #FFD700;
    /* Yellow color */
}

.logo-text-static {
    display: inline-block;
    white-space: nowrap;
}

.logo-text-flip {
    display: inline-block;
    position: relative;
    width: 90px;
    /* Increased proportionally to accommodate larger text */
    height: 1.2em;
    perspective: 500px;
    vertical-align: baseline;
    line-height: 1.2;
}

.flip-word {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    backface-visibility: hidden;
    animation: flip 2s infinite;
    animation-delay: 3s;
    /* Start after 3 seconds */
    opacity: 0;
    /* Initially hidden */
    white-space: nowrap;
}

/* Show first word immediately, then start animation after 3s */
.flip-word:nth-child(1) {
    animation-delay: 3s;
    opacity: 1;
    /* Show STUDIO initially */
}

.flip-word:nth-child(2) {
    animation-delay: 4s;
    /* 3s initial + 1s offset */
    opacity: 0;
    color: #fff;
    /* Make 'Media' text white */
}

@keyframes flip {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    45% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    50% {
        transform: rotateX(90deg);
        opacity: 0;
    }

    55% {
        transform: rotateX(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 0;
    }
}

.navbar.scrolled .logo-text {
    font-size: 20px;
    /* Increased by 50% from 14px */
}

.navbar.scrolled .logo-text-flip {
    width: 55px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 999998;
    transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.navbar.scrolled .nav-links {
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
}

.nav-links a:hover {
    color: white;
}

.navbar.scrolled .nav-links a:hover {
    color: white;
}

.nav-links .cta-btn {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-links .cta-btn {
    padding: 6px 16px;
    background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
    color: white;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
    z-index: 999999 !important;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .dropdown-arrow {
    color: rgba(255, 255, 255, 0.95);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 260px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 9999999 !important;
    margin-top: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    padding-left: 24px;
}

/* ensure the mobile menu button uses the same brand font */
.mobile-menu-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Mobile: show a compact menu button and stack nav links inside a mobile drawer (basic) */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 24px;
        color: white;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 8px 12px;
        position: relative;
        z-index: 10000001 !important;
        margin-left: auto;
        flex-shrink: 0;
    }

    .logo {
        margin-right: 0;
    }

    .logo-text {
        font-size: 21px;
        /* Increased by 50% from 14px */
        gap: 7.5px;
        /* Increased proportionally */
    }

    .logo-text-flip {
        width: 82.5px;
        /* Increased proportionally */
    }

    .logo-image {
        width: 38px;
        height: 38px;
    }

    .page-hero,
    .hero {
        padding-top: 140px;
        /* Banner ~28px + navbar 60px + spacing */
    }

    /* Mobile navbar adjustments - positioned below banner */
    .navbar {
        height: 60px;
        padding: 0 16px;
        z-index: 10000000 !important;
        position: fixed !important;
        top: 100px !important;
        /* Below banner on mobile */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: translateZ(0);
        /* Force new rendering layer */
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.65)) !important;
        /* More opaque on mobile */
        max-width: 100%;
    }

    .navbar.scrolled {
        top: 10px !important;
        left: 16px !important;
        right: 16px !important;
        width: calc(100% - 32px) !important;
        height: 54px !important;
        background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0.9)) !important;
        backdrop-filter: blur(12px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(140%) !important;
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 30px !important;
        padding: 0 8px !important;
        z-index: 10000000 !important;
    }
    .navbar.scrolled .nav-links a,
    .navbar.scrolled .logo-text {
        color: #ffffff !important;
    }
    .navbar.scrolled .nav-links a:hover {
        color: #ffffff !important;
        opacity: 0.8;
    }

    .navbar .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .nav-content {
        gap: 0;
        padding: 0 8px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        max-width: 100%;
    }

    .navbar.scrolled .nav-content {
        gap: 0;
        padding: 0 8px;
    }

    .navbar.scrolled .logo-text {
        font-size: 19.5px;
        /* Increased by 50% from 13px */
        color: #0a0a0a !important;
        /* Dark text on golden background */
        font-weight: 800;
    }

    .navbar.scrolled .logo-image {
        width: 34px;
        height: 34px;
    }

    .navbar.scrolled .mobile-menu-btn {
        color: #0a0a0a !important;
        /* Dark hamburger on golden background */
        font-weight: 700;
    }

    .mobile-menu-btn:hover {
        opacity: 0.8;
    }

    .mobile-menu-btn:active {
        opacity: 0.6;
    }

    /* Mobile dropdown adjustments */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 8px;
        margin-bottom: 8px;
        box-shadow: none;
        background: rgba(245, 158, 11, 0.05);
        border: 1px solid rgba(245, 158, 11, 0.15);
    }

    .nav-dropdown-menu a {
        padding: 10px 16px;
        font-size: 16px;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 20px;
    }
}

/* Mobile navigation overlay (revealed when .navbar has .open) */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 0;
    color: white;
    padding: 8px 12px;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile menu open state */
.navbar.open {
    z-index: 10000000 !important;
}

.navbar.open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 60px !important;
    /* below navbar */
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 60px) !important;
    background: #1a1a1a !important;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    padding: 24px 20px;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999999 !important;
    pointer-events: auto !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translate3d(0, 0, 0);
    /* Force GPU acceleration and new layer */
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    contain: layout style paint;
}

.navbar.scrolled.open .nav-links {
    top: 56px !important;
    height: calc(100vh - 56px) !important;
    background: #1a1a1a !important;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    z-index: 9999999 !important;
}

.navbar.open .nav-links a {
    font-size: 18px;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    display: block;
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 4px;
}

.navbar.open .nav-links a:hover {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-color) !important;
    padding-left: 16px;
    border-left: 3px solid var(--accent-color);
}

.navbar.open .nav-dropdown {
    width: 100%;
}

.navbar.open .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.open .nav-dropdown-menu {
    display: block;
    position: static;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 8px;
    margin-top: 8px;
    padding: 4px;
}

.navbar.open .nav-dropdown-menu a {
    font-size: 16px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 4px;
    border-radius: 6px;
    font-weight: 500;
}

.navbar.open .nav-dropdown-menu a:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.navbar.open .nav-dropdown-menu a:hover {
    background: rgba(245, 158, 11, 0.25);
    color: var(--accent-color) !important;
    padding-left: 20px;
    border-left: 2px solid var(--accent-color);
}

.navbar.open .nav-links .cta-btn {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #0a0a0a !important;
    text-align: center;
    padding: 16px 24px;
    border-radius: 999px;
    margin-top: 16px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    font-weight: 800;
    font-size: 16px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.navbar.open .nav-links .cta-btn:hover {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
    border-color: rgba(251, 191, 36, 0.6);
}

.mobile-nav-backdrop {
    display: none;
}

.navbar.open+.mobile-nav-backdrop {
    display: block !important;
    position: fixed !important;
    inset: 60px 0 0 0 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    z-index: 9999998 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    transform: translateZ(0);
    /* Force new layer */
}

.navbar.scrolled.open+.mobile-nav-backdrop {
    inset: 56px 0 0 0 !important;
    z-index: 9999998 !important;
}

/* Ensure all page sections stay below mobile menu when open */
@media (max-width: 900px) {

    body.menu-open section,
    body.menu-open .hero,
    body.menu-open .page-hero,
    body.menu-open main {
        z-index: 0 !important;
        position: relative;
    }
}

/* Hero responsive adjustments: smaller font-size and spacing on narrow screens */
@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 28px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 40px 24px;
        max-width: 720px;
    }

    .hero-visual {
        display: none;
    }

    .hero-bg-video {
        top: 0;
        opacity: 0.25;
    }

    .index-page .hero-cta {
        top: 0;
        position: static;
        margin-top: 8px;
    }

    .gradient-text {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .gradient-text {
        font-size: 32px;
    }

    .hero-content {
        padding: 30px 20px;
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        padding: 12px 18px;
        font-size: 14px;
    }

    .gradient-text {
        font-size: 28px;
    }

    .hero-content {
        padding: 24px 16px;
    }

    .container {
        padding: 0 12px;
    }
}

/* Make images and videos fluid across the site by default */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Hero Section */
/* .hero {
    padding: 220px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
} */


.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    /* push content to bottom */
    justify-content: center;
    padding: 0;
    z-index: 0;
    isolation: isolate;
    /* Creates separate stacking context */
}

.hero-bg-video,
.hero-bg-iframe {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.hero .container,
.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}



.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* align items to bottom */
    padding-bottom: 80px;
    /* space from bottom */
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 50px;
    letter-spacing: -2px;
}


.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 40px;
    color: #E6E6FA;
    margin-bottom: 80px;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    text-align: center;
    display: block;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
    margin: 10px auto 0 auto;
}

/* Index-only: nudge the hero CTA up to match visual spec */
.index-page .hero-cta {
    position: relative;
    top: -80px;
    /* move up by 50px */
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('about_us_bg.JPG');
    /* Use cover to keep the image visually strong while we lighten the overlay below */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Lighten overlay so text can sit above and remain readable */
    background: linear-gradient(rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.35));
    z-index: 1;
    /* keep overlay below content but above the image */
}

.about-section .container,
.about-section .about-content {
    position: relative;
    z-index: 1199;
    /* bring copy to the very front */
}

/* Ensure about copy is white and padded for legibility */
.index-page .about-content,
.index-page .about-content p,
.index-page .about-content .large-text,
.index-page .about-content .closing-text {
    color: #fff;
}

.index-page .about-content {
    padding: 12px 18px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.large-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 400;
}

.about-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    /* Force a 3-column layout on wide screens while remaining responsive */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0;
    /* reduce vertical spacing inside About */
}

/* Services page: force a 4xN layout (4 columns) and ensure equal-height cards
   Scoped to `.services-overview` and pages using `.services-page` so other
   sections keep their default behavior. Responsive breakpoints fall back to
   2 columns on tablet and 1 column on mobile. */
.services-overview .services-grid,
.services-page .services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px;
    margin: 28px 40px;
    align-items: stretch;
}

.services-overview .service-item,
.services-page .services-overview .service-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px;
    border-radius: 12px;
}

@media (max-width: 900px) {

    .services-overview .services-grid,
    .services-page .services-overview .services-grid {
        grid-template-columns: repeat(4, 1fr);
        margin: 28px 40px;
    }
}

@media (max-width: 600px) {

    .services-overview .services-grid,
    .services-page .services-overview .services-grid {
        grid-template-columns: repeat(4, 1fr);
        margin: 28px 40px;
    }
}

.service-item {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.closing-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    margin-top: 40px;
}

/* E-Commerce Section */
.ecommerce-section {
    padding: 120px 0;
}

/* E-commerce specific layout tweaks: reduce service card sizes and add side margins
   Keeps global `.services-grid` behavior but narrows each card and provides
   horizontal breathing room on wide screens. Targets only the ecommerce page
   section so other pages keep their existing layout. */
.ecommerce-services .container {
    max-width: 1200px;
}

.ecommerce-services .services-grid {
    display: grid;
    /* Desktop: 4 columns (4xN). Rows will flow automatically. */
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    /* make rows equal height when combined with stretched items */
    gap: 20px;
    margin: 18px 40px;
    /* side margins to give breathing room */
    align-items: stretch;
    /* stretch children to fill row height */
}

.ecommerce-services .service-item {
    padding: 20px;
    /* reduce padding so cards appear smaller */
    border-radius: 12px;
    min-height: 180px;
    /* keep reasonable visual height */
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
    display: flex;
    flex-direction: column;
    /* allow content to space vertically */
}

.ecommerce-services .service-item .service-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.ecommerce-services .service-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ecommerce-services .service-item p,
.ecommerce-services .service-item li {
    font-size: 14px;
}

@media (max-width: 900px) {
    .ecommerce-services .services-grid {
        margin: 10px 18px;
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .ecommerce-services .service-item {
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .ecommerce-services .services-grid {
        grid-template-columns: repeat(1, 1fr);
        margin: 8px 12px;
    }
}

.ecommerce-content {
    max-width: 100%;
}

/* E-commerce detail block: image left, copy right */
.ecommerce-detail {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.ecommerce-image {
    flex: 0 0 36%;
    max-width: 520px;
}

.ecommerce-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.ecommerce-copy {
    flex: 1 1 64%;
}

.ecommerce-copy h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ecommerce-copy p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

/* Shopify Section Button Styles */
.shopify-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5) !important;
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%) !important;
}

.shopify-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .ecommerce-detail {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
    .ecommerce-image {
        width: 36%;
        max-width: 520px;
    }
}

.ecommerce-content .large-text {
    text-align: center;
    margin-bottom: 60px;
}

/* Instagram embed helpers: a responsive two-column row that stacks on mobile */
/* Instagram embed helpers: responsive two-column row wrapped in a white card */
.instagram-card {
    background: #fff;
    color: #111;
    padding: 20px;
    border-radius: 10px;

    /* Full-bleed white band for the Instagram embed inside E-commerce block (no side margins) */
    .instagram-card.full-bleed-instagram {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        background: #ffffff;
        padding: 20px 0;
        /* vertical padding to keep spacing */
    }

    .instagram-card.full-bleed-instagram .instagram-row {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        /* keep content aligned with site container */
    }

    box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);
    max-width:1100px;
    margin:24px auto;
}

.instagram-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0;
}

.instagram-embed-wrapper {
    width: 48%;
    max-width: 520px;
    margin: 0;
    /* clamp vertical display so we can crop long embeds */
    max-height: 420px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border-radius: 8px;
    padding: 8px;
}

.instagram-embed-wrapper:hover {
    overflow: auto
}

.instagram-embed-wrapper::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

.instagram-embed-wrapper blockquote.instagram-media {
    width: 100% !important;
    max-width: 420px !important;
    padding: 0 !important;
    margin: 0 auto !important
}

@media (max-width:900px) {
    .instagram-embed-wrapper {
        width: 48%;
        max-width: 520px;
        margin: 0;
        max-height: 420px;
    }
}

/* Media Section */
.media-section {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.media-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.media-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.media-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.media-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.media-card ul {
    list-style: none;
    padding: 0;
}

.media-card li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.media-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Index-only: force the steps into a single horizontal row */
.index-page .steps-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: space-between;
    align-items: stretch;
}

.index-page .steps-container .step-item {
    flex: 1 1 0;
}

/* E-commerce page: also force single horizontal row (1x5) */
.ecommerce-page .steps-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: space-between;
    align-items: stretch;
}

.ecommerce-page .steps-container .step-item {
    flex: 1 1 0;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.step-content {
    position: relative;
    z-index: 2;
}

/* Yellow gradient backgrounds for each step - incremental from light to dark */
.step-gradient-1 {
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
}

.step-gradient-2 {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.step-gradient-3 {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
}

.step-gradient-4 {
    background: linear-gradient(135deg, #FFB300 0%, #FF9800 100%);
}

.step-gradient-5 {
    background: linear-gradient(135deg, #FF9800 0%, #FF6F00 100%);
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    line-height: 1;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.step-item p {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    /* tightened to sit closer to About */
    background: transparent;
    /* remove gray/dark block */
    position: relative;
    z-index: 1;
}

/* Compact the portfolio header so it doesn't add vertical space (we keep underline but visually hide it)
   The heading text was moved to sr-only for accessibility; hide the visual header area. */
.portfolio-section .section-header {
    background: transparent;
    padding: 0;
    /* remove extra padding */
    margin: 0;
    /* remove vertical margin */
    height: 0;
    /* collapse visual space */
    overflow: visible;
    /* keep underline visible if present */
}

.portfolio-section .section-header .underline {
    display: none;
}

/* hide the underline too for compact look */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}


.portfolio-image {
    width: 100%;
    height: 360px;
    /* taller like the reference */
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Responsive video embed inside portfolio cards */
.video-embed {
    /* Fill the parent `.portfolio-image` height so thumbnails/iframes don't leave black bands
       (we rely on the parent card to control visual height). */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed>iframe,
.video-embed>.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* make sure media fills the box */
    display: block;
}

/* Remove stray inline/element gaps for embedded videos so they sit flush with the card */
.video-embed,
.video-embed>iframe,
.video-embed>.video-poster {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure the image/video container doesn't add internal padding that creates visual gaps */
.portfolio-image {
    padding: 0 !important;
}

/* Tight container + media resets to avoid 1px seams / leaking pixels */
.portfolio-item,
.portfolio-image {
    position: relative;
    /* anchor absolutely positioned embeds */
    overflow: hidden !important;
    /* clip any subpixel antialias or shadows */
    background-color: #000;
    /* mask tiny gaps while media is loading */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.portfolio-item,
.portfolio-image,
.video-embed,
.video-embed>iframe,
.video-embed>.video-poster {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    display: block !important;
}

/* Ensure frames/images are block-level and aligned to top to avoid small gaps in some browsers */
.video-embed iframe,
.video-embed img,
.video-poster {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Poster-based lazy player */
.video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.video-poster {
    background-color: #000;
    /* fallback to avoid visible bands while loading */
    z-index: 3;
    /* ensure poster sits above gradients/overlays */
}

.video-poster .play-circle,
.video-poster>.play-circle {
    position: relative;
}

/* small circular play in top-left (faint) */
.video-poster::before {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: absolute;
    /* place circle in the top-left with a 12px inset */
    left: 12px;
    top: 12px;
}

.video-poster::after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23fff" d="M8 5v14l11-7z"/></svg>') center/contain no-repeat;
    position: absolute;
    /* center the small play icon inside the 44px circle located at 12px,12px */
    left: calc(12px + (44px - 18px) / 2);
    top: calc(12px + (44px - 18px) / 2);
}

/* Hover: make the small play circle turn golden on embedded posters */
.video-poster:hover::before,
.video-poster:focus::before {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.28);
    transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    transform: scale(1.03);
}

.video-poster:hover::after,
.video-poster:focus::after {
    /* keep the triangle white for contrast, but nudge slightly for perceived depth */
    transform: translateZ(0) scale(1.02);
    transition: transform 220ms ease;
}

/* Title overlay bottom-left */
.video-title {
    position: absolute;
    left: 20px;
    bottom: 18px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    z-index: 4;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

/* subtle bottom gradient */
.portfolio-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

/* Carousel styles for portfolio */
.portfolio-carousel {
    position: relative;
    margin: 8px 0 12px;
    /* much tighter vertical spacing */
}

/* Grid layout for the standalone portfolio page only (applies when JS sets .portfolio-page on <body>)
   This keeps the index page using the original sliding carousel. */
.portfolio-page .portfolio-section .carousel-viewport {
    width: 100%;
    margin: 0;
}

.portfolio-page .portfolio-section .carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    padding: 0;
    transform: none !important;
}

.portfolio-page .portfolio-section .carousel-viewport .portfolio-item {
    flex: none;
    max-width: 100%;
    box-sizing: border-box;
}

.portfolio-page .portfolio-section .portfolio-image {
    height: 260px;
}

.portfolio-page .portfolio-section .carousel-nav {
    display: none;
}

@media (max-width: 900px) {
    .portfolio-page .portfolio-section .carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .portfolio-page .portfolio-section .portfolio-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .portfolio-page .portfolio-section .carousel-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .portfolio-page .portfolio-section .portfolio-image {
        height: 180px;
    }
}

/* Video modal styles (centered popup) */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999999 !important;
}

.video-modal {
    /* reinforce fixed positioning in case of stacking-context surprises */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.video-modal.active {
    display: flex;
}

.video-modal .modal-inner {
    width: min(1100px, 94vw);
    height: calc(min(1100px, 94vw) * 9 / 16);
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 10000000;
}

.video-modal .close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000001;
}

/* Fallback 'Open on YouTube' link inside modal (small, unobtrusive) */
.video-modal .modal-open-link {
    position: absolute;
    left: 18px;
    top: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    z-index: 10000001;
}

.video-modal .modal-open-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Video modal mobile improvements */
@media (max-width: 768px) {
    .video-modal .modal-inner {
        width: min(100%, 96vw);
        height: calc(min(100%, 96vw) * 9 / 16);
        border-radius: 8px;
    }

    .video-modal .close-btn {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.75);
    }

    .video-modal .modal-open-link {
        left: 12px;
        top: 12px;
        font-size: 12px;
        padding: 5px 8px;
    }

    .video-title {
        font-size: 20px;
        left: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .video-modal .close-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .video-title {
        font-size: 16px;
        left: 12px;
        bottom: 12px;
    }
}

/* file:// help banner shown when page is opened from local file system */
.file-banner {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #0a0a0a;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 30000;
    font-weight: 700;
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: calc(100% - 40px);
}

/* Reels Section: vertical portrait embeds (9:16) ------------------------------------------- */
.reels-section {
    padding: 48px 0 64px;
    background: transparent;
}

.reels-section .section-header {
    margin-bottom: 24px;
}

.reels-grid {
    display: grid;
    /* set a sensible minimum column width so each reel is a bit larger */
    grid-template-columns: repeat(6, minmax(160px, 1fr));
    gap: 20px;
    align-items: start;
}

.reel {
    display: block;
}

.reel .video-embed {
    position: relative;
    width: 100%;
    /* portrait aspect: width / height = 9/16 -> aspect-ratio: 9 / 16 */
    aspect-ratio: 9 / 16;
    background: var(--secondary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.reel .video-embed iframe,
.reel .video-embed>.video-poster {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    object-fit: cover !important;
}

.reel .video-poster {
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* Remove any inherited play-circle pseudo elements for reel thumbnails */
.reel .video-poster::before,
.reel .video-poster::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 1200px) {
    .reels-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .reels-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reel .video-embed {
        border-radius: 10px;
    }
}

.file-banner .cmd {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-family: monospace;
}

.file-banner .actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.file-banner .btn {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 6px 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.file-banner .btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

.file-banner .close-btn {
    background: transparent;
    border: 0;
    color: #0a0a0a;
    font-weight: 800;
    padding: 4px 6px;
    cursor: pointer;
}

/* Reactive image gallery styles */
.gallery-section {
    padding: 40px 0 60px;
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* size helpers: span columns to create a varied masonry look */
.gallery-item.size-small {
    grid-column: span 3;
    grid-row: auto;
    height: 160px;
}

.gallery-item.size-medium {
    grid-column: span 4;
    height: 220px;
}

.gallery-item.size-large {
    grid-column: span 6;
    height: 360px;
}

/* New square-large tile: makes the tile larger and square (1:1) */
.gallery-item.square-large {
    grid-column: span 6;
    aspect-ratio: 1 / 1;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .gallery-item.size-small {
        grid-column: span 4;
    }

    .gallery-item.size-medium {
        grid-column: span 6;
    }

    .gallery-item.size-large {
        grid-column: span 12;
    }

    .gallery-item.square-large {
        grid-column: span 12;
    }
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .gallery-item.size-small {
        grid-column: span 3;
        height: 120px;
    }

    .gallery-item.size-medium {
        grid-column: span 6;
        height: 180px;
    }

    .gallery-item.size-large {
        grid-column: span 6;
        height: 220px;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        height: auto;
    }

    .gallery-item img {
        aspect-ratio: 4/3;
        width: 100%;
        height: auto;
    }
}

.gallery-item:hover {
    transform: translateY(-6px);
    transition: transform 220ms ease;
}

/* Full-bleed layout for the gallery: remove side margins and make the grid span viewport */
.gallery-section.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

.gallery-section.full-bleed .gallery-grid {
    max-width: none;
    grid-template-columns: repeat(12, 1fr);
}

/* Blank placeholders for images (user will upload later) */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
    /* keep blank for upload */
    border: 1px dashed rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}

/* Make placeholders a subtle neutral band on very dark background so they are visible while empty */
.gallery-section .gallery-placeholder {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

/* Gallery image wrapper and hover zoom (scoped to gallery section) */
.gallery-section .gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-section .gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(.2, .9, .25, 1);
    transform-origin: center center;
}

.gallery-section .gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

/* Ensure placeholders and images share the exact same box model so they line up perfectly */
.gallery-section .gallery-item {
    /* already position:relative; keep explicit to be safe */
    position: relative;
    overflow: hidden;
}

.gallery-section .gallery-item>.gallery-image,
.gallery-section .gallery-item>.gallery-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* Make the image an anchored cover layer to avoid aspect-ratio overrides on small screens */
.gallery-section .gallery-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small screens: override legacy aspect-ratio rule so images still fill tiles */
@media (max-width: 420px) {
    .gallery-section .gallery-image img {
        aspect-ratio: auto;
        height: 100%;
    }

    .gallery-section .gallery-item {
        height: auto;
    }
}

/* Specific variant: show the full image without cropping (letterbox) */
.gallery-section .gallery-image.contain img {
    object-fit: contain;
    background-color: transparent;
    padding: 6px;
    /* small padding so contained images don't touch the tile edge */
}

/* Fit-image variant: allow image to use natural aspect ratio (no cropping) and let tile height follow image */
.gallery-item.fit-auto {
    grid-column: span 4;
}

.gallery-section .gallery-image.fit-image {
    position: static;
    overflow: visible;
}

.gallery-section .gallery-image.fit-image img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    padding: 0;
}

/* Service tabs removed — styles cleared */
.carousel-viewport {
    overflow: hidden;
    /* make the video carousel full-bleed while keeping layout centered elsewhere */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.carousel-track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    transition: transform 300ms cubic-bezier(.22, .9, .25, 1);
    /* allow partial peek of adjacent cards */
    padding: 0 6%;
}

/* Safety: cloned slides used for wrap animations must not display any section headers
   or stray text. They should be clipped and invisible to avoid background bleed during transforms. */
.carousel-clone {
    overflow: hidden !important;
    pointer-events: none !important;
    user-select: none !important;
}

.carousel-clone .section-header,
.carousel-clone .page-title,
.carousel-clone .page-subtitle {
    display: none !important;
    visibility: hidden !important;
}

.carousel-track {
    isolation: isolate;
    /* create a stacking context so clones don't paint behind other sections */
}

.portfolio-item {
    flex: 0 0 70%;
    /* increased size for all videos */
    max-width: 70%;
    box-sizing: border-box;
    position: relative;
}

.portfolio-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    /* ensure no gray fallback */
    height: 520px;
    /* increased height */
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}

.portfolio-item .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    background: transparent;
}

.portfolio-caption {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-top: 14px;
    padding-left: 8px;
}

/* Carousel nav arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.36);
    color: #fff;
    font-size: 28px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

.carousel-nav.prev {
    left: 12px;
}

.carousel-nav.next {
    right: 12px;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.55);
}

/* Make the smaller items (adjacent) slightly scaled down */
.carousel-track .portfolio-item+.portfolio-item {
    transform: scale(0.94);
}

/* Hover control variables (toggle/adjust hover behaviour) */
:root {
    --carousel-hover-enabled: 0;
    /* 1 = enabled, 0 = disabled (default: disabled) */
    --carousel-hover-strength: 0.25;
    /* 0..1 dampening factor for hover panning */
    --portfolio-hover-scale: 1.00;
    /* scale applied on hover for main card (1 = no scale) */
}

/* Hover scale for the focused card (desktop only) */
.carousel-track .portfolio-item:hover {
    transform: scale(var(--portfolio-hover-scale));
    transition: transform 240ms ease;
}

/* Disable hover effects when the variable is 0 */
@media (hover: hover) {
    .portfolio-carousel[data-hover-enabled="0"] .carousel-track .portfolio-item:hover {
        transform: none;
    }

    /* Clients section: set a white background and adjust text for contrast (scoped to clients only) */
    #clients.clients-section {
        background: #ffffff;
        color: #111111;
        /* darker text for contrast */
    }

    /* Full-bleed white band for the clients section */
    #clients.full-bleed {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        left: 0;
        background: #ffffff;
    }

    /* Ensure section header stands out on white */
    #clients .section-header h2 {
        color: #111111;
    }

    /* Adjust client-logo style for white background */
    #clients .client-logo {
        background: #f8f8f8;
        color: #111111;
        border: 1px solid #e6e6e6;
        padding: 12px 14px;
        /* compact the white tiles */
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
    }

    /* Logo variant: center and size logo images inside client tiles */
    #clients .client-logo.client-logo--img {
        padding: 10px;
        background: transparent;
        border: none;
    }

    #clients .client-logo.client-logo--img img {
        display: block;
        width: 140px;
        /* slightly larger but contained so logos are clearer */
        height: auto;
        object-fit: contain;
    }

    /* Add spacing between the Clients heading and the logos marquee */
    #clients .section-header {
        margin-bottom: 20px;
        /* creates space between the heading and logos */
    }

    /* Slightly tighter spacing on small screens */
    @media (max-width: 600px) {
        #clients .section-header {
            margin-bottom: 12px;
        }
    }

    /* Nudge the clients header up so it sits closer to the gold banner above */
    #clients {
        padding-top: 10px;
        /* reduce space above the clients section */
    }

    #clients .section-header {
        margin-top: -6px;
        /* slight pull-up */
        margin-bottom: 56px;
        /* substantially larger gap between heading and logos */
    }

    @media (max-width: 800px) {
        #clients {
            padding-top: 10px;
        }

        #clients .section-header {
            margin-top: -4px;
            margin-bottom: 36px;
        }
    }

    @media (max-width: 900px) {
        .carousel-track {
            padding: 0 4%;
            gap: 16px;
        }

        .portfolio-item {
            flex: 0 0 90%;
            max-width: 90%;
        }

        .portfolio-image {
            height: 360px;
        }

        .video-title,
        .portfolio-caption {
            font-size: 20px;
        }

        .carousel-nav {
            width: 44px;
            height: 44px;
            font-size: 22px;
        }
    }

    .placeholder-img {
        color: var(--text-secondary);
        font-size: 18px;
        font-weight: 600;
    }

    .portfolio-item h3 {
        font-size: 20px;
        padding: 20px 25px 10px;
        color: var(--text-primary);
    }

    .portfolio-item p {
        font-size: 15px;
        padding: 0 25px 25px;
        color: var(--text-secondary);
        margin: 0;
    }

    /* Contact Info */
    .contact-info {
        display: flex;
        gap: 24px;
        align-items: flex-start;
        margin: 50px 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Index-only: Podcast section visual */
    .index-page .podcast-section .index-podcast {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        /* tightened gap to reduce vertical/visual space */
        align-items: center;
    }

    .index-page .podcast-section .podcast-visual {
        width: 100%;
        height: 180px;
        /* reduced visual height to tighten the band */
        min-height: 120px;
        overflow: hidden;
        border-radius: 8px;
        position: relative;
        /* allow stacking for image safeguards */
    }

    .index-page .podcast-section .podcast-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        visibility: visible;
        /* ensure not hidden by other rules */
        opacity: 1;
        z-index: 1;
    }

    .index-page .podcast-section .podcast-copy h2 {
        margin-top: 0;
    }

    /* Podcast CTA row: primary + secondary action */
    .index-page .podcast-section .podcast-ctas {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: 14px;
    }

    .index-page .podcast-section .podcast-ctas .cta-btn.secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 16px;
        /* reduced padding */
        font-weight: 700;
    }

    .index-page .podcast-section .podcast-ctas .cta-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    /* Center the podcast copy & CTAs when visual image is removed */
    .index-page .podcast-section .podcast-copy.centered {
        grid-column: 1 / -1;
        /* span the full grid */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Reduce primary CTA padding as requested */
    .index-page .podcast-section .podcast-ctas .cta-btn {
        padding: 10px 16px;
        /* smaller, tighter buttons */
    }

    /* Keep embeds centered; they remain 640x360 on desktop and fluid on mobile */
    .index-page .podcast-section .podcast-embeds {
        justify-content: center;
    }

    /* Podcast embed: make the poster tile compact and align it under the copy column
   - places the embed under the text column (grid-column:2) so it offsets from image
   - compact 16:9 tile (420x236) but fluid on small screens */
    .index-page .podcast-section .podcast-embeds {
        grid-column: 1 / -1;
        /* span full width so embeds are not confined to a single column */
        margin-top: 20px;
        display: flex;
        align-items: flex-start;
        gap: 18px;
        /* avoid shrinking large embeds to fit; allow horizontal scroll when content overflows */
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        /* no side padding so embeds can be flush with container edges */
    }

    .index-page .podcast-section .podcast-embeds .video-embed {
        position: relative;
        width: 900px;
        /* increased desktop width */
        height: auto;
        /* computed from aspect-ratio for better responsiveness */
        aspect-ratio: 16 / 9;
        max-width: 100%;
        border-radius: 8px;
        overflow: hidden;
        background: #000;
    }

    .index-page .podcast-section .podcast-embeds .video-embed .video-title {
        font-size: 18px;
        left: 12px;
        bottom: 10px;
    }

    @media (max-width: 800px) {

        /* On mobile, make the embed full-width and stack below the copy */
        .index-page .podcast-section .podcast-embeds {
            grid-column: 1 / -1;
            justify-content: center;
        }

        .index-page .podcast-section .podcast-embeds .video-embed {
            width: 100%;
            height: calc(100vw * 9 / 16);
            max-width: 520px;
        }
    }

    /* Drift animation for podcast tiles (subtle left-right motion) */
    .index-page .podcast-section .podcast-embeds .video-embed.drift {
        animation: driftX 6s ease-in-out infinite alternate;
    }

    /* Podcast continuous left-scroll track - creates a seamless circular wrap using a cloned track */
    .index-page .podcast-section .podcast-embeds {
        overflow: hidden;
        position: relative;
    }

    .index-page .podcast-section .podcast-track {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .index-page .podcast-section .podcast-track .video-embed {
        flex: 0 0 auto;
    }

    .index-page .podcast-section .podcast-embeds.podcast-paused .podcast-track {
        animation-play-state: paused;
    }

    .index-page .podcast-section .podcast-embeds .video-embed.drift:hover,
    .index-page .podcast-section .podcast-embeds .video-embed.drift:focus {
        animation-play-state: paused;
        /* pause motion on hover/focus */
    }

    @keyframes driftX {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-10px);
        }
    }

    @media (max-width: 800px) {
        .index-page .podcast-section .index-podcast {
            grid-template-columns: 1fr;
        }

        .index-page .podcast-section .podcast-visual {
            height: 200px;
        }
    }

    /* Make the podcast section full-bleed and remove any boxed background container visuals */
    .index-page .podcast-section {
        /* Keep the podcast section centered inside the normal site container
       (not full-bleed). This makes the band align with other content while
       ensuring embedded videos touch the inner container edges. */
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
        /* vertical padding only */
        background: transparent;
    }

    .index-page .podcast-section .container {
        max-width: 1400px;
        /* allow larger embeds to fit inside the podcast container */
        margin: 0 auto;
        padding-left: 0;
        /* allow embeds to touch container edges */
        padding-right: 0;
    }

    .index-page .podcast-section .podcast-content,
    .index-page .podcast-section .index-podcast {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Make the podcast embeds match portfolio video styling: keep 16:9 aspect ratio,
   inherit box-shadow, hover scale and the subtle drift animation used in portfolio */
    .index-page .podcast-section .podcast-embeds {
        grid-column: 1 / -1;
        /* ensure the embeds row spans the full container grid */
        display: flex;
        gap: 18px;
        align-items: flex-start;
        justify-content: center;
        padding-left: 0;
        /* no inner side padding so embeds touch the container edge */
        padding-right: 0;
    }

    .index-page .podcast-section .podcast-embeds .video-embed {
        position: relative;
        flex: 0 0 auto;
        /* prevent flex items shrinking so width stays fixed */
        width: 800px;
        /* desktop width increased */
        height: auto;
        /* height computed from aspect-ratio */
        aspect-ratio: 16 / 9;
        /* preserve 16:9 across modern browsers */
        max-width: 100%;
        border-radius: 14px;
        /* match portfolio rounding */
        overflow: hidden;
        background: var(--secondary-bg);
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
        /* match portfolio heavy card shadow */
        transition: transform 240ms ease, box-shadow 240ms ease;
    }

    .index-page .podcast-section .podcast-embeds .video-embed:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    }

    /* Subtle bottom gradient overlay like portfolio cards */
    .index-page .podcast-section .podcast-embeds .video-embed::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 80px;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
        z-index: 2;
        border-radius: 0 0 14px 14px;
    }

    /* Title styling inside the embed (match portfolio) */
    .index-page .podcast-section .podcast-embeds .video-embed .video-title {
        position: absolute;
        left: 16px;
        bottom: 18px;
        font-size: 20px;
        font-weight: 800;
        z-index: 4;
        text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
        color: #fff;
    }

    /* Ensure poster and iframe fill the aspect-box and remain absolutely positioned */
    .index-page .podcast-section .podcast-embeds .video-embed>iframe,
    .index-page .podcast-section .podcast-embeds .video-embed>.video-poster {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Apply the same drift animation class already used in portfolio */
    .index-page .podcast-section .podcast-embeds .video-embed.drift {
        animation: driftX 6s ease-in-out infinite alternate;
    }


    /* Index-only: lay out IPL plan cards in a single horizontal row */
    .index-page .ad-solution.featured .ipl-plans {
        display: flex;
        gap: 18px;
        align-items: stretch;
        overflow-x: auto;
        justify-content: center;
        /* center the row of plan-cards symmetrically */
        flex-wrap: wrap;
        /* allow wrapping and symmetric centering on narrower widths */
        padding-bottom: 6px;
        /* allow room for horizontal scroll */
    }

    .index-page .ad-solution.featured .ipl-plans .plan-card {
        flex: 0 0 280px;
        /* fixed-ish width per card to keep a row */
        min-width: 220px;
        box-sizing: border-box;
    }

    @media (max-width: 900px) {
        .index-page .ad-solution.featured .ipl-plans {
            display: block;
        }

        .index-page .ad-solution.featured .ipl-plans .plan-card {
            width: 100%;
            flex: none;
        }
    }

    /* Index-only: make the featured (TATA IPL) ad-solution full-bleed with no side margins */
    .index-page .ad-solution.featured {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 24px;
        /* keep inner padding for content */
        padding-right: 24px;
        box-sizing: border-box;
    }

    .index-page .ad-solution.featured .ad-header {
        margin-top: 0;
        margin-bottom: 12px;
    }

    /* Center the headline and subtitle inside the full-bleed Tata IPL block */
    .index-page .ad-solution.featured .ad-header {
        text-align: center;
        display: block;
    }

    .index-page .ad-solution.featured .ad-header .ad-type,
    .index-page .ad-solution.featured .ad-header .ad-subtitle {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* Compact the yellow 'Digital OTT' pill for a tighter visual */
    .index-page .ad-solution.featured .ad-header .ad-type {
        padding: 4px 10px;
        /* tighter vertical and horizontal padding */
        border-radius: 12px;
        /* slightly smaller pill */
        font-size: 12px;
    }

    /* Make the Digital CTA inside the featured Tata IPL block match the site's CTA sizing
   Use index-only scope so other pages are unaffected. */
    .index-page .ad-solution.featured .ad-pricing a.contact-btn {
        display: inline-block;
        padding: 16px 40px;
        /* match .cta-btn */
        font-size: 16px;
        border-radius: 10px;
        line-height: 1;
        /* keep tight vertical rhythm inside the pill */
    }


    .contact-card {
        background: #ffffff;
        color: #111;
        padding: 34px 28px;
        border-radius: 6px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        min-width: 320px;
        max-width: 520px;
    }

    .contact-card-title {
        font-size: 28px;
        letter-spacing: 3px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .contact-card-body {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .card-left {
        flex: 1 1 60%;
    }

    .company-name {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .company-address {
        color: #555;
        font-size: 14px;
        line-height: 1.5;
    }

    .card-right {
        flex: 1 1 40%;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .contact-line a {
        color: #111;
        text-decoration: none;
    }

    .contact-phone {
        color: var(--text-secondary);
    }

    .contact-location {
        min-width: 320px;
        max-width: 420px;
    }

    .contact-location .map-wrapper {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .contact-location .map-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .map-caption {
        color: var(--text-secondary);
        font-size: 14px;
        margin-top: 8px;
        text-align: center;
    }

    /* Contact form card (middle panel) */
    .contact-form-card {
        background: #4f5757;
        /* dark gray panel similar to screenshot */
        color: #fff;
        padding: 34px 28px;
        border-radius: 6px;
        min-width: 320px;
        max-width: 520px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* Contact callout that sits above the dark contact band */
    .contact-callout {
        margin-top: 40px;
        margin-bottom: -40px;
        /* pull the band up under the callout */
        position: relative;
        z-index: 5;
        /* sit above the dark band */
    }

    .contact-callout .callout-inner {
        background: #fff;
        border-radius: 14px;
        padding: 28px 30px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .contact-callout h2 {
        color: #111;
        font-size: 28px;
        margin-bottom: 6px;
    }

    .contact-callout p {
        color: #666;
        font-size: 16px;
        margin: 0;
    }

    /* Dark contact band - full width */
    .contact-band {
        background: #262626;
        color: #d7d7d7;
        padding: 48px 0;
        margin-bottom: 0;
        /* ensure band touches footer */
    }

    .contact-band-inner {
        display: grid;
        /* make center column dominant for the city headline */
        grid-template-columns: 0.9fr 2.2fr 0.9fr;
        gap: 30px;
        align-items: start;
    }

    .contact-col h4 {
        color: #bdbdbd;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .contact-left .contact-phone {
        font-size: 18px;
        color: #fff;
        margin: 6px 0;
    }

    .contact-left .contact-email a {
        color: #cfcfcf;
        text-decoration: none;
    }

    .contact-center .city-row {
        display: flex;
        gap: 48px;
        justify-content: center;
    }

    .contact-center .city {
        text-align: left;
    }

    .city-code {
        font-size: 96px;
        color: #bfbfbf;
        letter-spacing: 4px;
        font-weight: 300;
        line-height: 0.9;
    }

    .city-time {
        font-size: 40px;
        color: #bfbfbf;
        margin-top: 6px;
    }

    .city-address {
        color: #cfcfcf;
        margin-top: 10px;
        font-size: 14px;
    }

    .contact-right .zoho-embed iframe {
        background: #fff;
    }

    /* Decorative globe graphic behind the left/center area */
    .contact-band {
        position: relative;
        /* ensure pseudo-element positions relative to band */
    }

    .contact-band::before {
        content: '';
        position: absolute;
        left: 4%;
        bottom: 4%;
        /* use the user-supplied raster globe at workspace root (Globe.png) with SVG fallback */
        width: 48vw;
        height: 48vw;
        max-width: 560px;
        max-height: 560px;
        /* Layer 1: a warmer gradient tint matching the banner; Layer 2: user's globe; Layer 3: SVG fallback */
        background-image: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(245, 158, 11, 0.12)), url('Globe.png'), url("data:image/svg+xml;utf8,<svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 200 200'><circle cx='100' cy='100' r='90' fill='none' stroke='%23ffffff' stroke-width='4' opacity='0.06'/><path d='M10 100a90 90 0 0 0 180 0' stroke='%23ffffff' stroke-width='2' opacity='0.04' fill='none'/><path d='M100 10a90 90 0 0 0 0 180' stroke='%23ffffff' stroke-width='2' opacity='0.04' fill='none'/></svg>");
        background-repeat: no-repeat, no-repeat, no-repeat;
        /* anchor the globe to the left/bottom so it sits behind the center/left columns */
        background-position: left bottom, left bottom, center center;
        background-size: cover, contain, contain;
        pointer-events: none;
        z-index: 0;
        transform: translateY(8%);
        opacity: 0.12;
        /* slightly warmer due to tint */
    }

    /* Remove the gap between the contact band and footer when they are adjacent */
    .index-page .contact-section {
        margin-bottom: 0;
        padding-bottom: 60px;
        /* Reduce bottom padding to close gap */
    }

    /* If the contact section is immediately followed by the footer on the index page, remove any top gap */
    .index-page .contact-section+.footer {
        margin-top: 0;
        padding-top: 0;
        /* remove internal top padding so bands sit flush */
    }

    .index-page .contact-section+.footer .footer-content {
        margin-bottom: 6px;
    }

    /* Ensure footer itself never adds unexpected external space */
    .index-page .footer {
        margin-bottom: 0;
    }

    /* ensure content sits above the globe */
    .contact-band .contact-col {
        position: relative;
        z-index: 2;
    }

    @media (max-width: 980px) {
        .contact-callout .callout-inner {
            flex-direction: column;
            align-items: stretch;
            gap: 18px;
        }

        .contact-band-inner {
            grid-template-columns: 1fr;
        }

        .contact-center .city-row {
            flex-direction: column;
            gap: 18px;
            align-items: flex-start;
        }

        .city-code {
            font-size: 36px;
        }

        .city-time {
            font-size: 22px;
        }

        .contact-band {
            padding: 40px 0;
        }
    }

    /* Make callout and contact band full-bleed (no side margins) */
    .contact-callout.full-bleed,
    .contact-band.full-bleed {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* Allow container to provide inner padding but ensure band touches viewport edges */
    .contact-callout.full-bleed>.container {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* CTA inside the callout: orange pill with subtle shadow */
    .contact-callout .cta-btn.large {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #fff;
        padding: 12px 26px;
        border-radius: 12px;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.18);
    }

    /* ensure the dark band sits under the callout visually */
    .contact-band {
        position: relative;
        z-index: 1;
    }

    .contact-band.full-bleed>.container {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Make the Zoho embed visually blend into the dark band */
    .contact-right .zoho-embed {
        background: transparent;
        /* allow iframe background to show */
        border-radius: 8px;
        overflow: hidden;
    }

    .contact-right .zoho-embed iframe {
        background: #fff;
        /* show form on white background */
        color-scheme: light;
        border: 0;
        width: 100%;
        height: 560px;
    }

    @media (max-width: 480px) {

        .contact-callout.full-bleed>.container,
        .contact-band.full-bleed>.container {
            padding-left: 18px;
            padding-right: 18px;
        }
    }

    .contact-form-title {
        font-size: 28px;
        letter-spacing: 3px;
        font-weight: 800;
        margin-bottom: 18px;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 14px;
        border: none;
        border-radius: 4px;
        font-family: inherit;
        font-size: 14px;
    }

    /* Influencer image responsive sizing: fit to available width/height without pushing the form */
    .influencer-image-wrap {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .influencer-image {
        display: block;
        width: 100%;
        height: auto;
        max-height: 48vh;
        object-fit: contain;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    /* On narrow screens, allow the image to shrink more to keep form visible */
    @media (max-width: 900px) {
        .influencer-image {
            max-height: 36vh;
        }

        .influencer-content {
            display: block;
        }

        .influencer-text,
        .influencer-form {
            width: 100%;
        }
    }

    .contact-form input {
        height: 44px;
    }

    .contact-form textarea {
        resize: vertical;
    }

    .contact-submit {
        align-self: flex-start;
        background: #000;
        color: #fff;
        padding: 10px 28px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
    }

    .contact-submit:hover {
        opacity: 0.9;
    }

    /* Responsive tweaks: stack the three columns on small screens */
    @media (max-width: 1024px) {
        .contact-info {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .contact-info {
            flex-direction: column;
            align-items: stretch;
        }

        .contact-card,
        .contact-form-card,
        .contact-location {
            max-width: 100%;
        }

        .card-right {
            text-align: left;
        }
    }

    /* Index-only: fixed decorative curve behind the page content */
    .index-page::before {
        content: '';
        position: fixed;
        top: 300px;
        /* requested offset */
        left: 50%;
        transform: translateX(-50%);
        width: 2000px;
        height: 900px;
        background-image: url('web page bg 4k.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        opacity: 0.5;
        /* fixed 50% opacity as requested */
        pointer-events: none;
        z-index: 0;
        /* behind content */
    }

    /* Elevate page content above the decorative curve */
    .index-page>* {
        position: relative;
        z-index: 1;
    }

    /* Index-only: fixed decorative curve behind the page content */
    .services-page::before {
        content: '';
        position: fixed;
        top: 300px;
        /* requested offset */
        left: 50%;
        transform: translateX(-50%);
        width: 2000px;
        height: 900px;
        background-image: url('web page bg 4k.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        opacity: 0.5;
        /* fixed 50% opacity as requested */
        pointer-events: none;
        z-index: 0;
        /* behind content */
    }

    /* Elevate page content above the decorative curve */
    .services-page>* {
        position: relative;
        z-index: 1;
    }



    /* If contain leaves visible gaps on very wide or short hero areas, fall back to cover on narrow screens
   so mobile still looks full-bleed. */
    @media (max-width: 480px) {
        .about-section::before {
            background-size: cover;
        }
    }

    /* Compact, responsive email link inside contact-item */
    .contact-email {
        display: inline-block;
        font-size: 14px;
        color: var(--accent-color);
        text-decoration: none;
        background: transparent;
        padding: 6px 10px;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .contact-email:hover,
    .contact-email:focus {
        background: rgba(245, 158, 11, 0.08);
        color: var(--gradient-end);
    }

    @media (max-width: 480px) {
        .contact-email {
            white-space: normal;
            display: inline-block;
            font-size: 15px;
            padding: 8px 12px;
        }
    }

    /* Advertising Solutions */
    .advertising-section {
        padding: 120px 0;
    }

    /* Golden stats banner that appears below the gallery on the index page */
    .gold-banner {
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        color: #111;
        padding: 36px 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .gold-banner-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gold-blocks {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        width: 100%;
        max-width: none;
        /* allow blocks to touch edges */
        align-items: center;
    }

    .gold-block {
        padding: 18px 10px;
        text-align: center;
    }

    .gold-number {
        font-size: 80px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
    }

    .gold-number .gold-plus {
        margin-left: 8px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 800;
        font-size: 0.7em;
    }

    .gold-label {
        margin-top: 10px;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 700;
    }

    /* Pause animations on hover */


    @media (max-width: 900px) {
        .gold-blocks {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .gold-number {
            font-size: 56px;
        }
    }

    .ad-solution {
        background: var(--card-bg);
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 40px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    /* Index-only: place first two ad-solution cards side-by-side */
    .index-page .advertising-section .ad-solution-wrapper {
        display: flex;
        gap: 30px;
        align-items: stretch;
    }

    .index-page .advertising-section .ad-solution {
        flex: 1 1 0;
        margin-bottom: 0;
    }

    .index-page .advertising-section .ad-solution.featured {
        flex-basis: 100%;
        margin-top: 30px;
    }

    @media (max-width: 900px) {
        .index-page .advertising-section .ad-solution-wrapper {
            flex-direction: column;
        }
    }

    .ad-solution:hover {
        border-color: var(--accent-color);
        transform: translateY(-5px);
    }

    .ad-solution.featured {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
        border: 2px solid var(--accent-color);
    }

    .ad-header {
        margin-bottom: 30px;
    }

    .ad-header h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .ad-subtitle {
        font-size: 18px;
        color: var(--text-secondary);
        margin-bottom: 10px;
    }

    .ad-type {
        display: inline-block;
        background: var(--accent-color);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .ad-details {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        flex-wrap: wrap;
    }

    .ad-spec h4 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--text-primary);
    }

    .ad-spec ul {
        list-style: none;
        padding: 0;
    }

    .ad-spec li {
        color: var(--text-secondary);
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

    .ad-spec li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    }

    .ad-pricing {
        text-align: right;
    }

    /* Metro Billboard Layout */
    .metro-billboard {
        display: grid;
        grid-template-columns: 35% 65%;
        gap: 0;
        align-items: center;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        border-radius: 20px;
        overflow: hidden;
        min-height: 480px;
    }

    /* Irregular Collage Layout - Different Sizes */
    .metro-visual-collage {
        position: relative;
        padding: 30px 25px;
        height: 100%;
        min-height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .collage-image {
        position: absolute;
        overflow: hidden;
        border-radius: 8px;
        border: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .collage-image:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 50px rgba(245, 158, 11, 0.4), 0 0 30px rgba(245, 158, 11, 0.2);
        z-index: 100 !important;
    }

    .collage-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Image 1 - Large portrait (tallest) */
    .collage-img-1 {
        width: 200px;
        height: 280px;
        top: 20px;
        left: 20px;
        z-index: 3;
        transform: rotate(-3deg);
    }

    .collage-img-1:hover {
        transform: rotate(-3deg) translateY(-8px) scale(1.05);
    }

    /* Image 2 - Medium landscape (widest) */
    .collage-img-2 {
        width: 240px;
        height: 180px;
        top: 180px;
        left: 110px;
        z-index: 2;
        transform: rotate(2deg);
    }

    .collage-img-2:hover {
        transform: rotate(2deg) translateY(-8px) scale(1.05);
    }

    /* Image 3 - Small square */
    .collage-img-3 {
        width: 160px;
        height: 160px;
        top: 100px;
        left: 230px;
        z-index: 1;
        transform: rotate(-4deg);
    }

    .collage-img-3:hover {
        transform: rotate(-4deg) translateY(-8px) scale(1.05);
    }

    .metro-content {
        padding: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        justify-content: center;
    }

    .metro-headline {
        font-size: 3rem;
        font-weight: 900;
        line-height: 1.1;
        color: #ffffff;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }

    .metro-emphasis {
        display: block;
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 3.5rem;
    }

    .metro-description {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .metro-cta {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .metro-btn {
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        font-size: 0.85rem;
    }

    .metro-btn.primary {
        background: var(--accent-color);
        color: var(--bg-dark);
        border: 2px solid var(--accent-color);
    }

    .metro-btn.primary:hover {
        background: transparent;
        color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    .metro-btn.secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .metro-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
    }

    /* Responsive Metro Billboard */
    @media (max-width: 1100px) {
        .metro-billboard {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .metro-visual-collage {
            min-height: 400px;
            padding: 30px 25px;
        }

        .collage-img-1 {
            width: 170px;
            height: 240px;
            top: 20px;
            left: 25px;
        }

        .collage-img-2 {
            width: 210px;
            height: 155px;
            top: 160px;
            left: 100px;
        }

        .collage-img-3 {
            width: 140px;
            height: 140px;
            top: 85px;
            left: 210px;
        }

        .metro-content {
            padding: 35px 30px;
        }

        .metro-headline {
            font-size: 2.5rem;
        }

        .metro-emphasis {
            font-size: 3rem;
        }
    }

    @media (max-width: 768px) {
        .metro-visual-collage {
            min-height: 360px;
            padding: 25px 20px;
        }

        .collage-img-1 {
            width: 145px;
            height: 200px;
            top: 15px;
            left: 20px;
        }

        .collage-img-2 {
            width: 185px;
            height: 135px;
            top: 140px;
            left: 85px;
        }

        .collage-img-3 {
            width: 120px;
            height: 120px;
            top: 75px;
            left: 180px;
        }

        .metro-content {
            padding: 30px 20px;
            gap: 20px;
        }

        .metro-headline {
            font-size: 2rem;
        }

        .metro-emphasis {
            font-size: 2.5rem;
        }

        .metro-cta {
            flex-direction: column;
        }

        .metro-btn {
            text-align: center;
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .metro-visual-collage {
            min-height: 320px;
            padding: 20px 15px;
        }

        .collage-img-1 {
            width: 120px;
            height: 170px;
            top: 12px;
            left: 15px;
        }

        .collage-img-2 {
            width: 160px;
            height: 115px;
            top: 120px;
            left: 70px;
        }

        .collage-img-3 {
            width: 100px;
            height: 100px;
            top: 65px;
            left: 145px;
        }

        .metro-headline {
            font-size: 1.75rem;
        }

        .metro-emphasis {
            font-size: 2.2rem;
        }
    }

    /* IPL L-Band Section Specific Styles */
    .ipl-lband-section .ad-header {
        margin-bottom: 30px;
    }

    .ipl-badge {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.75rem;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* IPL Vertical Stacked Images Layout */
    .ipl-visual-stacked {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .ipl-image-stacked {
        width: 100%;
        max-width: 320px;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .ipl-image-stacked:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4), 0 0 30px rgba(247, 147, 30, 0.2);
    }

    .ipl-image-stacked img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .ipl-specs-inline {
        display: flex;
        gap: 25px;
        padding: 20px 0;
        border-top: 1px solid rgba(245, 158, 11, 0.2);
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        margin: 15px 0;
    }

    .spec-inline-item {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .spec-value {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1;
    }

    .spec-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Responsive IPL Stacked Layout */
    @media (max-width: 1100px) {
        .ipl-visual-stacked {
            padding: 25px 20px;
            gap: 15px;
        }

        .ipl-image-stacked {
            max-width: 280px;
        }
    }

    @media (max-width: 768px) {
        .ipl-visual-stacked {
            padding: 20px 15px;
            gap: 12px;
        }

        .ipl-image-stacked {
            max-width: 100%;
        }

        .ipl-specs-inline {
            flex-wrap: wrap;
            gap: 20px;
        }

        .spec-inline-item {
            flex: 1 1 45%;
        }
    }

    @media (max-width: 480px) {
        .ipl-visual-stacked {
            gap: 10px;
        }

        .ipl-specs-inline {
            flex-direction: column;
            gap: 15px;
        }

        .spec-inline-item {
            flex: 1 1 100%;
        }
    }

    /* Old metro grid styles - can be removed if not used elsewhere */
    .metro-layout .ad-details.metro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .metro-layout .ad-spec {
        grid-column: 1;
    }

    .metro-layout .ad-pricing.metro-center {
        grid-column: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .metro-layout .ad-images {
        grid-column: 3;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .metro-image {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border: 2px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .metro-image:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
        border-color: var(--accent-color);
    }

    .metro-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Responsive adjustments */
    @media (max-width: 1100px) {
        .metro-layout .ad-details.metro-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .metro-layout .ad-spec {
            grid-column: 1;
        }

        .metro-layout .ad-pricing.metro-center {
            grid-column: 2;
        }

        .metro-layout .ad-images {
            grid-column: 1 / -1;
            flex-direction: row;
        }
    }

    @media (max-width: 768px) {
        .metro-layout .ad-details.metro-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .metro-layout .ad-spec,
        .metro-layout .ad-pricing.metro-center,
        .metro-layout .ad-images {
            grid-column: 1;
        }

        .metro-layout .ad-pricing.metro-center {
            text-align: left;
            align-items: flex-start;
        }

        .metro-layout .ad-images {
            flex-direction: column;
        }
    }

    .price-label {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--text-primary);
    }

    .contact-btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    }

    /* Digital Touchpoints Summary */
    .touchpoints-summary {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
        margin-top: 60px;
        padding: 50px 40px;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.05));
        border-radius: 20px;
        border: 2px solid rgba(245, 158, 11, 0.2);
    }

    .summary-stat {
        flex: 1;
        text-align: center;
        padding: 30px 20px;
        background: var(--card-bg);
        border-radius: 16px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .summary-stat:hover {
        transform: translateY(-5px);
        border-color: var(--accent-color);
    }

    .summary-stat.highlight {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
        border: 2px solid var(--accent-color);
        transform: scale(1.05);
    }

    .summary-stat.highlight:hover {
        transform: scale(1.08) translateY(-5px);
    }

    .stat-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 56px;
        font-weight: 900;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 10px;
        letter-spacing: -2px;
    }

    .summary-stat.highlight .stat-number {
        font-size: 64px;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-label {
        font-size: 16px;
        color: var(--text-secondary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 20px;
        color: var(--text-secondary);
        margin-top: 15px;
        margin-bottom: 10px;
        font-weight: 400;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width: 900px) {
        .touchpoints-summary {
            flex-direction: column;
            gap: 20px;
            padding: 30px 20px;
        }

        .summary-stat.highlight {
            transform: scale(1);
        }

        .stat-number {
            font-size: 48px;
        }

        .summary-stat.highlight .stat-number {
            font-size: 52px;
        }

        .stat-icon {
            font-size: 40px;
        }
    }

    /* IPL Plans */
    .ipl-plans {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .plan-card {
        background: var(--secondary-bg);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .plan-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-color);
    }

    .plan-card h4 {
        font-size: 20px;
        margin-bottom: 20px;
        color: var(--text-primary);
    }

    .plan-specs {
        margin-bottom: 20px;
    }

    .plan-specs h5 {
        font-size: 16px;
        margin-bottom: 12px;
        color: var(--text-secondary);
        font-weight: 600;
    }

    .plan-specs ul {
        list-style: none;
        padding: 0;
    }

    .plan-specs li {
        color: var(--text-secondary);
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 15px;
        position: relative;
    }

    .plan-specs li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    }

    .plan-price {
        font-size: 18px;
        font-weight: 700;
        color: var(--accent-color);
        margin-top: 20px;
    }

    /* Podcast Section */
    .podcast-section {
        padding: 100px 0;
        background: var(--secondary-bg);
        text-align: center;
    }

    .podcast-content h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .podcast-content p {
        font-size: 20px;
        color: var(--text-secondary);
        margin-bottom: 40px;
    }

    /* Clients Section: circular logo marquee */
    .clients-section {
        padding: 80px 0;
    }

    .clients-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    /* Running marquee for clients on the index page - circular logos, smooth infinite wrap */
    .clients-marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    .clients-track {
        display: flex;
        width: calc(200% + 40px);
        animation: clients-scroll 20s linear infinite;
        gap: 28px;
        /* spacing between circular logos */
        align-items: center;
    }

    .clients-group {
        display: flex;
        gap: 28px;
        align-items: center;
        white-space: nowrap;
    }

    /* Circular logo tile */
    .client-logo {
        flex: 0 0 auto;
        width: 96px;
        height: 96px;
        border-radius: 50%;
        background: var(--card-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border-color);
        overflow: hidden;
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    /* Image variant: ensure logos fit inside the circular tile */
    .client-logo.client-logo--img {
        background: transparent;
        border: none;
        padding: 8px;
    }

    .client-logo.client-logo--img img {
        display: block;
        width: 80%;
        height: auto;
        object-fit: contain;
    }

    /* Slight pop on hover and pause marquee */
    .client-logo:hover {
        transform: scale(1.06);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
        border-color: var(--accent-color);
    }

    .clients-marquee:hover .clients-track,
    .clients-marquee:focus-within .clients-track {
        animation-play-state: paused;
    }

    /* Full-bleed variant: remove side margins and make the marquee span the viewport */
    .clients-marquee.full-bleed {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 20px;
        /* small inner padding to avoid touching the very edge */
        padding-right: 20px;
    }

    @keyframes clients-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Responsive: reduce logo size on small screens to avoid overlap */
    @media (max-width: 900px) {
        .client-logo {
            width: 80px;
            height: 80px;
        }

        .clients-track {
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .client-logo {
            width: 64px;
            height: 64px;
        }

        .clients-track {
            gap: 14px;
            animation-duration: 16s;
        }
    }

    /* Testimonials */
    .testimonials-section {
        padding: 120px 0;
        background: var(--secondary-bg);
    }

    .testimonial-card {
        max-width: 800px;
        margin: 0 auto;
        background: var(--card-bg);
        padding: 50px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    /* Reviews / Testimonial cards (three-up layout) */
    .reviews-section {
        padding: 80px 0 60px;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 1100px;
        margin: 20px auto 0;
    }

    .review-card {
        background: #fff;
        color: #111;
        border-radius: 12px;
        padding: 28px 24px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .review-header {
        display: block;
        margin-bottom: 8px;
    }

    .review-name {
        font-size: 18px;
        font-weight: 800;
        color: #111111;
    }

    .review-brand {
        font-size: 13px;
        color: #6b6b6b;
        margin-top: 4px;
    }

    .review-text {
        color: #444;
        font-size: 16px;
        line-height: 1.7;
    }

    .review-footer {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .review-rating {
        color: #f5b042;
        font-size: 18px;
        font-weight: 700
    }

    .review-avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #eee;
        flex: 0 0 64px;
        overflow: hidden;
    }

    .review-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    .review-text {
        color: #444;
        font-size: 14px;
        line-height: 1.6;
        flex: 1
    }

    .review-name {
        font-weight: 700;
        margin-top: 8px;
        color: #111
    }

    .review-role {
        color: #9b9b9b;
        font-size: 13px
    }

    .review-footer {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 6px
    }

    .review-rating {
        color: #f5b042;
        font-size: 18px;
        font-weight: 700
    }

    @media (max-width: 1024px) {
        .reviews-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 720px) {
        .reviews-grid {
            grid-template-columns: 1fr;
        }
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 1.8;
        color: var(--text-primary);
        margin-bottom: 30px;
        font-style: italic;
    }

    .testimonial-author {
        text-align: right;
    }

    .author-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 5px;
    }

    .author-position {
        font-size: 16px;
        color: var(--text-secondary);
    }

    /* Contact Section */
    .contact-section {
        padding: 120px 0;
        text-align: center;
    }

    .contact-content h2 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .contact-content h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--accent-color);
    }

    .contact-content p {
        font-size: 20px;
        color: var(--text-secondary);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        color: white;
        padding: 16px 40px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        letter-spacing: 0.5px;
    }

    .cta-btn.large {
        padding: 20px 50px;
        font-size: 18px;
    }

    /* Specific style for the chat button */
    .chat-btn {
        background: #25D366 !important;
        /* WhatsApp green as requested */
        margin-left: 24px;
        /* approximate visual gap (~4 spaces) between buttons */
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    }

    /* Footer - Modern Design with Reveal Animation */
    .footer {
        background: var(--primary-bg);
        position: relative;
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        margin: 0;
        padding: 0;
    }

    /* Only hide footer if JavaScript will reveal it */
    .footer.will-animate {
        opacity: 0;
        transform: translateY(40px);
    }

    .footer.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* Footer CTA Section - Golden Yellow Gradient Band */
    .footer-cta {
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
        padding: 80px 0;
        text-align: left;
    }

    .footer-cta .container {
        max-width: 1400px;
    }

    .footer-cta h2 {
        font-size: 56px;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .footer-cta-link {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 8px;
        text-decoration-thickness: 2px;
        transition: opacity 0.3s ease;
        display: inline;
        font-weight: 600;
    }

    .footer-cta-link:hover {
        opacity: 0.85;
    }

    /* Footer Main Section */
    .footer-main {
        background: #0f172a;
        padding: 60px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: 100px;
        margin-bottom: 50px;
    }

    /* Footer Brand */
    .footer-brand h3 {
        font-size: 20px;
        /* Increased by 50% from 20px */
        font-weight: 800;
        margin-bottom: 8px;
        color: #f59e0b;
    }

    .footer-brand p {
        color: #94a3b8;
        font-size: 14px;
        margin-bottom: 40px;
    }

    /* Footer Social Links - Horizontal inline layout */
    .footer-social {
        display: flex;
        gap: 32px;
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-social a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .footer-social a:hover {
        color: #ffffff;
    }

    /* Footer Navigation Grid - 4 columns */
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }

    .footer-col h4 {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 16px;
        letter-spacing: 0.3px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 13px;
        font-weight: 400;
        transition: color 0.3s ease;
        display: inline-block;
    }

    .footer-col a:hover {
        color: #ffffff;
    }

    /* Footer Bottom */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
        border-top: 1px solid #1e293b;
    }

    .footer-bottom p {
        color: #64748b;
        font-size: 13px;
        margin: 0;
    }

    .footer-meta {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1e293b;
        border: 1px solid #334155;
        border-radius: 50%;
        color: #ffffff;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
        border-color: #f59e0b;
        transform: translateY(-4px);
    }

    /* Responsive Footer */
    @media (max-width: 1100px) {
        .footer-nav {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }

    @media (max-width: 900px) {
        .footer-cta {
            padding: 60px 0;
        }

        .footer-cta h2 {
            font-size: 36px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .footer-nav {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .footer-main {
            padding: 50px 0 30px;
        }
    }

    @media (max-width: 600px) {
        .footer-cta {
            padding: 40px 0;
        }

        .footer-cta h2 {
            font-size: 28px;
        }

        .footer-nav {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .footer-social {
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        /* Page title adjustments for 600px screens */
        .page-title {
            font-size: 26px;
            line-height: 1.2;
        }

        .services-page .page-hero .page-title {
            font-size: 24px !important;
            line-height: 1.25;
        }

        .page-subtitle {
            font-size: 13px;
        }

        .services-page .page-hero .page-subtitle {
            font-size: 12px !important;
        }
    }

    /* Full-bleed footer styling */
    .footer.full-bleed {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* Legacy footer styles compatibility */
    /* (JS will add inline padding to <body> when footer is fixed to prevent content overlap) */

    /* Responsive Design */
    @media (max-width: 768px) {
        .top-banner {
            background: linear-gradient(90deg, rgb(245, 159, 11), rgba(247, 177, 56, 0.95));
            padding: 10px 0;
            opacity: 1;
        }

        .banner-content {
            flex-direction: column;
            gap: 10px;
            padding: 0 16px;
        }

        .banner-content p {
            font-size: 13px;
            text-align: center;
        }

        .book-now-btn {
            padding: 8px 20px;
            font-size: 13px;
        }

        /* Remove conflicting navbar positioning - handled by main mobile styles */
        /* .navbar { top: 80px; } - REMOVED */

        .hero {
            padding-top: 100px;
            /* Account for banner + navbar */
            min-height: 70vh;
            z-index: 0 !important;
            /* Force hero below navigation */
        }

        .hero .container,
        .hero-content,
        .hero-visual {
            z-index: 1 !important;
            /* Keep hero content above hero bg but below nav */
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero-title {
            font-size: 48px;
        }

        .hero-subtitle {
            font-size: 20px;
        }

        .hero-description {
            font-size: 16px;
        }

        .section-header h2 {
            font-size: 36px;
            letter-spacing: -0.5px;
        }

        .section-header p {
            font-size: 16px;
            line-height: 1.6;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 24px 16px;
        }

        .service-item {
            padding: 28px 20px;
        }

        .service-item h3 {
            font-size: 20px;
        }

        .service-item p {
            font-size: 15px;
            line-height: 1.6;
        }

        .ad-details {
            flex-direction: column;
        }

        .ad-pricing {
            text-align: left;
        }

        .ipl-plans {
            grid-template-columns: 1fr;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 15px;
        }

        .contact-content h2 {
            font-size: 36px;
        }

        /* Make sure hero content doesn't sit too low on small screens */
        .hero-content {
            padding-bottom: 40px;
        }

        .hero {
            align-items: flex-end;
            min-height: 500px;
        }

        .testimonial-card {
            padding: 24px 20px;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-size: 15px;
        }

        /* Improve button sizing on mobile */
        .cta-btn,
        .hero-cta {
            padding: 14px 24px;
            font-size: 15px;
        }

        /* Better spacing for sections */
        section {
            padding: 50px 20px;
        }

        .container {
            padding: 0 16px;
        }

        .media-grid {
            grid-template-columns: 1fr;
        }

        .steps-container {
            grid-template-columns: 1fr;
        }

        .portfolio-grid {
            grid-template-columns: 1fr;
        }

        .contact-info {
            grid-template-columns: 1fr;
        }

        /* Mobile form improvements */
        .contact-form input,
        .contact-form textarea,
        .project-form input,
        .project-form textarea,
        .career-form input,
        .career-form textarea,
        .influencer-form input,
        .influencer-form textarea {
            font-size: 16px;
            /* Prevents zoom on iOS */
            padding: 14px;
        }

        .form-container {
            padding: 30px 20px;
        }

        /* Mobile page hero */
        .page-hero {
            padding: 140px 20px 60px;
        }

        /* Override excessive padding for services pages on mobile */
        .services-page .page-hero {
            padding: 100px 20px 50px !important;
        }

        /* E-commerce page hero - reduced mobile padding */
        .ecommerce-page .page-hero {
            padding: 90px 20px 40px !important;
            padding-top: 90px !important;
        }

        .page-title {
            font-size: 32px;
            /* Reduced from 36px for better mobile fit */
            line-height: 1.2;
            word-wrap: break-word;
        }

        /* Specific override for services pages (dropdown menu pages) */
        .services-page .page-hero .page-title {
            font-size: 28px !important;
            /* Even smaller for media pages */
            line-height: 1.25;
            letter-spacing: -0.3px;
        }

        .page-subtitle {
            font-size: 14px;
            /* Reduced from 16px */
            line-height: 1.5;
        }

        /* Services page subtitle */
        .services-page .page-hero .page-subtitle {
            font-size: 13px !important;
            line-height: 1.6;
        }

        /* Mobile footer improvements */
        .footer {
            padding: 40px 20px 30px;
        }

        .footer-cta {
            padding: 40px 20px;
            text-align: center;
        }

        .footer-cta h2 {
            font-size: 28px;
        }

        /* Mobile about section */
        .about-content {
            padding: 30px 20px;
        }

        .about-content h2 {
            font-size: 32px;
        }

        .about-content p {
            font-size: 16px;
            line-height: 1.7;
        }
    }

    /* Additional mobile refinements for very small screens */
    @media (max-width: 480px) {
        .section-header h2 {
            font-size: 24px;
        }

        .page-title {
            font-size: 24px;
            /* Further reduced for small screens */
            line-height: 1.2;
        }

        /* Services/Media pages - even smaller on tiny screens */
        .services-page .page-hero .page-title {
            font-size: 22px !important;
            line-height: 1.25;
            padding: 0 10px;
        }

        .page-subtitle {
            font-size: 13px;
        }

        .services-page .page-hero .page-subtitle {
            font-size: 12px !important;
            padding: 0 10px;
        }

        .service-item h3 {
            font-size: 18px;
        }

        .cta-btn {
            width: 100%;
            text-align: center;
        }
    }

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Selection Color */
    ::selection {
        background: var(--accent-color);
        color: white;
    }

    /* Page Hero */
    .page-hero {
        padding: 250px 0 100px;
        text-align: center;
        background: var(--primary-bg);
        position: relative;
        z-index: 500;
    }

    .page-hero .container {
        position: relative;
        z-index: 501;
    }

    /* Media Offerings page hero with black to golden yellow gradient background - 75% black, 25% yellow at 0.5 opacity */
    .services-page .page-hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, rgba(251, 191, 36, 0.5) 85%, rgba(245, 158, 11, 0.5) 100%);
        padding: 200px 0 100px !important;
        padding-top: 200px !important;
        text-align: center;
        z-index: 500;
    }

    /* E-commerce page hero - reduced height to match services page better */
    .ecommerce-page .page-hero {
        padding: 150px 0 80px !important;
        padding-top: 100px !important;
    }

    /* Add white dots pattern to the hero background */
    .services-page .page-hero {
        background-image:
            radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px),
            radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
            linear-gradient(135deg, #000000 0%, #1a1a1a 60%, rgba(251, 191, 36, 0.5) 85%, rgba(245, 158, 11, 0.5) 100%);
        background-size: 50px 50px, 80px 80px, 120px 120px, 100%;
        background-position: 0 0, 40px 40px, 80px 80px, 0 0;
    }

    /* Animated light wave moving from left to right with fade out on right */
    @keyframes lightWave {
        0% {
            left: -100%;
            opacity: 0;
        }

        10% {
            opacity: 0.4;
        }

        30% {
            opacity: 0.6;
        }

        50% {
            opacity: 0.5;
        }

        70% {
            opacity: 0.3;
        }

        85% {
            opacity: 0.15;
        }

        100% {
            left: 100%;
            opacity: 0;
        }
    }

    /* Smooth curved wave effect with reduced width and 45-degree angle */
    .services-page .page-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -100%;
        width: 25%;
        height: 200%;
        background: radial-gradient(ellipse 150px 600px at center,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(255, 255, 255, 0.3) 25%,
                rgba(255, 255, 255, 0.15) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                transparent 100%);
        transform: rotate(45deg);
        animation: lightWave 6s ease-in-out infinite;
        z-index: 1;
        pointer-events: none;
        filter: blur(20px);
    }

    /* Gradient overlay for depth - 75% black, 25% yellow */
    .services-page .page-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(26, 26, 26, 0.2) 60%,
                rgba(251, 191, 36, 0.1) 85%,
                rgba(245, 158, 11, 0.15) 100%);
        z-index: 1;
    }

    .services-page .page-hero .container {
        position: relative;
        z-index: 2;
    }

    /* Portfolio page hero with black to golden yellow gradient background - same as Media Offerings */
    .portfolio-page .page-hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, rgba(251, 191, 36, 0.5) 85%, rgba(245, 158, 11, 0.5) 100%);
        padding: 200px 0 100px !important;
        padding-top: 200px !important;
        text-align: center;
        z-index: 500;
    }

    /* Add white dots pattern to the portfolio hero background */
    .portfolio-page .page-hero {
        background-image:
            radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px),
            radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
            linear-gradient(135deg, #000000 0%, #1a1a1a 60%, rgba(251, 191, 36, 0.5) 85%, rgba(245, 158, 11, 0.5) 100%);
        background-size: 50px 50px, 80px 80px, 120px 120px, 100%;
        background-position: 0 0, 40px 40px, 80px 80px, 0 0;
    }

    /* Smooth curved wave effect with reduced width and 45-degree angle */
    .portfolio-page .page-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -100%;
        width: 25%;
        height: 200%;
        background: radial-gradient(ellipse 150px 600px at center,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(255, 255, 255, 0.3) 25%,
                rgba(255, 255, 255, 0.15) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                transparent 100%);
        transform: rotate(45deg);
        animation: lightWave 6s ease-in-out infinite;
        z-index: 1;
        pointer-events: none;
        filter: blur(20px);
    }

    /* Gradient overlay for depth - 75% black, 25% yellow */
    .portfolio-page .page-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(26, 26, 26, 0.2) 60%,
                rgba(251, 191, 36, 0.1) 85%,
                rgba(245, 158, 11, 0.15) 100%);
        z-index: 1;
    }

    .portfolio-page .page-hero .container {
        position: relative;
        z-index: 2;
    }

    /* Index page hero with black to golden yellow gradient background - same as Media Offerings */
    .index-page .page-hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, rgba(251, 191, 36, 0.5) 85%, rgba(245, 158, 11, 0.5) 100%);
        padding: 200px 0 100px !important;
        padding-top: 200px !important;
        text-align: center;
        z-index: 1;
    }

    /* Add white dots pattern to the portfolio hero background */
    .index-page .page-hero {
        background-image:
            radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px),
            radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
            linear-gradient(135deg, #000000 0%, #1a1a1a 60%, rgba(251, 191, 36, 0.5) 85%, rgba(245, 158, 11, 0.5) 100%);
        background-size: 50px 50px, 80px 80px, 120px 120px, 100%;
        background-position: 0 0, 40px 40px, 80px 80px, 0 0;
    }

    /* Smooth curved wave effect with reduced width and 45-degree angle */
    .index-page .page-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -100%;
        width: 25%;
        height: 200%;
        background: radial-gradient(ellipse 150px 600px at center,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(255, 255, 255, 0.3) 25%,
                rgba(255, 255, 255, 0.15) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                transparent 100%);
        transform: rotate(45deg);
        animation: lightWave 6s ease-in-out infinite;
        z-index: 1;
        pointer-events: none;
        filter: blur(20px);
    }

    /* Gradient overlay for depth - portfolio */
    .index-page .page-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(26, 26, 26, 0.2) 60%,
                rgba(251, 191, 36, 0.1) 85%,
                rgba(245, 158, 11, 0.15) 100%);
        z-index: 1;
    }

    .index-page .page-hero .container {
        position: relative;
        z-index: 2;
    }

    /* Index page: remove side margins for How It Works section so it sits full-width */
    .index-page #how-it-works {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-title {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        hyphens: auto;
        position: relative;
        z-index: 999999;
    }

    .page-subtitle {
        font-size: 22px;
        color: #1a1a1a;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.5;
        position: relative;
        z-index: 999999;
    }

    /* Media Offerings title - footer CTA style with white "Media" and black "Offerings" */
    .services-page .page-hero .page-title {
        font-size: 56px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.3;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    /* Make "Offerings" text golden yellow in Media Offerings page */
    .services-page .page-hero .page-title .gradient-text {
        color: #fbbf24;
        background: none;
        background-clip: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #fbbf24;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    /* Media Offerings subtitle - white text */
    .services-page .page-hero .page-subtitle {
        color: #ffffff;
        opacity: 1;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    /* Portfolio title - white "OUR" and golden yellow "PORTFOLIO" */
    .portfolio-page .page-hero .page-title {
        font-size: 56px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.3;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    /* Make "PORTFOLIO" text golden yellow */
    .portfolio-page .page-hero .page-title .gradient-text {
        color: #fbbf24;
        background: none;
        background-clip: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #fbbf24;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    /* Portfolio subtitle - white text */
    .portfolio-page .page-hero .page-subtitle {
        color: #ffffff;
        opacity: 1;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    /* Index page Portfolio title - white "OUR" and golden yellow "PORTFOLIO" */
    .index-page .page-hero .page-title {
        font-size: 56px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.3;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    /* Make "PORTFOLIO" text golden yellow */
    .index-page .page-hero .page-title .gradient-text {
        color: #fbbf24;
        background: none;
        background-clip: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #fbbf24;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    /* Portfolio subtitle - white text */
    .index-page .page-hero .page-subtitle {
        color: #ffffff;
        opacity: 1;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    /* Services Page */
    .services-overview {
        padding: 80px 0;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin-top: 15px;
    }

    .service-features li {
        color: var(--text-secondary);
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        font-size: 14px;
    }

    .service-features li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--accent-color);
    }

    .service-link {
        display: inline-block;
        color: var(--accent-color);
        text-decoration: none;
        margin-top: 15px;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .service-link:hover {
        transform: translateX(5px);
    }

    /* Influencer Section */
    .influencer-section {
        padding: 100px 0;
        background: var(--secondary-bg);
    }

    .influencer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .influencer-text h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .benefits-list {
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

    .benefits-list li {
        margin-bottom: 15px;
        font-size: 18px;
        color: var(--text-secondary);
    }

    .influencer-form {
        background: var(--card-bg);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    .influencer-form h3 {
        margin-bottom: 25px;
        font-size: 28px;
    }

    .influencer-form input,
    .influencer-form select,
    .influencer-form textarea {
        width: 100%;
        padding: 14px;
        margin-bottom: 15px;
        background: var(--secondary-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-primary);
        font-family: inherit;
        font-size: 15px;
    }

    .influencer-form input:focus,
    .influencer-form select:focus,
    .influencer-form textarea:focus {
        outline: none;
        border-color: var(--accent-color);
    }


    /* E-commerce Page */
    .ecommerce-services,
    .media-offerings-section {
        padding: 80px 0;
    }

    .platform-section {
        padding: 100px 0;
        background: var(--secondary-bg);
    }

    .platform-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    /* Make any element with .grid-full span the entire grid width */
    .platform-grid .grid-full {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .platform-grid .grid-full .platform-banner-bg {
        /* Enlarge banner to fit the screen: wide and centered */
        width: 90%;
        max-width: 1100px;
        box-sizing: border-box;
        aspect-ratio: 16/4;
        height: auto;
    }

    @media (max-width: 1100px) {
        .platform-grid .grid-full .platform-banner-bg {
            max-width: 860px;
        }
    }

    @media (max-width: 900px) {
        .platform-grid .grid-full .platform-banner-bg {
            max-width: 100%;
            padding: 0 10px;
        }
    }

    .platform-card {
        background: var(--card-bg);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    .platform-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--accent-color);
    }

    .platform-card ul {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .platform-card li {
        color: var(--text-secondary);
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

    .platform-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    }

    .process-section {
        padding: 100px 0;
    }

    /* Forms */
    .contact-form-section,
    .get-started-section,
    .application-section {
        padding: 60px 0;
        background: var(--secondary-bg);
    }

    .form-container,
    .project-form-card,
    .application-form-card {
        max-width: 800px;
        margin: 0 auto;
        background: var(--card-bg);
        padding: 30px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    .form-container h2,
    .project-form-card h3,
    .application-form-card h3 {
        margin-bottom: 15px;
        font-size: 32px;
    }

    .form-container p {
        margin-bottom: 40px;
        color: var(--text-secondary);
    }

    .project-form input,
    .project-form select,
    .project-form textarea,
    .career-form input,
    .career-form select,
    .career-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        background: var(--secondary-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-primary);
        font-family: inherit;
        font-size: 15px;
    }

    .project-form input:focus,
    .project-form select:focus,
    .project-form textarea:focus,
    .career-form input:focus,
    .career-form select:focus,
    .career-form textarea:focus {
        outline: none;
        border-color: var(--accent-color);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        margin-bottom: 0;
    }

    .project-form h4,
    .career-form h4 {
        margin: 15px 0 8px;
        font-size: 17px;
        color: var(--text-primary);
    }

    .career-form h4:first-of-type {
        margin-top: 0;
    }

    .checkbox-group {
        margin: 20px 0;
    }

    .checkbox-group label {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-secondary);
        cursor: pointer;
    }

    .checkbox-group input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

    .checkbox-group a {
        color: var(--accent-color);
    }

    .file-upload {
        margin: 20px 0;
    }

    .file-upload label {
        display: block;
        margin-bottom: 10px;
        color: var(--text-primary);
        font-weight: 600;
    }

    /* Get Started Page */
    .get-started-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .get-started-info h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .info-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .info-card {
        padding: 30px 20px;
        border-radius: 12px;
        border: none;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    }

    .info-card .step-content {
        position: relative;
        z-index: 2;
    }

    .info-card .step-number {
        font-size: 56px;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.15);
        margin-bottom: 15px;
        line-height: 1;
    }

    .info-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .info-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #1a1a1a;
        font-weight: 800;
    }

    .info-card p {
        font-size: 14px;
        color: #2a2a2a;
        margin: 0;
        line-height: 1.6;
    }

    .contact-details {
        margin-top: 40px;
        padding: 30px;
        background: var(--card-bg);
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .contact-details h3 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .contact-details .contact-item {
        margin-bottom: 15px;
        color: var(--text-secondary);
    }

    /* CTA Section */
    .cta-section {
        padding: 100px 0;
        background: var(--secondary-bg);
        text-align: center;
    }

    .cta-section h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 20px;
        color: var(--text-secondary);
        margin-bottom: 40px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 0;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .faq-item {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .faq-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--text-primary);
    }

    .faq-item p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0;
    }

    /* Join Team Page */
    .why-join-section {
        padding: 100px 0;
    }

    .why-join-content {
        max-width: 100%;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;

        /* Shopify banner that sits under the platform cards and aligns with the container */
        .platform-banner {
            margin-top: 36px;
            margin-bottom: 28px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .platform-banner .container,
        .platform-banner-inner {
            width: 100%;
            max-width: 960px;
            /* constrain to a tiles-like width */
        }

        .platform-banner img {
            width: 100%;
            max-width: 960px;
            /* does not exceed tiles area */
            height: auto;
            display: block;
            border-radius: 6px;
        }

        /* Background-image based banner: use explicit heights so background-size: contain shows the image */
        .platform-banner-bg {
            width: 28%;
            max-width: 252px;
            /* align with tiles area and keep it smaller */
            margin: 0 auto;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            /* show full image scaled to fit */
            border-radius: 6px;
            aspect-ratio: 16/4;
            /* keeps the band proportional */
            height: auto;
        }

        /* Ensure noscript fallback image preserves layout when CSS is disabled */
        .platform-banner noscript img {
            display: block;
            width: 100%;
            max-width: 960px;
            height: auto;
            margin: 0 auto;
            border-radius: 6px;
        }

        /* Hide the debugging visible img now that background-image sizing is applied */
        .platform-banner-img {
            display: none;
        }

        /* Responsive banner heights */
        @media (max-width: 1100px) {
            .platform-banner-bg {
                width: 30%;
                max-width: 224px;
            }
        }

        @media (max-width: 900px) {
            .platform-banner-bg {
                width: 100%;
                max-width: 100%;
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .platform-banner-bg {
                width: 100%;
                max-width: 100%;
            }
        }

        /* Full-bleed banner that spans the viewport (kept for legacy/full-bleed sections) */
        .platform-banner-bleed {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            /* stretch full-bleed while keeping centered */
            margin-right: calc(50% - 50vw);
            overflow: hidden;
            background: #ffffff;
            /* neutral background for letterboxing */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .platform-banner-bleed img {
            width: 50vw;
            /* show at 50% of viewport width on desktop */
            max-width: 100%;
            height: auto;
            max-height: 120px;
            /* limit vertical size */
            object-fit: contain;
            /* show full image */
            display: block;
        }

        .why-shopify {
            text-align: center;
            padding: 40px 20px 10px;
        }

        .why-shopify h2 {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 18px;
        }

        .why-shopify .lead {
            max-width: 900px;
            margin: 0 auto 18px;
            color: var(--text-secondary);
            line-height: 1.9;
        }

        .why-shopify .stat {
            font-size: 16px;
            color: var(--text-primary);
        }

        @media (max-width: 1024px) {
            .platform-banner-bleed img {
                width: 70vw;
                max-height: 90px;
            }
        }

        @media (max-width: 480px) {
            .platform-banner-bleed img {
                width: 100%;
                max-height: 60px;
            }
        }
    }

    .benefit-item {
        background: var(--card-bg);
        padding: 35px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        text-align: center;
    }

    .benefit-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .benefit-item h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .benefit-item p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0;
    }

    /* Open Positions */
    .open-positions-section {
        padding: 100px 0;
        background: var(--secondary-bg);
    }

    .positions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .position-card {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .position-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .position-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

    .position-type,
    .position-location {
        background: var(--secondary-bg);
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        color: var(--text-secondary);
    }

    .position-requirements {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .position-requirements li {
        color: var(--text-secondary);
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

    .position-requirements li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
    }

    .apply-btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        color: white;
        padding: 10px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .apply-btn:hover {
        transform: translateY(-2px);
    }

    /* Application Grid */
    .application-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 30px;
    }

    .application-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .looking-for-list {
        list-style: none;
        padding: 0;
    }

    .looking-for-list li {
        margin-bottom: 8px;
        color: var(--text-secondary);
        font-size: 15px;
    }

    .process-steps {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .process-step {
        padding: 20px;
        border-radius: 12px;
        border: none;
        position: relative;
    }

    .process-step .step-content {
        position: relative;
        z-index: 1;
    }

    .process-step .step-number {
        font-size: 48px;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.15);
        margin-bottom: 10px;
        line-height: 1;
    }

    .process-step strong {
        display: block;
        font-size: 18px;
        margin-bottom: 8px;
        color: #1a1a1a;
        font-weight: 800;
    }

    .process-step p {
        font-size: 14px;
        color: #2a2a2a;
        line-height: 1.6;
        margin: 0;
    }

    /* Internships Section */
    .internships-section {
        padding: 60px 0;
        background: var(--secondary-bg);
    }

    .internship-content {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    .internship-benefits {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin: 40px 0;
    }

    .internship-item {
        background: var(--card-bg);
        padding: 30px 20px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        text-align: center;
    }

    .internship-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .internship-item p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
        font-size: 15px;
    }

    /* Responsive layout for internship benefits */
    @media (max-width: 1024px) {
        .internship-benefits {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .internship-benefits {
            grid-template-columns: 1fr;
        }
    }

    /* Media Offerings Specific */
    .ipl-advertising-section {
        padding: 100px 0;
        background: var(--secondary-bg);
    }

    .section-description {
        font-size: 18px;
        color: var(--text-secondary);
        margin-top: 20px;
    }

    .featured-plan {
        position: relative;
        border: 2px solid var(--accent-color);
    }

    .plan-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-color);
        color: white;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
    }

    .plan-btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 15px;
        transition: transform 0.3s ease;
    }

    .plan-btn:hover {
        transform: translateY(-2px);
    }

    .additional-media-section {
        padding: 100px 0;
    }

    .media-link {
        display: inline-block;
        color: var(--accent-color);
        text-decoration: none;
        margin-top: 15px;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .media-link:hover {
        transform: translateX(5px);
    }

    .why-choose-section {
        padding: 100px 0;
        background: var(--secondary-bg);
    }

    /* Additional Responsive */
    @media (max-width: 768px) {
        .page-title {
            font-size: 42px;
        }

        .influencer-content,
        .get-started-grid,
        .application-grid {
            grid-template-columns: 1fr;
        }

        .info-cards {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .positions-grid {
            grid-template-columns: 1fr;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Privacy Policy Page Styles */
    .privacy-policy-page .page-hero {
        padding: 200px 0 100px !important;
        padding-top: 200px !important;
        text-align: center;
        background: var(--primary-bg);
    }

    .privacy-policy-page .page-hero .page-title {
        font-size: 56px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.3;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        margin-bottom: 20px;
    }

    .privacy-policy-page .page-hero .page-title .gradient-text {
        color: #fbbf24;
        background: none;
        background-clip: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #fbbf24;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .privacy-policy-page .page-hero .page-subtitle {
        color: #ffffff;
        opacity: 0.9;
        font-weight: 500;
        font-size: 18px;
    }

    .privacy-content {
        padding: 80px 0 100px;
        background: var(--primary-bg);
    }

    .privacy-content .container {
        max-width: 1000px;
    }

    .content-wrapper {
        background: transparent;
        border-radius: 0;
        padding: 0;
        border: none;
    }

    .last-updated {
        color: var(--text-secondary);
        font-size: 15px;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 2px solid rgba(251, 191, 36, 0.2);
        font-weight: 500;
    }

    /* Modern Intro Section */
    .intro-section {
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(251, 191, 36, 0.03) 100%);
        padding: 30px 40px;
        border-radius: 16px;
        border-left: 4px solid #fbbf24;
        margin-bottom: 60px;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
    }

    .intro-section p {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 0;
        font-weight: 500;
    }

    /* Compact List Styling */
    .compact-list {
        list-style: none;
        padding-left: 0;
        margin: 16px 0 0;
    }

    .compact-list li {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
        padding-left: 24px;
        position: relative;
    }

    .compact-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #fbbf24;
        font-weight: 700;
        font-size: 16px;
    }

    /* Contact Highlight Section */
    .contact-highlight {
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
        padding: 40px;
        border-radius: 16px;
        border: 2px solid rgba(251, 191, 36, 0.3);
        box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15);
        margin-top: 50px;
    }

    .contact-highlight h2 {
        color: #fbbf24;
        margin-bottom: 16px;
    }

    .contact-highlight p {
        margin-bottom: 12px;
    }

    .contact-highlight .contact-details {
        background: rgba(0, 0, 0, 0.3);
        margin-top: 20px;
    }

    /* Privacy Policy Services Grid */
    .privacy-content .services-grid {
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .privacy-content .service-item {
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
        border: 1px solid rgba(251, 191, 36, 0.2);
        transition: all 0.3s ease;
    }

    .privacy-content .service-item:hover {
        transform: translateY(-5px);
        border-color: rgba(251, 191, 36, 0.4);
        box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
    }

    .privacy-content .service-item h3 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        margin: 20px 0 16px;
        letter-spacing: -0.3px;
    }

    .policy-section {
        margin-bottom: 60px;
    }

    .policy-section h2 {
        color: #ffffff;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 24px;
        margin-top: 0;
        letter-spacing: -0.5px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .policy-section h3 {
        color: #fbbf24;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 16px;
        margin-top: 30px;
        letter-spacing: -0.3px;
    }

    .policy-section p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .policy-section ul {
        color: rgba(255, 255, 255, 0.8);
        font-size: 17px;
        line-height: 1.8;
        margin: 20px 0;
        padding-left: 30px;
        list-style: none;
    }

    .policy-section ul li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 10px;
    }

    .policy-section ul li::before {
        content: "→";
        position: absolute;
        left: -20px;
        color: #fbbf24;
        font-weight: 600;
    }

    .policy-section ul li strong {
        color: #ffffff;
        font-weight: 600;
    }

    .policy-section a {
        color: #fbbf24;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .policy-section a:hover {
        color: #fcd34d;
        border-bottom-color: #fbbf24;
    }

    .contact-details {
        background: rgba(251, 191, 36, 0.05);
        padding: 30px;
        border-radius: 12px;
        margin-top: 20px;
        border-left: 4px solid #fbbf24;
    }

    .contact-details p {
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-details strong {
        color: #ffffff;
        font-weight: 600;
    }

    .contact-details a {
        color: #fbbf24;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-details a:hover {
        color: #fcd34d;
    }

    .acknowledgment {
        background: rgba(251, 191, 36, 0.08);
        padding: 30px;
        border-radius: 12px;
        border-left: 4px solid #fbbf24;
        margin-top: 50px;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
    }

    .acknowledgment p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 16px;
        margin-bottom: 0;
        font-weight: 500;
        line-height: 1.7;
    }

    /* Responsive Privacy Policy */
    @media (max-width: 768px) {
        .privacy-policy-page .page-hero .page-title {
            font-size: 40px;
        }

        .privacy-policy-page .page-hero .page-subtitle {
            font-size: 16px;
        }

        .content-wrapper {
            padding: 0;
        }

        .policy-section h2 {
            font-size: 26px;
        }

        .policy-section h3 {
            font-size: 20px;
        }

        .policy-section p,
        .policy-section ul {
            font-size: 16px;
        }

        .privacy-content {
            padding: 50px 0;
        }

        .contact-details,
        .acknowledgment {
            padding: 20px;
        }

        .intro-section {
            padding: 24px 28px;
        }

        .intro-section p {
            font-size: 16px;
        }

        .contact-highlight {
            padding: 28px 24px;
        }

        .compact-list li {
            font-size: 14px;
        }

        .privacy-content .service-item h3 {
            font-size: 18px;
        }
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 100px;
        right: 60px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        background-color: #128c7e;
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        transform: scale(1.1);
    }

    .whatsapp-float svg {
        width: 35px;
        height: 35px;
        fill: white;
    }

    @media (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 90px;
            right: 50px;
            font-size: 26px;
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
        }
    }

    /* Style all "PAARU STUDIO" and "Paaru Studio" brand text in golden yellow */
    .brand-name {
        color: #f59e0b !important;
    }

    .logo-text {
        color: #f59e0b !important;
        transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Logo text changes to white when navbar is scrolled */
    .navbar.scrolled .logo-text {
        color: white !important;
    }

    /* Apply golden yellow to any heading containing brand name */
    h1.brand-name,
    h2.brand-name,
    h3.brand-name {
        color: #f59e0b !important;
    }

    /* Performance Marketing Platform Logos */
    .platform-logos {
        display: flex;
        gap: 30px;
        margin-top: 40px;
        align-items: center;
        flex-wrap: wrap;
    }

    .platform-logos img {
        height: 60px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.9;
    }

    .platform-logos img:hover {
        transform: scale(1.05);
        opacity: 1;
    }

    @media (max-width: 768px) {
        .platform-logos {
            gap: 20px;
            margin-top: 30px;
            justify-content: flex-start;
        }

        .platform-logos img {
            height: 45px;
        }
    }

    @media (max-width: 480px) {
        .platform-logos {
            gap: 15px;
            margin-top: 25px;
        }

        .platform-logos img {
            height: 35px;
        }
    }

    /* ===================================
   PERFORMANCE MARKETING ANIMATIONS
   ================================= */

    /* Scroll-triggered fade in animations */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Fade in from left */
    .fade-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in-left.animated {
        opacity: 1;
        transform: translateX(0);
    }

    /* Fade in from right */
    .fade-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in-right.animated {
        opacity: 1;
        transform: translateX(0);
    }

    /* Fade in from bottom */
    .fade-in-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .fade-in-up.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for grid items */
    .stagger-animation>* {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .stagger-animation>*.animated {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Card hover effects */
    .card-hover {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            background 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .card-hover::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .card-hover:hover::before {
        left: 100%;
    }

    .card-hover:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2),
            0 6px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, var(--card-bg) 0%, rgba(245, 158, 11, 0.05) 100%);
    }

    /* Card lift effect for media cards */
    .card-lift {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            border-color 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .card-lift::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #f59e0b, #fbbf24);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card-lift:hover::after {
        width: 100%;
    }

    .card-lift:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 50px rgba(245, 158, 11, 0.25),
            0 8px 25px rgba(0, 0, 0, 0.4);
        border-color: rgba(245, 158, 11, 0.5);
    }

    /* Custom Corporate Icon Styling */
    .service-icon {
        font-style: normal;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
        border: 2px solid rgba(245, 158, 11, 0.3);
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .service-item:hover .service-icon::before {
        opacity: 1;
    }

    .service-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(245, 158, 11, 0);
        transition: box-shadow 0.4s ease;
    }

    .service-item:hover .service-icon::after {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
    }

    /* Icon SVG styling */
    .service-icon svg {
        width: 35px;
        height: 35px;
        fill: none;
        stroke: #f59e0b;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .service-item:hover .service-icon svg {
        stroke: #fbbf24;
        transform: scale(1.1);
    }

    /* Pulse animation for icons */
    .pulse-icon {
        animation: pulse 2s infinite;
        transform-origin: center;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.15);
            opacity: 0.8;
        }
    }

    .card-hover:hover .pulse-icon {
        animation: bounce 0.6s ease;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: scale(1) translateY(0);
        }

        25% {
            transform: scale(1.1) translateY(-10px);
        }

        50% {
            transform: scale(1) translateY(0);
        }

        75% {
            transform: scale(1.05) translateY(-5px);
        }
    }

    /* Logo bounce animation */
    .logo-bounce {
        animation: logoBounce 2s ease-in-out infinite;
    }

    @keyframes logoBounce {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-10px) scale(1.05);
        }
    }

    .logo-bounce:hover {
        animation: logoSpin 0.8s ease;
    }

    @keyframes logoSpin {
        0% {
            transform: rotate(0deg) scale(1);
        }

        50% {
            transform: rotate(180deg) scale(1.2);
        }

        100% {
            transform: rotate(360deg) scale(1);
        }
    }

    /* Gradient text shimmer effect */
    .gradient-text {
        background-size: 200% auto;
        animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
        0% {
            background-position: 0% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    /* Section header underline animation */
    .section-header .underline {
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fade-in-up.animated .underline {
        transform: scaleX(1);
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .animate-on-scroll,
        .fade-in-left,
        .fade-in-right,
        .fade-in-up,
        .stagger-animation>* {
            opacity: 1 !important;
            transform: none !important;
        }
    }

    /* Mobile animation adjustments */
    @media (max-width: 768px) {

        .card-hover:hover,
        .card-lift:hover {
            transform: translateY(-4px) scale(1.01);
        }

        .animate-on-scroll,
        .fade-in-left,
        .fade-in-right {
            transform: translateY(20px);
        }

        .fade-in-left,
        .fade-in-right {
            transform: translateY(20px);
        }
    }

    /* Hero Portfolio Grid for E-commerce Page */
    .hero-portfolio-grid img {
        border: 2px solid rgba(245, 158, 11, 0.2);
        cursor: pointer;
    }

    .hero-portfolio-grid img:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5) !important;
        border-color: rgba(245, 158, 11, 0.8);
        z-index: 10 !important;
    }

    /* Mobile responsiveness for hero portfolio grid */
    @media (max-width: 1200px) {
        .hero-portfolio-grid {
            grid-template-columns: repeat(3, 120px) !important;
            grid-template-rows: repeat(2, 120px) !important;
            gap: 10px !important;
        }

        .hero-portfolio-grid img {
            width: 120px !important;
            height: 120px !important;
        }
    }

    @media (max-width: 968px) {
        .hero-portfolio-grid {
            display: none !important;
        }

        .page-hero .container>div {
            flex-direction: column !important;
        }
    }

    @media (max-width: 768px) {
        .hero-portfolio-grid {
            display: none !important;
        }
    }

    /* Why Choose Section - Yellow Overlay Reveal Effect */
    .why-choose-reveal {
        position: relative;
        overflow: hidden;
    }

    .yellow-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fde047;
        /* Lemon yellow */
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.6s ease, visibility 0.6s ease;
        cursor: pointer;
    }

    .why-choose-reveal:hover .yellow-overlay {
        opacity: 0;
        visibility: hidden;
    }

    .overlay-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .overlay-logo {
        width: 200px;
        height: auto;
        filter: brightness(0) saturate(100%);
        /* Make logo black */
        opacity: 0.9;
    }

    .more-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .more-text span {
        font-size: 32px;
        font-weight: 700;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .arrow-down {
        animation: blink-arrow 1.5s ease-in-out infinite;
    }

    .arrow-down svg {
        color: #000;
    }

    @keyframes blink-arrow {

        0%,
        100% {
            opacity: 1;
            transform: translateY(0);
        }

        50% {
            opacity: 0.3;
            transform: translateY(10px);
        }
    }

    .reveal-content {
        position: relative;
        z-index: 5;
    }

    /* Mobile adjustments for yellow overlay */
    @media (max-width: 768px) {
        .overlay-logo {
            width: 150px;
        }

        .more-text span {
            font-size: 24px;
        }

        .arrow-down svg {
            width: 30px;
            height: 30px;
        }

        /* On mobile, tap to reveal */
        .yellow-overlay {
            cursor: pointer;
        }

        .why-choose-reveal:active .yellow-overlay {
            opacity: 0;
            visibility: hidden;
        }
    }

    /* Individual Card Reveal Effect */
    .card-reveal {
        position: relative;
        overflow: hidden;
    }

    .card-yellow-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fde047;
        /* Lemon yellow */
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        cursor: pointer;
        border-radius: 12px;
        /* Match card border radius */
    }

    .card-reveal:hover .card-yellow-overlay {
        opacity: 0;
        visibility: hidden;
    }

    .card-overlay-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }

    .card-overlay-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }

    .card-overlay-icon svg {
        width: 100%;
        height: 100%;
        stroke: #000;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .card-more-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .card-more-text span {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .card-arrow-down {
        animation: blink-card-arrow 1.5s ease-in-out infinite;
    }

    .card-arrow-down svg {
        color: #000;
    }

    @keyframes blink-card-arrow {

        0%,
        100% {
            opacity: 1;
            transform: translateY(0);
        }

        50% {
            opacity: 0.3;
            transform: translateY(8px);
        }
    }

    .card-content-layer {
        position: relative;
        z-index: 5;
    }

    /* Ensure service-item has proper positioning for overlay */
    .service-item.card-reveal {
        position: relative;
    }

    /* Mobile adjustments for card overlays */
    @media (max-width: 768px) {
        .card-overlay-icon {
            width: 70px;
            height: 70px;
        }

        .card-more-text span {
            font-size: 16px;
            letter-spacing: 1.5px;
        }

        .card-arrow-down svg {
            width: 24px;
            height: 24px;
        }

        /* Mobile tap to reveal */
        .card-reveal:active .card-yellow-overlay {
            opacity: 0;
            visibility: hidden;
        }
    }

    /* Stagger the reveal animation for multiple cards */
    .services-grid .card-reveal:nth-child(1) .card-yellow-overlay {
        animation-delay: 0s;
    }

    .services-grid .card-reveal:nth-child(2) .card-yellow-overlay {
        animation-delay: 0.1s;
    }

    .services-grid .card-reveal:nth-child(3) .card-yellow-overlay {
        animation-delay: 0.2s;
    }

    .services-grid .card-reveal:nth-child(4) .card-yellow-overlay {
        animation-delay: 0.3s;
    }

    /* Case Studies Page Styles */
    .case-studies-section {
        min-height: 60vh;
        position: relative;
        z-index: 5;
        margin-bottom: 300px;
        padding: 100px 0;
        background: transparent;
    }

    .case-studies-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 50px;
        position: relative;
        z-index: 10;
    }

    .case-study-card {
        background: var(--secondary-bg);
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
        z-index: 10;
    }

    .case-study-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(245, 158, 11, 0.2);
        z-index: 20;
    }

    .case-study-link {
        display: flex;
        flex-direction: column;
        min-height: 550px;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

    .case-study-image {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .case-study-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .case-study-card:hover .case-study-image img {
        transform: scale(1.1);
    }

    .case-study-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(245, 158, 11, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .case-study-card:hover .case-study-overlay {
        opacity: 1;
    }

    .view-case-study {
        color: #000;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .case-study-content {
        padding: 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .case-study-title {
        font-size: 28px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .case-study-description {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 20px;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .case-study-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: auto;
        padding-top: 10px;
    }

    .case-study-tags .tag {
        display: inline-block;
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Coming Soon Placeholder */
    .case-study-image.coming-soon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .placeholder-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    }

    .coming-soon-text {
        font-size: 24px;
        font-weight: 700;
        color: #f59e0b;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .case-studies-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .case-study-link {
            min-height: 480px;
        }

        .case-study-image {
            height: 200px;
        }

        .case-study-title {
            font-size: 22px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .case-study-description {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .case-study-content {
            padding: 25px 20px;
            min-height: 0;
        }

        .case-study-tags {
            padding-top: 8px;
        }

        .case-study-tags .tag {
            font-size: 11px;
            padding: 5px 10px;
        }

        .page-subtitle {
            font-size: 18px;
            line-height: 1.5;
            padding: 0 20px;
        }
    }

    /* Logo Portfolio Section - Horizontal Circular Carousel */
    .logo-portfolio-section {
        padding: 70px 0;
        background: var(--primary-bg);
        position: relative;
        overflow: hidden;
    }

    .logo-carousel {
        display: flex;
        gap: 50px;
        align-items: center;
        animation: scrollLogos 30s linear infinite;
        width: max-content;
    }

    @keyframes scrollLogos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause animation on hover */
    .logo-portfolio-section:hover .logo-carousel {
        animation-play-state: paused;
    }

    .logo-item {
        width: auto;
        height: 180px;
        overflow: hidden;
        background: transparent;
        transition: transform 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .logo-item:hover {
        transform: scale(1.1) translateY(-10px);
        z-index: 10;
    }

    .logo-item img {
        height: 100%;
        width: auto;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .logo-item:hover img {
        transform: scale(1.05);
    }

    /* Responsive adjustments for logo carousel */
    @media (max-width: 768px) {
        .logo-carousel {
            gap: 30px;
        }

        .logo-item {
            height: 140px;
        }
    }

    @media (max-width: 480px) {
        .logo-carousel {
            gap: 25px;
        }

        .logo-item {
            height: 120px;
        }
    }

    /* Fashion Photography Section */
    .fashion-section {
        padding: 70px 0;
        background: var(--primary-bg);
        position: relative;
        overflow: hidden;
    }

    .fashion-carousel {
        display: flex;
        gap: 40px;
        align-items: center;
        animation: scrollFashion 40s linear infinite;
        width: max-content;
    }

    @keyframes scrollFashion {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause animation on hover */
    .fashion-section:hover .fashion-carousel {
        animation-play-state: paused;
    }

    .fashion-item {
        width: auto;
        height: 500px;
        overflow: hidden;
        background: transparent;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .fashion-item:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        z-index: 10;
    }

    .fashion-item img {
        height: 100%;
        width: auto;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .fashion-item:hover img {
        transform: scale(1.02);
    }

    /* Responsive adjustments for fashion carousel */
    @media (max-width: 768px) {
        .fashion-carousel {
            gap: 30px;
        }

        .fashion-item {
            height: 400px;
        }
    }

    @media (max-width: 480px) {
        .fashion-carousel {
            gap: 25px;
        }

        .fashion-item {
            height: 350px;
        }
    }

    /* Graphics Section - Horizontal Carousel */
    .graphics-section {
        padding: 100px 0;
        background: var(--primary-bg);
        position: relative;
        overflow: hidden;
    }

    .graphics-carousel {
        display: flex;
        gap: 40px;
        align-items: center;
        animation: scrollGraphics 35s linear infinite;
        width: max-content;
    }

    @keyframes scrollGraphics {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause animation on hover */
    .graphics-section:hover .graphics-carousel {
        animation-play-state: paused;
    }

    .graphics-item {
        width: auto;
        height: 500px;
        overflow: hidden;
        background: transparent;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .graphics-item:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        z-index: 10;
    }

    .graphics-item img {
        height: 100%;
        width: auto;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .graphics-item:hover img {
        transform: scale(1.02);
    }

    /* Responsive adjustments for graphics carousel */
    @media (max-width: 768px) {
        .graphics-carousel {
            gap: 30px;
        }

        .graphics-item {
            height: 400px;
        }
    }

    @media (max-width: 480px) {
        .graphics-carousel {
            gap: 25px;
        }

        .graphics-item {
            height: 350px;
        }
    }