     /* CSS reset & variables */
        :root {
            --bg: #080808;
            --text: #f5f2ee;
            --accent: #c8b89a;
            --muted: #6b6560;
            --bg-white: #ffffff;
            --text-dark: #080808;
            --bg-darker: #111111;
            --bg-footer: #040404;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: default;
        }

        html {
            scroll-behavior: smooth;
        }

       

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .playfair {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
        }

        .mono {
            font-family: 'Space Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 0.25em;
        }

        /* Fixed Nav */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 28px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            mix-blend-mode: difference;
            color: #fff;
            pointer-events: none;
            /* Let clicks pass to links which have pointer-events: auto */
        }

        .nav-logo {
            font-size: 12px;
            pointer-events: auto;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            pointer-events: auto;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            font-family: 'Space Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 0.25em;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        /* Portal Hero */
        .hero-section {
            height: 600vh;
            position: relative;
            margin-top: 40px;
        }

        .hero-sticky {
            position: sticky;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background-color: #080808;
        }

        #portal-tilt-wrapper {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            perspective: 1200px;
            perspective-origin: center center;
        }

        #portal-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            will-change: transform;
            transition: transform 0.08s ease-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 48px;
            z-index: 2;
        }

        .hero-title {
            font-size: 8vw;
            line-height: 0.9;
            margin-top: 10vh;
            max-width: 80%;
            transition: opacity 0.1s;
        }

        .hero-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 11px;
            line-height: 1.5;
            transition: opacity 0.1s;
        }

        .cta-button {
            pointer-events: auto;
            display: inline-block;
            padding: 16px 32px;
            border: 1px solid #fff;
            color: #fff;
            background: transparent;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            transition: all 0.3s ease;
            opacity: 0;
            /* starts hidden */
            transform: translateY(20px);
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #fff;
            color: #000;
        }

        .cta-button.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: #fff;
            width: 0%;
            transition: width 0.1s;
            z-index: 3;
        }

        .flash-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            opacity: 0;
            pointer-events: none;
            z-index: 1;
        }

        /* Common Section Styles */
        section {
            padding: 160px 48px;
            position: relative;
            z-index: 10;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

      /* ===== BUTTON SECTION - MODERN PREMIUM DESIGN ===== */
.button-section {
    background: linear-gradient(145deg, #f5f7fc 0%, #eef2f8 100%);
    width: 100%;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

/* animated gradient overlay */
.button-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 40%, 
                rgba(59, 130, 246, 0.08) 0%, 
                rgba(249, 115, 22, 0.05) 40%,
                transparent 70%);
    animation: rotateGradient 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: rotate(5deg) scale(1.05); opacity: 1; }
}

/* floating particles */
.button-section .particle {
    position: absolute;
    background: radial-gradient(circle, rgba(230, 180, 18, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    75% { transform: translateY(20px) translateX(-10px); }
}

       /* main content container */
        .button-content {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* title section */
        .button-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .button-header .badge {
            display: inline-block;
             background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(59,130,246,0.3);
        }

        .button-header h2 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .button-header .highlight {
            background: linear-gradient(135deg, #f9d773, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .button-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 500px;
            margin: 0 auto;
        }

      .button-group{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    padding:30px 15px;
}

.glow-btn{
    position:relative;
    min-width:300px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:50px;
    background:rgba(255,255,255,0.05);
    overflow:hidden;
    transition:.4s ease;
}

.glow-btn span{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:92%;
    height:82%;
    border-radius:50px;
    background:linear-gradient(
        180deg,
        #E2C866 0%,
        #E6CD7F 50%,
        #F4A10D 100%
    );
    color:#222;
    font-size:22px;
    font-weight:600;
    box-shadow:
        inset 0 2px 6px rgba(255,255,255,.6),
        inset 0 -2px 6px rgba(0,0,0,.12);
}


.glow-btn::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(15px);
}

.glow-btn::after{
    content:"";
    position:absolute;
    width:80%;
    height:40px;
    left:10%;
    bottom:5px;
    border-radius:50%;
    background:#ffb47d;
    filter:blur(22px);
    opacity:.8;
}

.glow-btn:hover{
    transform:translateY(-3px);
}

.glow-btn:hover::after{
    opacity:1;
    filter:blur(28px);
}

@media(max-width:768px){
    .button-group{
        flex-direction:column;
    }

    .glow-btn{
        width:100%;
        max-width:350px;
        min-width:auto;
    }

    .glow-btn span{
        font-size:18px;
    }
}
         /* logo section - centered above everything */
        .logo-container {
            text-align: center;
            margin-bottom: 32px;
        }

        .logo-img {
            max-width: 250px;
            height: auto;
          
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.02);
        }

        /* optional: responsive logo size */
        @media (max-width: 640px) {
            .logo-img {
                max-width: 90px;
            }
        }
       
        /* Footer */
        footer {
            background-color: var(--bg-footer);
            padding: 100px 48px 40px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 120px;
        }

        .footer-logo h2 {
            font-size: 80px;
            line-height: 1;
            margin-bottom: 16px;
        }

        .footer-logo p {
            color: var(--muted);
            font-size: 16px;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-end;
        }

        .footer-nav a {
            color: var(--text);
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid #1f1f1f;
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            color: var(--muted);
            font-size: 12px;
        }

        @media (max-width: 768px) {
            nav {
                padding: 20px;
            }

            .nav-links {
                display: none;
            }

            .hero-overlay {
                padding: 20px;
            }

            .hero-title {
                font-size: 12vw;
                margin-top: 15vh;
                max-width: 100%;
            }

            .hero-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            section {
                padding: 80px 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-heading {
                font-size: 10vw;
            }

            .stats-row {
                flex-direction: column;
                gap: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .section-heading {
                font-size: 8vw;
            }

            .work-grid {
                grid-template-columns: 1fr;
            }

            .contact-heading {
                font-size: 10vw;
            }

            .contact-section {
                padding: 120px 20px;
            }

            .footer-top {
                flex-direction: column;
                gap: 60px;
            }

            .footer-nav {
                align-items: flex-start;
            }

            .footer-logo h2 {
                font-size: 60px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
        }

        /* buss page */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

html { scroll-behavior: smooth; }

body {
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ─── SECTION ─── */
.scene {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* subtle section bg tints */
.scene:nth-child(1) { background: #ffffff; }
.scene:nth-child(2) { background: #fdfaf6; }
.scene:nth-child(3) { background: #f7f9fd; }
.scene:nth-child(4) { background: #f9f7fc; }

/* ─── HEADING ─── */
.heading-wrap {
  text-align: center;
  z-index: 10;
  user-select: none;
  position: relative;
}

.heading-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(25px, 4vw, 53px);
  font-weight: 400;
  color: #111;
  line-height: 1.18;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease, color 0.3s;
}

.scene.visible .heading-wrap h1 {
  opacity: 1;
  transform: translateY(0);
}

/* italic accent word */
.heading-wrap h1 em {
  font-style: italic;
  font-weight: 400;
}

/* ─── CARDS ─── */
.img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  will-change: transform, opacity;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.65s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease;
}

.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* cards enter from scattered offscreen positions */
.img-card.pos-tl { top: 7%;  left: 3%;  width: 148px; height: 270px; transform: translate(-60px,-40px) rotate(-4deg); }
.img-card.pos-tr { top: 3%;  right: 2%; width: 148px; height: 270px; transform: translate(60px,-40px) rotate(3deg); }
.img-card.pos-bl { bottom: 7%; left: 12%; width: 148px; height: 270px; transform: translate(-60px,40px) rotate(-2deg); }
.img-card.pos-br { bottom: 8%; right: 12%; width: 148px; height: 270px; transform: translate(60px,40px) rotate(3deg); }
.img-card.pos-gl { top: 48%; left: 1%;  width: 148px; height: 270px; opacity: 0; transform: translate(-40px,0) rotate(-3deg); background:#f0ede8; }
.img-card.pos-gr { bottom: 5%; right: 1%; width: 148px; height: 270px; opacity: 0; transform: translate(40px,0) rotate(3deg);  background:#f0ede8; }

/* NEW CARDS - center top and center bottom */
.img-card.pos-ct { top: 12%; left: 50%; width: 140px; height: 180px; transform: translate(-50%, -60px) rotate(0deg); margin-left: 0; }
.img-card.pos-cb { bottom: 12%; left: 50%; width: 140px; height: 180px; transform: translate(-50%, 60px) rotate(0deg); margin-left: 0; }

/* cards settle into place when scene is visible */
.scene.visible .img-card.pos-tl { opacity:1; transform: rotate(-2deg); }
.scene.visible .img-card.pos-tr { opacity:1; transform: rotate(1.5deg); }
.scene.visible .img-card.pos-bl { opacity:1; transform: rotate(-1deg); }
.scene.visible .img-card.pos-br { opacity:1; transform: rotate(2deg); }
.scene.visible .img-card.pos-gl { opacity:0.45; transform: rotate(-3deg); }
.scene.visible .img-card.pos-gr { opacity:0.45; transform: rotate(3deg); }
.scene.visible .img-card.pos-ct { opacity:1; transform: translate(-50%, 0) rotate(0deg); }
.scene.visible .img-card.pos-cb { opacity:1; transform: translate(-50%, 0) rotate(0deg); }

/* heading hover → cards drift */
.scene.visible.hovered .img-card.pos-tl { transform: translate(-16px,-14px) rotate(-5deg) scale(1.05); }
.scene.visible.hovered .img-card.pos-tr { transform: translate(16px,-16px) rotate(5deg) scale(1.05); }
.scene.visible.hovered .img-card.pos-bl { transform: translate(-14px,14px) rotate(-5deg) scale(1.05); }
.scene.visible.hovered .img-card.pos-br { transform: translate(16px,14px) rotate(5deg) scale(1.05); }
.scene.visible.hovered .img-card.pos-gl { transform: translate(-20px,8px) rotate(-7deg); opacity:0.35; }
.scene.visible.hovered .img-card.pos-gr { transform: translate(20px,8px) rotate(7deg); opacity:0.35; }
.scene.visible.hovered .img-card.pos-ct { transform: translate(-50%, -12px) rotate(2deg) scale(1.05); }
.scene.visible.hovered .img-card.pos-cb { transform: translate(-50%, 12px) rotate(-2deg) scale(1.05); }

/* card hover */
.img-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.18); z-index: 20; }

/* staggered delays */
.img-card.pos-tl { transition-delay: 0s; }
.img-card.pos-tr { transition-delay: 0.08s; }
.img-card.pos-bl { transition-delay: 0.14s; }
.img-card.pos-br { transition-delay: 0.06s; }
.img-card.pos-gl { transition-delay: 0.18s; }
.img-card.pos-gr { transition-delay: 0.2s; }
.img-card.pos-ct { transition-delay: 0.1s; }
.img-card.pos-cb { transition-delay: 0.12s; }

/* ─── SCROLL INDICATOR ─── */
.scroll-hint {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transition: opacity 0.4s;
  z-index: 50;
  pointer-events: none;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-line {
  width: 1px;
  height: 36px;
  background: #aaa;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity:0.6; }
  50% { transform: scaleY(0.5); opacity:1; }
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
}

/* ─── PROGRESS DOTS ─── */
.dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.dot.active { background: #111; transform: scale(1.4); }

/* ───────── MODAL OVERLAY ───────── */
.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:9999;
    opacity:0;
    pointer-events:none;
    transition:.35s ease;
}

.modal-overlay.active{
    opacity:1;
    pointer-events:auto;
}

/* ───────── MODAL CARD ───────── */
.modal-card{
    width:min(1000px,95vw);
    max-height:90vh;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transform:translateY(20px) scale(.95);
    transition:.35s ease;
    box-shadow:0 25px 80px rgba(0,0,0,.3);
}

.modal-overlay.active .modal-card{
    transform:translateY(0) scale(1);
}

/* ───────── 2 COLUMN LAYOUT ───────── */
.modal-inner{
    display:flex;
    min-height:650px;
    position:relative;
}

/* LEFT IMAGE */
.modal-img-wrap{
    width:45%;
    background:#111;
    overflow:hidden;
}

.modal-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT CONTENT */
.modal-prompt{
    width:55%;
    padding:40px 30px;
    background:#fff;
    overflow-y:auto;
}

.modal-prompt strong{
    display:block;
    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

/* TAG WRAPPER */
#modalPromptText{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

/* SERVICE TAGS */
.service-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    background:#e8f7f1;
    color:#0d5a4d;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    border:1px solid rgba(13,90,77,.12);
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.25s ease;
}

.service-tag:hover{
    transform:translateY(-2px);
}

/* CLOSE BUTTON */
.modal-close{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:20px;
    cursor:pointer;
    z-index:100;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

/* MOBILE */
@media(max-width:768px){

    .modal-card{
        width:100%;
        max-height:95vh;
    }

    .modal-inner{
        flex-direction:column;
        min-height:auto;
    }

    .modal-img-wrap{
        width:100%;
        height:320px;
    }

    .modal-prompt{
        width:100%;
        padding:20px;
    }

    .modal-prompt strong{
        font-size:24px;
        margin-bottom:20px;
    }

    .service-tag{
        font-size:14px;
        padding:10px 16px;
    }
}
   
    /* nicer gradient background for reels section */
    .reels-section {
        background: linear-gradient(145deg, #ffffff 0%, #fcfcfa 100%);
        border-radius: 48px;
        padding: 20px 12px 28px 12px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.02);
    }
    .scroll-btn:active {
        transform: scale(0.92);
        background: #dbdad4;
    }
    iframe {
        pointer-events: auto;
    }
    .reels-slider-wrapper {
        scrollbar-color: #cccac2 #f1f0eb;
    }

         /* main container */
        .brand-showcase {
            max-width: 1400px;
            margin: 80px auto;
            padding: 70px 24px 100px 24px;
        }

        /* heading style */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-heading h2 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 600;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1E1E2F, #2D2F3E);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .section-heading .accent {
            font-weight: 500;
            color: #edea3a;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #e8cd02;
        }

        .section-heading p {
            font-size: 1rem;
            color: #5a5a6e;
            margin-top: 12px;
            font-weight: 400;
        }

    /* ===== LOGO SLIDER ===== */

.logo-slider-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 30px 0;
    margin-bottom: 90px;
    border-radius: 48px;
    border: 1px solid #f0f0ee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03),
                0 1px 2px rgba(0,0,0,0.05);
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: slideLogos 25s linear infinite;
    will-change: transform;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 150px;
    height: 80px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.logo-item img {
    display: block;
    max-height: 65px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
   
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.08);
}

.logo-item:hover img {
    filter: brightness(1.25) contrast(1.15);
}

/* Infinite Auto Slide */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.logo-slider-container:hover .logo-track {
    animation-play-state: paused;
}

/* Tablet */
@media (max-width: 768px) {
    .logo-slider-container {
        padding: 20px 0;
        border-radius: 24px;
    }

    .logo-track {
        gap: 50px;
    }

    .logo-item {
        min-width: 90px;
        height: 60px;
    }

    .logo-item img {
        max-height: 45px;
        max-width: 120px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-track {
        gap: 35px;
    }

    .logo-item {
        min-width: 70px;
        height: 50px;
    }

    .logo-item img {
        max-height: 35px;
        max-width: 90px;
    }
}
        /* ----- MAIN HEADLINE (second heading below logos) ----- */
        .main-headline {
            text-align: center;
            margin: 40px 0 70px 0;
        }
        .main-headline h3 {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 600;
            letter-spacing: -0.01em;
            background: linear-gradient(120deg, #18181b, #eab308);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1.25;
        }
        .main-headline .highlight {
            background: linear-gradient(120deg, #c2410c, #eab308);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        /* ----- INSTAGRAM REELS SLIDER (horizontal slide) ----- */
        .reels-section {
            margin-top: 30px;
            width: 100%;
        }

        .reels-header {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 28px;
            padding: 0 8px;
        }
        .reels-header h4 {
            font-size: 1.7rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .reels-header h4 span {
            background: linear-gradient(145deg, #d62976, #fa7e1e, #feda77);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .scroll-buttons {
            display: flex;
            gap: 12px;
        }
        .scroll-btn {
            background: #f1f1ef;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 60px;
            font-size: 1.6rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            color: #2c2c2c;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        .scroll-btn:hover {
            background: #e4e4df;
            transform: scale(0.96);
        }

        /* horizontal slider wrapper */
        .reels-slider-wrapper {
            width: 100%;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            border-radius: 28px;
            cursor: grab;
        }
        .reels-slider-wrapper::-webkit-scrollbar {
            height: 5px;
        }
        .reels-slider-wrapper::-webkit-scrollbar-track {
            background: #e9e9e5;
            border-radius: 10px;
        }
        .reels-slider-wrapper::-webkit-scrollbar-thumb {
            background: #b9b9b2;
            border-radius: 10px;
        }

        .reels-container {
            display: flex;
            gap: 30px;
            padding: 12px 8px 20px 8px;
            width: max-content;
        }

        /* individual reel card */
        .reel-card {
            width: 320px;
            flex-shrink: 0;
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
            transition: transform 0.25s ease, box-shadow 0.3s;
            border: 1px solid #eeede9;
        }
        .reel-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
        }

        /* instagram embed responsive */
        .reel-embed {
            aspect-ratio: 9 / 16;
            width: 100%;
            background: #faf9f5;
        }
        .reel-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
            background: #fff;
        }

        .reel-caption {
            padding: 12px 14px 16px;
            font-size: 0.85rem;
            color: #4b4b56;
            border-top: 1px solid #f3f2ed;
            background: #ffffff;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .reel-caption .ig-icon {
            font-size: 1.2rem;
        }

        .reels-slider-wrapper{
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.reels-slider-wrapper::-webkit-scrollbar{
    display:none;
}

        /* responsive */
        @media (max-width: 680px) {
            .brand-showcase {
                padding: 40px 16px 70px;
            }
            .logo-item img {
                max-height: 42px;
            }
            .logo-track {
                gap: 45px;
            }
            .reel-card {
                width: 270px;
            }
            .scroll-btn {
                width: 38px;
                height: 38px;
            }
        }

        /* subtle footer note */
        .note {
            text-align: center;
            margin-top: 65px;
            font-size: 0.75rem;
            color: #a3a3a3;
            border-top: 1px solid #ecece6;
            padding-top: 32px;
        }

              /* main container */
        .main-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

      

        /* header title */
        .page-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .page-header .badge {
            display: inline-block;
            background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .page-header .highlight {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .page-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========== ABOUT SECTION: IMAGE LEFT | CONTENT RIGHT ========== */
        .about-section {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            background: white;
            border-radius: 32px;
            margin-bottom: 60px;
            overflow: hidden;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .about-image {
            flex: 1;
            min-width: 400px;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .about-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            object-fit: cover;
        }

        .about-image img:hover {
            transform: scale(1.02);
        }

        .about-content {
            flex: 1;
            padding: 3rem 2rem 3rem 0;
            min-width: 280px;
        }

        .about-content h2 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #b45309, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .about-tag {
            display: inline-block;
            background: #fef3c7;
            color: #d97706;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: #334155;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .stats-grid {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #d97706;
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #64748b;
        }

        /* ========== CONTACT SECTION: FORM LEFT | MAP RIGHT ========== */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .contact-form {
            flex: 1;
            padding: 3rem;
            min-width: 280px;
        }

        .contact-form h2 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #b45309, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .contact-form .form-subtitle {
            color: #64748b;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #334155;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e2e8f0;
            border-radius: 16px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fafcff;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-family: inherit;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.5);
        }

        .contact-map {
            flex: 1;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            min-width: 280px;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: #e2e8f0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: 0;
            min-height: 400px;
        }

        /* fallback for map */
        .map-fallback {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            text-align: center;
            padding: 2rem;
        }

        .map-fallback span {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .map-fallback p {
            color: #92400e;
            font-weight: 500;
        }

        /* contact info row below form (optional) */
        .contact-info-row {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            padding-top: 1rem;
            border-top: 1px solid #f1f5f9;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #475569;
        }

        .contact-info-item span:first-child {
            font-size: 1.1rem;
        }

        /* responsive */
        @media (max-width: 968px) {
            body {
                padding: 1.5rem;
            }
            
            .about-section,
            .contact-section {
                flex-direction: column;
                gap: 0;
            }
            
            .about-image {
                order: 1;
                padding: 2rem;
            }
            
            .about-content {
                order: 2;
                padding: 2rem;
            }
            
            .contact-form {
                order: 1;
                padding: 2rem;
            }
            
            .contact-map {
                order: 2;
                padding: 2rem;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 640px) {
            .stats-grid {
                gap: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .about-content h2 {
                font-size: 1.5rem;
            }
            
            .contact-form h2 {
                font-size: 1.5rem;
            }
        }
        
        /* smooth animations */
        .about-section, .contact-section {
            transition: all 0.3s ease;
        }

  