
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background-image: url(banner.png);
  background-attachment: fixed;
  scroll-behavior:smooth;
}

/* ================= HEADER ================= */
header{
  background:#555555b2;
  padding:15px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  width:100%;
  z-index:1000;
  top:0;
  transition:0.3s;
}

.logo img{
  height:55px;
}

nav{
  display:flex;
  gap:30px;
  align-items:center;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:5px 0;
  transition:0.3s;
}

nav a:hover{
  color:#1ABC9C;
}

.call-btn{
  background:#1ABC9C;
  color:#000;
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.call-btn:hover{
  background:#16a085;
  transform:scale(1.05);
}

/* ===== DROPDOWN MENU ===== */
.dropdown{
  position:relative;
}

.dropbtn{
  color:#fff;
  cursor:pointer;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:5px;
}

.dropdown-content{
  position:absolute;
  top:35px;
  left:0;
  background:#121212;
  min-width:180px;
  display:none;
  flex-direction:column;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  z-index:1000;
}

.dropdown-content a{
  padding:12px 18px;
  color:#fff;
  text-decoration:none;
  font-size:0.95rem;
  transition:0.3s;
}

.dropdown-content a:hover{
  background:#1ABC9C;
  color:#000;
}

.dropdown:hover .dropdown-content{
  display:flex;
}

/* ========== HAMBURGER MENU ========== */
.hamburger{
  display:none;
  font-size:1.8rem;
  color:#fff;
  cursor:pointer;
}

@media(max-width:992px){
  nav{
    position:fixed;
    top:70px;
    right:-100%;
    width:250px;
    height:100%;
    background:#121212;
    flex-direction:column;
    gap:20px;
    padding:20px;
    transition:0.3s;
  }
  nav.active{
    right:0;
  }
  .hamburger{
    display:block;
  }
  .dropdown-content{
    position:relative;
    top:0;
    box-shadow:none;
  }
}


/* ================= HERO ================= */
.hero{
  position:relative;
  height:90vh;
  background:url('about-banner.png') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(18, 18, 18, 0.63);
}

.hero h1{
  font-size:4rem;
  padding:5px 20px;
  color:#00ffcc;
  border-radius:15px;
}

/* ================= OUR MISSION ================= */
.mission{
  padding:70px 40px;
  background-color: #ffffff;
  text-align:center;
}

.mission h2{
  margin-bottom:25px;
}

.mission p{
  max-width:700px;
  margin:auto;
  font-size:1.05rem;
  line-height:1.7;
  color:#555;
}

/* ================= OUR VISION ================= */
.vision{
  padding:70px 40px;
  background-color: #ffffff;
  text-align:center;
}

.vision h2{
  margin-bottom:25px;
}

.vision p{
  max-width:700px;
  margin:auto;
  font-size:1.05rem;
  line-height:1.7;
  color:#555;
}

/* ================= SERVICE START DATES ================= */
.timeline{
  background-color: #504a4ae1;
  padding-bottom: 20px;
}

.timeline h2{
  text-align:center;
  margin-bottom:30px;
  padding-top: 20px;
  color: #1ABC9C;
}

.timeline-container{
  position:relative;
  max-width:1200px;
  margin:auto;
}

.timeline-container::after{
  content:'';
  position:absolute;
  width:6px;
  background:#00ffcc;
  top:0;
  bottom:0;
  left:50%;
  margin-left:-3px;
}

.timeline-item{
  padding:20px 40px;
  position:relative;
  width:50%;
}

.timeline-item.left{
  left:0;
}

.timeline-item.right{
  left:50%;
}

.timeline-item::after{content:'';
  position:absolute;
  width:20px;
  height:20px;
  background:#00ffcc;
  top:15px;
  border-radius:50%;
  z-index:1;
}

.timeline-item.left::after{
  right:-10px;
}

.timeline-item.right::after{
  left:-10px;
}

.timeline-item div{
  background:#20816ecb;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08)
  ;transition:0.3s;
}

.timeline-item div:hover{
  transform:translateY(-5px);
}

/* ================= TEAM ================= */
.team{
  padding:70px 40px;
  background-color: #fff;
  text-align:center;
}

.team h2{
  margin-bottom:40px;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.team-card{
  background:#fff;
  border-radius:10px;
  padding:30px 20px;
  transition:0.4s;
}

.team-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
}

.team-card h3{
  margin-bottom:10px;
  color:#121212;
}

.team-card p{
  color:#555;
  font-size:0.95rem;
}

/* ===== CLIENT BENEFITS ===== */
.benefits{
  padding:80px 40px;
  background:#F9F9F9;
  text-align:center;
}

.benefits h2{
  margin-bottom:40px;
  font-size:2.5rem;
  color:#121212;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.benefit-card{
  background:#a09f9f6c;
  border-radius:15px;
  padding:30px;
  transition:0.4s;
}

.benefit-card h3{
  color:#1ABC9C;
  margin-bottom:10px;
  font-size:1.3rem;
}

.benefit-card p{
  color:#000000;
  font-size:0.95rem;
  line-height:1.6;
}

.benefit-card:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* ================= STATS ================= */
.stats-section{
  background:#121212b7;
  padding:80px 20px;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  text-align:center;
}

.stat-box h2{
  color:#1ABC9C;
  font-size:3rem;
  transition:0.3s;
}

.stat-box h4{
  color:#fff;
  margin:10px 0;
}

.stat-box p{
  color:#CFCFCF;
  font-size:.95rem;
}

/* ================= ASK SECTION ================= */
.ask{
  padding:70px 40px;
  background-color: #fff;

  text-align:center;
}

.ask p{
  max-width:700px;
  margin:20px auto;
}

.ask a{
  display:inline-block;
  margin-top:20px;
  background:#1ABC9C;
  color:#000;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.ask a:hover{
  transform:scale(1.05);
  background:#16a085;
}

/* ================= FOOTER ================= */
footer{
  background:#121212;
  color:#fff;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.social a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
  transition:0.3s;
}

.social a:hover{
  color:#1ABC9C;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  header{
    flex-direction:row;
    gap:15px;
  }
  nav{
    right:-100%;
  }
  nav.active{
    right:0;
  }
}

