* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6f7;
  color: #222;
}

.container {
  width: 85%;
  margin: auto;
}

/* HEADER */
/* ================= HEADER (Same as Home & Services) ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #1c1c1c; /* Same background */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff	;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00c6ff;
}

/* HERO */
.about-hero {
  padding: 150px 0 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-hero h1 {
  font-size: 36px;
  line-height: 1.4;
}

.about-hero p {
  color: #555;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  gap: 60px;
}

.stats h2 {
  font-size: 28px;
  color: #0d4c5a;
}

/* BANNER */
.about-banner img {
  width: 100%;
  border-radius: 12px;
  margin: 40px 0;
}

/* SECTION */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card:hover {
  transform: translateY(-5px);
}

/* TESTIMONIAL */
.testimonial {
  background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7') center/cover no-repeat;
  margin-top: 80px;
}

.overlay {
  background: rgba(0,0,0,0.6);
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  color: white;
  text-align: center;
}

.reviewer {
  margin-top: 20px;
}

.reviewer img {
  width: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: #12343b;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
}

.footer button {
  padding: 10px 15px;
  border: none;
  background: #1e6f7a;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .about-grid,
  .card-grid,
  .testimonial-grid,
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .stats{
    flex-direction: column;
    gap: 20px;
  }
}