/* ====================================
           RESET & BASE STYLES
        ==================================== */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      /* Changed to border-box for better control */
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      background: transparent;
      color: #fff;
      line-height: 1.6;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .title {
      font-family: 'Playfair Display', serif;
  }

  /* ====================================
           HEADER SECTION - FIXED
        ==================================== */
 /* Header */
header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1800px;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
}
html {
  scroll-behavior: smooth;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 380;
    padding: 14px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffffff;
    font-weight: 380;
    border-bottom: 2px solid #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


  /* ====================================
           HERO SECTION - FIXED
        ==================================== */
.hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 120px 8% 80px;
      /* Reduced top padding */
      min-height: 100vh;
      gap: 40px;
      background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/Leopard_Slider.jpg');

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: scroll;
      /* Changed from fixed to scroll */
      margin-top: 0;
      /* Removed negative margin */
      position: relative;
      z-index: 1;
      /* Added for better control */
  }

  /* Alternative hero without background image for testing */
  .hero-alt {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .hero-text {
      flex: 1 1 450px;
      max-width: 800px;
      animation: fadeInLeft 1s ease-out;
      z-index: 2;
      position: relative;
  }

  .hero-text h1 {
      font-size: clamp(48px, 8vw, 62px);
      /* Responsive font size */
      line-height: 1.2;
      margin-bottom: 24px;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .hero-text h1 .highlight {
      color: #ffb606;
      background: linear-gradient(45deg, #ffb606, #ffb606);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero-text p {
      font-size: 16px;
      margin-bottom: 30px;
      color: #e0e0e0;
      line-height: 1.7;
      max-width: 90%;
      text-align: justify;
  }

  .cta-button {
      background: linear-gradient(45deg, #ffb606);
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 182, 6, 0.3);
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 182, 6, 0.4);
  }

  .hero-image {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
      position: relative;
  }

  /* .product-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            width: 800px;
            height: 800px;
        } */

  /* .product-card:hover {
            transform: translateY(-10px);
        } */

  .product-card img {
      max-width: 100%;
      height: auto;
      /* border-radius: 10px; */
  }

  /* Animations */
  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-50px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  /* Mobile-specific styles for header and hero sections (up to 768px) */
@media (max-width: 768px) {
    header {
        /* position: fixed; */
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 600px;
        padding: 8px 12px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 32px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 6px;
        cursor: pointer;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 1px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 600px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 15px;
         border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
           margin-top: 10px;
       
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px);
        transition: all 0.3s ease;
        margin-top: 30px;
    }

    .nav-links.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* .nav-links li a {
        font-size: 0.9rem;
        padding: 10px;
        text-align: center;
        color: #333;
        border-radius: 6px;
        font-weight: 400;
    } */

   

    .hero {
        padding: 80px 5% 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
        gap: 25px;
        background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),  url('../img/Leopard_Slider_mobile.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        /* max-height: 100vh; */
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
         flex: 1 1 50px;
    }

    .hero-text h1 {
        padding-top: 120px;
        font-size: clamp(28px, 6vw, 36px);
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-text p {
        font-size: 13px;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 20px;
        color: #e0e0e0;
        text-align: justify;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
        background: linear-gradient(45deg, #ffb606, #ff8c00);
        box-shadow: 0 3px 10px rgba(255, 182, 6, 0.2);
    }

    
    .product-card {
        width: 100%;
        display: flex;
        justify-content: center;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .product-card model-viewer {
        width: 100%;
        max-width: 300px;
        height: 50px !important;
        min-height: 30px;
        background-color: transparent;
        align-items: center;
    }
}

@media (max-width: 480px) {
    header {
        width: 98%;
        padding: 6px 10px;
        border-radius: 12px;
    }

    .logo img {
        height: 28px;
    }

    .hamburger span {
        width: 20px;
        height: 1.8px;
    }

    .nav-links {
        top: 50px;
        padding: 12px;
        border-radius: 0 0 12px 12px;
        max-width: 95%;
    }

    .nav-links li a {
        font-size: 0.85rem;
        padding: 8px;
          color: #333;
    }
 .nav-links li a:hover,
    .nav-links li a.active {
        color: #f6ad55;
        border-bottom-color: #f6ad55;
    }
    .hero {
        padding: 60px 5% 30px;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: clamp(24px, 5vw, 30px);
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 8px 18px;
        font-size: 12px;
    }

    .hero-image {
        max-width: 260px;
    }

    .product-card model-viewer {
        max-width: 240px;
        height: 240px;
        min-height: 160px;
    }
}
  /* ====================================
           WELCOME SECTION
     ==================================== */
  .welcome-section {
      /* background: #f8f9fa; */
      position: relative;
      /* padding-top: 60px; */
      /* padding-bottom: 100px; */
  }

  .welcome-grid {
      position: sticky;
      top: 0;
      height: 80vh;
      display: flex;
      align-items: center;
      gap: 80px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 50px;
  }

  .welcome-header {
      padding-top: 40px;
  }

  .welcome-left {
      flex: 4;
      position: relative;
  }

  .welcome-right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .content-section {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  }

  .content-section.active {
      opacity: 1;
      visibility: visible;
  }

  .welcome-header h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 8px;
      font-weight: 600;
      color: #000000;
      line-height: 1.2;
  }

  .welcome-header p {
      font-size: 18px;
      color: #666;
      margin-bottom: 30px;
      /* font-style: italic; */
  }

  .highlight {
      color: #f6aa1c;
      font-weight: 600;
  }

  .welcome-text p {
      margin-bottom: 20px;
      line-height: 1.7;
      font-size: 16px;
      color: #000000;
      text-align: justify;
  }

  /* .welcome-images {
      display: flex;
      gap: 25px;
      margin-top: 40px;
  } */

 

  /* Vision & Mission specific styles */
  .vision-mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 30px;
  }

  .vision-card,
  .mission-card {
      background: rgb(10, 94, 133);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
  }

  .vision-card:hover,
  .mission-card:hover {
      transform: translateY(-3px);
  }

  .vision-card h3,
  .mission-card h3 {
      color: #001f63;
      margin-bottom: 15px;
      font-size: 18px;
  }

  .vision-card h3::before {
      /* content: "👁️ "; */
      content: " ";
      margin-right: 8px;
  }

  .mission-card h3::before {
      content: " ";
      margin-right: 8px;
  }
 .vision-images {
      display: flex;
      gap: 25px;
      margin-top: 40px;
  }

  .vision-images img {
      width: 100%;
      /* max-width: 400px; */
      height: 230px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      /* background-size: contain; */
      
  }

  .vision-images img:hover {
      transform: translateY(-5px);
  }

  .visionn-images {
      display: flex;
      gap: 25px;
      margin-top: 40px;
  }

  .visionn-images img {
      width: 100%;
      /* max-width: 400px; */
      height: 230px;
      border-radius: 12px;
      object-fit: contain;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      /* background-size: contain; */
      
  }

  .visionn-images img:hover {
      transform: translateY(-5px);
  }

  .philo-images {
      display: flex;
      gap: 25px;
      margin-top: 40px;
  }

  .philo-images img {
      width: 100%;
       max-width: 320px;
      height: 380px;
      border-radius: 12px;
      object-fit: auto;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      background-size: contain;
      
  }

 /* Mobile-specific styles for screens up to 768px */
@media (max-width: 768px) {
    .welcome-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        background: #f8f9fa;
    }

    .welcome-grid {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        position: relative;
        gap: 40px;
        max-width: 100%;
    }

    .welcome-left {
        flex: none;
        width: 100%;
    }

    /* .welcome-right {
        order: -1;
        margin-bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    } */

    .content-section {
        position: relative;
        top: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-bottom: 30px;
    }

    .content-section.active {
        opacity: 1;
        visibility: visible;
    }

    .welcome-header {
        padding-top: 20px;
    }

    .welcome-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
        text-align: center;
    }

    .welcome-header p {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
    }

    .welcome-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }

    .welcome-images {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .welcome-images img {
        max-width: 100%;
        width: 100%;
        height: 180px;
        border-radius: 8px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .vision-card,
    .mission-card {
        padding: 20px;
        border-radius: 8px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .welcome-grid {
        padding: 20px 15px;
        gap: 25px;
    }

    .welcome-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .welcome-header p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .welcome-text p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .welcome-images img {
        height: 150px;
    }
   .vision-images {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.vision-images img {
    width: calc(50% - 17px); /* If you have 3 images */
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

 .visionn-images {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.visionn-images img {
    width: calc(33.33% - 17px); /* If you have 3 images */
    border-radius: 12px;
    height: 100px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
    .vision-card,
    .mission-card {
        padding: 15px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 14px;
    }
}
  /* Media query for large screens (e.g., > 1200px) */
  @media (min-width: 1200px) {
      .welcome-section {
         
        margin-bottom: 150px;
        margin-top: 80px;
      }

      /* .welcome-grid {
          height: 80vh;
          gap: 100px;
          padding: 0 10px;
      } */

  }


  /* ====================================
           PROGRESS BAR COMPONENT
        ==================================== */
  .progress-bar {
      position: relative;
      height: 400px;
      width: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
  }

  .progress-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: rgba(0, 31, 99, 0.2);
      border-radius: 2px;
      transform: translateX(-50%);
  }

  .progress-line-active {
      position: absolute;
      left: 50%;
      top: 0;
      width: 3px;
      background: linear-gradient(to bottom, #001f63, #f6aa1c);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: height 1s cubic-bezier(0.4, 0.0, 0.2, 1);
      height: 0%;
  }

  .progress-steps {
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
  }

  .progress-step {
      position: relative;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      justify-content: center;
  }

  .progress-step:hover {
      transform: scale(1.02);
  }

  /* .progress-step .dot {
      width: 18px;
      height: 18px;
      background: #ffffff;
      border: 3px solid #001f63;
      border-radius: 50%;
      transition: all 0.3s ease;
      position: relative;
      z-index: 3;
      flex-shrink: 0;
  } */
.progress-step .dot {
            width: 24px;
            height: 24px;
            background: #ffffff;
            border: 3px solid #cbd5e1;
            border-radius: 6px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            z-index: 3;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: rotate(45deg);
        }
  /* .progress-step.active .dot {
      background: #001f63;
      transform: scale(1.2);
      box-shadow: 0 0 0 4px rgba(0, 31, 99, 0.15);
  } */
  .progress-step.active .dot {
            background: linear-gradient(135deg,  #99a8c7,  #001f63);
            border-color:  #001f63;
            transform: rotate(45deg) scale(1.3);
            box-shadow: 0 8px 25px rgba(1, 8, 36, 0.4);
            animation: diamond-bounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

  /* .progress-step .dot::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 6px;
      height: 6px;
      background: #f6aa1c;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .progress-step.active .dot::after {
      opacity: 1;
  } */
 .progress-step .dot::after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 2px solid transparent;
            border-radius: 6px;
            transition: all 0.4s ease;
        }

        .progress-step.active .dot::after {
            border-color: rgba(99, 102, 241, 0.2);
            animation: diamond-ripple 1.5s infinite;
        }
  .progress-step .label {
      position: absolute;
      left: 50%;
      margin-left: 30px;
      font-size: 16px;
      font-weight: 500;
      color: #666;
      white-space: nowrap;
      transition: all 0.3s ease;
      top: 50%;
      transform: translateY(-50%);
  }

  .progress-step.active .label {
      color: #001f63;
      font-weight: 600;
      margin-left: 35px;
  }

  /* Progress Bar Mobile Responsive */
  @media (max-width: 768px) {
      .progress-bar {
          /* height: 80px;
          width: 100%;
          max-width: 350px;
          margin: 0 auto 30px; */
          display: none;
            }
        }
      /* .progress-line {
          left: 20px;
          right: 20px;
          top: 15px;
          bottom: auto;
          height: 3px;
          width: calc(100% - 40px);
          transform: translateX(0);
      }

      .progress-line-active {
          left: 20px;
          top: 15px;
          height: 3px;
          width: 0%;
          transform: translateX(0);
          transition: width 1s cubic-bezier(0.4, 0.0, 0.2, 1);
      }

      .progress-steps {
          flex-direction: row;
          justify-content: space-between;
          align-items: flex-start;
          height: auto;
          padding: 0 20px;
      }

      .progress-step {
          flex-direction: column;
          align-items: center;
          width: auto;
          padding: 0;
      }

      .progress-step .dot {
          width: 16px;
          height: 16px;
          border-width: 2px;
      }

      .progress-step .label {
          position: static;
          margin-left: 0;
          margin-top: 10px;
          font-size: 12px;
          text-align: center;
          max-width: 80px;
          line-height: 1.2;
          transform: none;
      }

      .progress-step.active .label {
          margin-left: 0;
          margin-top: 12px;
      }
  } */

  @media (max-width: 480px) {
      .progress-bar {
          max-width: 300px;
          height: 70px;
      }

      .progress-step .label {
          font-size: 11px;
          max-width: 70px;
      }

      .progress-step .dot {
          width: 14px;
          height: 14px;
      }
  }

  @media (max-width: 374px) {
      .progress-bar {
          max-width: 250px;
          height: 60px;
      }

      .progress-step .label {
          font-size: 10px;
          max-width: 60px;
      }

      .progress-step .dot {
          width: 12px;
          height: 12px;
          border-width: 2px;
      }
  }
/* sevice section */
.services-section {
            padding: 100px 50px 0px 50px;
            background: url('../img/services.jpg') no-repeat center ;
            background-size: cover;
            background-attachment:scroll;
            text-align: center;
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); */
            z-index: 1;
        }

        .services-section > * {
            position: relative;
            z-index: 2;
        }

        .services-badge {
            display: inline-block;
            color: #ffffff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .services-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 60px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 0 auto;
            z-index: 2;
            position: relative;
        }

        .tea-table {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            /* max-width: 1000px; */
            width: 100%;
            z-index: 3;
            pointer-events: none;
            width: 1800px;
        }

        /* Placeholder for tea table image */
        .tea-table img {
            width: 100%;
            height: auto;
            display: block;

        }

        .service-card {
            background-color: #F8F2D7;
            backdrop-filter: blur(10px);
            padding: 25px 20px ;
            text-align: center;
            height: 450px;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            /* border: 1px solid rgba(255, 255, 255, 0.2); */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .service-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            height: 450px;
            border-radius: 20px;
            transform: translateY(-5px);
        }
/* Initial hidden state */
.service-card {
  opacity: 0;
  transform: translateY(-50px); /* move from top */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
        .service-default {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            transition: all 0.4s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            filter: invert(20%) sepia(70%) saturate(800%) hue-rotate(200deg) brightness(90%) contrast(120%);
        }

        .service-default-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 500;
            color: #1a1a2e;
            text-align: center;
        }

        .service-description {
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.4s ease;
            padding: 20px;
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: #002366;
            border-radius: 20px 20px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            text-align: center;
        }

        .service-text {
            color: #ffffff;
            font-size: 13px;
            line-height: 1.5;
        }

        .service-video {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: #000;
            border-radius: 0 0 20px 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-card:hover .service-default {
            opacity: 0;
            transform: translateY(-30px);
        }

        .service-card:hover .service-description {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover .service-video {
            opacity: 1;
            transform: translateY(0);
        }

        /* Services Mobile Responsive */
        @media (max-width: 768px) {
            .services-section {
                padding: 70px 30px 0px 30px;
                background-attachment: scroll;
                min-height: 80vh;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .service-card {
                height: 220px;
                max-width: 250px;
                padding: 20px 15px;
            }

            .service-card:hover {
                height: 300px;
            }

            .service-description {
                padding: 15px;
            }

            .service-title {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .service-text {
                font-size: 12px;
            }

            .services-title {
                font-size: 2.5rem;
            }

            .tea-table {
                max-width: 800px;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 60px 20px 0px 20px;
                min-height: 70vh;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }

            .service-card {
                padding: 30px 20px;
                border-radius: 15px;
                min-height: 250px;
            }

            .services-title {
                font-size: 2rem;
            }

            .tea-table {
                display: none;
            }
        }
         @media (max-width: 1600px) {
               .tea-table {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            /* max-width: 1000px; */
            width: 100%;
            z-index: 3;
            pointer-events: none;
            width: 1700px;
        }

        /* Placeholder for tea table image */
        .tea-table img {
            width: 100%;
            height: auto;
            display: block;

        }
        }
          @media (max-width: 1920px) {
             .services-section {
            padding: 100px 50px 0px 50px;
            background: url('../img/services.jpg') no-repeat center ;
            background-size: cover;
            background-attachment:scroll;
            text-align: center;
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            margin-bottom: 60px;
        }
        }
          @media (min-width: 1920px) {
             .services-section {
            padding: 100px 50px 0px 50px;
            background: url('../img/services.jpg') no-repeat center ;
            background-size: contain;
            background-attachment:scroll;
            text-align: center;
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            margin-bottom: 60px;
        }
            .tea-table {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
    width: 2200px;
            }
        }
  /* ====================================
           TEA SECTION (WHY CHOOSE US)
        ==================================== */
  .tea-section {
      position: relative;
      padding: 80px 20px;
      /* background:
          linear-gradient(135deg, rgba(248, 253, 248, 0.75) 0%, rgba(232, 245, 232, 0.75) 100%),
          url('../img/LeavesBackground.jpg'); */
           background:
          url('../img/LeavesBackground.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 2400px;
      margin-bottom: 80px;
  }

  .container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .why-choose-text {
      font-size: 16px;
      color: #000000;
      font-weight: bold;
      margin-bottom: 20px;
      letter-spacing: 1px;
  }

  .main-heading {
      font-size: 2.5rem;
      color: #002366;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 40px;
  }

  .content-wrapper {
      display: grid;
      grid-template-columns: 6fr 1fr;
      /* gap: 60px; */
      align-items: center;
      padding-left: 60px;
  }

  .text-content {
      /* max-width: 800px; */
      text-align: justify;
  }

  .description {
      font-size: 15px;
      line-height: 1.8;
      color: #000000;
      margin-bottom: 30px;
      font-weight: 400;
      text-align: center;
  }

  .tea-image {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .black-tea-container {
      width: 300px;
      height: 300px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
  }

  /* image in bottom-right corner */
  .decorative-corner-image {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 400px;
      height: 600px;
      background-image: url('../img/image-12.png');
      background-repeat: no-repeat;
      background-position: bottom right;
      background-size: contain;
      pointer-events: none;
      z-index: 0;
     left: 75%; /* Start with a base position */
    transform: translateX(50%); /* Adjust to fine-tune the offset */
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
      .main-heading {
          font-size: 3rem;
      }

      .content-wrapper {
          gap: 40px;
      }

      .black-tea-container {
          width: 250px;
          height: 250px;
      }

       .decorative-corner-image {
        width: 300px;
        height: 450px;
        left: 65%;
        transform: translateX(40%);
    }
  }

  @media (max-width: 768px) {
      .tea-section {
          padding: 60px 20px;
      }

      .content-wrapper {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 50px;
      }

      .main-heading {
          font-size: 2.5rem;
      }

      .description {
          font-size: 16px;
          line-height: 1.7;
      }

      .black-tea-container {
        display: none;
      }

      .decorative-corner-image {
          width: 250px;
      }
  }

  @media (max-width: 480px) {
      .tea-section {
          padding: 40px 15px;
      }

      .main-heading {
          font-size: 2rem;
          line-height: 1.3;
      }

      .why-choose-text {
          font-size: 16px;
      }

      .description {
          font-size: 15px;
      }

      .black-tea-container {
          width: 150px;
          height: 150px;
      }

      .decorative-corner-image {
          width: 180px;
      }
  }

  @media (max-width: 374px) {
      .tea-section {
          padding: 30px 10px;
      }

      .main-heading {
          font-size: 1.8rem;
      }

      .why-choose-text {
          font-size: 14px;
      }

      .description {
          font-size: 14px;
      }

      /* .black-tea-container {
        width: 120px;
        height: 120px;
    } */

      .decorative-corner-image {
          width: 140px;
      }
  }


  /* ====================================
           ANIMATIONS & KEYFRAMES
        ==================================== */
  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-50px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes fadeInRight {
      from {
          opacity: 0;
          transform: translateX(50px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  
 
  /* ====================================
           LARGE SCREEN OPTIMIZATIONS
        ==================================== */
  @media (min-width: 1200px) {
      /* .hero {
          padding: 200px 8% 80px;
      } */

      .hero-text h1 {
          font-size: 72px;
      }

      .product-card img {
          width: 600px;
      }

      .welcome-grid {
          gap: 90px;
          padding: 0 110px;
      }

      .services-section {
          padding: 100px 60px;
      }

      .services-grid {
          gap: 32px;
      }

      .progress-bar {
          width: 250px;
          height: 450px;
      }

      .progress-step .label {
          font-size: 18px;
          margin-left: 25px;
      }

      .progress-step .dot {
          width: 20px;
          height: 20px;
      }
  }

  @media (min-width: 1600px) {
      header {
          max-width: 1600px;
          padding: 12px 35px;
      }

      .hero {
          padding: 220px 8% 90px;
          /* max-width: 1600px; */
          margin: 0 auto;
      }

      .hero-text h1 {
          font-size: 84px;
          margin-bottom: 28px;
      }

      .product-card img {
          width: 550px;
      }

      .welcome-grid {
          max-width: 1600px;
          gap: 100px;
          padding: 0 60px;
      }

      .services-section {
          padding: 110px 70px;
      }

      .services-grid {
          max-width: 1400px;
          gap: 35px;
      }

      .progress-bar {
          width: 300px;
          height: 500px;
      }

      .progress-step .label {
          font-size: 20px;
          margin-left: 30px;
      }

      .progress-step .dot {
          width: 22px;
          height: 22px;
      }

      .welcome-header {
          padding-top: 40px;
      }
  }

  @media (min-width: 1920px) {
      header {
          max-width: 1800px;
          padding: 15px 40px;
      }

      .hero {
          padding: 250px 10% 100px;
          /* max-width: 1800px; */
          margin: 0 auto;
      }

      .hero-text h1 {
          font-size: 96px;
          margin-bottom: 32px;
      }

      .product-card img {
          width: 500px;
      }

      .welcome-grid {
          max-width: 1800px;
          gap: 120px;
          padding: 0 80px;
      }

      .services-section {
          padding: 120px 80px;
      }

      .services-grid {
          max-width: 1600px;
          gap: 40px;
      }
  }

  /* ====================================
           PRINT STYLES
        ==================================== */
  @media print {
      header {
          position: static;
          background: white;
          color: black;
          box-shadow: none;
          border: 1px solid #ccc;
          transform: none;
          left: auto;
          top: auto;
          width: 100%;
          max-width: none;
      }

      .hero {
          background: white;
          color: black;
          padding: 40px 0;
          min-height: auto;
      }

      .hero-text h1 {
          color: black;
          text-shadow: none;
      }

      .welcome-section {
          min-height: auto;
          background: white;
      }

      .welcome-grid {
          position: static;
          height: auto;
      }

      .content-section {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          margin-bottom: 30px;
      }

      .services-section {
          background: white;
          color: black;
      }

      .hamburger {
          display: none;
      }

      .nav-links {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          background: transparent;
          flex-direction: row;
      }

      .nav-links li a {
          color: black;
      }
  }

  /* ====================================
           ACCESSIBILITY & REDUCED MOTION
        ==================================== */
  @media (prefers-reduced-motion: reduce) {
      * {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
      }

      .hero-text,
      .hero-image {
          animation: none;
      }
  }

  @media (prefers-contrast: high) {

      /* .nav-links li a:hover,
      .nav-links li a.active {
          border-bottom-width: 3px;
          background: rgba(255, 255, 255, 0.1);
      } */

      .cta-button {
          border: 2px solid #000;
      }

      .service-card {
          border: 2px solid #333;
      }

      .progress-step .dot {
          border-width: 4px;
      }
  }

  /* ====================================
           LANDSCAPE ORIENTATION (MOBILE)
        ==================================== */
  @media (max-height: 500px) and (orientation: landscape) {
      .hero {
          padding: 80px 5% 40px;
          min-height: auto;
      }

      .hero-text h1 {
          font-size: 2rem;
          margin-bottom: 12px;
      }

      .hero-text p {
          font-size: 0.9rem;
          margin-bottom: 15px;
      }

      .product-card img {
          max-width: 200px;
      }

      .welcome-grid {
          padding: 40px 20px;
      }

      .services-section {
          padding: 60px 20px;
      }
  }


  -------------

  /*black tea section */
  -----------
   .black-tea-section {
      position: relative;
    /* background:
        linear-gradient(135deg, rgba(196, 152, 190, 0.85), rgba(196, 152, 190, 0.85)),
        url("./img/background_ser.png") !important; */
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    margin-top: 0;
    padding-bottom: 10px;
    align-items: center;
    z-index: 0;
    border: none;
    transition: background 1.5s ease;
  }

  .black-tea-section {
     position: relative;
    /* background:
        linear-gradient(135deg, rgba(196, 152, 190, 0.85), rgba(196, 152, 190, 0.85)),
        url("./img/background_ser.png") !important; */
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    margin-top: 0;
    padding-bottom: 10px;
    align-items: center;
    z-index: 0;
    border: none;
    transition: background 1.5s ease;
  }


  .black-tea-section {
      scroll-margin-top: 100px;
  }

  /* Floating animations */
  @keyframes float1 {

      0%,
      100% {
          transform: translateY(20px) rotate(0deg);
      }

      50% {
          transform: translateY(-30px) rotate(5deg);
      }
  }

  @keyframes float2 {

      0%,
      100% {
          transform: translateY(30px) rotate(0deg);
      }

      50% {
          transform: translateY(-15px) rotate(-3deg);
      }
  }

  /* Decorative leaves */
  .leaf {
      position: absolute;
      z-index: 1;
      pointer-events: none;
  }

  .leaf1 {
    top: 20px;
      right: 300px;
      width: 110px;
      animation: float1 3s ease-in-out infinite;
  }

  .leaf3 {
      top: 30px;
      right: 790px;
      width: 100px;
      animation: float1 4s ease-in-out infinite;
  }

  .leaf2 {
      /* bottom: 20px; */
      left: 440px;
      width: 120px;
      animation: float2 3.5s ease-in-out infinite;
  }

  .leaf4 {
      bottom: 20px;
      left: 640px;
      width: 140px;
      animation: float2 3.5s ease-in-out infinite;
  }
  .leaf5 {
      bottom: 500px;
      left: 60px;
      width: 140px;
      animation: float2 3.5s ease-in-out infinite;
  }
   .leaf6 {
      bottom: 20px;
      left: 180px;
      width: 140px;
      animation: float2 3.5s ease-in-out infinite;
  }
   .leaf7 {
      bottom: 20px;
     right: 80px;
      width: 140px;
      animation: float2 3.5s ease-in-out infinite;
  }

  .leaf img {
      width: 100%;
      height: auto;
      display: block;
  }

  Main content container .container1 {
      max-width: 1400px;
      /* background:
          linear-gradient(135deg, rgba(192, 151, 199, 0.55), rgba(158, 133, 172, 0.95)),
          url("./img/background_ser.png");
          background-size: cover; */
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items:left;
      /* justify-content: space-between; */
      gap: 80px;
      position: relative;
      z-index: 5;
      padding: 0 20px;
  }

  .text-content1,
  .content-wrapper,
  .left-column,
  .right-column {
      position: relative;
      z-index: 6;
      /* Highest */
  }

  .text-content1 {
      flex: 1;
      text-align: left;
      width: 100%;
      padding-top: 30px;
  }

  .content-wrapper1 {
      padding-left: 140px;
      display: grid;
      grid-template-columns: 6fr 1fr;
      padding-right: 200px;
      padding-top: 40px;
  }

  .subtitle1 {
      font-size: 18px;
      color: #2d1b34;
      margin-bottom: 10px;
      font-weight: 400;
      text-align: center;
  }

  .subtitle2 {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 600;
  }

    /* .subtitle2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 0 30px; 
}

.subtitle2::before,
.subtitle2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px; 
    height: 2px; 
    background-color: black; 
}

.subtitle2::before {
    left: 0; 
    transform: translateY(-50%);
}

.subtitle2::after {
    right: 0; 
    transform: translateY(-50%);
} */

  .main-title1 {
      font-size: 50px;
      color: #5a1f2a;
      font-weight: 900;
      margin: 0;
      line-height: 0.9;
      letter-spacing: 5px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      position: relative;
      text-align: center;
      margin-bottom: 15px;
      text-transform: uppercase;
  }

  .description1 {
      margin-bottom: 18px;
      font-size: 18px;
      color: #5a1f2a;
      line-height: 1.6;
      opacity: 0.8;
      max-width: 800px;
      /* padding-left: 140px; */
  }

   .description2 {
      margin-bottom: 18px;
      font-size: 18px;
      color: #5a1f2a;
      line-height: 1.6;
      opacity: 0.8;
      max-width: 800px;
      padding-top: 20px;
      /* padding-left: 140px; */
  }

  .quote-btn1 {
      padding: 15px 35px;
      background-color: transparent;
      border: 2px solid #5a1f2a;
      color: #5a1f2a;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 20px;
      padding-left: 40px;
  }

  .quote-btn1:hover {
      /*background-color: #5a1f2a;*/
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(90, 31, 42, 0.3);
  }

  .image-content1 {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      perspective: 500px;
      /* padding-right: 550px; */
  }

 /* Base style for your tea box */
.tea-box {
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.18));
    will-change: transform, opacity;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Slide in FROM LEFT */
.slide-in {
    animation: slideInFromLeft 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Slide out TO RIGHT */
.slide-out {
    animation: slideOutToRight 1.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

/* Keyframes: Enter from left */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-120%);   /* Starts far left */
    }
    to {
        opacity: 1;
        transform: translateX(0);       /* Stops perfectly in center */
    }
}

/* Keyframes: Exit to right with a gentle hold feel */
@keyframes slideOutToRight {
    from {
        opacity: 1;
        transform: translateX(0);       /* Starts in center */
    }
    to {
        opacity: 0;
        transform: translateX(120%);    /* Slides out to the right */
    }
}
  /* Responsive design */
  @media (max-width: 768px) {
      .container1 {
          flex-direction: column;
          text-align: center;
          gap: 40px;
      }

      .main-title1 {
          font-size: 80px;
      }

      .tea-box-mock {
          width: 250px;
          height: 320px;
      }

      .leaf1,
      .leaf2 {
          width: 60px;
      }
  }

  /* Responsive Design Adjustments */
  @media (max-width: 1200px) {
      .main-title1 {
          font-size: 90px;
      }

      .container1 {
          gap: 60px;
          padding: 0 40px;
      }

      .leaf1,
      .leaf3 {
          right: 200px;
      }

      .leaf2 {
          left: 200px;
      }
  }

  @media (max-width: 992px) {
      .main-title1 {
          font-size: 70px;
      }

      .description1 {
          max-width: 100%;
          font-size: 14px;
      }

      .container1 {
          flex-direction: column;
          text-align: center;
          padding-left: 0;
          padding-right: 0;
          gap: 50px;
      }

      .image-content1 {
          order: -1;
          /* Image appears above text on smaller screens */
      }

      .content-wrapper {
          padding-left: 0;
      }

      .tea-box {
          max-width: 280px;
      }

      .quote-btn1 {
          padding: 12px 28px;
          font-size: 13px;
      }

      .leaf1,
      .leaf3,
      .leaf2,
      .leaf4 {
          width: 60px;
      }
  }

  @media (max-width: 768px) {
    .black-tea-section {
        padding-top: 60px;
        padding-bottom: 30px;
        min-height: auto;
        /* background:
            linear-gradient(135deg, rgba(196, 152, 190, 0.85), rgba(196, 152, 190, 0.85)),
            url("../img/background_ser.png") !important; */
        background-size: cover !important;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container1 {
        width: 90%;
        margin: 0 auto;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .text-content1 {
        text-align: center;
        width: 100%;
    }

    .content-wrapper1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0;
    }

    .left-column {
        max-width: 100%;
        text-align: center;
    }

    .right-column {
        display: flex;
        justify-content: center;
        align-items: center;
        order: -1; /* Image appears above text */
    }

    .main-title1 {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -0.5px;
    }

    .subtitle1 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .description1 {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .quote-btn1 {
        padding: 10px 25px;
        font-size: 12px;
    }

    .tea-box {
        max-width: 250px;
        width: 100%;
        height: auto;
    }

    .leaf {
        width: 50px !important;
    }

    .leaf1 {
        top: 10px;
        right: 5%;
    }

    .leaf2 {
        bottom: 10px;
        left: 5%;
    }

    .leaf3 {
        top: 15%;
        right: 5%;
    }

    .leaf4 {
        bottom: 15%;
        left: 5%;
    }

    .leaf5 {
        top: 25%;
        left: 8%;
    }

    .leaf6 {
        bottom: 20%;
        left: 15%;
    }

    .leaf7 {
        bottom: 5%;
        right: 15%;
    }
}

@media (max-width: 480px) {
    .main-title1 {
        font-size: 36px;
    }

    .subtitle1 {
        font-size: 12px;
    }

    .description1 {
        font-size: 12px;
    }

    .quote-btn1 {
        padding: 8px 20px;
        font-size: 11px;
    }

    .tea-box {
        max-width: 200px;
    }

    .leaf {
        display: none; /* Hide leaves on very small screens */
    }

    .container1 {
        gap: 15px;
    }
}

  /* ==================== BENEFITS SECTION ==================== */
  .our-products-section {
      position: relative;
      background-color: #ffffff;
      padding: 100px 0;
      overflow: hidden;
      text-align: center;
  }

  /* Decorative elements positioning */
  .decorative-leaf-top-left {
      position: absolute;
      top: 10;
      left: 0;
      width: 190px;
      z-index: 3;
      /* transform: rotate(20deg);  */
  }


  .decorative-cup-top-right {
      position: absolute;
      top: -20px;
      right: 0;
      width: 250px;
      z-index: 3;
  }

  .decorative-leaf-top-left img,
  .decorative-cup-top-right img {
      width: 100%;
      height: auto;
      display: block;
  }

  .container-products {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
  }

  .products-subtitle {
      font-size: 16px;
      color: #000000;
      margin-bottom: 10px;
      /* font-weight: bold; */
      margin: 0 auto 2.5rem auto;
      text-align: center;
      max-width: 900px;
  }

  .products-title {
      font-size: 42px;
      color: #002366;
      margin-bottom: 50px;
      font-weight: 700;
      line-height: 1.2;
  }

  /* Products Grid */
  .products-grid1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      /* Responsive grid */
      gap: 10px;
      justify-content: center;
      align-items: stretch;
      /* Ensure cards stretch to same height */
  }

  .product-card1 {
      background-color: #ffffff;
      border-radius: 10px;
      padding: 10px;
      /* Adjusted padding */
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #d8cc5b;
      /* Subtle border */
      overflow: hidden;
      /* Ensure rounded corners on image */
      background-color: #f8f5e2;
  }

  .product-card1:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .product-image-wrapper {
      width: 50px;
      height: 50px;
      /* Fixed height for images */
      overflow: hidden;
      border-radius: 8px;
      /* Slightly rounded corners for image wrapper */
      margin-bottom: 20px;
  }

  .product-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Cover the area, cropping if necessary */
      display: block;
      transition: transform 0.3s ease;
  }

  .product-card1:hover .product-image-wrapper img {
      transform: scale(1.05);
  }

  .product-card1 h3 {
      font-size: 22px;
      color: #333;
      margin-bottom: 10px;
      font-weight: 600;
  }

  .product-card1 p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
      /* Allow description to take available space */
  }

  .view-product-btn {
      padding: 12px 25px;
      background-color: #5a1f2a;
      /* Dark red button color */
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .view-product-btn:hover {
      background-color: #7a2b3c;
      /* Slightly darker on hover */
      transform: translateY(-2px);
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
      .products-title {
          font-size: 36px;
      }

      .products-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 25px;
      }
  }

  @media (max-width: 768px) {
      .products-title {
          font-size: 30px;
          margin-bottom: 40px;
      }

      .products-grid {
          grid-template-columns: 1fr;
          /* Stack cards on smaller screens */
          gap: 25px;
      }

      .product-card {
          max-width: 400px;
          /* Limit width of stacked cards */
          margin: 0 auto;
          /* Center stacked cards */
      }

      /* Hide some decorative elements on smaller screens if they become too intrusive */
      .decorative-leaf-top-left,
      .decorative-cup-bottom-left {
          display: none;
      }
  }

  @media (max-width: 480px) {
      .products-title {
          font-size: 24px;
      }

      .products-subtitle {
          font-size: 14px;
      }

      .product-card h3 {
          font-size: 18px;
      }

      .product-card p {
          font-size: 13px;
      }

      .view-product-btn {
          padding: 10px 20px;
          font-size: 13px;
      }

      /* Hide all decorative elements on very small screens */
      .decorative-leaf-top-left,
      .decorative-leaf-bottom-right,
      .decorative-cup-top-right,
      .decorative-cup-bottom-left {
          display: none;
      }

      .our-products-section {
        padding: 60px 0;
      }
  }



  ----------------

  /*villa section*/
  --------------- 
  
 .villa-section {
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: #f5f5f5; Changed to match image background */
}

.container-villa {
    background: linear-gradient(135deg, rgba(3, 38, 66, 0.85), rgba(22, 34, 71, 0.85)), url("../img/image-11.png");
    background-size: cover;
      background-position: 50% 30%;
      background-repeat: no-repeat;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 2400px;
    box-sizing: border-box;
    padding-bottom: 60px;
}

.villa-subtitle {
    font-size: 16px;
    color: #ffb606;
    margin-bottom: 0.625rem;
    font-weight: 600;
    text-align: center;
    padding-top: 40px;
}

.villa-title {
    font-size: clamp(28px, 5vw, 42px);
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.villa-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #ffffff;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    padding-bottom: 2rem;
    text-align: center;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin: 40px 0;
}

.gallery-content {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.gallery-card {
    flex: 0 0 auto;
    width: calc((100% - 48px) / 4);   /* 3 cards visible – gap×2 */
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(49, 2, 2, 0.92);
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
}

.gallery-nav-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 8px; }
.next-btn { right: 8px; }

/* ──────────────────────────────────────────────── */
/* Responsive layout                               */
/* ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .gallery-card {
        width: calc((100% - 24px) / 2);   /* 2 cards */
    }
}

@media (max-width: 680px) {
    .gallery-card {
        width: 85%;                      /* almost 1 card – centered feel */
        margin: 0 auto;
    }
    .gallery-wrapper {
        padding: 0 40px;
    }
    .gallery-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}
@media (max-width: 1024px) {
    .villa-title {
        font-size: clamp(24px, 4.5vw, 36px);
    }

    .villa-description {
        font-size: clamp(13px, 1.4vw, 15px);
        max-width: 700px;
    }

    /* .gallery-card {
        flex: 0 0 clamp(180px, 28vw, 230px);
    }

    .gallery-card img {
        height: clamp(140px, 18vw, 180px);
    } */
}

@media (max-width: 768px) {
    .villa-section {
        padding: 4rem 0;
        /* min-height: 90vh; */
    }

    /* .container-villa {
        padding: 0 1rem;
    } */

    .villa-title {
        font-size: clamp(22px, 4vw, 32px);
    }

    .villa-description {
        font-size: clamp(12px, 1.3vw, 14px);
        margin-bottom: 2rem;
    }
/* 
    .gallery-card {
        flex: 0 0 clamp(160px, 40vw, 200px);
    }

    .gallery-card img {
        height: clamp(120px, 25vw, 160px);
    }

    .gallery-nav-btn {
        width: clamp(35px, 4.5vw, 45px);
        height: clamp(35px, 4.5vw, 45px);
        font-size: clamp(18px, 2.5vw, 22px);
    } */
}

@media (max-width: 480px) {
    .villa-section {
        padding: 3rem 0;
        /* min-height: 80vh; */
    }

    .villa-subtitle {
        font-size: 14px;
    }

    .villa-title {
        font-size: clamp(18px, 3.5vw, 24px);
    }

    .villa-description {
        font-size: clamp(11px, 1.2vw, 13px);
        margin-bottom: 1.5rem;
    }

    /* .gallery-card {
        flex: 0 0 clamp(140px, 50vw, 180px);
    }

    .gallery-card img {
        height: clamp(100px, 30vw, 140px);
    }

    .gallery-nav-btn {
        width: clamp(30px, 4vw, 40px);
        height: clamp(30px, 4vw, 40px);
        font-size: clamp(16px, 2vw, 20px);
    } */
}
  ------------

  /*vicorini section*/
  -------------
  
  
 .villaa-section {
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: #f5f5f5; Changed to match image background */
}

.container-villaa {
    background: linear-gradient(135deg, rgba(13, 34, 26, 0.85), rgba(18, 77, 43, 0.85)), url("../img/victorini10.jpeg");
    background-size: cover;
      background-position: 50% 30%;
      background-repeat: no-repeat;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 2400px;
    box-sizing: border-box;
    padding-bottom: 60px;
    margin-top: 100px;
    margin-bottom: 60px;
}

.villaa-subtitle {
    font-size: 16px;
    color: #ffb606;
    margin-bottom: 0.625rem;
    font-weight: 600;
    text-align: center;
    padding-top: 40px;
}

.villaa-title {
    font-size: clamp(28px, 5vw, 42px);
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.villaa-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #ffffff;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    padding-bottom: 2rem;
    text-align: center;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin: 40px 0;
}

.gallery-content {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.gallery-card {
    flex: 0 0 auto;
    width: calc((100% - 48px) / 4);   /* 3 cards visible – gap×2 */
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(49, 2, 2, 0.92);
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
}

.gallery-nav-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 8px; }
.next-btn { right: 8px; }

/* ──────────────────────────────────────────────── */
/* Responsive layout                               */
/* ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .gallery-card {
        width: calc((100% - 24px) / 2);   /* 2 cards */
    }
}

@media (max-width: 680px) {
    .gallery-card {
        width: 85%;                      /* almost 1 card – centered feel */
        margin: 0 auto;
    }
    .gallery-wrapper {
        padding: 0 40px;
    }
    .gallery-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}
@media (max-width: 1024px) {
    .villaa-title {
        font-size: clamp(24px, 4.5vw, 36px);
    }

    .villaa-description {
        font-size: clamp(13px, 1.4vw, 15px);
        max-width: 700px;
    }

    /* .gallery-card {
        flex: 0 0 clamp(180px, 28vw, 230px);
    }

    .gallery-card img {
        height: clamp(140px, 18vw, 180px);
    } */
}

@media (max-width: 768px) {
    .villaa-section {
        padding: 4rem 0;
        /* min-height: 90vh; */
    }

    /* .container-villaa {
        padding: 0 1rem;
    } */

    .villaa-title {
        font-size: clamp(22px, 4vw, 32px);
    }

    .villaa-description {
        font-size: clamp(12px, 1.3vw, 14px);
        margin-bottom: 2rem;
    }
/* 
    .gallery-card {
        flex: 0 0 clamp(160px, 40vw, 200px);
    }

    .gallery-card img {
        height: clamp(120px, 25vw, 160px);
    }

    .gallery-nav-btn {
        width: clamp(35px, 4.5vw, 45px);
        height: clamp(35px, 4.5vw, 45px);
        font-size: clamp(18px, 2.5vw, 22px);
    } */
}

@media (max-width: 480px) {
    .villaa-section {
        padding: 3rem 0;
        /* min-height: 80vh; */
    }

    .villaa-subtitle {
        font-size: 14px;
    }

    .villaa-title {
        font-size: clamp(18px, 3.5vw, 24px);
    }

    .villaa-description {
        font-size: clamp(11px, 1.2vw, 13px);
        margin-bottom: 1.5rem;
    }

    .container-villaa {
    
    padding-bottom: 60px;
    margin-top: 10px;
    margin-bottom: 40px;
    }
    /* .gallery-card {
        flex: 0 0 clamp(140px, 50vw, 180px);
    }

    .gallery-card img {
        height: clamp(100px, 30vw, 140px);
    }

    .gallery-nav-btn {
        width: clamp(30px, 4vw, 40px);
        height: clamp(30px, 4vw, 40px);
        font-size: clamp(16px, 2vw, 20px);
    } */
}


  -------------------

  /*blog section*/
  ------------- .blog-section {
      /* max-width: 1200px; */
      margin: 0 auto;
      padding: 60px 30px;
  }

  .section-header {
      text-align: center;
      margin-bottom: 40px;
  }

  .section-subtitle {
      color: #000000;
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      padding-top: 40px;
  }

  .section-title {
      color: #002366;
      font-size: 42px;
      font-weight: 600;
      margin-bottom: 30px;
  }

  .cards-container {
      display: grid;
      gap: 30px;
      margin-bottom: 30px;
      padding-left: 60px;
      padding-right: 60px;
  }

  .first-row {
      grid-template-columns: 1fr 1fr;
      /* gap: 80px; */
  }

  .second-row {
      grid-template-columns: repeat(3, 1fr);
  }

  .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  }

  .card:hover {
      /* transform: translateY(-5px); */
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .card-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
  }

  .card-content {
      padding: 20px;
  }

  .card-title {
      color: #002366;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
      display: -webkit-box;
      /* -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; */
      overflow: hidden;
  }

  .card-description {
      color: #000000;
      font-size: 13px;
      line-height: 1.4;
      margin-bottom: 15px;
      display: -webkit-box;
      /* -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; */
      overflow: hidden;
  }

  .view-more-btn {
      background-color: #002366;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

  .view-more-btn:hover {
      background-color: #1a472a;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
      .blog-section {
          padding: 30px 20px;
      }

      .section-title {
          font-size: 28px;
      }

      .cards-container {
          gap: 25px;
      }
  }

  @media (max-width: 768px) {
      .first-row {
          grid-template-columns: 1fr;
      }

      .second-row {
          grid-template-columns: 1fr;
      }

      .section-title {
          font-size: 24px;
      }

      .card-image {
          height: 180px;
      }

      .card-content {
          padding: 15px;
      }
      .cards-container {
        padding-left: 10px;
        padding-right: 10px;
      }
  }

  @media (max-width: 480px) {
      .blog-section {
          padding: 40px 15px;
      }

      .section-title {
          font-size: 20px;
      }

      .card-image {
          height: 160px;
      }

      .card-title {
          font-size: 15px;
      }

      .card-description {
          font-size: 12px;
      }
        .cards-container {
        padding-left: 10px;
        padding-right: 10px;
      }
  }

  /* Tablet landscape */
  @media (min-width: 769px) and (max-width: 1024px) {
      .second-row {
          grid-template-columns: repeat(2, 1fr);
      }
  }


  -------------------

  /*company section */
  ----------------
  
  .companies-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #fff;
  }

  .section-header .subtitle {
      font-size: 16px;
      color: #000000;
      margin-bottom: 10px;
      font-weight: bold;
      padding-top: 60px;
  }

  .section-header .main-title {
      font-size: 42px;
      color: #002366;
      font-weight: 600;
      margin-bottom: 40px;
  }

  .companies-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding-bottom: 80px;
  }

  .logo-item {
      width: 160px;
      height: 160px;
      background-color: #00205B;
      border-radius: 50%;
      display: flex;
      position: relative;
    /* display: inline-block; */
      overflow: hidden;
      justify-content: center;
      align-items: center;
      padding: 20px;
       cursor: pointer;
  }

  .logo-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
        transition: transform 0.3s ease;
  }
  .logo-item:hover img {
    transform: scale(1.05);
     opacity: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#00205B;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* transition: opacity 0.3s ease; */

}

.logo-item:hover .overlay {
    opacity: 1;
}
  /* Responsive adjustments */
  @media (max-width: 768px) {
      .section-header .main-title {
          font-size: 24px;
      }

      .logo-item {
          width: 130px;
          height: 130px;
      }
  }

  @media (max-width: 480px) {
      .logo-item {
          width: 100px;
          height: 100px;
      }
  }


  /* footer section */
.footer {
    background: linear-gradient(rgba(4, 23, 65, 0.9), rgb(22 66 141 / 90%)), url(../img/Footer.png) center / cover;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr ;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    max-width: 400px;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}


@media (max-width: 768px) {
   
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

.logo{
    /* padding-left: 110px; */
    width: 200px;
}


    .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content:center;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}

}

@media (max-width: 480px) {
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {

    /* Navigation */
    .nav-links {
        gap: 0px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        padding: 100px 6% 60px;
        min-height: 90vh;
    }

}