* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height:85px;
  width: 100%;
  padding: 1px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(40, 39, 39, 0.85);
  transition: 0.3s ease;
  z-index: 9999;
}

/* Scroll background */
.navbar.scrolled {
  background: rgba(40, 39, 39, 0.85);
  backdrop-filter: blur(6px);
}

.nav-logo img{
 width:310px;
 object-fit:cover;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  position: relative;
  padding: 10px;
}

/* Hover underline */
.nav-links li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: rgb(38, 191, 38);
  transition: 0.3s ease;
}

.nav-links li:not(:last-child) a:hover::after{
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.login-btn {
  background: #05aa68;
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
  font-size:19px;
}

.login-btn:hover {
  background: #058f56;
}

/* 
   1024px Tablet 
========================= */
@media (max-width:1024px){

.nav-logo img{
 width:230px;
}
.navbar{height:80px;}
.nav-links{
 gap:18px;
}

.nav-links a{
 font-size:18px;
}

}


/* 
   768px (Tablet)
========================= */
@media (max-width:768px){

.menu-toggle{
 display:block;
}

.nav-links{
 position:absolute;
 top:70px;
 left:0;
 width:100%;
 background:#1e1e1e;
 flex-direction:column;
 align-items:center;
 gap:32px;
 padding:25px 0;
 display:none;
}

.nav-links.active{
 display:flex;
}

.nav-links a{
 font-size:22px;
}

.nav-logo img{
 width:230px;
}
.navbar{
 height:100px;   
}

}


/* 
   480px (Mobile)
========================= */
@media (max-width:480px){

.navbar{
 padding:3px 13px;
 height: 100px;

}

.nav-logo img{
 width:260px;
  margin-left:-40px;
}

.nav-links{
 gap:27px;
 margin-top:8px;
 
}

.nav-links a{
 font-size:19px;
 
}

.login-btn{
 padding:9px 17px;
 font-size:18px;
}

}


/* ===== FOOTER BASE ===== */
.footer {
  background: linear-gradient(135deg, #313231, #0e0c18);
  color: white;
  padding: 60px 20px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 240px;
  margin-bottom: 15px;
}

/* HEADINGS */
.footer-col h4 {
  color: #13d651;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TEXT */
.footer-col p {
  font-size: 20px;
  line-height: 1.7;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 12px 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 21px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #13d651;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 18px;
  text-align:center;
  margin-top: 15px;
}

.social-links a {
  color: white;
  font-size: 26px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #13d651;
  transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  font-size: 19px;
  color: #aaa;
}

/* =========================
   1024px (Tablet / Laptop)
========================= */
@media (max-width:1024px){

  .footer-container{
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }

  .footer-col h4{
    font-size: 19px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 19px;
  }

  .social-links a{
    font-size: 24px;
  }
}

/* =========================
   768px (Tablet)
========================= */
@media (max-width:768px){

  .footer{
    padding:50px 20px;
  }

  .footer-container{
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    text-align: center;
  }

  .footer-logo{
    margin: auto;
  }

  .social-links{
    justify-content: center;
  }

  .footer-col h4{
    font-size: 18px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 18px;
  }
}

/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

  .footer{
    padding:40px 15px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-logo{
    width: 200px;
    margin: auto;
  }

  .footer-col h4{
    font-size: 17px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 17px;
  }

  .social-links{
    justify-content: center;
  }

  .social-links a{
    font-size: 22px;
  }

  .footer-bottom{
    font-size: 16px;
  }
}




/* ABOUT page   HERO SECTION */

.about-hero {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;

  position: relative;
}
.about-hero img {
  object-fit: cover;
  
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 44, 44, 0.7);
  display: flex;
  height: 600px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-heading h1{ color:white;font-size:57px;margin:15px;}
.about-heading h2{ color:white; font-size:35px;margin:10px;}
.about-heading p{ color:white; font-size:22px;}

/* 
   1024px 
========================= */
@media (max-width:1024px){

  

  .about-heading h1{
    font-size:48px;
  }

  .about-heading h2{
    font-size:30px;
  }

  .about-heading p{
    font-size:22px;
  }

}


/* 
   768px 
========================= */
@media (max-width:768px){

  .about-hero{
    height:90%;
  }

  .about-heading h1{
    font-size:45px;
  }

  .about-heading h2{
    font-size:28px;
  }

  .about-heading p{
    font-size:20px;
  }

}


/* 
   480px 
========================= */
@media (max-width:480px){

   .about-hero {
    height:90%;
  }
  .about-heading h1{
    font-size:36px;
    margin:0 0;
  }

  .about-heading h2{
    font-size:24px;
  }

  .about-heading p{
    font-size:20px;
    line-height:1.6;
  }

}



/* who are we  Container */
.whoweare-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
   margin: auto; 
}

.whoweare-image img {
  width: 100%;
  max-height: 580px;
  display: block;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.whoweare-image img:hover {
  transform: scale(1.05);
}
.whoweare-contents {
  flex: 1;
}

.whoweare-contents h1 {
  font-size: 44px;
  margin-bottom: 40px;
  color: #111;
}

.whoweare-contents p {
  font-size: 20px;
  line-height: 1.7;
  color: #3e3d3d;
}

/* 
   1024px 
========================= */
@media (max-width:1024px){

  .whoweare-container{
    gap:40px;
    padding:0 20px;
  }

  .whoweare-contents h1{
    font-size:38px;
  }

  .whoweare-contents p{
    font-size:20px;
  }

  .whoweare-image img{
    max-height:480px;
  }

}


/* 
   768px 
========================= */
@media (max-width:768px){

  .whoweare-container{
    flex-direction:column;
    text-align:center;
    gap:30px;
  }

  .whoweare-image img{
    width:100%; 
    margin-top:140px;
    max-height:420px;
  }

  .whoweare-contents h1{
    font-size:36px;
  }

  .whoweare-contents p{
    font-size:20px;
  }

}


/*
   480px 
========================= */
@media (max-width:480px){

  .whoweare-container{
    padding:0 15px;
  }

  .whoweare-contents h1{
    font-size:32px;
  }

  .whoweare-contents p{
    font-size:20px;
    line-height:1.6;
  }

  .whoweare-image img{
    max-height:400px;
    /*margin-top:160px;*/
    margin-top:10px;
    border-radius:15px;
   
  }

}


/* mission vission code */


.mission-vision-section {
  padding: 100px 20px;
  background-color: black;
  position: relative;
  z-index: 2;
}
.mv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Cards */
.mv-card {
  background: #0f172a;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative; /* important for ::before */
  overflow: hidden; /* keeps border inside */
  transition: all 0.4s ease;
  cursor: pointer;
  color: white;
  flex: 1 1 450px;
  max-width: 500px;
}
.mv-card h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.mv-card p {
  font-size: 20px;
  line-height: 1.7;
  color: #d1d5db;
}

.mv-card:hover {
  box-shadow: 0 25px 60px rgba(89, 174, 107, 0.6);
  transition: 2s;
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -ms-transition: 2s;
  -o-transition: 2s;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #a1e0a5, #19b71b);
}
/* =========================
   1024px (Small laptops)
========================= */
@media (max-width:1024px){

  .mission-vision-section{
    padding:80px 20px;
  }

  .mv-container{
    gap:30px;
  }

  .mv-card{
    flex:1 1 400px;
    padding:35px 25px;
  }

  .mv-card h2{
    font-size:38px;
  }

  .mv-card p{
    font-size:20px;
  }

}


/* =========================
   768px (Tablets)
========================= */
@media (max-width:768px){

  .mv-container{
    flex-direction:column;
    align-items:center;
    gap:25px;
  }

  .mv-card{
    max-width:100%;
    flex:1 1 100%;
    padding:30px 22px;
  }

  .mv-card h2{
    font-size:30px;
    text-align:center;
  }

  .mv-card p{
    font-size:20px;
    text-align:center;
  }

}


/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

  .mission-vision-section{
    padding:60px 15px;
  }

  .mv-card{
    padding:25px 20px;
    border-radius:16px;
  }

  .mv-card h2{
    font-size:28px;
  }

  .mv-card p{
    font-size:20px;
    line-height:1.6;
  }

}
