        /* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f4f4f4;
        }
  
        /* Navigation Styles */
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px px;
            background: linear-gradient(to right, #28a745, #007bff);
            position: relative;
        }
  
        .logo-img {
          height: 50px; /* Increase or decrease this value */
          width: auto;
      }
      
  
        .logo h2 {
            color: white;
            font-size: 1.5rem;
        }
  
        #mobileMenu {
          background: rgba(0, 0, 0, 0.85);
          backdrop-filter: blur(10px);
          transition: all 0.3s ease-in-out;
      }

      .menu-links {
          display: none;
          flex-direction: column;
          width: 100%;
          position: absolute;
          top: 60px;
          left: 0;
          background: rgba(6, 6, 6, 0.85);
          backdrop-filter: blur(10px);
          padding: 10px;
          border-radius: 5px;
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          z-index: 100;
      }

      .menu-links a {
          text-decoration: none;
          color: white;
          padding: 12px;
          display: block;
          transition: 0.3s;
          font-size: 1rem;
      }

      .menu-links a:hover {
          background: rgba(255, 255, 255, 0.2);
          border-radius: 5px;
      }

      /* Dropdown Styles */
      .dropdown {
          position: relative;
      }

      .dropdown-menu {
          display: none;
          position: static;
          margin-top: 5px;
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          box-shadow: none;
          border-radius: 5px;
          z-index: 10;
          padding-left: 15px;
      }

      .dropdown-menu a {
          color: white;
          padding: 10px;
          display: block;
      }

      .dropdown-menu a:hover {
          background: rgba(255, 255, 255, 0.3);
      }

      #mobileMenu.open {
        display: block;
      }
      

      /* Mobile Menu Button */
      .hamburger {
          display: block;
          cursor: pointer;
          background: none;
          border: none;
          padding: 0.5rem;
          z-index: 110;
      }

      .hamburger span {
          display: block;
          width: 25px;
          height: 3px;
          background-color: white;
          margin: 5px 0;
          transition: all 0.3s ease;
      }

      /* Overlay for mobile */
      .overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 90;
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s;
      }

      .overlay.active {
          opacity: 1;
          visibility: visible;
      }

      /* Desktop Styles */
      @media (min-width: 768px) {
          .hamburger {
              display: none;
          }

          .menu-links {
              display: flex;
              flex-direction: row;
              position: static;
              width: auto;
              background: none;
              backdrop-filter: none;
              box-shadow: none;
              border-radius: 0;
              padding: 0;
          }

          .menu-links a {
              padding: 10px 15px;
          }

          .dropdown-menu {
              position: absolute;
              left: 0;
              top: 100%;
              width: 180px;
              background: rgb(252, 252, 252);
              box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
              padding-left: 0;
          }

          .dropdown-menu a {
              color: black;
          }

          .dropdown-menu a:hover {
              background: #f4f4f4;
          }

          .dropdown:hover .dropdown-menu {
              display: block;
          }

          .overlay {
              display: none;
          }
      }

      /* Active states for mobile */
      .hamburger.active span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 6px);
      }
      
      .hamburger.active span:nth-child(2) {
          opacity: 0;
      }
      
      .hamburger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -6px);
      }

      .menu-links.active {
          display: flex;
      }

      /* Dropdown arrow rotation */
      .dropdown-toggle::after {
          content: ' ▼';
          font-size: 0.8em;
          transition: transform 0.3s;
      }

      .dropdown-toggle.active::after {
          transform: rotate(180deg);
      }

  
        /* Active states for mobile */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
  
        .menu-links.active {
            display: flex;
        }
  
        /* Dropdown arrow rotation */
        .dropdown-toggle::after {
            content: ' ▼';
            font-size: 0.8em;
            transition: transform 0.3s;
        }
  
        .dropdown-toggle.active::after {
            transform: rotate(180deg);
        }
  
        .hero {
          background: url('image/Green8.jpeg') no-repeat center center/cover;
          color: #fff;
          text-align: center;
          padding: 5rem 1rem;
            
        }
        
        .hero h1 {
          background: linear-gradient(45deg, #0a530d, #0077b6, #0096c7, #48cae4);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: bold;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
          position: relative;
          
        }
        
        .hero p {
          font-size: 2.0rem;
          font-weight: 400;
          color: #fefefee7;
          text-shadow: 2px 2px 10px rgba(2, 2, 2, 0.3);
        }
  
  
        /* -------------------------------------------------------- This design for Nav button sliding-------------------- */
        
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      }
  
      /* Slider Container */
   .slider-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: auto;
    aspect-ratio: 16/9;
    margin: 15px auto 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* Slider */
  .slider {
    display: flex;
    height: 100%;
  }
  
  /* Individual Slide */
  .slide {
    min-width: 100%;
    position: relative;
  }
  
  /* Image Styling */
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Text Overlay */
  .slide-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    
    /* Gradient Text */
    background: linear-gradient(45deg, #0a530d, #0077b6, #0096c7, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* More Transparent Background */
    background-color: rgba(255, 255, 255, 0.15); /* More transparent (15% opacity) */
    
    border-radius: 8px;
    
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .slide-text {
      font-size: 0px;
      padding: 10px 16px;
      top: 25%;
      background-color: rgba(255, 255, 255, 0.12); /* Even more transparent on tablet */
    }
  }
  
  @media (max-width: 480px) {
    .slide-text {
      font-size: 0px;
      padding: 8px 12px;
      top: 15%;
      
      background-color: rgba(255, 255, 255, 0.1); /* Most transparent on mobile */
      white-space: nowrap; /* Prevents text from wrapping */
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
      text-align: center;
    }
  }
  
  
  
  /* Navigation Buttons */
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
  }
  
  .prev, .next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
  }
  
  /* Bullet Indicators */
  .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    padding: 5px;
  }
  
  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ff6b6b;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
    opacity: 0.7;
  }
  
  /* Different Colors for Each Dot */
  .dot:nth-child(1) { background-color: #ff6b6b; } /* Red */
  .dot:nth-child(2) { background-color: #48dbfb; } /* Blue */
  .dot:nth-child(3) { background-color: #1dd1a1; } /* Green */
  .dot:nth-child(4) { background-color: #feca57; } /* Yellow */
  
  .dot:hover {
    transform: scale(1.3);
    opacity: 1;
  }
  
  .dot.active {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  }
  
  /*Amenties bar */
  
  #property-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 20px;
    max-width: 1600px;
    margin: auto;
    padding: 20px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    #property-list {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
      gap: 16px;
      padding: 16px;
    }
  }
  
  @media (max-width: 768px) {
    #property-list {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
      gap: 12px;
      padding: 12px;
    }
  }
  
  @media (max-width: 480px) {
    #property-list {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 10px;
    }
  }
  
  /* ----------------------------------------------------KM Design ------------------------------------------------*/
  
  .distance-tracker {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 5px;
  }
  
  .tracker-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .km-box {
    min-width: 100%;
    padding: 10px;
  }
  
  .km-card {
    background: linear-gradient(135deg, #2af598 0%, #009efd 100%);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
  }
  
  .km-card:nth-child(2n) {
    background: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  }
  
  .km-card:nth-child(3n) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  }
  
  .km-card:nth-child(4n) {
    background: linear-gradient(135deg, #0cebeb 0%, #20e3b2 50%, #29ffc6 100%);
  }
  
  .km-card:nth-child(5n) {
    background: linear-gradient(135deg, #08aeea 0%, #2af598 100%);
  }
  
  .km-card:nth-child(6n) {
    background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
  }
  
  .km-card:nth-child(7n) {
    background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
  }
  
  .km-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  }
  
  .km-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }
  
  
  .km-label {
    font-size: 1.2rem;
    color: rgba(7, 7, 17, 0.9);
    font-weight: 500;
  }
  
  /* Changed from progress-container to tracker-progress */
  .tracker-progress {
    width: 90%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    margin: 20px auto 0;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00b09b, #96c93d);
    border-radius: 3px;
    transition: width 0.5s linear;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  
  /* Desktop - show 3 boxes */
  @media (min-width: 768px) {
    .km-box {
        min-width: calc(100% / 3);
    }
  }
  
  /* Mobile - show 1 box */
  @media (max-width: 767px) {
    .km-box {
        min-width: 100%;
        min-height: 20px;
    }
  }
  
  /* --------------------------------------Slider Media&Events------------------------------*/
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .carousel-wrapper {
    width: 95%;
    max-width: 100vw; /* 🔹 Full screen width */
    margin: auto;
  }
  
  .carousel-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b, #86a8e7, #7f7fd5);
  }
  
  .carousel-container {
    width: 100%;
    max-width: 100vw; /* 🔹 Full screen width */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    padding-top: 10px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px; 
  }
  
  .carousel-item {
    flex: 0 0 calc((100% / 3) - 20px); 
    text-align: center;
  }
  
  .carousel-item img {
    width: 100%;
    height: 58vh;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .progress-track {
    width: 90%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    margin: 20px auto 0;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #4fd31b, #2192ba);
    transition: width 1.5s linear;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .carousel-track {
      gap: 0px; /* Mobile me gap hataya */
    }
    .carousel-item {
      flex: 0 0 100%; /* 🔹 Mobile me ek image full width */
    }
    .carousel-item img {
      width: 100%;
      height: 48vh; /* 🔹 Mobile ke liye height adjust */
      object-fit: cover; /* 🔹 Image ko crop karke container me fit karega */
    }
  }
  
  
  
  /* Footer area---------------------------------------------*/
  
  .about, .contact {
    padding: 2rem;
    text-align: center;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact form input, .contact form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 2px;
  }
  
  .contact form button {
    background: #333;
    color: #fff;
    padding: 0.65rem;
    border: none;
    border-radius: 1px;
    cursor: pointer;
  }
  
  
  .contact-buttons {
    display: flex;
    gap: 20px; /* Icons ke beech ka distance */
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  
  .contact-buttons {
  display: flex;
  flex-direction: column;  /* Icons vertically stack honge */
  gap: 14px;  /* Icons ke beech ka distance */
  position: fixed;
  bottom: 20px;
  right: 20px;
  align-items: center; /* Icons ko center me rakhne ke liye */
  }
  
  .contact-buttons a {
  display: inline-block;
  }
  
  
  
  .contact-buttons .icon {
  width: 30px;  /* Icon size increased */
  height: 30px;
  border-radius: 50%; /* Perfect circular shape */
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth animation */
  }
  
  .contact-buttons .icon:hover {
  transform: scale(1.2) rotate(5deg); /* Slight pop-out and tilt effect */
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4); /* More depth on hover */
  }
  
  /* Tablet View (768px se bade screens ke liye) */
  @media (min-width: 568px) {
  .contact-buttons .icon {
    width: 20px;
    height: 20px;
  }
  }
  
  /* Desktop View (1024px se bade screens ke liye) */
  @media (min-width: 1024px) {
  .contact-buttons .icon {
    width: 40px;
    height: 40px;
  }
  }
  
  
  .footer {
  background: linear-gradient(to right, #7ae163, #0b9d6f, #15b8d1);
  color: white;
  text-align: center;
  padding: 20px;
  }
  .address-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  }
  .address-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  width: 90%;
  max-width: 300px;
  text-align: center;
  }
  .icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
  }
  .icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out, background 0.3s;
  }
  .icons a img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  }
  .icons a:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.4);
  }
  @media (max-width: 600px) {
  .icons a {
      width: 35px;
      height: 35px;
  }
  .icons a img {
      width: 26px;
      height: 26px;
  }
  }
  
  /*-----------------------Page Duplex----------------------*/
  
  .nature-gallery {
    position: relative;
    padding-top: 20px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    
  }
  
  .gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .gallery-card {
    min-width: 100%;
    padding: 0 8px;
  }
  
  .gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
  }
  
  .gallery-img:hover {
    transform: scale(1.02);
  }
  
  .gallery-caption {
    text-align: center;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #333;
  }
  
  /* Navigation buttons */
  .gallery-prev, .gallery-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-prev {
    left: 20px;
  }
  
  .gallery-next {
    right: 20px;
  }
  
  .gallery-prev:hover, .gallery-next:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Progress bar */
  .gallery-progress-container {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00b09b, #96c93d);
    border-radius: 3px;
    transition: width 0.2s linear;
  }
  
  .gallery-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    transition: width linear;
  }
  
  /* Indicator dots */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bdbdbd;
    cursor: pointer;
    transition: all 0.5s;
  }
  
  .gallery-dot.active {
    background: linear-gradient(135deg, #113d9d, #05224a);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(60, 20, 179, 0.273);
  }
  
  /* Desktop view - show 3 cards */
  @media (min-width: 992px) {
    .gallery-card {
        min-width: calc(100% / 3);
        padding-top: 10px;
    }
    
    .gallery-img {
        height: 500px;
    }
  }
  
  /* Tablet view - show 2 cards */
  @media (min-width: 768px) and (max-width: 991px) {
    .gallery-card {
        min-width: 50%;
        padding-top: 10px;
    }
  }
  
  /* Mobile view - show 1 card */
  @media (max-width: 767px) {
    .gallery-card {
        min-width: 100%;
        padding-top: 10px;
    }
    
    .gallery-img {
        height: 350px;
    }
    
    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
      
    }
  }
  
  /*---------bhk details----------*/
  
  .view-container {
    position: relative;
    padding-top: 20px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .view-slides {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .view-item {
    min-width: 100%;
    padding: 0 8px;
  }
  
  .view-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
  }
  
  .view-title {
    text-align: center;
    padding: 12px 0;
    color: #333;
    font-size: 1.1rem;
  }
  
  /* Navigation buttons */
  .nav-prev, .nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-prev {
    left: 15px;
  }
  
  .nav-next {
    right: 15px;
  }
  
  .nav-prev:hover, .nav-next:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Indicator dots */
  .view-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .view-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .view-dot.active {
    background: #07438b;
    transform: scale(1.3);
  }
  
  /* Desktop view - show 3 items */
  @media (min-width: 992px) {
    .view-item {
        min-width: calc(100% / 3);
        padding-top: 10px;
  
    }
    
    .view-img {
        height: 500px;
    }
  }
  
  /* Tablet view - show 2 items */
  @media (min-width: 768px) and (max-width: 991px) {
    .view-item {
        min-width: 50%;
        padding-top: 10px;
    }
  }
  
  /* Mobile view - show 1 item */
  @media (max-width: 767px) {
    .view-item {
        min-width: 100%;
        padding-top: 10px;
    }
    
    .view-img {
        height: 250px;
    }
  }
  
  
  .highlight-heading {
    font-family: 'Merriweather', serif;
    color: white;
    text-align: center;
    padding: 0.5rem 0.5rem; /* horizontal padding increased */
    margin: 20px auto;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: normal;
    border-radius: 0.375rem;
    transform: scale(0.96);
    animation: fadeIn 1s ease-in-out;
    background: linear-gradient(45deg, #0b6623, #0077b6, #00509d, #003f88);

    width: 100%;
    max-width: 2000px;

    font-size: 1.5rem; /* text-2xl */
}


@media (min-width: 640px) {
    .highlight-heading {
        font-size: 1.875rem; /* sm:text-3xl */
    }
}

@media (min-width: 768px) {
    .highlight-heading {
        font-size: 2.25rem; /* md:text-4xl */
    }
}

@media (min-width: 1024px) {
    .highlight-heading {
        font-size: 3rem; /* lg:text-5xl */
    }
}

@media (min-width: 1280px) {
    .highlight-heading {
        font-size: 1.875rem; /* xl:text-3xl (you had it reset smaller at xl) */
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(0.96);
    }
}

  
  
 
  
  