 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 5px 40px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.4);
            backdrop-filter: blur(10px);
            animation: slideDown 0.8s ease;
        }
        .logo img{
            width:80px;
            height:70px;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -1px;
            color: #fff;
            animation: fadeIn 1s ease 0.2s both;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
            animation: fadeIn 1s ease 0.4s both;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: opacity 0.3s;
            position: relative;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: fadeIn 1s ease 0.6s both;
        }

        #navMenu a::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -3px;
          width: 0;
          height: 2px;
          background-color: orange;
          transition: width 0.3s ease;
        }
        
        #navMenu a:hover {
          color: rgb(219, 216, 211);
        }
        
        #navMenu a:hover::after {
          width: 100%;
        }



        .lang-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .lang-selector:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .btn {
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-primary {
            background: #FF6B00;
            color: #fff;
        }

        .btn-primary:hover {
            background: #E55F00;
            transform: translateY(-2px);
        }

        /* Hero Section */

        .hero {
           position: relative;
           overflow: hidden;
           color: white;
           text-align: center;
          
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 120px 40px 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80); 
    z-index: -1; 
}

        
        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
             
        }
        
        .bg-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

       

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 25px;
            font-size: 14px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-title {
            font-size: clamp(38px, 6vw, 60px);
            font-weight: 800;
            text-align: center;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            margin-top: 2.5rem;
        }

        .hero-title span {
            display: inline-block;
            animation: fadeInUp 1s ease both;
        }

        .hero-title span:nth-child(1) { animation-delay: 1s; }
        .hero-title span:nth-child(2) { animation-delay: 1.1s; }
        .hero-title span:nth-child(3) { animation-delay: 1.1s; }

        .hero-title .highlight {
            background: linear-gradient(135deg, #FF6B00, #FF9F4A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-left: 1.2rem;
        }

        .hero-description {
            max-width: 700px;
            text-align: center;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.6;
            color: #ffffff;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 1.3s both;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            align-items: center;
            animation: fadeInUp 1s ease 1.4s both;
        }

        .hero-cta .btn-primary {
            padding: 16px 40px;
            font-size: 16px;
        }

        .hero-network {
            margin-top: 80px;
            text-align: center;
            animation: fadeInUp 1s ease 1.5s both;
        }

        .hero-network h3 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 15px;
        }

        .hero-network p {
            font-size: clamp(20px, 3vw, 32px);
            font-weight: 700;
            line-height: 1.4;
        }

        .hero-network a {
            color: #FF6B00;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            font-size: 14px;
            font-weight: 600;
            transition: opacity 0.3s;
        }

        .hero-network a:hover {
            opacity: 0.7;
        }

        /* Background Elements */
        .bg-gradient {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.15;
            z-index: 0;
            animation: float 20s ease-in-out infinite;
        }

        .bg-gradient-1 {
            top: -200px;
            left: -200px;
            background: #FF6B00;
        }

        .bg-gradient-2 {
            bottom: -200px;
            right: -200px;
            background: #6B4FFF;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-50px, 50px) scale(0.9); }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }






/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}


/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
    header {
        padding: 8px 15px 5px;
    }

    nav {
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-toggle {
        display: flex;
        z-index: 999;
    }
    .hero-description{
        font-size: 1.1rem;
    }
    /* Animate hamburger to X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



    .nav-right {
        display: none;
    }

    .logo {
        font-size: 1.3rem;
    }


            .btn {
                width: 70%;
                text-align: center;
                font-size: 18px !important;
            }

            .hero {
                padding: 100px 20px 40px;
            }

            .hero-cta {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta .btn {
                width: 70%;
            }

            .hero-network {
                margin-top: 60px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 38px;
                
            }
            .hero-title span {
          font-size: 38px;
        }
        }

        /* Network Section */
.network-section {
  background: linear-gradient(90deg, #f2f2f5, #e8e8ec);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
  color: #222;
}

.network-subtitle {
  font-size: 16px;
  letter-spacing: 3px;
  color: #e67e22;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.network-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
}

.learn-more {
  display: inline-block;
  border: 2px solid #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background-color: #e67e22;
  color: #fff;
  border-color: #e67e22;
}

/* Marquee Container */
.marquee-container {
  overflow: hidden;
  margin-top: 60px;
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.marquee-track img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 320px;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
    .network-section{
        padding: 40px 10px ;
    }
 
  .network-title {
    font-size: 24px;
  }

  .marquee-track img {
    width: 180px;
    height: 180px;
  }
}

 /* Advertising Section */
        .advertising-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 60px;
            background: linear-gradient(135deg, #0a2e2a 0%, #1a1a1a 100%);
           
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Content */
        .content {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .content.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .content-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            display: block;
        }

        .content h2 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .content p {
            font-size: clamp(16px, 1.8vw, 18px);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 40px;
            max-width: 580px;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 48px;
            background: #FF6B00;
            color: #0a0a0a;
            font-weight: 700;
            font-size: 16px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 217, 61, 0.4);
            background: #fffdfd;
        }

        /* Right Visual */
        .visual {
            position: relative;
            height: 500px;
            opacity: 0;
            transform: translateX(100px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.2s;
        }

        .visual.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Phone Mockup */
        .phone-mockup {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Microphone Circle */
        .mic-circle {
            position: absolute;
            top: 50px;
            right: 100px;
            width: 180px;
            height: 180px;
            /* background: linear-gradient(135deg, #FFD93D, #FFC93D); */
            background-color: #FF6B00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(255, 217, 61, 0.4);
            z-index: 10;
            animation: float 3s ease-in-out infinite;
        }

        .mic-icon {
            width: 60px;
            height: 80px;
            position: relative;
        }

        .mic-icon::before {
            content: '';
            position: absolute;
            width: 35px;
            height: 50px;
            background: #0a0a0a;
            border-radius: 20px 20px 0 0;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .mic-icon::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 35px;
            border: 4px solid #0a0a0a;
            border-top: none;
            border-radius: 0 0 20px 20px;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .mic-stand {
            position: absolute;
            width: 3px;
            height: 15px;
            background: #0a0a0a;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
        }

        .mic-base {
            position: absolute;
            width: 30px;
            height: 3px;
            background: #0a0a0a;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Sound Wave */
        .sound-wave {
            position: absolute;
            width: 500px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            backdrop-filter: blur(10px);
        }

        .wave-bar {
            width: 3px;
            background: linear-gradient(to top, rgba(255, 217, 61, 0.3), rgba(255, 217, 61, 0.8));
            border-radius: 2px;
            animation: wave 1.5s ease-in-out infinite;
        }

        .wave-bar:nth-child(1) { height: 40px; animation-delay: 0s; }
        .wave-bar:nth-child(2) { height: 60px; animation-delay: 0.1s; }
        .wave-bar:nth-child(3) { height: 45px; animation-delay: 0.2s; }
        .wave-bar:nth-child(4) { height: 80px; animation-delay: 0.3s; }
        .wave-bar:nth-child(5) { height: 55px; animation-delay: 0.4s; }
        .wave-bar:nth-child(6) { height: 70px; animation-delay: 0.5s; }
        .wave-bar:nth-child(7) { height: 50px; animation-delay: 0.6s; }
        .wave-bar:nth-child(8) { height: 65px; animation-delay: 0.7s; }
        .wave-bar:nth-child(9) { height: 75px; animation-delay: 0.8s; }
        .wave-bar:nth-child(10) { height: 48px; animation-delay: 0.9s; }
        .wave-bar:nth-child(11) { height: 90px; animation-delay: 1s; }
        .wave-bar:nth-child(12) { height: 60px; animation-delay: 1.1s; }
        .wave-bar:nth-child(13) { height: 70px; animation-delay: 1.2s; }
        .wave-bar:nth-child(14) { height: 55px; animation-delay: 1.3s; }
        .wave-bar:nth-child(15) { height: 85px; animation-delay: 1.4s; }
        .wave-bar:nth-child(16) { height: 45px; animation-delay: 1.5s; }
        .wave-bar:nth-child(17) { height: 68px; animation-delay: 1.6s; }
        .wave-bar:nth-child(18) { height: 72px; animation-delay: 1.7s; }
        .wave-bar:nth-child(19) { height: 58px; animation-delay: 1.8s; }
        .wave-bar:nth-child(20) { height: 65px; animation-delay: 1.9s; }

        @keyframes wave {
            0%, 100% {
                transform: scaleY(1);
            }
            50% {
                transform: scaleY(1.5);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Hand Image Placeholder */
        .hand-visual {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.5;
        }

        
        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 15s ease-in-out infinite;
        }

        .bg-orb-1 {
            width: 400px;
            height: 400px;
            background: #FFD93D;
            top: -100px;
            left: -100px;
        }

        .bg-orb-2 {
            width: 300px;
            height: 300px;
            background: #6B4FFF;
            bottom: -100px;
            right: 100px;
            animation-delay: -7s;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                gap: 60px;
            }

            .sound-wave {
                width: 400px;
                height: 250px;
            }

            .mic-circle {
                width: 150px;
                height: 150px;
                right: 80px;
            }
        }

        @media (max-width: 768px) {
            .advertising-section {
                padding: 20px 20px;
                padding-bottom: 0% !important;
            }

            .container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .content h2 {
                font-size: 36px;
            }

            .visual {
                height: 400px;
            }

            .sound-wave {
                width: 100%;
                max-width: 350px;
                height: 200px;
                padding: 30px 20px;
            }

            .mic-circle {
                width: 120px;
                height: 120px;
                top: 20px;
                right: 20px;
            }

            .mic-icon {
                width: 45px;
                height: 60px;
            }

            .mic-icon::before {
                width: 28px;
                height: 40px;
            }

            .mic-icon::after {
                width: 32px;
                height: 28px;
            }

            .wave-bar {
                width: 2px;
            }

            .hand-visual {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .advertising-section {
                padding: 60px 20px;
            }

            .content h2 {
                font-size: 28px;
            }

            .cta-button {
                padding: 14px 36px;
                font-size: 18px;
                max-width: 55% !important;
            }
        }

              /* Studio Space Section */
        .studio-section {
            padding: 80px 60px;
            background: #ffffff;
            position: relative;
        }

        .studio-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        /* Left Column - Header + Large Image */
        .left-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Header Content */
        .studio-header {
            opacity: 0;
            transform: translateX(-80px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .studio-header.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .studio-header h2 {
            font-size: clamp(32px, 4vw, 56px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            color: #000000;
        }

        .studio-header p {
            font-size: clamp(15px, 1.5vw, 18px);
            line-height: 1.6;
            color: #333333;
            font-weight: 400;
            max-width: 600px;
        }

        /* Image Cards */
        .studio-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.85) translateY(40px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .studio-image.animate {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .studio-image.large {
            height: 500px;
            transition-delay: 0.15s;
        }

        .studio-image.small {
            height: 340px;
        }

        .studio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .studio-image:hover img {
            transform: scale(1.08);
        }

        /* Right Column - Two Images Stacked */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .right-column .studio-image:nth-child(1) {
            transition-delay: 0.3s;
        }

        .right-column .studio-image:nth-child(2) {
            transition-delay: 0.45s;
        }

       /* Floating Buttons Container */
        .floating-actions {
          position: fixed;
          bottom: 20px;
          right: 15px;
          display: flex;
          flex-direction: column;
          gap: 12px;
          z-index: 1000;
        }

        /* Common Button Style */
        .fab-button {
          width: 45px;
          height: 45px;
          border-radius: 50%;
          border: none;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 20px;
          color: #fff;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        }

        /* Scroll-to-top button */
        .fab-top {
          background-color: #111;
        }

        /* WhatsApp button */
        .fab-whatsapp {
          background-color: #25d366;
        }

        /* Hover effects */
        .fab-button:hover {
          transform: scale(1.1);
          opacity: 0.9;
        }

        /* Make visible on all devices */
        @media (max-width: 768px) {
          .fab-button {
            width: 45px;
            height: 45px;
            font-size: 18px;
          }
        }


        /* Image Overlay on Hover */
        .studio-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .studio-image:hover::after {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .studio-section {
                padding: 60px 40px;
            }

            .studio-container {
                gap: 24px;
            }

            .left-column,
            .right-column {
                gap: 24px;
            }

            .studio-image.large {
                height: 500px;
            }

            .studio-image.small {
                height: 300px;
            }
        }

        @media (max-width: 968px) {
            .studio-section {
                padding: 50px 30px;
            }

            .studio-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .studio-header h2 {
                font-size: 38px;
            }

            .studio-header p {
                font-size: 16px;
            }

            .studio-image.large {
                height: 450px;
            }

            .studio-image.small {
                height: 280px;
            }

            .left-column,
            .right-column {
                gap: 20px;
            }

           
        }

        @media (max-width: 640px) {
            .studio-section {
                padding: 40px 20px;
            }

            .studio-container {
                gap: 20px;
            }

            .studio-header {
                margin-bottom: 10px;
            }

            .studio-header h2 {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .studio-header p {
                font-size: 14px;
                line-height: 1.5;
            }

            .studio-image {
                border-radius: 18px;
            }

            .studio-image.large {
                height: 320px;
            }

            .studio-image.small {
                height: 240px;
            }

            .left-column,
            .right-column {
                gap: 16px;
            }

        }

        @media (max-width: 480px) {
            .studio-header h2 {
                font-size: 24px;
            }

            .studio-image.large {
                height: 280px;
            }

            .studio-image.small {
                height: 220px;
            }
        }



        /* Section Styling */
        .furniture-section {
          text-align: center;
          padding: 10px 20px 80px;
          background: #fff;
        
          color: #000;
        }

        .section-title {
          font-size: 2.5rem;
          font-weight: 800;
          text-transform: uppercase;
          letter-spacing: 2px;
          line-height: 1.4;
          margin-bottom: 60px;
        }

        /* Container */
        .furniture-container {
          display: flex;
          justify-content: center;
          align-items: flex-start;
          flex-wrap: wrap;
          gap: 60px;
        }

        /* Image + Text Block */
        .furniture-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          animation: fadeInUp 1s ease both;
        }

        .furniture-item img {
          width: 600px;
          max-width: 100%;
          border-radius: 25px;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .furniture-item:hover img {
          transform: scale(1.05);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        /* Text Under Image */
        .item-text {
          margin-top: 15px;
          font-size: 1.5rem;
          font-weight: 700;
          font-style: italic;
          color: #000;
        }

        /* Fade-in Animation */
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(20px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* Responsive */
        @media (max-width: 1024px) {
          .furniture-item img {
            width: 450px;
          }
      
          .section-title {
            font-size: 2rem;
          }
        }

        @media (max-width: 768px) {
          .furniture-container {
            flex-direction: column;
            gap: 40px;
          }
      
          .furniture-item img {
            width: 90%;
          }
      
          .item-text {
            font-size: 1.3rem;
          }
      
          .section-title {
            font-size: 1.8rem;
          }
        }



/* ---- Section styles (namespace: sbf-) ---- */
    .sbf-section { padding: 0px 0px 20px; background: #fff; margin-top: -40px; }
    .sbf-grid {
      max-width: 1360px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      grid-template-areas:
        "left right"
        "bottom bottom";
      gap: 48px;
      align-items: start;
      justify-items: center;
    }

    .sbf-card {
      width: 100%;
      max-width: 440px;
      text-align: center;
      border-radius: 18px;
      overflow: visible;
      transform: translateY(30px);
      opacity: 0;
      transition: transform .7s cubic-bezier(.2,.9,.2,1), opacity .7s ease;
    }

    .sbf-card img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
      transition: transform .45s ease, box-shadow .45s ease;
    }

    .sbf-card:hover img { transform: scale(1.03); box-shadow: 0 20px 40px rgba(0,0,0,0.16); }

    .sbf-card figcaption {
      margin-top: 18px;
      font-size: 1.25rem;
      font-weight: 700;
      font-style: italic;
      color: #111;
    }

    /* grid area assignment */
    .sbf-left  { grid-area: left; margin-right: 140px; }
    .sbf-right { grid-area: right; margin-left: 140px; }
    .sbf-bottom { grid-area: bottom; max-width: 420px; margin-top: -90px; }

    /* Entrance animation classes (applied by JS) */
    .sbf-show { opacity: 1; transform: translateY(0); }

    .sbf-left.sbf-show  { animation: sbf-slide-in-left 0.8s both; }
    .sbf-right.sbf-show { animation: sbf-slide-in-right 0.8s both; }
    .sbf-bottom.sbf-show{ animation: sbf-slide-in-up 0.8s both; }

    @keyframes sbf-slide-in-left {
      from { transform: translateX(-80px); opacity: 0; }
      to   { transform: translateX(0); opacity: 1; }
    }
    @keyframes sbf-slide-in-right {
      from { transform: translateX(80px); opacity: 0; }
      to   { transform: translateX(0); opacity: 1; }
    }
    @keyframes sbf-slide-in-up {
      from { transform: translateY(80px); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .sbf-grid { gap: 30px; }
      .sbf-card { max-width: 480px; }
    }

    @media (max-width: 700px) {
      /* stack vertically on small screens */
      .sbf-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          "left"
          "right"
          "bottom";
        gap: 28px;
      }
      .sbf-card { max-width: 92%; }
      .sbf-bottom { max-width: 92%; margin-top: 0px; }
      .sbf-left,.sbf-right{
        margin: 0%;

      }
    }

   /* reviews */
    
        .testimonial-section {
            padding: 60px 40px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

    
        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.02;
            background-image: radial-gradient(circle, #FF6B00 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .testimonial-header {
            text-align: center;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .testimonial-header.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #FF6B00;
            margin-bottom: 20px;
            padding: 8px 20px;
            background: rgba(255, 107, 0, 0.08);
            border-radius: 25px;
            border: 1px solid rgba(255, 107, 0, 0.2);
        }

        .testimonial-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            color: #1a1a1a;
        }

        .testimonial-header p {
            font-size: clamp(16px, 1.8vw, 20px);
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: #ffffff;
            border: 2px solid #f0f0f0;
            border-radius: 24px;
            padding: 40px;
            position: relative;
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .testimonial-card.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
        .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
        .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

        .testimonial-card:hover {
            border-color: #FF6B00;
            box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
            transform: translateY(-8px) scale(1);
        }

        /* Quote Icon */
        .quote-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #FF6B00, #FF8C3A);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
        }

        .quote-icon::before {
            content: '"';
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
        }

        /* Rating Stars */
        .rating {
            display: flex;
            gap: 6px;
            margin-bottom: 20px;
        }

        .star {
            width: 20px;
            height: 20px;
            position: relative;
        }

        .star svg {
            width: 100%;
            height: 100%;
            fill: #FF6B00;
            filter: drop-shadow(0 2px 4px rgba(255, 107, 0, 0.2));
        }

        /* Testimonial Text */
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: #333333;
            margin-bottom: 30px;
            font-style: italic;
        }

        /* Author Info */
        .author-info {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 24px;
            border-top: 2px solid #f5f5f5;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B00, #FF8C3A);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .author-details h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #1a1a1a;
        }

        .author-details p {
            font-size: 14px;
            color: #666666;
        }

        /* CTA Section */
        .testimonial-cta {
            text-align: center;
            margin-top: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.4s;
        }

        .testimonial-cta.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-button {
            display: inline-block;
            padding: 18px 48px;
            background: linear-gradient(135deg, #FF6B00, #FF8C3A);
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
            background: linear-gradient(135deg, #FF8C3A, #FF6B00);
        }

        .cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* Decorative Elements */
        .decor-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.08;
            z-index: 0;
            pointer-events: none;
            animation: float 20s ease-in-out infinite;
        }

        .decor-orb-1 {
            width: 500px;
            height: 500px;
            background: #FF6B00;
            top: -200px;
            right: -200px;
        }

        .decor-orb-2 {
            width: 400px;
            height: 400px;
            background: #FF8C3A;
            bottom: -150px;
            left: -150px;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-50px, 50px) scale(0.9);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .testimonial-section {
                padding: 100px 30px;
            }

            .testimonial-header {
                margin-bottom: 60px;
            }

            .testimonials-grid {
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 80px 20px;
            }

            .testimonial-header h2 {
                font-size: 32px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 32px 24px;
            }

            .testimonial-text {
                font-size: 15px;
            }

            .cta-button {
                padding: 16px 40px;
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-section {
                padding: 60px 16px;
            }

            .testimonial-header h2 {
                font-size: 28px;
            }

            .testimonial-card {
                padding: 28px 20px;
            }

            .quote-icon {
                width: 40px;
                height: 40px;
            }

            .quote-icon::before {
                font-size: 28px;
            }

            .author-avatar {
                width: 48px;
                height: 48px;
            }

            .author-details h4 {
                font-size: 16px;
            }
        }
        
        /* footer */

:root{
--bg:#07060a; /* very dark */
--panel:#0f0e13;
--muted:#b8c0cc;
--accent:#f08a2b; /* soft cyan */
}
.genie-footer{background:linear-gradient(180deg,var(--bg),#070611);color:var(--muted);padding:28px 18px;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
.genie-footer a{color:var(--muted);text-decoration:none}
.genie-footer .footer-top{display:block;gap:20px;}


/* Brand */
.genie-footer .brand{margin-bottom:18px}
.genie-footer .logo{font-weight:700;font-size:20px;color:#fff;letter-spacing:0.2px}
.genie-footer .logo span{font-weight:600;color:var(--accent)}
.genie-footer .tag{margin-top:8px;font-size:13px;color:var(--muted);line-height:1.45}
.genie-footer .cta{display:inline-block;margin-top:12px;padding:10px 14px;border-radius:10px;background:linear-gradient(90deg,rgba(125,211,252,0.12),rgba(125,211,252,0.06));color:var(--accent);font-weight:600}


/* Links grid */
.genie-footer .links{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.genie-footer .col h3{font-size:14px;color:#fff;margin-bottom:8px}
.genie-footer .col ul{list-style:none;padding:0;margin:0}
.genie-footer .col ul li{margin:6px 0}
.genie-footer .col ul li a{font-size:14px}


.contact-col address{font-style:normal;font-size:14px;line-height:1.45}


.social{display:flex;gap:10px;margin-top:12px}
.icon{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:8px;background:rgba(255,255,255,0.02)}
.icon svg{display:block}


.footer-bottom{display:flex;flex-direction:column;gap:10px;margin-top:20px;border-top:1px solid rgba(255,255,255,0.04);padding-top:14px;align-items:center}
.footer-bottom .small{font-size:13px;color:var(--muted)}
.footer-bottom .legal{display:flex;gap:12px}
.footer-bottom .legal a{font-size:13px;color:var(--muted)}


/* Mobile-first adjustments */
@media (min-width:720px){
.genie-footer{padding:44px}
.genie-footer .footer-top{display:flex;align-items:flex-start;justify-content:space-between}
.genie-footer .brand{flex:1;max-width:320px;margin-right:24px}
.genie-footer .links{grid-template-columns:repeat(3,1fr);flex:1}
.footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}


/* Utility: screen-reader only */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

  