:root {
  --primary: #008080;
  --primary-light: #00a39b;
  --yellow: #F9D400;
  --bg: #F4FFFD;
  --text: #003333;
}

/* ========== GLOBAL ========== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden; /* screen se bahar jaane se roke */
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

.center {
  text-align: center;
}



/* HEADER */
/* ============================
   HEADER STYLING (FIXED HEIGHT)
===============================*/
/* ============================
   HEADER STYLING (EXTRA SLIM)
===============================*/
.main-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* CONTAINER */
.container {
  width: 90%;
  margin: auto;
}

/* HEADER FLEX */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 2px 0;   /* 🔥 yahi se height kam hui */
}

/* LOGO */
.logo {
  width: 130px;     /* pehle 150px tha */
}

/* NAV MENU */
.navbar ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.navbar ul li a {
  color: #004652;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

/* ACTIVE LINE */
.navbar ul li a.active::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #008080;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CALL BOX */
.call-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  width: 22px;   /* icon chhota */
}

.call-text small {
  font-size: 9px;
  color: #777;
}

.call-text strong {
  font-size: 13px;
  color: #000;
}

/* LOGIN BUTTON */
.login-btn {
  background: #008080;
  padding: 7px 14px;   /* 🔥 height kam */
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.login-btn .login-icon {
  width: 16px;
}

/* MOBILE TOGGLE */
.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .navbar {
    display: none;
    position: absolute;
    top: 55px; /* header height ke hisaab se */
    right: 10px;
    background: #fff;
    width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 12px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .header-right {
    display: none;
  }
}


/* ===== HERO SECTION ===== */
.services-hero {
  background: linear-gradient(
    to right,
    rgba(0,128,128,0.95) 0%,
    rgba(0,128,128,0.95) 60%,
    rgba(255,245,200,0.95) 100%
  );
  color: #fff;
}

.services-hero h1 {
  font-size: 44px;
  margin: 20px 0;
}

.services-hero h1 span {
  color: #ffdd00;
}

.services-hero p {
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
}

.badge {
  background: #ffdd00;
  color: #000;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 13px;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stats h3 {
  color: #ffdd00;
  font-size: 32px;
  margin: 0;
}

.stats p {
  margin-top: 5px;
  font-size: 14px;
}

/* ===== RESPONSIVE HERO SECTION ===== */
@media (max-width: 992px) {
  .services-hero h1 {
    font-size: 36px;
  }

  .services-hero p {
    max-width: 90%;
  }

  .stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 60px 20px;
    text-align: center;
  }

  .services-hero h1 {
    font-size: 30px;
  }

  .services-hero p {
    font-size: 15px;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .stats h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .services-hero p {
    font-size: 14px;
  }

  .stats h3 {
    font-size: 22px;
  }

  .stats p {
    font-size: 13px;
  }
}



//* =========================
   MODERN ABOUT SECTION
========================= */
/* WHO WE ARE SECTION */
.who-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.who-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* makes it responsive */
}

.who-content {
  flex: 1 1 500px; /* grow/shrink with min width 500px */
}

.who-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #017e7e;
}

.who-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.who-image {
  flex: 1 1 400px; /* responsive image */
  text-align: center;
}

.who-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .who-inner {
    flex-direction: column;
    text-align: center;
  }

  .who-content, .who-image {
    flex: 1 1 100%;
  }

  .who-content h2 {
    font-size: 1.8rem;
  }
}



/* MAIN TEAL BOX */
.founder-box {
  background: #017e7e;       /* Teal background */
  padding: 60px 40px;
  border-radius: 16px;
}

/* FLEX WRAPPER */
.founder-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* IMAGE BOX */
.founder-image img {
  width: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* TEXT AREA */
.founder-details {
  max-width: 600px;
}

/* HEADING YELLOW */
.founder-details h2 {
  color: #FFD700;     /* Yellow */
  font-size: 32px;
  margin-bottom: 15px;
}

/* PARAGRAPH WHITE */
.founder-details p {
  font-size: 18px;
  color: #ffffff;     /* White */
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Stat Card */
.stat-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 14px;

  border: 3px solid #008080;  /* Teal Border Added per Card */

  text-align: center;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
}

.stat-box h3 {
  color: #008080;
  font-size: 36px;
  margin-bottom: 8px;
}

.stat-box p {
  color: #444;
  font-size: 16px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .founder-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    width: 260px;
  }

  .founder-details h2 {
    font-size: 28px;
  }
}


/* ================================
   5. CORE VALUES
================================ */
.core-values h2 {
  text-align: center;
  color: #003D3D;
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.value-box {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #008080; /* 🔥 Teal Border */

  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* HOVER EFFECT */
.value-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  background: #f4fefe;
}

/* ICON CIRCLE */
.value-icon {
  width: 80px;
  height: 80px;
  background: #008080;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px;
}

.value-icon i {
  font-size: 34px;
  color: #ffffff; /* ✅ White icon */
}

/* TITLE */
.value-box h3 {
  font-size: 20px;
  color: #003D3D;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.value-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   6. WHY CHOOSE AOFS
================================ */
.why-aofs h2 {
  text-align: center;
  color: #008080;
  font-size: 32px;
  margin-bottom: 40px;
}

/* Big Boxes */
.big-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.big-box {
  background:  #abf7b1;
  padding: 35px;
  border-left: 6px solid #ffdd00;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.big-box h3 {
  color: #008080;
  font-size: 24px;
  margin-bottom: 10px;
}

.big-box p {
  color: #444;
  font-size: 17px;
  line-height: 1.6;
}


/* Small Boxes */
.why-small-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.small-box {
  background: #fdf8e7;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ffe88a;
  text-align: center;
}

.small-box h4 {
  color: #008080;
  font-size: 20px;
  margin-bottom: 10px;
}

.small-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}


/* Responsive */
@media (max-width: 992px) {
  .why-small-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-small-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   7. MISSION & VISION
================================ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.mission, .vision {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 6px solid #008080;
}

.mission h2, .vision h2 {
  color: #008080;
  font-size: 28px;
  margin-bottom: 10px;
}

.mission p, .vision p {
  font-size: 18px;
  color: #444;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .stats-grid,
  .values-grid,
  .why-small-grid,
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid,
  .values-grid,
  .why-small-grid {
    grid-template-columns: 1fr;
  }

  .founder-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-banner h1 {
    font-size: 30px;
  }
}



/* ================================
   BACK TO TOP BUTTON
================================ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, #008080, #00a3a3);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background: linear-gradient(to right, #006666, #008080);
  transform: translateY(-4px);
}

/* ============================
   WHATSAPP FLOATING BUTTON
============================= */
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;   /* LEFT SIDE */
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 52px;
  height: 52px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}


/* ===========================
    FOOTER STYLING
=========================== */

/* ===========================
   FOOTER – AOFS
=========================== */

.main-footer {
  background: #008080;
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: 60px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 260px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  border-bottom: 2px solid #ffdd00;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-col p,
.footer-col a {
  color: #e6f2f2;
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: #ffdd00;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin: 15px 0 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-icons img {
  width: 25px;
  height: 25px;
  object-fit: cover;
 
}

.social-icons a:hover {
  background: #ffdd00;
}


/* FOOTER BOTTOM */
/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  margin-top: 35px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-bottom-content {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #e5e5e5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #e5e5e5;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links span {
  color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
  color: #ffdd00;
}


/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col h3 {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    justify-content: center;
  }
}
