/* css/style.css */

/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF GLOBAL AND SHARED SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/* Reset default browser spacing */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* fonts */
h1, .h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.5rem); /* Hero titles */
  line-height: 1.2;
}

h2, .h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
}

h3, .h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;     /* 16px base */
  line-height: 1.6;
  color: #333;
}

/* When the mobile menu is open, prevent background scroll */
body.menu-open {
  overflow: hidden;
  touch-action: none; /* blocks scrolling and touch gestures */
}


p, .text-normal {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.small-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
}


button, .btn, .label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
}



/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF GLOBAL AND SHARED SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF NAVBR SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------
   START OF NAVBAR SECTION STYLES
------------------------------------------------------------------------------------------------------------------------*/

/* ============================================
   ✅ UNIVERSAL NAVBAR BASE
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(14, 43, 92, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.35s ease;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================
   ✅ LOGO + LINKS (DESKTOP)
============================================ */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  width: 80px;
  height: auto;
  transition: width 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FF6F00;
}

/* ============================================
   ✅ NAVBAR SHRINK EFFECT
============================================ */
.navbar.shrink {
  background: rgba(14, 43, 92, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.navbar.shrink .navbar-inner {
  padding: 0.35rem 2rem;
}

.navbar.shrink .nav-logo {
  width: 65px;
}

.navbar.shrink:hover .navbar-inner {
  padding: 1rem 2rem;
}

.navbar.shrink:hover .nav-logo {
  width: 80px;
}

/* ============================================
   ✅ HAMBURGER BASE (HIDDEN BY DEFAULT)
============================================ */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 2500; /* ✅ ensure it's above drawer */
  transition: transform 0.3s ease;
  position: fixed; /* ✅ ensure it stays visible */
  top: 1.5rem;
  right: 2rem;
}


.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ============================================
   ✅ MOBILE STYLES ONLY
============================================ */
@media (max-width: 768px) {
  /* show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* drawer menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 340px;
    margin: 0;                /* ✅ Remove any offset */
    padding-top: 0;           /* ✅ Remove any padding pushing it down */
    background: rgba(14, 43, 92, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.25);
    z-index: 2000;            /* ✅ Now higher than navbar */
    border-top-left-radius: 0; /* optional */
    border-top-right-radius: 0;
  }

  .navbar {
    z-index: 100; /* ✅ keep below drawer when open */
  }



  .nav-links.active {
    right: 0;
  }

  /* overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* 🟠 lighter dim */
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 900;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }



  /* ======================================
     ✅ HAMBURGER → X TRANSFORMATION
  ====================================== */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* keep icon fixed and visible */
  .hamburger.active {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    /* ❌ remove rotate(90deg) — it broke the X */
    transform: none;
  }

  /* optional: orange color for active X */
  .hamburger.active span {
    background: #FF6F00;
  }
}




/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF NAVBAR SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF HERO SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/
/* ===================================================
   HERO SECTION — Modern OrideDax Style
=================================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1E3A8A 0%, #3B4FA5 30%, #FF6F00 90%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  color: #fff;

  /* 🟢 Add breathing room below navbar */
  padding-top: 7rem; /* you can adjust: 6–8rem usually perfect */
}

/* Softer animated overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    220deg,
    rgba(30, 58, 138, 0.55) 0%,
    rgba(255, 111, 0, 0.35) 60%,
    rgba(255, 166, 66, 0.25) 100%
  );
  background-size: 300% 300%;
  animation: gradientFlow 18s ease-in-out infinite;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 0;
}

@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.15) 30%,
    rgba(255,255,255,0.05) 60%);
  background-size: 400% 400%;
  animation: lightSweep 18s linear infinite;
  mix-blend-mode: overlay;
  z-index: 1;
}

@keyframes lightSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Title — slightly smaller + more refined */
.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
  animation: fadeUp 1s ease-out forwards;
}

.hero-subtitle {
  margin-top: 0.3rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  animation: fadeUp 1.4s ease-out forwards;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* Waitlist Form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.waitlist-form input[type="email"] {
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius-md);
  outline: none;
  font-size: 1rem;
  font-family: var(--font-body);
}

.waitlist-form label {
  font-size: 0.9rem;
  color: #eee;
}

.waitlist-form a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.waitlist-form a:hover {
  color: var(--vibrant-orange); /* subtle brand accent on hover */
  text-decoration: none;
}


.btn-primary {
  background: var(--gradient-orange);
  color: white;
  border: none;
  padding: 1rem 1.6rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255,111,0,0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,111,0,0.8);
}


.waitlist-form {
  position: relative;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 40px rgba(255,111,0,0.25);
  transition: all 0.4s ease;
}

.waitlist-form:hover {
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(255,111,0,0.4);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}


@keyframes ctaPulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(255,111,0,0.4); }
  50% { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 25px rgba(255,111,0,0.7); }
}

.btn-primary {
  animation: ctaPulse 5s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
}



/* ===================================================
   WAITLIST SUCCESS MODAL — Consistent with Contact Modal
=================================================== */
.waitlist-success-modal {
  display: none; /* ✅ hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease forwards;
}

.waitlist-success-modal.show {
  display: flex; /* ✅ only shown when JS adds .show */
}

.waitlist-success-content {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: var(--primary-blue);
  animation: popIn 0.4s ease forwards;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Optional: fade + pop animations reused for both modals */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}




/* ======== ORBIT BACKGROUND ACCENT ========  */
.hero-bg-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
              rgba(255,111,0,0.18) 0%,
              rgba(255,111,0,0.05) 40%,
              transparent 70%);
  opacity: 0.15;
  z-index: 1;                /* 👈 sits behind content */
  pointer-events: none;
  animation: orbitPulse 18s ease-in-out infinite alternate;
}

.hero-bg-orbits::before,
.hero-bg-orbits::after {
  content: "";
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: orbitSpin 45s linear infinite;
}

.hero-bg-orbits::after {
  inset: -160px;
  border: 1px dashed rgba(255,111,0,0.12);
  animation: orbitSpinReverse 60s linear infinite;
}

@keyframes orbitPulse {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}




/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF HERO SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF PROBLEM SECTION — Context & Empathy                                                                                        /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

.problem {
  position: relative;
  padding: 8rem 2rem 10rem;
  background: linear-gradient(180deg, #132b67 0%, #1E3A8A 60%, #0f1f4a 100%);
  overflow: hidden;
}

/* --- Background glow --- */
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,111,0,0.15), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(30,58,138,0.15), transparent 70%);
  z-index: 0;
}

/* --- Container --- */
.problem-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Headings --- */
.problem h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.problem-intro {
  font-family: "Poppins", sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 6rem;
}

/* ============ TIMELINE STRUCTURE ============ */
.problem-timeline {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* SVG flow line */
.problem-flow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 200px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
}

.problem-flow path {
  fill: none;
  stroke: var(--vibrant-orange);
  stroke-width: 3;
  opacity: 0.65; /* ✅ a touch softer */
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 8;
  filter: blur(1px) drop-shadow(0 0 12px rgba(255, 111, 0, 0.45));
  mix-blend-mode: screen; /* ✅ makes orange interact with blue below */
  transition: opacity 0.4s ease;
  animation: flowLine 6s linear infinite;
}


/* Animate the orange path like flowing water */
@keyframes flowLine {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -80; }
}


/* --- Items --- */
.problem-item {
  position: relative;
  width: 50%;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

.problem-item.left { left: 0; text-align: left; }
.problem-item.right { left: 50%; text-align: right; }

/* --- Connection dots --- */
.problem-item::before {
  content: "";
  position: absolute;
  top: 3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--vibrant-orange);
  box-shadow: 0 0 12px rgba(255,111,0,0.6);
  z-index: 2;
}
.problem-item.left::before { right: -7px; }
.problem-item.right::before { left: -7px; }

/* --- Cards --- */
.problem-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
}

.problem-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgba(255,111,0,0.45);
}

.problem-card h3 {
  color: var(--vibrant-orange);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.problem-card h3 {
  color: rgba(255, 140, 40, 0.9); /* ✅ slightly deeper tone */
  text-shadow: 0 0 8px rgba(255, 111, 0, 0.35);
}


.problem-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Hover reveal for description text --- */
.problem-card p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  margin: 0;               /* ensure no gap when hidden */
}

/* Reveal smoothly on hover */
.problem-card:hover p {
  opacity: 1;
  max-height: 80px;
  transform: translateY(0);
  margin-top: 0.6rem;
}

.problem-card:hover p {
  transition-delay: 0.1s;
}



/* --- CTA --- */
.problem-cta {
  text-align: center;
  margin-top: 6rem;
}

.problem-cta p {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* --- Mobile --- */
@media (max-width: 900px) {
  .problem-item,
  .problem-item.left,
  .problem-item.right {
    left: 0;
    width: 100%;
    text-align: left;
    padding: 2rem 0;
  }

  .problem-timeline::before {
    left: 15px;
    width: 3px;
  }

  .problem-item::before {
    left: 9px;
  }

  .problem-card {
    margin-left: 2.5rem;
  }
}


@keyframes flowPulse {
  0%, 100% { opacity: 0.65; filter: blur(1px) drop-shadow(0 0 12px rgba(255,111,0,0.45)); }
  50% { opacity: 0.85; filter: blur(1.5px) drop-shadow(0 0 18px rgba(255,111,0,0.65)); }
}

.problem-flow path {
  animation: flowLine 6s linear infinite, flowPulse 5s ease-in-out infinite;
}




/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF PROBLEM SECTION — Context & Empathy                                                                                           /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/




/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF ABOUT SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/
/* ===================================================
   ABOUT SECTION — Branded & Dynamic
=================================================== */

.about {
  position: relative;
  padding: 8rem 2rem 10rem;
  background: linear-gradient(180deg, #0f1f4a 0%, #ffffff 25%);
  overflow: hidden;
}

/* --- Decorative radial glows for depth --- */
.about::before,
.about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.about::before {
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.18) 0%, transparent 70%);
}

.about::after {
  bottom: -140px;
  left: -160px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.12) 0%, transparent 70%);
}

/* --- Container --- */
.about-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* --- Headings --- */
.about h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.about h2 .highlight {
  color: var(--vibrant-orange);
}

/* --- Paragraphs --- */
.about p {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.2rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CTA --- */
.about-cta {
  margin-top: 2.5rem;
}

.about-cta .btn-primary {
  display: inline-block;
  background: var(--gradient-orange);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
  transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 111, 0, 0.6);
}

/* --- Reveal animation (integrates with your existing system) --- */
.about.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.about.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about {
    padding: 6rem 1.5rem 8rem;
  }
  .about h2 {
    font-size: 2rem;
  }
  .about p {
    font-size: 1rem;
  }
}




/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF ABOUT SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF SERVICES SECTION — Simple & Inspiring Display                                                                                           /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

.services {
  position: relative;
  overflow: hidden;
   padding: 8rem 2rem 10rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  z-index: 0;
}

/* === Background illustration overlay === */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/illustrations/exam-illustration.png") center/cover no-repeat;
  filter: blur(12px) brightness(1.05) saturate(0.85);
  transform: scale(1.05);
  opacity: 0.3; /* keep it subtle */
  z-index: -2;
}

.services::after {
  /* optional tinted gradient overlay to match brand palette */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.85) 80%);
  z-index: -1;
}

/* --- Content --- */
.services-container {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.services h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.services-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 3rem;
}

/* --- Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(30, 58, 138, 0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(30,58,138,0.15), rgba(255,111,0,0.15));
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}

.service-icon img {
  width: 45px;
}

.service-card h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #333;
  line-height: 1.6;
}





/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF SERVICES SECTION                                                                                              /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/














/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* TRANSITION DIVIDER — Between Services → Features                                                                        /
/*                                                                                                                         /
/*------------------------------------------------------------------------------------------------------------------------*/

.section-divider {
  position: relative;
  height: 80px;
  background: linear-gradient(90deg, rgba(30,58,138,0.08), rgba(255,111,0,0.08));
  overflow: hidden;
}

/* Animated shimmer line */
.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60%;
  width: 220%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,111,0,0) 0%,
    rgba(255,111,0,0.35) 50%,
    rgba(255,111,0,0) 100%
  );
  transform: translateY(-50%);
  animation: shimmerFlow 14s linear infinite;
  opacity: 0.25; /* soft visibility */
  filter: blur(1px); /* diffused line */
}

@keyframes shimmerFlow {
  0% { left: -60%; }
  100% { left: 60%; }
}


/* Optional soft glow behind the line */
.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,111,0,0.06) 0%, transparent 70%);
  filter: blur(12px);
}










/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF mockup slider SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/* ==========================================================
   🌐 ORIDEDAX MOCKUP SLIDER — Web-App Edition
   Retains indicators, arrows, and transitions
========================================================== */
.mockup-slider-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.slider {
  position: relative;
  max-width: 1200px;  /* ✅ wide display for web previews */
  height: 650px;      /* ✅ proportional height */
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30,58,138,0.06), rgba(255,111,0,0.06));
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* SLIDES */
.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  /* ✅ Full user-select compatibility */
  -webkit-user-select: none;  /* Safari 3+, iOS 3+ */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* IE10+, Edge Legacy */
  user-select: none;          /* Standard */
  pointer-events: none;
}

/* =======================
   NAVIGATION BUTTONS
======================= */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 58, 138, 0.75);
  border: none;
  color: #fff;
  font-size: 2.2rem; /* ✅ larger arrows for wide layout */
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 5;

  /* 🧭 Center the arrow perfectly inside */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0; /* removes vertical glyph offset */
  text-align: center;
  font-weight: 600;
}

.slider-btn span,
.slider-btn i {
  display: inline-block;
  transform: translateY(1px); /* fine-tuned vertical centering */
}

.slider-btn.prev { left: 25px; }
.slider-btn.next { right: 25px; }

.slider-btn:hover {
  background: var(--vibrant-orange);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(255,111,0,0.35);
}


/* =======================
   PAGINATION DOTS
======================= */
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.slider-dots .dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: rgba(30,58,138,0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--vibrant-orange);
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255,111,0,0.4);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 950px) {
  .slider {
    max-width: 90%;
    height: 480px;
  }

  .slider-btn {
    font-size: 1.8rem;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 650px) {
  .slider {
    height: 360px;
  }

  .slider-btn {
    font-size: 1.5rem;
    padding: 0.6rem 0.9rem;
  }

  .slider-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
  }
}


/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF mockup slider SECTION STYLES                                                                                              /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/







/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF   DOWNLOAD APP SECTION — Premium App CTA                                                                                           /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/


.download-app {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-visual img {
  width: 90%;
  max-width: 420px;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: floatApp 6s ease-in-out infinite;
}

@keyframes floatApp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.download-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.download-content p {
  font-family: "Poppins", sans-serif;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.store-btn img {
  height: 56px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.store-btn img:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(255, 111, 0, 0.25);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .download-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-visual img {
    max-width: 320px;
  }

  .store-buttons {
    justify-content: center;
  }
}




/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF DOWNLOAD APP SECTION — Premium App CTA                                                                                            /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/







/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF FEATURES SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/
.features {
  padding: 5rem 2rem;
  background: #ffffff;
  text-align: center;
}

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

.features h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #1E3A8A;
  margin-bottom: 1rem;
}

.features-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}


.feature-card img {
  width: 50px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1E3A8A;
}

.feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #333;
}

/* feature icons styles */
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.15), rgba(255, 111, 0, 0.15));
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

.feature-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* Hover effect */
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.25);
}


/* Glass style */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.25,.8,.25,1), 
              transform 1s cubic-bezier(.25,.8,.25,1);
}


.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF FEATURES SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF REVIEWS SECTION                                                                                             /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/* ============================================================
   💬 REVIEWS SECTION — Clean Minimal Design
   Compatible with your existing JS (review-slides / dots / buttons)
============================================================ */

.reviews {
  background: linear-gradient(180deg, #f9fafc 0%, #eef1f8 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  font-family: "Poppins", sans-serif;
}

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

/* ----------------------------
   Headings
---------------------------- */
.reviews h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.reviews-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

/* ----------------------------
   Slider Wrapper
---------------------------- */
.review-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
}

/* ----------------------------
   Slides Container
---------------------------- */
.review-slides {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

/* ----------------------------
   Individual Slide Card
---------------------------- */
.review-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 220px;
}

.review-rating {
  font-size: 1.4rem;
  color: #FFD700;
}

.review-message {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 80%;
  margin: 0 auto;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 0.5rem;
}

/* ----------------------------
   Navigation Arrows
---------------------------- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 58, 138, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 5px 18px rgba(30, 58, 138, 0.25);
}

.slider-btn:hover {
  background: var(--vibrant-orange);
  transform: translateY(-50%) scale(1.1);
}

/* ✅ Move them just outside the card */
#reviews-prev { left: -20px; }
#reviews-next { right: -20px; }

/* ----------------------------
   Pagination Dots
---------------------------- */
.review-dots {
  margin-top: 1.5rem;
}

.review-dots .dot {
  height: 10px;
  width: 10px;
  background: rgba(30, 58, 138, 0.3);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dots .dot.active {
  background: var(--vibrant-orange);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255,111,0,0.4);
}

/* ----------------------------
   Responsive
---------------------------- */
@media (max-width: 768px) {
  .review-slider {
    padding: 2.5rem 1.5rem;
  }

  .review-message {
    font-size: 1rem;
    max-width: 90%;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 540px) {
  .slider-btn {
    display: none; /* hide arrows on small phones */
  }

  .review-message {
    font-size: 0.95rem;
  }
}



/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF REVIEWS SECTION                                                                                            /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF CONTACT SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

.contact {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}

/* Subtle gradient for visual grounding */
.contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;                 /* ✅ simpler than grid */
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;                     /* better breathing space */
  padding: 0 1rem;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  max-width: 480px;
}

.contact-left h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-left p {
  font-family: "Poppins", sans-serif;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-left li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

/* =============================
   RIGHT SIDE — FORM
============================= */
/* RIGHT SIDE (FORM) */
.contact-form {
  flex: 1;
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.3s ease;
}


.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical; /* ✅ only allow vertical expansion */
  max-height: 300px; /* ✅ optional: prevent stretching too tall */
  min-height: 120px; /* ✅ optional: nice default height */
}


.contact-form:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.contact-form label {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 950px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

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

  .contact-left ul {
    display: inline-block;
    text-align: left;
  }
}


/* ===================================================
   SUCCESS MODAL
=================================================== */
.contact-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease forwards;
}

.contact-success-modal.show {
  display: flex;
}

.contact-success-content {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: var(--primary-blue);
  animation: popIn 0.4s ease forwards;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===================================================
   RESPONSIVE DESIGN
=================================================== */
@media (max-width: 950px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .contact-left {
    text-align: center;
  }

  .contact-left ul {
    display: inline-block;
    text-align: left;
  }
}



/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF CONTACT SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF FOOTER SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/
.footer {
  background: #1E3A8A;
  color: #fff;
  padding: 3rem 2rem 1rem;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  width: 100px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.footer-slogan {
  font-size: 0.95rem;
  color: #EDEDED;
}

.footer-nav {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FF6F00;
}

.footer-social {
  flex: 1;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social img {
  width: 24px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #FF6F00);
}


.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 2rem;
  color: #ccc;
}

/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF FOOTER SECTION STYLES                                                                                               /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF 🖥️ Full-Height Section Experience (Smooth Flow)                                                                                        /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/
.hero {
  min-height: 100vh;
}

.about,
.services,
.features,
.reviews,
.contact {
  min-height: 100vh;          /* fills the whole screen */
  display: flex;
  flex-direction: column;
  justify-content: center;    /* center vertically */
  padding: 8rem 2rem;         /* keep breathing room */
  box-sizing: border-box;     /* include padding in height */
}

.about { background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%); }
.services { background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%); }
.features { background: #ffffff; }
.reviews { background: #f5f7fc; }
.contact { background: linear-gradient(180deg, #ffffff 0%, #f3f6fc 100%); }

/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF START OF 🖥️ Full-Height Section Experience (Smooth Flow)                                                                                                                             /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/







/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* START OF Mobile RESPONSIVENESS                                                                                        /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/* ======================================================================
   📱 MOBILE OVERFLOW SAFETY FIX
   Prevents horizontal dragging + blue background on iPhone
   (Fully supported across all browsers, no nonstandard properties)
   ====================================================================== */

@media screen and (max-width: 768px) {

  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* 💯 core fix */
  }

  /* Ensure all blocks never accidentally exceed the viewport width */
  section, div, img, .container, .wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Fix for sliders, grids, and flex containers that may stretch */
  .slides,
  .review-slides,
  .services-grid,
  .features-grid,
  .problem-timeline,
  .hero {
    overflow-x: hidden !important;
    max-width: 100%;
  }

  /* Global safety: padding + borders never push elements too wide */
  * {
    box-sizing: border-box;
  }
}







/*------------------------------------------------------------------------------------------------------------------------*/
/*                                                                                                                         /
/* END OF mobile responsiveness                                                                                                                       /                                                                                                                   /
/*                                                                                                                         /                                                                                                                     /
/*------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------------------*/


