/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

/* Body Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fbff;
  color: #0b2c5d;
}

/* Navbar Styling */
.navbar {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  /* position: fixed; */
  width: 100%;
  /* z-index: 1000; */
  /* background-color: black; */
  /* padding: 1rem 0; */
  top: 0;
  left: 0;
  /* background-color: red; */
}

/* Container for layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  /* background-color: black; */
  /* height: 12vh; */
  /* border:  1px solid black; */
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo img{
    height: 50px;
}

/* Navigation Links */
.nav-group {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links .nav-buttons {
  text-decoration: none;
  color: #0b2c5d; /* Same color for all nav links */
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links .nav-buttons.active,
.nav-links .nav-buttons:hover {
  color: #3a5bfd; /* Hover color for active link */
}

/* 🔥 Modern Get Started Button with Subtle Gradient & Foreground Hover */


/* Toggle Button for Mobile */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 1rem;
}
/* Sidebar base style */
.nav-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right 0.4s ease;
  z-index: 999;
}

/* Show sidebar */
.nav-sidebar.active {
  right: 0;
}

/* Close (X) icon */
.close-icon {
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

/* Sidebar links */
.nav-sidebar .nav-buttons {
  text-decoration: none;
  color: #0b2c5d;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-sidebar .nav-buttons:hover {
  color: #3a5bfd;
}
.btn-primary {
  background: linear-gradient(135deg, #3C92FF, #3C92FF);
  color: #ffffff; /* Ensure button text is always white */
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(58, 91, 253, 0.15);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(58, 91, 253, 0.25);
  background: linear-gradient(135deg, #415bfd, #718eff);
  color: #f1f5ff; /* lighter-than-white subtle hover text */
}
/* Smooth show/hide */
.navbar {
  transition: top 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* When hidden */
.navbar.hidden {
  top: -100px; /* Hides the navbar */
}

/* Hide default nav links on mobile */
@media (max-width: 870px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}






/* Hero Section */
.hero-section {
  padding: 6rem 1.5rem 0rem; /* Padding in viewport height (8vh top, 6vh bottom) */
  /* border: 1px solid black; */
  background: linear-gradient(
          180deg,
          #ffffff 0%,    /* Pure white at the very top */
          #ffffff 60%,   /* Stay white down to 60% of the section height */
          #f9fbff 60%,   /* Then begin your off‑white/very‑light‑blue */
          #eef3ff 100%   /* Finish at soft blue at bottom */
  );
  /* background-color: red; */
  /* height: 100vh ; Full viewport height minus navbar height */
  overflow: hidden;
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  height: fit-content;

}

/* New _hero class (replaces container) */
._hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* background-color: black; */
  flex-direction: row;
  flex-wrap: wrap;
  height: fit-content;

}

/* Hero Wrapper */


/* Hero Text */
.hero-text {
  flex: 1 1 480px;
  max-width: 600px;
  /* background-color: red; */
  height: fit-content;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.3;
  color: #0b2c5d;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  color: #3C92FF;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #5f6e87;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1.15rem;
  flex-wrap: wrap;
}

/* Enhance Explore Services button padding */
.hero-ctas .btn-primary {
  padding: 0.75rem 1.8rem;
}

/* Request a Callback hover gradient background */
.hero-ctas .btn-secondary {
  color: #3C92FF;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.hero-ctas .btn-secondary:hover {
  background: radial-gradient(circle, rgba(176, 207, 226, 0.241) 0%, rgba(255, 255, 255, 0) 80%);
  transform: scale(1.03);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(58, 91, 253, 0.08);
}

/* Hero Image */
.hero-image {
  flex: 1 1 400px;
  text-align: center;
  animation: subtleJump 3s ease-in-out infinite;
}

@keyframes subtleJump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Adjust the jump height here */
  }
}


.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
/* ===== Navbar collapses to hamburger at 870px ===== */
@media (max-width: 1024px) {
  .hero-section {
    padding: 3rem 1.2rem 0rem;
  }
  .hero-text {
    flex: 1 1 480px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    /* padding: 0px; */
  }
  ._hero {
    /* background-color: red; */
    width: 100%;
    height: fit-content;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align the content to the left */
    justify-content: flex-start; /* Align content to the top */
    justify-self: start;
    gap: 0px;
    height: fit-content;
    padding: 0px;
  }

  .hero-title {
    font-size: 2.4rem;
    text-align: left; /* Align the title to the left */
  }

  .hero-subtitle {
    font-size: 1.2rem;
    text-align: left; /* Align the subtitle to the left */
  }
  .hero-ctas{
    align-self: flex-start;
  }
  .hero-ctas .btn-primary {
    padding: 0.7rem 1.6rem;
  }

  .hero-ctas .btn-secondary {
    padding: 0.7rem 1.5rem;
  }

  
}


@media (max-width: 768px) {
  ._hero {
    /* background-color: brown; */

    width: 100%;
    height: fit-content;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align the content to the left */
    justify-content: flex-start; /* Align content to the top */
    justify-self: start;
    gap: 0px;
    height: fit-content;
    padding: 0rem 2rem;
  }
  .hero-title {
    font-size: 2.3rem;
    text-align: left; /* Align the title to the left */
  }

  .hero-subtitle {
    font-size: 1.1rem;
    text-align: left; /* Align the subtitle to the left */
  }
  .hero-ctas{
    align-self: flex-start;
  }
  .hero-ctas .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: .95rem;
  }

  .hero-ctas .btn-secondary {
    padding: 0.6rem 1.4rem;
    font-size: .95rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 7rem 1.2rem 0rem;
  }
  ._hero {
    /* background-color: red; */
    width: 100%;
    height: fit-content;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align the content to the left */
    justify-content: flex-start; /* Align content to the top */
    justify-self: start;
    gap: 0px;
    height: fit-content;
    padding: 0rem 0rem;
  }
  .hero-title {
    font-size: 2.4rem;
    text-align: left; /* Align the title to the left */
  }

  .hero-subtitle {
    font-size: 1.1rem;
    text-align: left; /* Align the subtitle to the left */
  }
  .hero-ctas{
    align-self: flex-start;
  }
  .hero-ctas .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: .95rem;
  }

  .hero-ctas .btn-secondary {
    padding: 0.6rem 1.4rem;
    font-size: .95rem;
  }
}
@media (max-width: 480px) {
  ._hero {
    /* background-color: red; */
    width: 100%;
    height: fit-content;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align the content to the left */
    justify-content: flex-start; /* Align content to the top */
    justify-self: start;
    gap: 0px;
    height: fit-content;
    padding: 0rem 0rem 2rem 0rem;
  }
  .hero-title {
    font-size: 2.1rem;
    text-align: left; /* Align the title to the left */
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: left; /* Align the subtitle to the left */
  }
  .hero-ctas{
    align-self: flex-start;
  }
  .hero-ctas .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: .95rem;
  }

  .hero-ctas .btn-secondary {
    padding: 0.6rem 1.4rem;
    font-size: .95rem;
  }
}














.about-section {
  background-color: #f9fafc;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 40px;
  border-radius: 16px;

  background: linear-gradient(
          to right,
          #eaf3ff 0%,
          #f5faff 50%,
          #ffffff 100%
  );
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}



.about-text {
  flex: 1 1 500px;
}

.about-subtitle {
  color: #3C92FF;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
  line-height: 1.4;
}

.about-description {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.about-image {
  flex: 1 1 500px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  /* border-radius: 16px; */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  object-fit: cover;
}






.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(135deg, #a8d0dd1e, #c0e2ff28);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.stat {
  text-align: center;
  color: #2c86fb;
  /* background-color: red; */

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.stat .number {
  font-size: 3rem;
  width: 120px;
  /* background-color: red; */
  font-weight: bold;
}

.stat .label {
  font-size: 18px;
  margin-top: 10px;
  color: #6299d4;
}
.stat .lvl1{
  /* margin-right: 20px; */
  font-size: 18px;
  margin-top: 10px;
  color: #6299d4;
}




.why-section {
  padding: 40px 20px;
  background-color: #fff;
}
.why-section h2 {
  /* background-color: red; */
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--primary);
}
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.why-left {
  flex: 1 1 400px;
  text-align: center;
}

.why-image {
  width: 100%;
  max-width: 600px;
}

.why-right {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-feature {
  background-color: #f8f9ff;
  font-size: 1.1rem;
  padding: 1vw 1vw;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 20, 80, 0.05);
  font-weight: 500;
  color: #1e1e2f;
  display: flex;
  align-items: center;
  /* background-color: red; */
  font-family: 'Poppins', sans-serif;
}

.checkmark {
  color: #3C92FF;
  font-size: 18px;
  margin-right: 10px;
}















:root {
  --primary: #3C92FF;
  --secondary: #e0f0ff;
  --accent: #0077ff;
  --text: #1a1a1a;
  --white: #ffffff;
}
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 0rem;
  text-align: center;
}

.services-section h2 {
  /* background-color: red; */
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.services-grid {
  /*display: grid;*/
  /*!*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*!*/
  /*grid-template-columns: repeat(3, 1fr);*/
  /*gap: 2rem;*/
  /*justify-content: ;: center;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  /*background: var(--white);*/
  /*!* border-radius: 12px; *!*/
  /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);*/
  /*padding: 2rem 1.5rem;*/
  /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
  /*border-bottom: 2px solid rgb(62, 110, 221);*/
  /*width: 100%;*/
  /*max-width: 100%;*/
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 2px solid rgb(62, 110, 221);

  /* FLEX sizing magic */
  flex: 1 1 280px;
  max-width: 360px;
}
.services-grid > .service-card:last-child {
  justify-self: center;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: rgba(211, 218, 228, 0.142);
  box-shadow: 0 10px 24px rgba(0, 91, 255, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d3b66; /* deep blue for titles */
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 1.05rem;
  color: #4a6fa5; /* friendly, modern soft blue for text */
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


.learn-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.learn-more:hover {
  /* background: linear-gradient(to right, #52565c28, #d1d5da7e); */
  /* color: #fff; */
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-title {
    font-size: 1.1rem;
  }
  .why-right {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}









.testimonial-section {
  padding: 3rem 1rem;
  background: linear-gradient(145deg, #eaf3ff, #f6faff);
  color: white;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0b2c5d;
}
.testimonial-section h2 span{
  color: #3C92FF;
}
.carousel-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #e0edff);
  color: #0b2c5d;
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 1rem;
  flex: 0 0 calc(100% / 3 - 2rem);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: calc(100% / 3 - 2rem);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  font-weight: 600;
  color: #3a5bfd;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 2 - 2rem);
    min-width: calc(100% / 2 - 2rem);
  }
  .testimonial-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #0b2c5d;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 2rem);
    min-width: calc(100% - 2rem);
  }
  .testimonial-section h2 {
    font-size: 27px;
    margin-bottom: 2rem;
    color: #0b2c5d;
  }
}













.contactUs-section {
  padding: 60px 0;
  background: #f9f9f9;
}

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

.contactUs-title h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.contactUs-title span {
  color: #3C92FF;
}

.contactUs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contactUs-details {
  flex: 1;
  min-width: 300px;
}

.contactUs-infoBox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contactUs-infoBox i{
  font-size: 1.5rem;
  margin-right: 2rem;
}


.contactUs-infoBox h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.contactUs-infoBox p {
  font-size: 0.95rem;
  margin: 4px 0 0;
  color: #555;
}

.contactUs-details iframe {
  width: 100%;
  height: 270px;
  border: none;
  margin-top: 20px;
  border-radius: 8px;
}

.contactUs-formWrapper {
  flex: 1;
  min-width: 300px;
}

.contactUs-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contactUs-formGrid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contactUs-formGroup {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contactUs-formGroup label {
  margin-bottom: 6px;
  font-weight: 500;
}

.contactUs-formGroup input,
.contactUs-formGroup textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.contactUs-formGroup textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: 0.3s ease;
  resize: none;
}

.contactUs-formGroup input:focus,
.contactUs-formGroup textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contactUs-submit {
  text-align: center;
}

.contactUs-submit button {
  background: linear-gradient(to right, #4da7ff, #0066ff);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contactUs-submit button:hover {
  opacity: 0.9;
}






.zeneeda-footer {
  background: #f9fbff;
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
  padding: 40px 20px 20px;
}
.z-footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.z-footer-col {
  flex: 1 1 220px;
}
.z-footer-logo {
  font-size: 24px;
  color: #003580;
  font-weight: 700;
  margin-bottom: 1rem;
}
.z-footer-col h4 {
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 1rem;
  color: #003580;
}
.z-footer-col p {
  font-size: 15px;
  line-height: 1.8;
}
.z-footer-col ul {
  list-style: none;
  padding: 0;
}
.z-footer-col ul li {
  margin-bottom: 0.5rem;
}
.z-footer-col ul li a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.z-footer-col ul li a:hover {
  color: #3a5bfd;
}
.z-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.z-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #eef3fb;
  color: #3C92FF;
  font-size: 24px;
  transition: all 0.3s ease;
}
.z-social-icons a:hover {
  background-color: #3C92FF;
  color: white;
}
.z-footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid #e0e6f0;
  margin-top: 30px;
}
.z-footer-bottom strong {
  font-weight: 600;
}


@media (max-width: 880px) {
  .stats-container .hold{
    /* background-color: #003580; */
    width: 40%;
  }
  .stats-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #a8d0dd1e, #c0e2ff28);
    border-radius: 20px;
    padding: 0px 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* background-color: brown; */
    flex-wrap: wrap;
  }


  .stat {
    text-align: center;
    color: #3C92FF;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .stat .number {
    font-size: 3rem;
    width: 120px;
    /* background-color: red; */
    font-weight: bold;
  }

  .stat .label {
    font-size: 18px;
    margin-top: 10px;
  }
  .stat .lvl1{
    /* margin-right: 20px; */
    font-size: 18px;
    margin-top: 10px;
  }

}
@media (max-width:1024px){
  .about-section {
    background-color: #f9fafc;
    padding: 0px 20px 0px;
    font-family: 'Poppins', sans-serif;
  }
}
@media (max-width: 768px) {
  .about-section {
    background-color: #f9fafc;
    padding: 0px 20px 0px;
    font-family: 'Poppins', sans-serif;
  }

  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 40px 40px 0px;
    border-radius: 16px;

    background: linear-gradient(
            to right,
            #eaf3ff 0%,
            #f5faff 50%,
            #ffffff 100%
    );
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }



  .about-text {
    flex: 1 1 500px;
  }

  .about-subtitle {
    color: #3C92FF;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-title {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
    line-height: 1.4;
  }

  .about-description {
    font-size: 18px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 16px;
  }

  .about-image {
    flex: 1 1 500px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 600px;
    /* border-radius: 16px; */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    object-fit: cover;
  }








  .why-container {
    padding: 0 2vw;
  }

  .services-section h2 {
    font-size: 1.6rem;
    margin-bottom:0rem;
    color: var(--primary);
  }
  .service-title {
    font-size: 18px;
    font-weight: 600;
    color: #3C92FF; /* deep blue for titles */
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.75rem;
  }

  .service-desc {
    font-size: 15px;
    color: #4a6fa5; /* friendly, modern soft blue for text */
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }







  .contactUs-infoBox h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .contactUs-infoBox p {
    font-size: 15px;
    margin: 4px 0 0;
    color: #555;
  }
  .contactUs-title h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }












  .zeneeda-footer {
    padding: 40px 20px 20px;
  }
  .z-footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: space-between;
    max-width: 100vw;
    margin: auto;
  }
  .z-footer-logo {
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .z-footer-col h4 {
    font-size: 20px;
    margin-bottom: .85rem;
  }
  .z-footer-col p {
    font-size: 16px;
    line-height: 1.7;
  }
  .z-footer-col ul {
    list-style: none;
    padding: 0;
  }
  .z-footer-col ul li {
    margin-bottom: 0.4rem;
  }
  .z-footer-col ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }

}

@media (max-width: 600px) {
  .services-section h2 {
    font-size: 1.7rem;
    margin-bottom: 0rem;
    color: var(--primary);
  }

  .service-title {
    font-size: 18px;
    font-weight: 600;
    color: #3C92FF; /* deep blue for titles */
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.75rem;
  }

  .service-desc {
    font-size: 14px;
  }


  .about-section {
    background-color: #f8f9fc;
    padding: 00px 20px 20px;
    font-family: 'Poppins', sans-serif;
  }

  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px;
    padding: 0px 0px 20px;
    border-radius: 16px;

    background: linear-gradient(
            to right,
            #eaf3ff 0%,
            #f5faff 50%,
            #ffffff 100%
    );
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }


  .about-text {
    flex: 1 1 500px;
  }

  .about-subtitle {
    color: #3C92FF;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-title {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
    line-height: 1.4;
  }

  .about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
  }

  .about-image {
    flex: 1 1 500px;
    text-align: center;
    /* display: none; */
  }

  .about-image img {
    width: 100%;
    max-width: 600px;
    /* border-radius: 16px; */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    object-fit: cover;
  }


  .stats-container .hold {
    /* background-color: #003580; */
    width: 40%;
  }

  .stats-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #a8d0dd1e, #c0e2ff28);
    border-radius: 20px;
    padding: 0px 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* background-color: brown; */
    flex-wrap: wrap;
  }


  .stat {
    text-align: center;
    color: #2c86fb;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .stat .number {
    font-size: 2.5rem;
    width: 120px;
    /* background-color: red; */
    font-weight: bold;
  }

  .stat .label {
    font-size: 15px;
    margin-top: 10px;
  }

  .stat .lvl1 {
    /* margin-right: 20px; */
    font-size: 15px;
    margin-top: 10px;
  }


  .why-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .why-feature {
    background-color: #f8f9ff;
    font-size: 15px;
    padding: 1vw 1vw;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 20, 80, 0.05);
    font-weight: 500;
    color: #1e1e2f;
    display: flex;
    align-items: center;
    /* background-color: red; */
    font-family: 'Poppins', sans-serif;
  }


  .contactUs-form {
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    /* background-color: red; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .contactUs-form {
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    /* background-color: red; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* background-color: black; */
    padding: 0 2.4vw;
  }


  .zeneeda-footer {
    padding: 40px 20px 20px;
  }

  .z-footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: space-between;
    max-width: 100vw;
    margin: auto;
  }

  .z-footer-logo {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .z-footer-col h4 {
    font-size: 20px;
    margin-bottom: .85rem;
  }

  .z-footer-col p {
    font-size: 15px;
    line-height: 1.7;
  }

  .z-footer-col ul {
    list-style: none;
    padding: 0;
  }

  .z-footer-col ul li {
    margin-bottom: 0.4rem;
  }

  .z-footer-col ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
  }

  .z-footer-col ul li a:hover {
    color: #3a5bfd;
  }

  .z-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .z-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: #eef3fb;
    color: #3C92FF;
    font-size: 24px;
    transition: all 0.3s ease;
  }

  .z-social-icons a:hover {
    background-color: #3C92FF;
    color: white;
  }

  .z-footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #e0e6f0;
    margin-top: 30px;
  }

  .z-footer-bottom strong {
    font-weight: 600;
  }


  @media (max-width: 880px) {
    .stats-container .hold {
      /* background-color: #003580; */
      width: 40%;
    }

    .stats-container {
      display: flex;
      justify-content: center;
      gap: 10px;
      max-width: 1200px;
      margin: auto;
      background: linear-gradient(135deg, #a8d0dd1e, #c0e2ff28);
      border-radius: 20px;
      padding: 0px 0px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      /* background-color: brown; */
      flex-wrap: wrap;
    }


    .stat {
      text-align: center;
      color: #2c86fb;
      /* background-color: red; */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .stat .number {
      font-size: 3rem;
      width: 120px;
      /* background-color: red; */
      font-weight: bold;
    }

    .stat .label {
      font-size: 18px;
      margin-top: 10px;
    }

    .stat .lvl1 {
      /* margin-right: 20px; */
      font-size: 18px;
      margin-top: 10px;
    }

  }
  @media (max-width: 1024px) {
    .about-section {
      background-color: #f9fafc;
      padding: 0px 20px 0px;
      font-family: 'Poppins', sans-serif;
    }
  }
  @media (max-width: 768px) {
    .about-section {
      background-color: #f9fafc;
      padding: 0px 20px 0px;
      font-family: 'Poppins', sans-serif;
    }

    .about-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
      padding: 40px 40px 0px;
      border-radius: 16px;

      background: linear-gradient(
              to right,
              #eaf3ff 0%,
              #f5faff 50%,
              #ffffff 100%
      );
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }


    .about-text {
      flex: 1 1 500px;
    }

    .about-subtitle {
      color: #3C92FF;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .about-title {
      font-size: 27px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111827;
      line-height: 1.4;
    }

    .about-description {
      font-size: 18px;
      line-height: 1.5;
      color: #4b5563;
      margin-bottom: 16px;
    }

    .about-image {
      flex: 1 1 500px;
      text-align: center;
    }

    .about-image img {
      width: 100%;
      max-width: 600px;
      /* border-radius: 16px; */
      /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
      object-fit: cover;
    }


    .why-container {
      padding: 0 2vw;
    }

    .services-section h2 {
      font-size: 1.6rem;
      margin-bottom: 0rem;
      color: var(--primary);
    }

    .service-title {
      font-size: 18px;
      font-weight: 600;
      color: #3C92FF; /* deep blue for titles */
      font-family: 'Poppins', sans-serif;
      margin-bottom: 0.75rem;
    }

    .service-desc {
      font-size: 15px;
      color: #4a6fa5; /* friendly, modern soft blue for text */
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }


    .contactUs-infoBox h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
    }

    .contactUs-infoBox p {
      font-size: 15px;
      margin: 4px 0 0;
      color: #555;
    }

    .contactUs-title h2 {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }


    .zeneeda-footer {
      padding: 40px 20px 20px;
    }

    .z-footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      justify-content: space-between;
      max-width: 100vw;
      margin: auto;
    }

    .z-footer-logo {
      font-size: 26px;
      margin-bottom: 1rem;
    }

    .z-footer-col h4 {
      font-size: 20px;
      margin-bottom: .85rem;
    }

    .z-footer-col p {
      font-size: 16px;
      line-height: 1.7;
    }

    .z-footer-col ul {
      list-style: none;
      padding: 0;
    }

    .z-footer-col ul li {
      margin-bottom: 0.4rem;
    }

    .z-footer-col ul li a {
      color: #2c3e50;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s ease;
    }

  }

  @media (max-width: 600px) {
    .services-section h2 {
      font-size: 1.7rem;
      margin-bottom: 0rem;
      color: var(--primary);
    }

    .service-title {
      font-size: 18px;
      font-weight: 600;
      color: #0d3b66; /* deep blue for titles */
      font-family: 'Poppins', sans-serif;
      margin-bottom: 0.75rem;
    }

    .service-desc {
      font-size: 14px;
    }


    .about-section {
      background-color: #f8f9fc;
      padding: 00px 20px 20px;
      font-family: 'Poppins', sans-serif;
    }

    .about-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0px;
      padding: 0px 0px 20px;
      border-radius: 16px;

      background: linear-gradient(
              to right,
              #eaf3ff 0%,
              #f5faff 50%,
              #ffffff 100%
      );
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }


    .about-text {
      flex: 1 1 500px;
    }

    .about-subtitle {
      color: #3C92FF;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .about-title {
      font-size: 27px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111827;
      line-height: 1.4;
    }

    .about-description {
      font-size: 16px;
      line-height: 1.6;
      color: #4b5563;
      margin-bottom: 16px;
    }

    .about-image {
      flex: 1 1 500px;
      text-align: center;
      /* display: none; */
    }

    .about-image img {
      width: 100%;
      max-width: 600px;
      /* border-radius: 16px; */
      /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
      object-fit: cover;
    }


    .stats-container .hold {
      /* background-color: #003580; */
      width: 40%;
    }

    .stats-container {
      display: flex;
      justify-content: center;
      gap: 10px;
      max-width: 1200px;
      margin: auto;
      background: linear-gradient(135deg, #a8d0dd1e, #c0e2ff28);
      border-radius: 20px;
      padding: 0px 0px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      /* background-color: brown; */
      flex-wrap: wrap;
    }


    .stat {
      text-align: center;
      color: #2c86fb;
      /* background-color: red; */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .stat .number {
      font-size: 2.5rem;
      width: 120px;
      /* background-color: red; */
      font-weight: bold;
    }

    .stat .label {
      font-size: 15px;
      margin-top: 10px;
    }

    .stat .lvl1 {
      /* margin-right: 20px; */
      font-size: 15px;
      margin-top: 10px;
    }


    .why-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .why-feature {
      background-color: #f8f9ff;
      font-size: 15px;
      padding: 1vw 1vw;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 20, 80, 0.05);
      font-weight: 500;
      color: #1e1e2f;
      display: flex;
      align-items: center;
      /* background-color: red; */
      font-family: 'Poppins', sans-serif;
    }


    .contactUs-form {
      background: #fff;
      padding: 0px;
      border-radius: 10px;
      /* background-color: red; */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      /* background-color: black; */
      padding: 0 2.4vw;
    }

    .contactUs-submit button {
      background: linear-gradient(to right, #4da7ff, #0066ff);
      border: none;
      color: white;
      padding: 12px 30px;
      border-radius: 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s ease;
      margin-bottom: 20px;
    }


    .zeneeda-footer {
      padding: 40px 20px 20px;
    }

    .z-footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      justify-content: space-between;
      max-width: 100vw;
      margin: auto;
    }

    .z-footer-logo {
      font-size: 28px;
      margin-bottom: 1rem;
    }

    .z-footer-col h4 {
      font-size: 20px;
      margin-bottom: .85rem;
    }

    .z-footer-col p {
      font-size: 15px;
      line-height: 1.7;
    }

    .z-footer-col ul {
      list-style: none;
      padding: 0;
    }

    .z-footer-col ul li {
      margin-bottom: 0.4rem;
    }

    .z-footer-col ul li a {
      color: #2c3e50;
      text-decoration: none;
      font-size: 15px;
      transition: color 0.3s ease;
    }
  }
}






/* =========================
     SERVICE MODAL
  ========================= */
.service-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1000;
}

.service-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--white);
  max-width: 560px;
  width: 90%;
  padding: 2.6rem 2.4rem;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.35s ease;
}

.service-modal.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.modal-points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 1.6rem;
}

.modal-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}

.checkmark {
  color: var(--primary);
  font-weight: bold;
}

.modal-footer {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: var(--text);
  margin-top: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .modal-card { padding: 2rem 1.5rem; }
  .modal-title { font-size: 1.5rem; }
}

/* Checkmark */
.checkmark {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ===== FOOTER ONE-LINER ===== */
.modal-footer {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* ===== CLOSE BUTTON ===== */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

/* ===== MOBILE REFINEMENT ===== */
@media (max-width: 480px) {
  .modal-card {
    padding: 2.1rem 1.6rem;
  }

  .modal-title {
    font-size: 1.55rem;
  }

  .modal-points li {
    font-size: 1rem;
  }
}


.contactUs-subtext {
  font-size: 1.05rem;
  color: #555;
  max-width: 800px;
  margin: 0.75rem auto 2.5rem;
  line-height: 1.7;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
