@keyframes gradientAnimation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

html {
    scroll-behavior: smooth;
}

body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: #4E3A02;
      position: relative;
      overflow-x: hidden;
    }

    /* Animated gradient background */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(-45deg, #e1d7bc, #ece4c8, #f6eeda, #f3e0de); */
      background: linear-gradient(-45deg, #f9eac3, #ece4c8, #f1fff0, #dee6f3);
      background-size: 400% 400%;
      animation: gradientAnimation 15s ease infinite; 
      z-index: -2;
    }


    /* Static gradient background for improved performance */
    /* body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(-45deg, #d3f3f6, #fdffea, #f7e9cc, #c9dade);
      background-size: 200% 200%;
      background-position: center;
      z-index: -2;
    } */



    /* Grid pattern overlay */
    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.462) 1.5px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.462) 1.5px, transparent 1px);
      background-size: 80px 80px;
      z-index: -2;
      pointer-events: none;
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
    }

    .whatsapp-float:hover {
      background-color: #20ba5a;
      transform: scale(1.1);
      box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.4);
    }

    .whatsapp-float:active {
      transform: scale(0.95);
    }

    /* WhatsApp Icon */
    .whatsapp-icon {
      width: 35px;
      height: 35px;
      filter: brightness(0) invert(1); /* Make the green SVG white */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
      }
      
      .whatsapp-icon {
        width: 30px;
        height: 30px;
      }
    }

    @media (max-width: 480px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
      }
      
      .whatsapp-icon {
        width: 26px;
        height: 26px;
      }
    }

    .floating-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        width: 95%;
        max-width:  auto;
        margin: 0 auto;
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    @media (max-width: 768px) {
        .floating-navbar {
            width: 100%;
            max-width: 100%;
            padding: 15px 0;
        }
    }
    
    .floating-navbar::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background-color: rgba(30, 34, 50);
        z-index: 1000;
        border-radius: 0 0 20px 20px;
        transform: translateY(-10px);
        transition: height 0.3s ease; /* Add transition for smooth height change */
    }

    /* Add style for extended navbar background when menu is active */
    .floating-navbar.menu-active::before {
        height: 70vh; /* Full height of viewport */
        border-radius: 10px; /* Remove border radius when extended */
        z-index: 900;
    }

    .floating-navbar.visible {
        transform: translateY(0);
    }

    .floating-navbar .logo {
        margin-left: 5%;
    }

    .floating-navbar .logo img {
        height: 60px;
        filter: brightness(0) invert(1);
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1002;
    }

    .floating-navbar nav {
        display: flex;
        gap: 40px;
        align-items: center;
        margin-right: 5%;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        letter-spacing: 3px;
        z-index: 1002;
        position: relative;
    }

    .floating-navbar a {
        text-decoration: none;
        color: #f3ebdd;
        font-weight: 500;
        transition: opacity 0.3s ease;
        position: relative;
        z-index: 1002;
    }

    .floating-navbar a:hover {
        opacity: 0.8;
    }

    .floating-navbar a[href="#contact"],
    .floating-navbar a[href="/#contact"] {
        padding: 4px 8px;
        border: 1px solid #f3ebdd;
        border-radius: 4px;
    }

    /* Floating Menu Overlay Styles */
    .floating-menu-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: rgba(31, 35, 53, 0.95);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 990;
    }

    .floating-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        
    }

    .floating-menu-overlay .menu-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 120px 40px 40px;
        height: 100%;
        

    }

    .floating-menu-overlay .menu-items {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: flex-end;
        margin-top: 30px;
        margin-right: 5%;
        text-align: right;
    }

    .floating-menu-overlay .menu-items a {
        color: #f3ebdd;
        text-decoration: none;
        font-size: 2rem;
        font-family: 'Lucida Sans Unicode', sans-serif;
        transition: opacity 0.3s;
    }

    .floating-menu-overlay .menu-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .floating-menu-overlay .menu-group .menu-group-header {
        color: #f3ebdd;
        font-size: 2rem;
        font-family: 'Lucida Sans Unicode', sans-serif;
        margin-bottom: 10px;
        text-decoration: none;
        cursor: pointer;
    }

    .floating-menu-overlay .menu-group a:not(.menu-group-header) {
        font-size: 1.5rem;
        margin-left: 20px;
        opacity: 0.8;
    }

    .floating-menu-overlay .menu-items a:hover,
    .floating-menu-overlay .menu-group a:hover {
        opacity: 0.8;
    }
    header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 0;
      z-index: 1002;
      width: 90%;
      margin: 0 auto;
      max-width: auto;
    }
    .logo img {
      height: clamp(90px, 10vw, 100px);
      filter: brightness(0) invert(1);
      transition: transform 0.3s ease;
      position: relative;
      z-index: 1002;
      padding: 0 50px;
    }
    .logo img:hover {
      transform: scale(1.05);
    }
    nav {
      display: flex;
      gap: 40px;
      align-items: center;
      padding: 0 50px;
    }
    
    header a {
      text-decoration: none;
      color: #f3ebdd;
      font-weight: 500;
      transition: opacity 0.3s ease;
      position: relative;
      z-index: 1002;
    }
    
    header a:hover {
      opacity: 0.8;
    }

    header a[href="#contact"] {
      padding: 4px 8px;
      border: 1px solid #f3ebdd;
      border-radius: 4px;
    }

    /* Hamburger Menu Styles */
    .menu-toggle {
      background: none;
      border: none;
      padding: 0;
      width: 30px;
      height: 24px;
      position: relative;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 1002;
    }

    .menu-line {
      width: 100%;
      height: 2px;
      background-color: #f3ebdd;
      transition: opacity 0.3s;
    }

    /* Menu Overlay Styles */
    .menu-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(31, 35, 53, 0.3);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 990;
      border-radius: 30px; /* Match hero border-radius */
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Ensure header stays above overlay */
    header {
      position: relative;
      z-index: 1002;
    }

    .menu-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 40px 40px;
      height: 100%;
    }

    .menu-items {
      display: flex;
      flex-direction: column;
      gap: 30px;
      /* text-align: right; */
      align-items: flex-end;
      margin-top: 100px;
      margin-right: 5%;
      text-align: right;
    }

    .menu-items a {
      color: #f3ebdd;
      text-decoration: none;
      font-size: clamp(1.2rem, 4vw, 2rem);
      font-family: 'Lucida Sans Unicode', sans-serif;
      transition: opacity 0.3s;
    }

    .menu-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .menu-group .menu-group-header {
      color: #f3ebdd;
      font-size: 2rem;
      font-family: 'Lucida Sans Unicode', sans-serif;
      margin-bottom: 10px;
      text-decoration: none;
      cursor: pointer;
    }

    .menu-group a:not(.menu-group-header) {
      font-size: 1.5rem;
      margin-left: 20px;
      opacity: 0.8;
    }

    .menu-items a:hover,
    .menu-group a:hover {
      opacity: 0.8;
    }
    .hero {
      position: relative;
      height: 80vh;
      background: url(../images/Hero-temp.jpg) center/cover no-repeat;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 60px 0;
      border-radius: 30px;
      overflow: hidden;
      max-width: 95%;
      margin: 20px auto;
      transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      isolation: isolate; /* Creates a new stacking context */
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, 
          rgba(31, 35, 53, 0.85) 0%,
          rgba(31, 35, 53, 0.75) 30%,
          rgba(31, 35, 53, 0.6) 60%,
          rgba(31, 35, 53, 0.3) 100%);
      z-index: 0;
    }

    .hero header {
      position: relative;
      z-index: 1002;
    }

    
    
    @media (max-width: 768px) {
      .hero {
        height: 100vh;
        padding: 0;
        margin: 0;
        border-radius: 0;
        max-width: none;
      }
      
      header {
        padding: 20px 5%;
        width: 90%;
      }

      nav {
        gap: 10px;
        padding: 0 5px;
      }

      .logo img {
        height: 80px;
        padding: 0 10px;
      }

      .hero-content > div:first-child {
        margin-left: 5%;
        margin-top: 40%;
      }

      .hero .description {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px 5%;
        width: 90%;
        text-align: left;
      }
    }
    
    /* Hide description when screen is minimized further */
    @media (max-width: 768px) {
      .hero .description {
        display: none;
      }       
    }

    

    .nav-format {
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      letter-spacing: 3px;
      
    }
    
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 0;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: auto;
      width: 90%;
      height: 100%;
      margin: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #f3ebdd;
      /* flex: 1;
      display: flex; */
    }
    
    .hero-content > div:first-child {
      align-self: flex-start;
      margin-left: 5%;
    }
    
    .hero .description {
      position: absolute;
      bottom: 60px;
      right: 0;
      margin-right: 5%;
      max-width: 400px;
      text-align: right;
      /* margin: 0; */
      /* padding: 20px; */
    }
    
    .hero h1 {
      font-size: clamp(4rem, 6vw, 5rem);
      margin: 0;
      font-family: 'Lucida Sans Unicode', serif;
      font-weight: 300;
      letter-spacing: 5px;
      color: #f3ebdd;
    }
    .hero p.tagline {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-family: 'Lucida Sans Unicode', serif;
      margin: 1px 0 0 0;
      letter-spacing: 5px;
      color: #f3ebdd;
    }
    .hero p.description {
      max-width: clamp(300px, 30vw, 400px);
      font-size: clamp(0.8rem, 2.5vw, 1.4rem);
      line-height: 1.6;
      font-family: 'Lucida Sans Unicode', serif;
      letter-spacing: 2px;
      color: #f3ebdd;
    }

    section {
      padding: 20px 40px; /* Significantly reduced top/bottom padding */
      max-width: 95%;
      margin: auto;
    }
    
    #what-we-do {
      position: relative;
      padding-bottom: 0; /* Remove bottom padding */
      margin-bottom: 0; /* Remove bottom margin */
    }

    #what-we-do h2 {
      position: relative;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      color: #4E3A02;
      font-family: 'Lucida Sans Unicode', sans-serif;
      letter-spacing: 2px;
      font-weight: lighter;
    }

    #what-we-do h2::after {
      content: "";
      flex-grow: 1;
      height: 1.3px;
      background-color: #4E3A02;
    }

    .content-wrapper {
      position: relative;
      width: 100%;
      height: 320px; /* Further reduced height */
      margin-bottom: 0; /* Remove bottom margin */
    }

    .section-image {
      position: absolute;
      width: 55%;
      /* min-width: 600px; */
      /* max-width: 800px; */
      height: 400px;
      border-radius: 15px;
      object-fit: cover;
      right: 5%; /* Position from right */
      top: 50%; /* Center vertically */
      transform: translateY(-50%); /* Center vertically */
    }
    
    #what-we-do-image {
      position: absolute;
      width: 550px;
      height: 350px;
      border-radius: 15px;
      object-fit: cover;
      left: 250px; /* Position from right */
      top: 320px; /* Center vertically */
      transform: translateY(-50%); /* Center vertically */
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.331);
    }

    

    #why-us-section {
      position: absolute;
      max-width: 550px;
      min-height: 450px;
      right: 30px;
      top: 60px; /* Moved much higher to eliminate gap */
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.063);
      backdrop-filter: blur(4.6px);
      -webkit-backdrop-filter: blur(4.6px);
      border: 3px solid rgba(0, 0, 0, 0.067);
      padding: 30px;
      margin-right: 30px;
    }

    #why-us-title {
      position: relative;
      font-family: 'Lucida Sans Unicode', serif;
      font-size: clamp(3rem, 2.5vw, 4rem);
      font-weight: lighter;
      margin: 0;
      color: #4e3a02a6;
      left: 20px;
      top: 0px;
      text-shadow: 2px 2px #615c5044;
      width: 450px;
    }

    #why-us-points {
      position: relative;
      margin-top: 30px;
      margin-left: 50px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    
    }
    #why-us-section h4 {
      position: relative;
      font-family: 'Lucida Sans Unicode', sans-serif;
      font-size: clamp(1.7rem, 2.5vw, 2.3rem);
      font-weight: lighter;
      margin: 0;
      margin-top: 0px;
      color: #4e3a02b1;
      left: 0px;
      top: 0px;
      text-shadow: 1px 1px #615c5044;
      padding-bottom: 15px;
      border-bottom: 2px solid #5c4e2ac0;
      width: 450px;
    }

    #why-us-section h5 {
      position: relative;
      font-family: 'Lucida Sans Unicode', sans-serif;
      font-size: clamp(1.2rem, 2.5vw, 1.7rem);
      font-weight: 100;
      margin: 0;
      margin-top: 10px;
      color: #4e3a02b1;
      left: 0px;
      top: 0;
      /* text-shadow: 2px 2px #615c5044; */
      width: 450px;
      margin-bottom: 10px;
      /* margin-bottom: -250px; */
    }



    


    

    .glass-card {
      position: relative;
      width: 35%;
      min-width: 400px;
      padding: 30px 40px;
      background: rgba(247, 245, 236, 0.7);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      z-index: 1;
    }

  

    .glass-card p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      line-height: 1.6;
      color: #4E3A02;
      margin: 0;
      font-family: 'Lucida Sans Unicode', sans-serif;
    }

    #what-we-do-card {
      position: absolute;
      top: 25%;
      left: 5%;
      margin-right: -50px; /* Creates overlap - adjust this value to control overlap amount */
      z-index: 1; /* Ensures card appears above the image */
      transform: translateY(-50%); /* Centers the card vertically */
    }

    
  

    @media (max-width: 1200px) {
      .content-wrapper {
        height: 500px;
        /* padding: 20px 0; */
      }

      .section-image {
        position: relative;
        width: 90%;
        max-width: 700px;
        min-width: unset;
        height: 350px;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
      }

      .import-content {
        height: 500px;
      }
      

      #vebro-image {
        position: relative;
        width: 90%;
        max-width: clamp(300px, 50vw, 700px);
        min-width: unset;
        height: 300px;
        left: auto;
        margin: 0 auto 70px;
        top: 250px;
        transform: none;
      }

      #floor-coating-card {
        position: relative;
        width: calc(100% - 80px);
        max-width: 600px;
        min-width: 250px;
      }

      #what-we-do-card {
        position: relative;
        width: calc(100% - 80px);
        max-width: 600px;
        min-width: unset;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
      }
    }

    @media ( max-width: 950px) {
      #floor-coating-card {
        position: relative;
        width: calc(100% - 80px);
        max-width: 500px;
        min-width: 350px;
        top: -20px;
      }
    }
    @media (max-width: 768px) {
      .section-image {
        height: 300px;
        width: 100%;
        max-width: 100%;
      }

      #floor-coating-card {
        position: relative;
        width: calc(100% - 80px);
        max-width: 600px;
        min-width: 350px;
        top: -20px;
      }      

      #what-we-do-card {
        width: calc(100% - 40px);
      }

      #what-we-do-image {
        position: relative;
        width: 85%;
        height: 280px;
        margin: 25px auto;
        left: auto;
        top: auto;
        transform: none;
        display: block;
      }

      /* .portrait-container {
        width: 70px;
        height: 220px;
        bottom: -110px;
      } */

      .import-header {
        padding-bottom: 150px;
        flex-direction: column;
        gap: 80px;
      }
      #vebro-image {
        max-width: 350px;
      }
    }

    @media (max-width: 550px) {
      #floor-coating-card {
        min-width:auto;
        margin-top: -80px;
      }

      #floor-coating-card .import-description {
        display: none;
      }

      #vebro-image {
        position: relative;
        max-width: 350px;
        top:-100px;
      }

    }
    /* Our Imports Section */
    #our-imports {
      position: relative;
      padding-bottom: 100px;
    }

    #our-imports h2 {
      position: relative;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      color: #4E3A02;
      font-family: 'Lucida Sans Unicode', sans-serif;
      letter-spacing: 2px;
      font-weight: lighter;
    }

    #our-imports h2::after {
      content: "";
      flex-grow: 1;
      height: 1.3px;
      background-color: #4E3A02;
    }
    
    #vebro-image {
      left: 5%; /* Position from left instead of right */
      right: auto; /* Reset right positioning */
      margin-top: -50px; /* Move image up by changing this value from positive to negative */
      top: 50%; /* Maintain vertical centering with new offset */
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.331);
    }

    .subsection {
      margin-bottom: 60px;
    }

    .subsection h3 {
      color: #4E3A02;
      font-family: 'Lucida Sans Unicode', serif;
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      margin: 0;
      letter-spacing: 1px;
    }

    .subsection h4 {
      color: #4E3A02;
      font-family: 'Lucida Sans Unicode', serif;
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      margin: 5px 0 20px;
      font-weight: normal;
    }

    .import-content {
      position: relative;
      margin-top: 20px;
      height: 400px;
    }


    @media (min-width: 1200px) {
      #vebro-image {
        left: 5%; /* Position from left instead of right */
        right: auto; /* Reset right positioning */
        margin-top: -30px; /* Move image up by changing this value from positive to negative */
        top: 80%; /* Maintain vertical centering with new offset */
      }
    }

    #floor-coating-card {
      position: absolute;
      top: 40%;
      right: 5%;
      transform: translateY(-50%);
      width: 40%;
      z-index: 1;
      margin-left: -50px; 
    }

    #floor-coating-card strong {
      font-weight: 600;
    }

    

    .import-header {
      display: flex;
      justify-content: space-between;
      background-color: #383b49;
      padding: 30px 40px;
      padding-bottom: 200px;
      margin: 40px 0;
      border-radius: 30px;
      color: white;
      position: relative;
    }

    .header-item {
      text-align: center;
      flex: 1;
      position: relative;
    }

    .portrait-container {
      width:  clamp(240px, 25vw, 500px);
      height: 450px;
      position: absolute;
      left: 50%;
      bottom: -480px;
      transform: translateX(-50%);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .portrait-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.3s ease;
      
    }

    .portrait-image:hover {
      transform: scale(1.05);
    }

    .header-item h3 {
      font-family: 'Lucida Sans Unicode', serif;
      font-size: clamp(2rem, 2.5vw, 3rem);
      font-weight: normal;
      margin: 0;
      margin-top:25px;
      color: rgb(255, 250, 243);
    }
    @media (min-width: 1200px) {
    #header-item-1 h3 {
      margin-top: 45px;
    }
  }

    @media (max-width: 768px) {
      .header-item h3 {
        font-size: clamp(1.3rem, 5vw, 2rem);
      }

      #header-item-2 {
        margin-top:-90px;
      }

      #header-item-3 {
        margin-top:-180px;
      }
    }


    .catalog-button {
      position: relative;
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 10px 25px;
      /* border-radius: 20px; */
      top: 20px;
      font-family: 'Lucida Sans Unicode', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .catalog-button:hover {
      background: white;
      color: #766c5d;
    }

    .header-image-wrapper {
      position: absolute;
      height: 150px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 768px) {
      .import-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
      }

      .header-item {
        text-align: center;
      }
    }
    
    /* Imports Carousel Styles*/
    @keyframes tonext {
      75% {
        left: 0;
      }
      95% {
        left: 100%;
      }
      98% {
        left: 100%;
      }
      99% {
        left: 0;
      }
    }
    
    @keyframes tostart {
      75% {
        left: 0;
      }
      95% {
        left: -300%;
      }
      98% {
        left: -300%;
      }
      99% {
        left: 0;
      }
    }

    @keyframes snap {
      96% {
        scroll-snap-align: center;
      }
      97% {
        scroll-snap-align: none;
      }
      99% {
        scroll-snap-align: none;
      }
      100% {
        scroll-snap-align: center;
      }
    }

    .portrait-carousel body {
      max-width: 3.5rem;
      margin: 0 auto;
      padding: 0 1.25rem;
      font-family: 'Lato', sans-serif;
    }
    
    .portrait-carousel * {
      box-sizing: border-box;
      scrollbar-color: transparent transparent; /* thumb and track color */
      scrollbar-width: 0px;
    }
    
    .portrait-carousel *::-webkit-scrollbar {
      width: 0;
    }
    
    .portrait-carousel *::-webkit-scrollbar-track {
      background: transparent;
    }
    
    .portrait-carousel *::-webkit-scrollbar-thumb {
      background: transparent;
      border: none;
    }
    
    .portrait-carousel * {
      -ms-overflow-style: none;
    }
    
    .portrait-carousel ol, li {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .carousel {
      position: relative;
      padding-top: 75%;
      filter: drop-shadow(0 0 10px #0003);
      perspective: 100px;
    }
    
    .carousel__viewport {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: flex;
      overflow-x: scroll;
      overflow-y: hidden;
      counter-reset: item;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
    }
    
    .carousel__slide {
      position: relative;
      flex: 0 0 100%;
      width: 100%;
      background-color: rgb(219, 249, 225);
      counter-increment: item;
    }
    
    .carousel__slide:nth-child(even) {
      background-color: rgb(255, 255, 139);
    }
    
    .carousel__slide:before {
      content: counter(item);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate3d(-50%,-40%,70px);
      color: #fff;
      font-size: 2em;
    }
    
    .carousel__snapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      scroll-snap-align: center;
    }
    
    /* @media (hover: hover) {
      .carousel__snapper {
        animation-name: tonext, snap;
        animation-timing-function: ease;
        animation-duration: 4s;
        animation-iteration-count: infinite;
      }
    
      .carousel__slide:last-child .carousel__snapper {
        animation-name: tostart, snap;
      }
    } */
    
    @media (prefers-reduced-motion: reduce) {
      .carousel__snapper {
        animation-name: none;
      }
    }
    
    .carousel:hover .carousel__snapper,
    .carousel:focus-within .carousel__snapper {
      animation-name: none;
    }
    
    .carousel__navigation {
      position: absolute;
      right: 0;
      bottom: 30px; /* Move dots lower for better visibility */
      left: 0;
      text-align: center;
      z-index: 10;
    }
    
    .carousel__navigation-list,
    .carousel__navigation-item {
      display: inline-block;
    }
    
    .carousel__navigation-button {
      display: inline-block;
      width: 14px; /* Larger size */
      height: 14px; /* Larger size */
      background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
      border: 2px solid white; /* Prominent white border */
      border-radius: 50%;
      font-size: 0;
      transition: all 0.3s ease; /* Smooth transition for all properties */
      cursor: pointer;
      margin: 0 8px; /* Add space between dots */
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Add shadow for better visibility */
    }
    
    /* Style for the active navigation dot */
    .carousel__navigation-button:target {
      background-color: white; /* Solid white for active state */
      transform: scale(1.2); /* Slightly larger */
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Glowing effect */
    }

    
    /* Style for hover state */
    .carousel__navigation-button:hover {
      background-color: white;
      transform: scale(1.1);
    }
    
    
    .carousel::before,
    .carousel::after,
    .carousel__prev,
    .carousel__next {
      position: absolute;
      top: 0;
      margin-top: 37.5%;
      width: 4rem;
      height: 4rem;
      transform: translateY(-50%);
      border-radius: 50%;
      font-size: 0;
      outline: 0;
    }
    
    .carousel::before,
    .carousel__prev {
      left: -1rem;
    }
    
    .carousel::after,
    .carousel__next {
      right: -1rem;
    }
    
    .carousel::before,
    .carousel::after {
      content: '';
      z-index: 1;
      background-color: #333;
      background-size: 1.5rem 1.5rem;
      background-repeat: no-repeat;
      background-position: center center;
      color: #fff;
      font-size: 2.5rem;
      line-height: 4rem;
      text-align: center;
      pointer-events: none;
    }
    
    .carousel::before {
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
    }
    
    .carousel::after {
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
    }

    .carousel-section {
        position: relative;
        width: 100%;
        height: 180px; /* Reduced from 250px */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }

    .carousel-section h3 {
        position: absolute;
        color: white;
        font-family: 'Lucida Sans Unicode', sans-serif;
        font-size: clamp(1.3rem, 3vw, 2rem); /* Slightly reduced font size */
        font-weight: normal;
        text-align: center;
        margin: 0;
        z-index: 2;
        letter-spacing: 2px;
    }

    .carousel-section .catalog-button {
        position: absolute;
        background: transparent;
        border: 2px solid white;
        color: white;
        padding: 6px 25px; /* Slightly reduced padding */
        margin-top: 60px; /* Reduced from 80px */
        font-family: 'Lucida Sans Unicode', sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem; /* Slightly reduced font size */
        border-radius: 25px;
        z-index: 2;
    }

    @media (min-width: 1200px) {
        .portrait-container .portrait-carousel {
          display: none;
        }
        
    }

    @media (max-width: 1200px) {

        #portrait-container-1 {
          display: none;
        }
        #portrait-container-3 {
          display: none;
        }

        .portrait-container {
          display: block;
          width: 100%;
          width: clamp(50vw, 70vw, 75vw);
          margin: 0 auto 60px;
          top: 150px;
        }

    }

    @media (max-width: 768px) {
        .import-header {
          height: 500px;
        }
    }

    /* LOCATIONS  */#our-locations h2 {
      position: relative;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      margin-top: 150px;
      color: #4E3A02;
      font-family: 'Lucida Sans Unicode', sans-serif;
      letter-spacing: 2px;
      font-weight: lighter;
    }

    #our-locations h2::after {
      content: "";
      flex-grow: 1;
      height: 1.3px;
      background-color: #4E3A02;
    }

    .locations-container {
      width:  clamp();
      height: 500px;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      margin-bottom: -100px;
      
    }

    /* .locations-container {
      width:  clamp(240px, 25vw, 500px);
      height: 450px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    } */

    /* Locations Carousel Styles */

.carousel__location1 {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    background: url(../images/smg-temp.jpg) center center/cover no-repeat;
    counter-increment: item;
}

.carousel__location1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.2) 100%); /* Dark gradient starting from right */
    z-index: 1;
}

.carousel__location2 {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    /* You can set a different image for the second location if needed */
    background: url(../images/jkt-temp.avif) center center/cover no-repeat;
    counter-increment: item;
}

.carousel__location2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.2) 100%); /* Dark gradient starting from right */
    z-index: 1;
}

.carousel__snapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    z-index: 2;
    overflow: hidden; /* Prevent content bleeding between slides */
}

/* Add location content styling */

.location-content {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  color: white;
  padding: 30px;
  z-index: 3;
  text-align: right;
  max-width: 400px;
  width: auto;
}

.location-content h3 {
    font-family: 'Lucida Sans Unicode', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: normal;
    margin: 0 0 15px;
    color:#f9f5ec;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-content .address {
    font-family: 'Lucida Sans Unicode', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.4;
    margin: 0;
    color:#f3ebdd;
    word-wrap: break-word;
}

/* Responsive location content */
@media (max-width: 768px) {
    .location-content {
        right: 3%;
        max-width: 300px;
        padding: 20px;
    }
    
    .location-content h3 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 10px;
    }
    
    .location-content .address {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .location-content {
        right: 2%;
        max-width: 250px;
        padding: 15px;
    }
    
    .location-content h3 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 8px;
    }
    
    .location-content .address {
        font-size: clamp(0.8rem, 4vw, 1rem);
        line-height: 1.2;
    }
}

/* Contact Form Styles */
    #contact {
      padding: 80px 40px;
    
    }

    #contact h2 {
      position: relative;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      margin-top: 70px;
      color: #4E3A02;
      font-family: 'Lucida Sans Unicode', sans-serif;
      letter-spacing: 2px;
      font-weight: lighter;
    }

    #contact h2::after {
      content: "";
      flex-grow: 1;
      height: 1.3px;
      background-color: #4E3A02;
    }


    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      box-sizing: border-box;
    }

    .form-group {
      position: relative;
      box-sizing: border-box;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-group.required input::placeholder,
    .form-group.required textarea::placeholder {
      color: #4E3A02;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: none;
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 5px;
      font-family: 'Lucida Sans Unicode', sans-serif;
      color: #4E3A02;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-sizing: border-box;
      margin: 0;
    }

    .form-group textarea {
      height: 150px;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 0 0 2px #4E3A02;
    }

    .date-input-container {
      position: relative;
      width: 100%;
    }

    .date-input-container input[type="date"] {
      width: 100%;
      padding: 15px;
      border: none;
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 5px;
      font-family: 'Lucida Sans Unicode', sans-serif;
      color: #4E3A02;
      font-size: 1rem;
      transition: all 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
    }

    .date-input-container input[type="date"]::-webkit-calendar-picker-indicator {
      background-color: #4E3A02;
      padding: 5px;
      border-radius: 3px;
      filter: invert(1);
      opacity: 0.7;
      cursor: pointer;
    }

    .date-input-container input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
    }

    .date-input-container input[type="date"]:focus {
      outline: none;
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 0 0 2px #4E3A02;
    }

    .date-input-container label {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #4E3A02;
      opacity: 0.7;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .date-input-container input[type="date"]:focus + label,
    .date-input-container input[type="date"]:not(:placeholder-shown) + label {
      transform: translateY(-130%) scale(0.8);
      opacity: 1;
    }

    .submit-button {
      background-color: #33365d;
      color: #f7f0e3;
      border: none;
      padding: 15px 40px;
      font-family: 'Lucida Sans Unicode', sans-serif;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 5px;
      width: auto;
      margin: 20px auto;
      display: block;
    }

    .submit-button:hover {
      background-color: #333246;
      transform: translateY(-2px);
    }

    /* Email Us Link Styles */
    .email-link-container {
      text-align: center;
      margin-top: 20px;
    }

    .or-text {
      font-family: 'Lucida Sans Unicode', sans-serif;
      color: #4E3A02;
      font-size: 1rem;
      margin: 10px 0;
      opacity: 0.7;
    }

    .email-us-link {
      display: inline-block;
      background-color: #6b6e87; /* Lighter version of #33365d */
      color: #f7f0e3;
      text-decoration: none;
      font-family: 'Lucida Sans Unicode', sans-serif;
      font-size: 1.1rem;
      padding: 15px 40px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: auto;
      margin: 20px 0;
    }

    .email-us-link:hover {
      background-color: #5a5d78; /* Darker shade on hover */
      transform: translateY(-2px);
    }

    .email-us-link:active {
      transform: translateY(0);
    }

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

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

      #contact {
        padding: 60px 20px;
      }

      .email-us-link {
        font-size: 1.1rem;
        padding: 15px 40px;
      }

      .or-text {
        font-size: 0.9rem;
      }
    }

    .site-footer {
      background-color: #3E435A;
      color: white;
      padding: 40px 40px; /* Reduced padding from 60px to 40px */
      margin-top: 80px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center; /* Changed from flex-start to center for better vertical alignment */
    }

    .footer-left {
      flex: 1;
    }

    .footer-logo {
      height: 100px; 
      filter: brightness(0) invert(1);
      margin-left: 20px;
    }

    .footer-middle {
      flex: 2;
      padding: 0 40px;
    }

    .footer-middle h4 {
      font-family: 'Lucida Sans Unicode', sans-serif;
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      font-weight: lighter;
      margin: 0 0 10px 0; /* Reduced margin-bottom from 20px to 10px */
      color: white;
    }

    .footer-middle p {
      margin: 5px 0; /* Reduced from 10px to 5px */
      font-family: 'Lucida Sans Unicode', sans-serif;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-right {
      flex: 1;
      text-align: right;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      height: 100%;
      align-self: flex-end;
    }

    .copyright {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
    }

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: row; /* Keep horizontal layout */
        flex-wrap: wrap; /* Allow wrapping if needed */
        text-align: left;
        gap: 10px; /* Reduce gap to fit better */
        justify-content: space-between; /* Distribute space between items */
      }

      .footer-left {
        flex: 0 0 auto; /* Fixed width for logo */
        margin-bottom: 0;
      }

      .footer-middle {
        flex: 1; /* Take available space in the middle */
        text-align: left;
        padding: 0 15px; /* Reduce padding */
        min-width: 160px; /* Ensure minimal width for text */
      }

      .footer-right {
        flex: 0 0 auto; /* Keep it on the same row */
        justify-content: flex-end; /* Keep aligned to the right */
        text-align: right;
        margin-top: 0; /* Remove top margin */
        align-self: center; /* Center vertically */
      }

      .footer-logo {
        height: 80px;
        margin-left: 0; /* Remove margin */
      }

      .site-footer {
        padding: 30px 20px;
      }

      .copyright {
        font-size: 0.8rem; /* Slightly smaller font */
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
        white-space: nowrap; /* Prevent text wrapping */
      }
    }
    
    @media (max-width: 480px) {
      .footer-content {
        gap: 10px; /* Reduce gap further */
      }
      
      .footer-left {
        flex: 0 0 60px; /* Smaller fixed width for logo container */
      }
      
      .footer-logo {
        height: 60px; /* Make logo even smaller */
      }
      
      .footer-middle {
        flex: 1; /* Take remaining space */
        padding: 0 8px; /* Reduce padding */
        min-width: 140px; /* Ensure minimal width */
      }
      
      .footer-middle h4 {
        font-size: 1rem; /* Smaller heading */
        margin-bottom: 5px; /* Less margin */
      }
      
      .footer-middle p {
        font-size: 0.75rem; /* Even smaller text */
        margin: 2px 0; /* Less margin */
      }
      
      .footer-right {
        flex: 0 0 auto; /* Keep it as auto width */
      }
      
      .copyright {
        font-size: 0.7rem; /* Make copyright text smaller */
      }
    }

    /* Scroll Animations */
    .glass-card {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .glass-card.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Section headers animation - slide from left */
    .section-header {
      opacity: 0;
      transform: translateX(-100px);
      transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    }

    .section-header.animate-in {
      opacity: 1;
      transform: translateX(0);
    }

    /* Apply to existing section headers */
    h2, .section-title {
      opacity: 0;
      transform: translateX(-100px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    h2.animate-in, .section-title.animate-in {
      opacity: 1;
      transform: translateX(0);
    }

    /* File Upload Styling */
    .file-upload-container {
        position: relative;
        width: 100%;
    }

    .file-upload-container input[type="file"] {
        position: absolute;
        left: -9999px;
        opacity: 0;
    }

    .file-upload-label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 15px;
        border: 2px dashed rgba(78, 58, 2, 0.3);
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.5);
        color: #4E3A02;
        font-family: 'Lucida Sans Unicode', sans-serif;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .file-upload-label:hover {
        border-color: #4E3A02;
        background-color: rgba(255, 255, 255, 0.7);
    }

    .file-upload-label svg {
        color: #4E3A02;
    }

    .file-upload-info {
        margin-top: 8px;
        text-align: center;
    }

    .file-upload-info small {
        color: #4E3A02;
        opacity: 0.7;
        font-family: 'Lucida Sans Unicode', sans-serif;
        font-size: 0.8rem;
    }

    /* Active navigation dot styling */
    .carousel__navigation-button.active {
        background-color: white; /* Solid white fill */
        transform: scale(1.2); /* Make it slightly larger */
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Glowing effect */
    }

    /* Style for active location navigation dot */
    .nav-dot.active {
        background-color: white;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }

    /* Form Submission Popup Styles */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .popup-overlay.show {
        opacity: 1;
    }

    .popup-modal {
        background: linear-gradient(135deg, #f9eac3, #ece4c8);
        border-radius: 15px;
        padding: 40px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(78, 58, 2, 0.1);
        position: relative;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .popup-modal.show {
        transform: scale(1);
    }

    .popup-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        color: #4E3A02;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
        transition: opacity 0.3s ease;
    }

    .popup-close:hover {
        opacity: 0.7;
    }

    .popup-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
    }

    .success-icon {
        background-color: #4CAF50;
        color: white;
    }

    .error-icon {
        background-color: #f44336;
        color: white;
    }

    .popup-title {
        font-family: 'Lucida Sans Unicode', sans-serif;
        font-size: clamp(1.5rem, 4vw, 2rem);
        color: #4E3A02;
        margin: 0 0 15px 0;
        font-weight: lighter;
    }

    .popup-message {
        font-family: 'Lucida Sans Unicode', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        color: #4E3A02;
        line-height: 1.5;
        margin: 0 0 25px 0;
        opacity: 0.8;
    }

    .popup-button {
        background-color: #33365d;
        color: #f7f0e3;
        border: none;
        padding: 12px 30px;
        font-family: 'Lucida Sans Unicode', sans-serif;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 5px;
        margin-top: 10px;
    }

    .popup-button:hover {
        background-color: #333246;
        transform: translateY(-2px);
    }

    /* Responsive popup styles */
    @media (max-width: 768px) {
        .popup-modal {
            padding: 30px;
            margin: 20px;
        }

        .popup-icon {
            width: 50px;
            height: 50px;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .popup-title {
            font-size: clamp(1.3rem, 5vw, 1.8rem);
        }

        .popup-message {
            font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        }

        .popup-close {
            font-size: 24px;
            top: 12px;
            right: 15px;
        }
    }

    @media (max-width: 480px) {
        .popup-modal {
            padding: 25px;
            margin: 15px;
        }

        .popup-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }

        .popup-button {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }


    /* Responsive Design for why-us-section */
    
    /* Large Desktop (1400px+) */
    @media (min-width: 1400px) {
      #why-us-section {
        max-width: 600px;
        right: 50px;
        top: 40px; /* Much higher to eliminate gap */
        padding: 40px;
      }
      
      .content-wrapper {
        height: 350px; /* Reduced height */
      }
      
      #why-us-title {
        font-size: clamp(3.5rem, 3vw, 4.5rem);
        width: 500px;
      }
      
      #why-us-section h4 {
        width: 500px;
        font-size: clamp(2rem, 2.8vw, 2.5rem);
      }
      
      #why-us-section h5 {
        width: 500px;
        font-size: clamp(1.3rem, 2.2vw, 1.8rem);
      }
    }
    
    /* Desktop (1200px - 1399px) */
    @media (max-width: 1399px) and (min-width: 1200px) {
      #why-us-section {
        max-width: 550px;
        right: 40px;
        top: 50px; /* Much higher to eliminate gap */
      }
      
      .content-wrapper {
        height: 320px; /* Reduced height */
      }
    }
    
    /* Medium Desktop (992px - 1199px) */
    @media (max-width: 1199px) and (min-width: 992px) {
      #why-us-section {
        max-width: 500px;
        right: 30px;
        top: 160px;
        padding: 25px;
      }
      
      #why-us-title {
        font-size: clamp(2.8rem, 3.5vw, 3.5rem);
        width: 400px;
      }
      
      #why-us-section h4 {
        width: 400px;
        font-size: clamp(1.5rem, 2.8vw, 2rem);
      }
      
      #why-us-section h5 {
        width: 400px;
        font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      }
    }
    
    /* Tablet Landscape (768px - 991px) */
    @media (max-width: 991px) and (min-width: 768px) {
      #why-us-section {
        position: relative;
        max-width: 90%;
        width: 90%;
        right: auto;
        top: auto;
        margin: 15px auto;
        padding: 30px;
        min-height: auto;
        display: block;
        left: 50%;
        transform: translateX(-50%);
      }
      
      .content-wrapper {
        height: auto;
        min-height: 300px;
      }
      
      #why-us-title {
        font-size: clamp(2.5rem, 4vw, 3rem);
        width: 100%;
        text-align: center;
        left: 0;
      }
      
      #why-us-points {
        margin-left: 0;
        text-align: center;
      }
      
      #why-us-section h4 {
        width: 100%;
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        text-align: center;
        border-bottom: 2px solid #5c4e2ac0;
        padding-bottom: 10px;
        margin-bottom: 15px;
      }
      
      #why-us-section h5 {
        width: 100%;
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        text-align: center;
        margin-bottom: 20px;
      }
    }
    
    /* Tablet Portrait (576px - 767px) */
    @media (max-width: 767px) and (min-width: 576px) {
      #why-us-section {
        position: relative;
        max-width: 95%;
        width: 95%;
        right: auto;
        top: auto;
        margin: 10px auto;
        padding: 25px;
        min-height: auto;
        left: 50%;
        transform: translateX(-50%);
      }
      
      #why-us-title {
        font-size: clamp(2.2rem, 5vw, 2.8rem);
        width: 100%;
        text-align: center;
        left: 0;
      }
      
      #why-us-points {
        margin-left: 0;
        text-align: center;
        gap: 15px;
      }
      
      #why-us-section h4 {
        width: 100%;
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        text-align: center;
        padding-bottom: 8px;
        margin-bottom: 12px;
      }
      
      #why-us-section h5 {
        width: 100%;
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        text-align: center;
        margin-bottom: 18px;
        line-height: 1.4;
      }
      
      #what-we-do-image {
        position: relative;
        width: 88%;
        height: 260px;
        margin: 22px auto;
        left: auto;
        top: auto;
        transform: none;
        display: block;
      }
    }
    
    /* Mobile (480px - 575px) */
    @media (max-width: 575px) and (min-width: 481px) {
      #what-we-do-image {
        position: relative;
        width: 90%;
        height: 250px;
        margin: 20px auto;
        left: auto;
        top: auto;
        transform: none;
        display: block;
      }
      
      #why-us-section {
        position: relative;
        max-width: 98%;
        width: 98%;
        right: auto;
        top: auto;
        margin: 8px auto;
        padding: 20px;
        min-height: auto;
        left: 50%;
        transform: translateX(-50%);
      }
      
      #why-us-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        width: 100%;
        text-align: center;
        left: 0;
      }
      
      #why-us-points {
        margin-left: 0;
        text-align: center;
        gap: 12px;
      }
      
      #why-us-section h4 {
        width: 100%;
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        text-align: center;
        padding-bottom: 6px;
        margin-bottom: 10px;
      }
      
      #why-us-section h5 {
        width: 100%;
        font-size: clamp(0.85rem, 4vw, 1.1rem);
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.3;
      }
    }
    
    /* Small Mobile (max-width: 480px) */
    @media (max-width: 480px) {
      #what-we-do-image {
        position: relative;
        width: 95%;
        height: 200px;
        margin: 15px auto;
        left: auto;
        top: auto;
        transform: none;
        display: block;
      }
      
      #why-us-section {
        position: relative;
        max-width: 98%;
        width: 98%;
        right: auto;
        top: auto;
        margin: 5px auto;
        padding: 15px;
        min-height: auto;
        max-height: none;
        left: 50%;
        transform: translateX(-50%);
      }
      
      #why-us-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        width: 100%;
        text-align: center;
        left: 0;
        text-shadow: 1px 1px #615c5044;
      }
      
      #why-us-points {
        margin-left: 0;
        text-align: center;
        gap: 10px;
        margin-top: 20px;
      }
      
      #why-us-section h4 {
        width: 100%;
        font-size: clamp(1.1rem, 5.5vw, 1.4rem);
        text-align: center;
        padding-bottom: 5px;
        margin-bottom: 8px;
        border-bottom: 1px solid #5c4e2ac0;
      }
      
      #why-us-section h5 {
        width: 100%;
        font-size: clamp(0.8rem, 4.5vw, 1rem);
        text-align: center;
        margin-bottom: 12px;
        line-height: 1.2;
      }
    }