    /* --- CSS RESET & BASE VARIABLES --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    html {
      scroll-behavior: smooth; /* Enables smooth scrolling for nav links */
    }

    body {
      background-color: #ffd014; /* Exact vibrant yellow */
      color: #111;
      overflow-x: hidden;
    }

    /* --- NAVBAR --- */
    .navbar {
      display: flex;
      justify-content: space-between;
      padding: 25px 60px;
      align-items: center;
      position: sticky;
      top: 0;
      background-color: rgba(255, 208, 20, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .logo img {
      width: 65px;
      display: block;
    }

    .logo span {
      color: black;
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      gap: 35px;
    }

    .nav-links a {
      text-decoration: none;
      color: #111;
      font-size: 15px;
      font-weight: 600;
      position: relative;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #000;
      opacity: 0.7;
    }

    /* --- COMMON SECTION STYLES --- */
    .section {
      padding: 100px 10%;
      text-align: center;
    }
    
    .section-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }

    .section-subtitle {
      font-size: 18px;
      color: #333;
      margin-bottom: 50px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .bg-white { background-color: #ffffff; }
    .bg-dark { background-color: #111111; color: #ffffff; }
    .bg-dark .section-subtitle { color: #aaaaaa; }

    /* --- HERO SECTION --- */
    .hero-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 10% 100px;
      min-height: 80vh;
    }

    .hero-content {
      flex: 1;
      padding-right: 50px;
    }

    .hero-content h1 {
      font-size: 54px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 25px;
      color: #111;
    }

    .hero-content p {
      font-size: 18px;
      line-height: 1.6;
      color: #222;
      margin-bottom: 40px;
      max-width: 600px;
    }

    /* The outer frame with the border */
    .image-frame {
      display: inline-block; 
      border-radius: 20px; /* Keeps the outer corners rounded */
      box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Makes the image "pop" off the background */
      overflow: hidden; /* Ensures the image doesn't spill out of the rounded corners */
    }

    /* The actual image inside the frame */
    .image-frame img {
      width: 100%;
      max-width: 500px;
      height: auto;
      display: block;
      border-radius: 20px; /* Matches the frame's rounded corners */
      display: block;
    }

    .cta-button {
      display: inline-block;
      background-color: #111;
      color: #ffd014;
      padding: 18px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
      border: none;
      cursor: pointer;
    }

    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    }

    .bg-dark .cta-button {
      background-color: #ffd014;
      color: #111;
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-placeholder {
      width: 100%;
      max-width: 500px;
      height: 450px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      color: #111;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* --- PREMIUM CAROUSEL (Clients) --- */
    .carousel-wrapper {
      position: relative;
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel {
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
      touch-action: pan-y pinch-zoom; 
    }

    .track {
      display: flex;
      gap: 20px;
      width: max-content;
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .card {
      width: 240px;
      height: 220px;
      background: #ffffff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      border: 1px solid transparent;
    }

    .card:hover, .card.active {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
      border: 1px solid #ff7b00;
    }

    .card img {
      max-width: 75%;
      max-height: 50%;
      object-fit: contain;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 10;
      font-size: 24px;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
      user-select: none;
    }

    .arrow:hover {
      background: rgba(0, 0, 0, 0.7);
      transform: translateY(-50%) scale(1.1);
    }

    .left { left: 10px; }
    .right { right: 10px; }

    /* --- GRID LAYOUTS (Approach, Influencers, Testimonials) --- */
    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .info-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(0,0,0,0.1);
      padding: 40px 30px;
      border-radius: 15px;
      text-align: left;
      transition: transform 0.3s ease;
    }
    
    .bg-dark .info-card {
      border: 1px solid rgba(255,255,255,0.1);
    }

    .info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .info-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
    }

    /* --- ABOUT US --- */
    .about-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.8;
      color: #333;
    }

    /* --- CONTACT FORM --- */
    /* --- CONTACT FORM & SUCCESS MESSAGE --- */
    .contact-form {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: flex;
      gap: 20px;
    }

    .contact-form input, .contact-form textarea, .custom-select {
      width: 100%;
      padding: 18px;
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 10px;
      font-size: 16px;
      background: #ffffff;
      transition: border-color 0.3s;
      font-family: inherit;
      color: #333;
    }

    .contact-form input:focus, .contact-form textarea:focus, .custom-select:focus {
      outline: none;
      border-color: #111;
    }

    /* Phone Input Group Layout - Optimized for Long Names */
    .phone-input-group {
      display: flex;
      gap: 10px;
      width: 100%;
    }

    .phone-input-group .country-code {
      width: 55%; /* Increased width to fit full names */
      padding: 18px 35px 18px 12px; /* Balanced padding */
      font-size: 14px; /* Slightly smaller font to ensure long names fit */
      white-space: nowrap;
      overflow: visible; /* Allows the full name to be seen */
      text-overflow: clip; /* Removes the "..." dots */
    }

    .phone-input-group input[type="tel"] {
      width: 45%; /* Adjusted to match */
    }
    
    /* Mobile fix for phone group */
    @media(max-width: 768px) {
      .phone-input-group {
        width: 100%;
      }
    }

    .custom-select {
      cursor: pointer;
      appearance: none; 
      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
      background-repeat: no-repeat;
      background-position: right 20px top 50%;
      background-size: 12px auto;
    }

    /* Premium Thank You Message Box */
    .success-message {
      display: none;
      background: #111;
      color: #ffd014;
      padding: 40px;
      border-radius: 15px;
      margin: 0 auto;
      max-width: 700px;
      font-weight: 600;
      font-size: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* --- FOOTER --- */
    .footer {
      background-color: #111;
      color: #fff;
      padding: 60px 10% 30px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .footer-logo img {
      width: 55px;
      background-color: #ffffff; /* Adds a clean white box behind it */
      padding: 6px; /* Gives the logo some breathing room */
      border-radius: 10px; /* Smooth, premium rounded corners */
      box-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Soft shadow */
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin-left: 20px;
      font-weight: 500;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #ffd014;
    }

    .footer-bottom {
      text-align: center;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media(max-width: 900px) {
        /* 1. Tighten up the spacing for small screens */
        .section, .hero-container, .footer {
          padding: 40px 5%; 
        }
        
        /* 2. Stack the Hero Section vertically */
        .hero-container {
          flex-direction: column;
          text-align: center;
        }
        
        .hero-content {
          padding-right: 0;
          margin-bottom: 40px;
        }
  
        /* 3. Shrink massive text so it fits the phone screen nicely */
        .hero-content h1 {
          font-size: 38px; /* Shrunk down from 54px */
        }
        
        .section-title {
          font-size: 32px; /* Shrunk down from 42px */
        }
  
        /* 4. Fix Navbar for mobile */
        .navbar {
          flex-direction: column;
          padding: 15px;
          gap: 15px;
        }
        
        .nav-links {
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px;
        }
  
        /* 5. Ensure the new Image Frame fits perfectly */
        .hero-image {
          width: 100%;
        }
        
        .image-frame img {
          max-width: 100%; /* Ensures the image never overflows the screen width */
        }
  
        /* 6. Stack contact form side-by-side inputs on top of each other */
        .form-row {
          flex-direction: column;
          gap: 20px; 
        }
        
        /* 7. Center align the footer */
        .footer-content {
          flex-direction: column;
          text-align: center;
          gap: 30px;
        }
        
        .footer-logo {
          justify-content: center;
        }
        
        .footer-links {
          display: flex;
          flex-direction: column;
          gap: 15px;
        }
        
        .footer-links a {
          margin-left: 0;
        }
      }