/* ===== Reset ===== */
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  background: #f4f4f6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  padding: 10px 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header {
  transition: all 0.3s ease;
}

header.shrink {
  padding: 8px 0;
  background: rgb(255, 255, 255);
}

header.shrink .logo {
  font-size: 18px;
}

.header.sticky {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 50px;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: #444;
  font-weight: 600;
}


.nav-links a.active {
  color: #6b4fa1;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #6b4fa1;
}

.phone {
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 12px; 
}

/* circle behind icons */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f2f2f2; 
  border-radius: 999px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition:  0.3s ease, transform 0.2s ease;
}


/* icon size */
.icon-circle i {
  font-size: 14px;
}

/* phone text */
.icon-circle span {
  font-size: 12px;
  color: #777;
}


.icon-circle:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sign-in,
.btn-primary {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  background: #61508f;
  color: #fff;
}

.btn-primary:hover {
  background: #51407a;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 520px;
  background: url("../images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  margin-left: 10%;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #fff;
  padding: 10px 18px;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

/* ===== Mission ===== */
.mission {
  background: #fff;
  padding: 60px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mission img {
  width: 100%;
  height: 80%;
  border-radius: 6px;
}

.mission-text h2 {
  font-size: 35px;
  margin-bottom: 14px;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

.learn-more {
  color: #6b4eff;
  font-size: 16px;
  font-weight: 500;
}


/* ===== Services Section ===== */
.services {
  background: #61508f; /* SAME PURPLE */
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  color: #fff;
  font-size: 35px;
  margin-bottom: 50px;
}

.services-grid {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ===== Statistics ===== */
.stats {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.stats h2 {
  font-size: 34px;
  margin-bottom: 6px;
}

.stats-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

/* GRID */
.stats-grid {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* CARD */
.stat-card {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
}

/* LEFT SIDE */
.stat-left {
  padding: 24px;
  text-align: left;
}

.stat-left h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-number span {
  font-size: 14px;
  font-weight: normal;
  color: #777;
}

.stat-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 18px;
}

/* BUTTONS */
.btn-soft {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 4px;
  background: #e79a8d;
  color: #fff;
  text-decoration: none;
}

.btn-soft.purple {
  background: #61508f;
}

/* RIGHT SIDE */
.stat-right {
  border-left: 1px solid #e3e3e3;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}

.stat-right a {
  font-size: 13px;
  color: #222;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.stat-right a:last-child {
  border-bottom: none;
}

/* FOOTER */
.stat-footer {
  grid-column: 1 / -1;
  border-top: 1px solid #e3e3e3;
  font-size: 12px;
  color: #333;
  padding: 10px;
  text-align: center;
  background-color: #ececec;
}



/* ===== Emergency Support ===== */
.emergency {
  background: #e9a091;
  padding: 24px 0;
}

.emergency-inner {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.emergency h4 {
  font-size: 24px;
  margin-bottom: 4px;
}

.emergency a {
  font-size: 16px;
  color: #333;
}

.emergenc-btn {
  background: #61508f;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 40px;
}

/* ===== Blog Preview ===== */
.blog-preview {
  background: #f4f4f6;
  padding: 50px 0;
}

.blog-grid {
  width: 90%;
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 14px;
}

.blog-content h5 {
  font-size: 13px;
  margin-bottom: 6px;
}

.blog-content p {
  font-size: 12px;
  color: #777;
}

/* ===== CTA ===== */
.cta {
  background: #61508f;
  padding: 30px 0;
}

.cta-grid {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-text p {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 18px;
}

.cta-btn {
  background: #e9a091;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  color: #fff;
}

.cta img {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
}

/* ===== Footer CTA ===== */
.footer-cta {
  background: linear-gradient(90deg, #1b1530, #2a2248);
  padding: 40px 0;
}

.footer-cta-inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-cta h3 {
  color: #fff;
  font-size: 25px;
}

.footer-cta p {
  font-size: 16px;
  color: #ccc;
}

.footer-btn {
  background: #fff;
  color: #000;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 15px;
}

/* ===== Footer ===== */
.footer {
  background: #1b1530;
  color: #aaa;
  padding: 24px 0;
  font-size: 13px;
}

.footer-inner {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.footer-bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding-top: 10px;
}


/* -------------------- BLOG START -------------------- */
.blog-section {
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
}

.blog-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* REMOVE LINK STYLE */
.blog-link {
  text-decoration: none;
  color: inherit;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ODOO HOVER EFFECT */
.blog-link:hover .blog-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.blog-image {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-link:hover img {
  transform: scale(1.06);
}

/* TEXT */
.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #555;
}

/* -------------------- BLOG PAGES -------------------- */
.blog-page {
  display: none;
}

.blog-page:target {
  display: block;
}

.blog-page:target ~ .blog-section {
  display: none;
}

/* HERO */
.blog-hero {
  background: #f4f2f7;
  padding: 30px 10px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 38px;
  margin-bottom: 4px;
}

.blog-hero p {
  color: #666;
  font-size: 16px;
}

/* CONTENT */
.blog-content {
  width: 90%;
  max-width: 760px;
  margin: 60px auto;
  line-height: 1.8;
}

.blog-content img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* BACK LINK */
.back-link {
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
  font-weight: 500;
  color: #61508f;
}

/* DARK CTA STRIP */
.footer-cta {
  background: linear-gradient(135deg, #1b162e, #2a2344);
  padding: 60px 0;
}

.footer-cta-content {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 14px;
  color: #cfcfe6;
}

/* CTA BUTTON */
.cta-btn {
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}


/* ================= SERVICE START ================= */
.services-hero {
  height: 300px;
  background-color: #6b4fa1;
  position: relative;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ffff;
  color: #6b4fa1;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #162c63;
  transform: scale(1.05);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.services-hero h1 {
  font-size: 52px;
}

.services-hero p {
  font-size: 18px;
  max-width: 700px;
}

/* ================= INTRO ================= */
.services-intro {
  width: 85%;
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.services-intro h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.services-intro p {
  color: #555;
  line-height: 1.8;
}

/* ================= DETAILS ================= */
.services-details {
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
}

.services-details h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.services-details p {
  margin-bottom: 40px;
  color: #555;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4, 1fr));
  gap: 30px;
}

.service-box {
  background: #f7f6fb;
  padding: 30px;
  border-radius: 12px;
}

.service-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ================= CTA ================= */
.services-cta {
  background: #6a5a8c;
  color: #fff;
  padding: 70px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-cta h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.services-cta p {
  max-width: 600px;
  line-height: 1.6;
}

/* ============================= ABOUT PAGE ======================== */

.about-hero {
  background: linear-gradient(90deg, #1b1530, #2a2248);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.hero-buttons {
  margin-top: 20px;
}

.btn-white {
  background: #fff;
  color: #000;
  padding: 10px 28px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: bold;
}

.btn-accent {
  background: #e9a091;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
}

.story img {
  width: 50%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
}

.container.narrow {
  max-width: 800px;
  margin: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}

.icon-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.team-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title span {
  color: #6a5a8c;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.team-profile {
  text-align: center;
}

.team-profile .name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-profile .role {
  font-size: 15px;
  color: #6b7280;
}

.about-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.why-us{
  padding: 30px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #374151;
}

.about-content ul {
  padding-left: 20px;
  margin-top: 15px;
}

.about-content li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #374151;
}

.closing-text {
  max-width: 1000px;
  margin: 60px auto 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #374151;
}

.approach img {
  max-width: 320px;
  border-radius: 8px;
}

.commitment {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.commitment-wrap {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.commitment-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  display: block;
}

.commit-card {
  background: #f4f4f6;
  padding: 32px;
  border-radius: 8px;
}

.commit-card h3 {
  margin-bottom: 12px;
}

.commit-card p {
  margin-bottom: 10px;
}

.about-cta {
  background: #61508f;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.mission .top{
  padding-top: 40px;
}

.mission .bottom{
  padding-top: 40px;
}


/* ===================== CONTACT PAGE ==================*/
/* GLOBAL */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h2, h3, h4 {
  color: #111827;
}

/* HERO */
.contact-hero {
  padding: 90px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-text h2 span {
  color: #5b2d82;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 16px;
}

.contact-text h4 {
  margin-top: 25px;
  margin-bottom: 12px;
}

.btn-primary {
  display: inline-block;
  background: #f59e8b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.contact-image img {
  max-width: 100%;
}

/* HOW TO REACH */
.reach-us {
  padding: 90px 20px 40px;
  text-align: center;
}

.reach-us h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.reach-us p {
  max-width: 750px;
  margin: auto;
  color: #4b5563;
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  padding: 70px 0;
}

.faq-intro {
  color: #6b7280;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.faq-item h4 {
  margin-bottom: 10px;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.7;
}

/* FORM */
.contact-form-section {
  background: #f5f3f6;
  padding: 90px 0;
}

.form-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #4b5563;
}

.contact-form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0f766e;
}

.btn-submit {
  background: #5b2d82;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}


.btn-submit:hover {
  background: #765ea8;
}

/* Success / Error Messages */
#formMessage {
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 6px;
  display: block;
}

#formMessage.success {
  background: #d4edda;
  color: #155724;
}

#formMessage.error {
  background: #f8d7da;
  color: #721c24;
}

/* =====================SPINNER================== */
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .spinner {
  display: inline-block;
}

#form-message {
  margin-top: 15px;
  font-size: 14px;
}







/* ================================ RESOURCES ======================= */

/* ===== HERO ===== */
.page-hero {
  background: #61508f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 15px;
  opacity: 0.9;
}

/* ===== RESOURCES ===== */
.resources {
  padding: 80px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  transition: 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.resource-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #61508f;
}

.resource-card h3 i {
  margin-right: 8px;
}

.resource-card ul {
  list-style: none;
  padding: 0;
}

.resource-card li {
  margin-bottom: 10px;
}

.resource-card a {
  font-size: 14px;
  color: #333;
}

.resource-card a:hover {
  color: #61508f;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 30px;
  }
}



/* ======================================================
 /////////////  RESPONSIVE //////////////////////////////
 ========================================================*/
 /* ===== TABLET ===== */
@media (max-width: 992px) {
  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

   .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  .nav-actions {
    gap: 8px;
  }


  @media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

.two-col {
  align-items: center;
  margin-left: 6px;
}

  .nav {
    padding: 12px 20px;
  }

  .story img {
  width: 90%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
}

  .services-hero {
    padding: 70px 20px;
  }

  .services-hero h1 {
    font-size: 32px;
  }

  .services-grid {
  grid-template-columns: 1fr;
}

.stats-grid {
  grid-template-columns: 1fr;
}

.mission-grid,
.cta-grid,
.fst-grid,
.two-col,
.team-layout,
.commitment-wrap {
  grid-template-columns: 1fr;
}
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .services-grid {
  grid-template-columns: 1fr;
}

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    border-top: 1px solid #eee;
  }

  .nav-links a {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }




  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* =====================
   Animations
===================== */

/* Fade + slide up */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Subtle zoom */
@keyframes zoomIn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}



.mission {
  background: #fff;
  padding: 60px 0;
  animation: fadeIn 1.2s ease forwards;
}

.mission img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.5s ease;
}

.mission img:hover {
  transform: scale(1.03);
}




.btn-outline,
.btn-primary {
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.desktop-only { display: flex; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-header input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.close-menu {
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #333;
}

.mobile-phone {
  margin-top: 20px;
  font-weight: 600;
}

.mobile-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  
}

.mobile-buttons a{
  color: white;
  text-align: center;
  font-weight: 500;
}


.nav-links a.active {
  border-radius: 6px;
  padding-left: 10px;
}



/* =========================================
   GLOBAL SCROLL REVEAL SYSTEM
========================================= */

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Active state when visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variations */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Stagger delay utility */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.9s; }


/* =============================
   RESOURCES SCROLL ANIMATION
============================= */

.resource-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When visible */
.resource-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect (delay per card) */
.resource-card:nth-child(1) { transition-delay: 0.1s; }
.resource-card:nth-child(2) { transition-delay: 0.2s; }
.resource-card:nth-child(3) { transition-delay: 0.3s; }
.resource-card:nth-child(4) { transition-delay: 0.4s; }
.resource-card:nth-child(5) { transition-delay: 0.5s; }
.resource-card:nth-child(6) { transition-delay: 0.6s; }
.resource-card:nth-child(7) { transition-delay: 0.7s; }
.resource-card:nth-child(8) { transition-delay: 0.8s; }
.resource-card:nth-child(9) { transition-delay: 0.9s; }


/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for service boxes */
.service-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.service-box.show {
  opacity: 1;
  transform: translateY(0);
}

.service-box:nth-child(1) { transition-delay: 0.1s; }
.service-box:nth-child(2) { transition-delay: 0.2s; }
.service-box:nth-child(3) { transition-delay: 0.3s; }
.service-box:nth-child(4) { transition-delay: 0.4s; }
.service-box:nth-child(5) { transition-delay: 0.5s; }
.service-box:nth-child(6) { transition-delay: 0.6s; }

/* =========================
   CONTACT SCROLL EFFECT
========================= */

.contact-text {
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

.btn-submit{
  width: 100%;
}
.contact-image img {
  width: 100%;
  max-width: 450px;
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Fade + slide */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   OUR APPROACH SECTION
========================= */

.approach {
  padding: 60px 0;
  background: #f9fbfd;
}

.two-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.approach img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.subtitle {
  margin-bottom: 20px;
  color: #666;
  font-weight: 500;
}

/* Icon list */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-list span {
  font-size: 24px;
  flex-shrink: 0;
}

.icon-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {
  .two-col {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .two-col,
  .two-col.reverse {
    flex-direction: column;
    text-align: center;
  }

  .approach img {
    max-width: 100%;
  }

  .icon-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-list span {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .icon-list strong {
    font-size: 16px;
  }

  .approach {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {

  .approach {
    padding: 30px 15px;
  }

  .approach h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  .icon-list li {
    margin-bottom: 20px;
  }

  .icon-list strong {
    font-size: 15px;
  }

  .icon-list p {
    font-size: 14px;
  }
}


.icon-list li {
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
