/* Root Variables */
:root {
    --primary-blue: #3b82f6;
    --secondary-dark: #1e40af;
    --background-white: #ffffff;
}

/* Body */
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    /* background: #eff6ff; */
}

/* Hero Section */
/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #23ab4b, #010602);
  color: white;
  position: relative;
  box-shadow: 0px 10px 26px  rgba(0, 0, 0, 0.3);
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../assets/images/aboutus-heroimage.webp') center/cover;
  opacity: 0.3;
}


/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.hero h1 {
 font-size: 60px;
  padding: 0px 20px;
}


/* MOBILE */
/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
 font-size: 40px;
   padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
 font-size: 32px; 
   padding-top: 30px;
  }
}
@media (max-width: 410px) {
  .hero h1 {
 font-size: 26px;
    padding-top: 27px;
  }
}

.hero-content span {
    color: #80ed99; /* light green highlight */
}

.hero p {
  font-size: 18px;
  margin: 20px 0;
}


/* Buttons */
.hero-buttons {
    margin-top: 25px;
}

@media(max-width: 350px){
    .hero-buttons {
    padding-bottom: 20px;
}

}

.hero .btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin: 8px;
    display: inline-block;
    font-weight: 500;
}

/* Primary */
.hero .btn.primary {
    background: #22c55e;
    color: white;
    transition: 0.3s;
}

.hero .btn.primary:hover {
    background: #16a34a;
}

/* Secondary */
.hero .btn.secondary {
    border: 2px solid white;
    color: white;
    transition: 0.3s;
}

.hero .btn.secondary:hover {
    background: white;
    color: #16a34a;
}



/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.delay { animation-delay: 0.5s; }
.delay2 { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Container */
.container {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #005B1F;
    margin-bottom: 20px;
    font-weight: 700;
}

/* About Content */
.about-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #333;
    text-align: center;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    /* background: #ffffff; */
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9, #9bee9d);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color:#005B1F;;
}

/* CARD ANIMATION BASE */
.card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* WHEN VISIBLE */
.card.show {
    opacity: 1;
    transform: translateY(0);
}

/* OPTIONAL: STAGGER EFFECT */
.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }

/* Why Choose Us */
/* WHY CHOOSE US - MODERN CARDS */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 25px;
    margin-top: 30px;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}
.why-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.why-card .icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #198754;
}
/* WHY SECTION BACKGROUND */
.why-section {
    background: linear-gradient(135deg, #b9f3cf, #c8e6c9);
    padding: 10px 20px 60px; /* 👈 less top space */
}

.why-section .section-title {
    margin-top: 0;        /* remove extra top space */
    margin-bottom: 15px;  /* optional: slightly tighter */
}

/* FAQ */
.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    background: #e0e7ff;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

/* CTA */
.cta-creative {
    padding: 80px 20px;
    background: #f9fafb; /* outer light background */
    display: flex;
    justify-content: center;
}

.cta-box {
    background: #e3f2fd; /* 🔵 SKY BLUE */
    padding: 50px 30px;
    max-width: 1400px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 30px;
    color: #005B1F;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn.primary {
    background: #0d47a1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn.primary:hover {
    background: #0b3c8a;
}

.btn.outline {
    border: 2px solid #0d47a1;
    color: #005B1F;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn.outline:hover {
    background: #0d47a1;
    color: white;
}

/* Reduce space above section titles */
.container .section-title {
  margin-top: 0px;   /* reduce top space */
  margin-bottom: 15px;
}

/* Reduce container padding */
.container {
  padding: 30px 20px; /* was 40px → reduced */
}

/* STATS SECTION */
/* STATS SECTION - LIGHT GREEN */
.stats-section {
    background: linear-gradient(135deg, #b9f3cf, #c8e6c9);
    padding: 60px 20px;
    color: #0f5132;
}

.stats-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    border: 2px solid transparent;
    /* border: 2px solid #005B1F; */
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #198754;
}

.stat-card h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #198754;
}

.stat-card p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #2d6a4f;
}
/* ICONS - SERVICES */
.card-icon {
  font-size: 40px;
  color: #22c55e;
  margin-bottom: 15px;
}

/* ICONS - WHY SECTION */
.why-card .icon i {
  font-size: 32px;
  /* color: #198754; */
  color: #22c55e;
}

/* BUTTON ICONS */
.btn i {
  margin-right: 8px;
}

/* ICON HOVER ANIMATION */
.card-icon i,
.why-card .icon i {
  transition: 0.3s ease;
}

.card:hover .card-icon i,
.why-card:hover .icon i {
  transform: scale(1.2);
}







/* CTA SECTION */
.ready-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 4rem 2rem;
  margin: 3rem auto;
  width: 90%;
  max-width: 1400px;

  border-radius: 20px;

  background: linear-gradient(135deg, #e3f2fd, #c8e6c9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INNER */
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

/* TEXT */
.cta-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1b5e20;
}

.cta-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #2e7d32;
  max-width: 600px;
  line-height: 1.6;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

/* BUTTON COMMON */
.btn-primary,
.btn-phone {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 260px;
  justify-content: center;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;

  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 50px;

  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #43a047, #2e7d32);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn-primary:active {
  transform: scale(0.96);
}

/* CALL BUTTON */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  background: linear-gradient(135deg, #66bb6a, #388e3c);
  color: #fff;

  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;

  font-weight: 600;
  font-size: 1rem;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-phone:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #81c784, #2e7d32);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn-phone:active {
  transform: scale(0.96);
}

/* ICON */
.phone-icon {
  font-size: 1.2rem;
}

/* SHINE EFFECT */
.btn-primary::after,
.btn-phone::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-primary:hover::after,
.btn-phone:hover::after {
  left: 130%;
}

/* PULSE */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(67,160,71, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(67,160,71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(67,160,71, 0); }
}

#callBtn {
  animation: pulseGlow 2s infinite;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */

/* Tablet */
@media (max-width: 992px) {
  .ready-cta {
    padding: 3rem 1.5rem;
  }

  .cta-actions {
    gap: 0.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ready-cta {
    padding: 2.5rem 1.2rem;
    border-radius: 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;   /* ← was: center — this was collapsing button widths */
    width: 100%;
    gap: 20px;
  }

  .btn-primary,
  .btn-phone {
    display: flex;          /* ← was: inline-flex on btn-phone — caused overflow */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box; /* ← ensures padding doesn't push past 100% */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ready-cta {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-sub {
    font-size: 0.85rem;
  }
}