        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    /* Navbar */
    nav {
      width: 100%;
      padding: 20px 60px;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    nav .logo {
      font-size: 30px;
      font-weight: 700;
      color: #4caf50;
      margin-right: 320px;
    }
  
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li a {
      text-decoration: none;
      font-size: 16px;
      color: #fff;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #ffd700;
    }

    .slider {
      position: relative;
      height: 65vh;
      width: 100%;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    /* Dark overlay for opacity effect */
    .slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4); /* adjust 0.5 for more/less opacity */
    }

    /* Content in center */
    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      max-width: 700px;
      z-index: 2; /* keep above overlay */
    }

    .slide-content h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .slide-content p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .btn {
      padding: 12px 30px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 30px;
      transition: 0.3s;
    }

    .btn-yellow {
      background: #ffd700;
      color: #000;
    }

    .btn-yellow:hover {
      background: #ffb700;
    }


      .contact-section {
      padding: 80px 10%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: stretch;
    }



    :root {
      --bg1: #e12b2c;    /* red from logo */
      --bg2: #2f6b2f;    /* dark green from logo */
      --bg3: #d9efb5;    /* light yellow-green */
      --text: #ffffff;
      --muted: #d9efb5;
      --accent: #e12b2c;
      --accent-2: #2f6b2f;
      --glow: 0 15px 40px rgba(225, 43, 44, 0.35);
      --radius: 20px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

 h2 {
  text-align: center;                 
  font-size: 2.5rem;                 
  font-weight: 700;                    
  letter-spacing: 2px;                
  margin-bottom: 50px;                
  text-transform: uppercase;           
  color: #2f6b2f;                      
  text-shadow: 2px 2px 8px rgba(0,0,0,0.1); 
  position: relative;                  
}

/* Optional: Add a decorative underline */
h2::after {
  content: "";
  display: block;
  width: 80px;                         
  height: 4px;                          
  background: #e12b2c;                 
  margin: 10px auto 0 auto;            
  border-radius: 2px;
}


    .wrapper { max-width: 1180px; margin: auto; }

    .grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 980px) { .grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

    .card {
      position: relative;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 10px 30px rgba(2,6,23,.4);
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease;
      animation: pop-in .6s ease both;
    }
    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--glow);
    }
    .card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent));
      -webkit-mask: linear-gradient(#0000 0 0) content-box, linear-gradient(#000 0 0);
      mask: linear-gradient(#0000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity .35s ease;
    }
    .card:hover::before {
      opacity: .6;
      filter: blur(.2px) brightness(1.1);
      animation: spin 6s linear infinite;
    }

    .media {
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .card:hover .media img {
      transform: scale(1.08);
    }

    .content {
      padding: 16px;
      background: rgba(0,0,0,0.57);
    }
    .content h3 {
      font-size: 18px;
      margin-bottom: 6px;
      color: #fff;
    }
    .content p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.4;
    }

    @keyframes pop-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }
    @keyframes spin { to { transform: rotate(1turn); } }

    /* Center 7th card below grid */
    .grid-bottom {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    .grid-bottom .card {
      max-width: 377px;
      width: 100%;
    }



    .card {
  display: block;
  text-decoration: none;
  color: inherit; /* keeps text color consistent */
  cursor: pointer;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}



 .footer {
    position: relative;
    background: url('img/img1.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
  }
  .footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
  }
  .footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
  }
  /* .footer-col {
    flex: 1;
    margin: 15px;
    min-width: 220px;
  } */
  .footer-logo {
    max-width: 112px;
    margin-bottom: -23px;
  }
  .footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links ul li {
    margin: 8px 0;
  }
  .footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  .footer-links ul li a:hover {
    color: #4caf50;
  }
  .footer-social .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  .footer-social .social-icons img {
    width: 46px;
    transition: transform 0.3s;
  }
  .footer-social .social-icons img:hover {
    transform: scale(1.2);
  }
  .footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
  }