
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: #222;
      line-height: 1.6;
    }
    


      /*min-height: 100vh;
      background: url('hero.jpg') center/cover no-repeat;
      position: relative;
      color: #fff;
      }*/


header {
      background: url('img10.jpg') center/cover no-repeat;
      height: 100vh;
      color: #fff;
      position: relative;
    }
    header::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.45);
    }


.navbar {
position: relative;
z-index: 10;
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 50px;
background: rgba(0,0,0,0.65);
}


.logo {
font-size: 22px;
font-weight: 700;
letter-spacing: 1px;
}


.menu-toggle {
display: none;
font-size: 28px;
cursor: pointer;
color: #fff;
}


.nav-menu {
list-style: none;
display: flex;
gap: 28px;
margin: 0;
padding: 0;
}


.nav-menu a {
color: #fff;
text-decoration: none;
font-weight: 500;
}



    .hero-content {
      position: relative;
      z-index: 2;
      height: calc(100vh - 80px);
      display: flex;
      align-items: center;
      padding: 0 60px;
      max-width: 700px;
    }
    .hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }
    .hero-content p {f
      font-size: 18px;
      margin-bottom: 30px;
    }
    .btn {
      display: inline-block;
      background: #e0a800;
      color: #000;
      padding: 14px 28px;
      text-decoration: none;
      font-weight: 600;
      border-radius: 4px;
    }
    section {
      padding: 80px 60px;
    }
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }
    .section-title p {
      color: #666;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }
    .card {
      border: 1px solid #eee;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
    }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card .content {
      padding: 20px;
    }
    .card h3 {
      margin-top: 0;
      font-size: 20px;
    }
    .about {
      background: #f8f8f8;
    }
    .about-content {
      max-width: 900px;
      margin: auto;
      text-align: center;
    }
    .cta {
      background: url('cta.jpg') center/cover no-repeat;
      position: relative;
      color: #fff;
      text-align: center;
    }
    .cta::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
    }
    .cta-content {
      position: relative;
      z-index: 2;
    }
    footer {
      background: #111;
      color: #ccc;
      padding: 40px 60px;
    }
    footer .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }
    footer h4 {
      color: #fff;
    }
    footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
    }
    footer .copyright {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
    }

    /* =====================
RESPONSIVE FIXES
====================== */
@media (max-width: 768px) {
.menu-toggle {
display: block;
}


.nav-menu {
position: static;
display: none;
flex-direction: column;
width: 100%;
background: rgba(0,0,0,0.95);
padding: 20px 0;
}


.nav-menu.active {
display: flex;
}


.nav-menu li {
text-align: center;
padding: 12px 0;
}


.hero {
padding: 80px 25px 40px;
}


.hero h1 {
font-size: 38px;
}
}
