: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 (SLIM + CLEAN)
===============================*/
/* ============================
   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;
  }
}


/* ================================
   MODERN SERVICES HERO*/
.modern-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* AOFS PREMIUM GRADIENT */
  background: linear-gradient(
    135deg,
    #006d6f 0%,
    #008080 45%,
    #00a3a3 75%,
    #eafaf8 100%
  );
}

/* subtle yellow design bubble */
.modern-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(255, 221, 0, 0.15);
  border-radius: 50%;
}

/* WRAPPER */
.hero-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.hero-left {
  max-width: 560px;
  color: #ffffff;
}

/* FADE IN ANIMATION */
.fade-in {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BADGE */
.badge {
  display: inline-block;
  background: #ffdd00;
  color: #003b3b;
  padding: 7px 18px;
  font-weight: 800;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* HEADING */
.hero-left h1 {
  font-size: 38px;
  line-height: 1.25;
  margin: 18px 0;
  font-weight: 800;
}

.hero-left h1 span {
  color: #ffdd00;
}

/* TEXT */
.hero-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #f1fdfb;
  margin-bottom: 32px;
}

/* BUTTON */
.hero-btn {
  background: #ffffff;
  color: #006d6f;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #ffdd00;
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.hero-right img {
  height: 500px;
  width: 620px;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* FLOATING EFFECT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 25px;
  }

  .hero-right img {
    width: 300px;
    margin-top: 20px;
  }

  .hero-left h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .modern-hero {
    min-height: 55vh; /* short hero for mobile */
  }

  .hero-left p {
    font-size: 14px;
  }
}




/* =========================
   MODERN ABOUT SECTION
========================= */
.about-modern {
  /*background: #008080; /* Teal */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.about-card {
  background: #FFE8F1;
  width: 100%;
  max-width: 1100px;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Text Area */
.about-tag {
  background: #ffdd00;
  padding: 6px 12px;
  border-radius: 4px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.about-text h2 {
  font-size: 36px;
  margin: 20px 0;
  color: #003b3b;
}

.about-text p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 30px;
}

.stat-box h3 {
  font-size: 32px;
  margin: 0;
  color: #008080;
  font-weight: 700;
}

.stat-box p {
  margin: 3px 0;
  color: #333;
  font-weight: 500;
}

/* Image Styling */
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Responsive */
@media(max-width: 900px) {
  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 25px;
  }

  .about-stats {
    justify-content: center;
  }
}


/* SERVICES SECTION */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ======================
   TOP CENTER CONTENT
====================== */
.services-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-tag {
  background: #ffdd00;
  color: #000;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  font-weight: 600;
}

.services-top h2 {
  font-size: 34px;
  margin: 15px 0;
  color: #003b3b;
}

.services-para {
  color: #555;
  line-height: 1.7;
}

/* ======================
   BOTTOM LAYOUT
====================== */
.services-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.services-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* BUTTON */
.services-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.view-more-btn {
  padding: 12px 120px;
  font-size: 16px;
  font-weight: 600;
  color: #008080;
  background: #fff;
  border: 2px solid #008080;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.view-more-btn:hover {
  background: #008080;
  color: #fff;
}

/* ======================
   SERVICES GRID
====================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-box {
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-box img {
  height: 50px;
  margin-bottom: 10px;
}

.service-box h4 {
  font-size: 18px;
  font-weight: 700;
}

.service-box p {
  font-size: 14px;
  color: #000;
}

/* COLORS */
.box1 { background: #FDFBD4; }
.box2 { background: #ffe6f0; }
.box3 { background: #abf7b1; }
.box4 { background: #B3EBF2; }
.box5 { background: #FFFF99; }
.box6 { background: #D3D3FF; }

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .services-bottom {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .view-more-btn {
    padding: 12px 80px;
  }
}


/* WHY CHOOSE US SECTION */
.why-section {
  padding: 80px 0;
  background: #fdfdfd; /* soft white */
  color: #003b3b;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.why-tag {
  color: #FFD700; /* soft yellow */
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.why-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #008080; /* teal */
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background: #ffffff; /* white */
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-card .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #008080; /* teal */
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION BACKGROUND */
.people-section {
  background: #008080; /* teal */
  padding: 80px 0;
  color: white;
}

.people-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.people-left {
  flex: 1;
}

.people-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700; /* yellow */
}

.people-text {
  font-size: 16px;
  line-height: 1.7;
  color: #eaf8f8;
}

/* RIGHT CIRCLE AREA */
.people-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

/* CIRCLE BOX */
.circle-box {
  text-align: center;
}

.circle-box p {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
}

/* CIRCLE */
.progress-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid #FFD700; /* yellow border */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.progress-circle span {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .people-container {
    flex-direction: column;
    text-align: center;
  }

  .people-right {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .people-right {
    flex-direction: column;
    align-items: center;
  }
}

.loan-wrapper {
padding: 100px 0;
background: #f1f5f9;
position: relative;
}


.loan-container {
width: 65%; /* reduced width */
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 35px;
border-radius: 15px;
height: 230px;
color: white;
position: relative;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* FIRST BOX – IMAGE RIGHT */
.loan-box1 {
background: #abf7b1;
margin-left: 90px; /* shift right */
z-index: 3;
}


/* SECOND BOX – IMAGE LEFT */
.loan-box2 {
background:  #FFFF99;
margin-top: -60px; /* overlap */
margin-right: 90px; /* shift left */
flex-direction: row-reverse; /* image on left */
z-index: 2;
}


.loan-text {
max-width: 60%;
}
.loan-text h2 {
margin-bottom: 10px;
margin-top: 30px;
font-size: 20px;
font-weight: 700;
color: #000;
}
.loan-text p {
font-size: 16px;
line-height: 1.6;
color: #000;
}


.loan-image img {
width: 160px;
height: 160px;
border-radius: 10px;
object-fit: cover;
}


@media(max-width: 900px) {
.loan-container {
flex-direction: column;
width: 90%;
height: auto;
padding: 25px;
margin-left: 0;
margin-right: 0;
}
.loan-box2 { flex-direction: column; }
.loan-text { max-width: 100%; text-align: center; }
.loan-image img { margin-top: 20px; }
}

/* --------------- WRAPPER ---------------- */
.meet-section {
  padding: 70px 0;
  display: flex;
  justify-content: center;
}

.meet-box {
  width: 90%;
  background:#008080; /* teal */
  padding: 50px;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* LEFT */
.meet-left {
  width: 50%;
}

.meet-left h1 {
  font-size: 42px;
  color: #FFD700; /* yellow */
  margin-bottom: 15px;
}

.meet-left p {
  line-height: 1.6;
  max-width: 460px;
}

.meet-illu img {
  width: 90%;
  margin-top: 30px;
  border-radius: 8px;
}

.meet-btn {
  margin-top: 25px;
  background: #FFD700;
  color: #004f4f;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

/* RIGHT */
.meet-right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.meet-card {
  width: 90%;
  background: #ffffff;
  color: #004f4f;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.meet-card h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #008080;
}

.meet-duration {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.meet-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #008080;
}

/* Calendar */
.calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 600;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 10px;
  font-size: 12px;
  opacity: 0.7;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day-grid span {
  padding: 10px 0;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.day-grid span.active {
  background: #008080;
  color: white;
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .meet-box {
    flex-direction: column;
  }
  .meet-left, .meet-right {
    width: 100%;
    text-align: center;
  }
  .meet-illu img {
    margin: auto;
  }
}


/* WRAPPER */
.testimonials-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 80px 10%;
  align-items: center;
  gap: 50px;
  background: #e8faf7; /* very light teal */
}

/* LEFT SIDE */
.testimonials-left {
  width: 40%;
}

.testimonials-left h2 {
  font-size: 38px;
  color: #006d6f; /* teal */
  margin-bottom: 15px;
}

.testimonials-left p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.highlight-box {
  background: #ffdd57; /* soft yellow */
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
}

/* RIGHT SIDE (SLIDER) */
.testimonials-right {
  width: 55%;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.slider::-webkit-scrollbar {
  height: 8px;
}

.slider::-webkit-scrollbar-thumb {
  background: #009b9f;
  border-radius: 10px;
}

.t-card {
  min-width: 320px;
  max-width: 350px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  scroll-snap-align: start;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.t-message {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.t-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.t-user h4 {
  margin: 0;
  font-size: 17px;
  color: #000;
}

.t-user span {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .testimonials-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-left, .testimonials-right {
    width: 100%;
  }

  .slider {
    justify-content: center;
  }
}


/* ================================
   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 – 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;
  }
}
