*{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  html{
    scroll-behavior:smooth;
  }
  
  body{
    font-family:'Poppins', sans-serif;
    background:#f5f7f6;
    color:#222;
    overflow-x:hidden;
  }
  
  img{
    max-width:100%;
    height:auto;
  }
  
  .navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(12px);
    z-index:1000;
  }
  
  .logo-section{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    font-size:22px;
    font-weight:600;
  }
  
  .logo{
    width:45px;
  }
  
  nav a{
    margin-left:20px;
    color:white;
    text-decoration:none;
    transition:0.3s;
  }
  
  nav a:hover{
    color:#8ef0b2;
  }
  
  .hero{
    position:relative;
    height:100vh;
    background:url('assets/hero-banner.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  
  .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
  }
  
  .hero-content{
    position:relative;
    z-index:10;
    max-width:900px;
    padding:20px;
    color:white;
  }
  
  .hero-content h1{
    font-size:64px;
    line-height:1.2;
    margin-bottom:25px;
  }
  
  .hero-content p{
    font-size:22px;
    margin-bottom:35px;
  }
  
  .btn-primary{
    display:inline-block;
    padding:15px 35px;
    background:#1fa15a;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:0.3s;
  }
  
  .btn-primary:hover{
    background:#157f44;
    transform:translateY(-4px);
  }
  
  .section{
    padding:120px 20px;
  }
  
  .container{
    max-width:1200px;
    margin:auto;
  }
  
  .section-title{
    text-align:center;
    margin-bottom:60px;
  }
  
  .section-title h2{
    font-size:42px;
    color:#0d5a33;
  }
  
  .line{
    width:90px;
    height:4px;
    background:#1fa15a;
    margin:15px auto;
  }
  
  .section p{
    max-width:950px;
    margin:20px auto;
    text-align:center;
    font-size:18px;
    line-height:1.9;
  }
  
  .alt-section{
    background:white;
  }
  
  .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
  }
  
  .card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
  }
  
  .card:hover{
    transform:translateY(-10px);
  }
  
  .card img{
    width:100%;
    height:260px;
    object-fit:cover;
  }
  
  .card-content{
    padding:30px;
  }
  
  .card-content h3{
    margin-bottom:15px;
    color:#14532d;
  }
  
  .facility-section,
  .founders-section{
    background:#ffffff;
  }
  
  .facility-text{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px auto;
    font-size:18px;
    line-height:1.8;
  }
  
  .gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
  }
  
  .gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:0.4s ease;
  }
  
  .gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s ease;
  }
  
  .gallery-item:hover{
    transform:translateY(-8px);
  }
  
  .gallery-item:hover img{
    transform:scale(1.05);
  }
  
  .location-box{
    max-width:900px;
    margin:auto;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
  }
  
  .location-box img{
    width:100%;
    height:400px;
    object-fit:cover;
  }
  
  .location-content{
    padding:35px;
    text-align:center;
  }
  
  .location-content p{
    margin-bottom:25px;
    font-size:18px;
  }
  
  .contact-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
  }
  
  .contact-item{
    background:white;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
  }
  
  .contact-item h3{
    color:#14532d;
    margin-bottom:12px;
  }
  
  footer{
    background:#08140d;
    color:white;
    text-align:center;
    padding:30px;
  }
  
  .fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
  }
  
  .fade-up.active{
    opacity:1;
    transform:translateY(0);
  }
  
  .delay-1{
    transition-delay:0.2s;
  }
  
  .delay-2{
    transition-delay:0.4s;
  }
  
  @media screen and (max-width:768px){
  
    .navbar{
      flex-direction:column;
      padding:15px 20px;
      text-align:center;
    }
  
    .logo-section{
      flex-direction:column;
      gap:8px;
    }
  
    nav{
      margin-top:15px;
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:10px;
    }
  
    nav a{
      margin:0;
      font-size:14px;
    }
  
    .hero{
      height:90vh;
      padding:0 15px;
    }
  
    .hero-content h1{
      font-size:34px;
      line-height:1.3;
    }
  
    .hero-content p{
      font-size:16px;
    }
  
    .section{
      padding:80px 20px;
    }
  
    .section-title h2{
      font-size:30px;
    }
  
    .gallery{
      grid-template-columns:1fr;
    }
  
    .cards{
      grid-template-columns:1fr;
    }
  
    .location-box img{
      height:250px;
    }
  
  }