* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 100, 0.2), transparent);
  top: -100px;
  left: -100px;
  animation: moveGlow 10s infinite alternate;
  z-index: -1;
}

@keyframes moveGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(200px, 200px); }
}

.bg-animation {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-animation span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.18;
  animation: bubbleMove linear infinite;
}

.bg-animation span:nth-child(1) {
  width: 140px;
  height: 140px;
  left: 8%;
  top: 15%;
  background: #60a5fa;
  animation-duration: 18s;
}

.bg-animation span:nth-child(2) {
  width: 90px;
  height: 90px;
  left: 22%;
  top: 70%;
  background: #34d399;
  animation-duration: 14s;
}

.bg-animation span:nth-child(3) {
  width: 180px;
  height: 180px;
  left: 72%;
  top: 10%;
  background: #93c5fd;
  animation-duration: 22s;
}

.bg-animation span:nth-child(4) {
  width: 110px;
  height: 110px;
  left: 82%;
  top: 72%;
  background: #fca5a5;
  animation-duration: 17s;
}

.bg-animation span:nth-child(5) {
  width: 210px;
  height: 210px;
  left: 42%;
  top: 42%;
  background: #bfdbfe;
  animation-duration: 25s;
}

.bg-animation span:nth-child(6) {
  width: 70px;
  height: 70px;
  left: 58%;
  top: 78%;
  background: #6ee7b7;
  animation-duration: 13s;
}

@keyframes bubbleMove {
  0%   { transform: translateY(0px) translateX(0px) scale(1); }
  25%  { transform: translateY(-30px) translateX(20px) scale(1.05); }
  50%  { transform: translateY(15px) translateX(-18px) scale(0.95); }
  75%  { transform: translateY(-18px) translateX(12px) scale(1.02); }
  100% { transform: translateY(0px) translateX(0px) scale(1); }
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.topbar {
  background: rgba(11, 23, 54, 0.92);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 95px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 6px;
}

.brand h1 {
  font-size: 1.4rem;
  margin-bottom: 2px;
  color: #ffffff;
}

.tagline {
  font-size: 0.92rem;
  color: #dbe4ff;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: red;
  transition: 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.light-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 24px;
}

.page-banner {
  text-align: center;
  padding: 70px 0;
  position: relative;
  z-index: 2;
}

.page-banner h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-banner p {
  color: rgba(255,255,255,0.85);
}

.small-heading {
  display: inline-block;
  color: #ff7b7b;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.84rem;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title span {
  display: inline-block;
  color: #ff6b6b;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.84rem;
}

.section-title h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.section-title p,
.approach-subtext {
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin: 0 auto;
}

.premium-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.premium-text {
  background: rgba(8, 16, 40, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  max-width: 620px;
}

.premium-text h2 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 2rem;
}

.premium-text p {
  color: rgba(255,255,255,0.9);
}

.premium-image-card {
  background: rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.section-img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

.primary-btn {
  background: linear-gradient(135deg, #ff5252, #ff6b6b);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 82, 82, 0.25);
}

.secondary-btn {
  background: rgba(255,255,255,0.96);
  color: #0b1736;
  box-shadow: 0 10px 20px rgba(255,255,255,0.18);
}

/* Home hero slider */
.hero-slider {
  position: relative;
  z-index: 2;
}

.swiper {
  width: 100%;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,20,47,0.78) 0%, rgba(9,20,47,0.45) 45%, rgba(9,20,47,0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 70px;
  padding-right: 20px;
  color: white;
}

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  color: white;
}

.slide-content h2 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 14px;
  color: white;
}

.slide-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.55 !important;
}

.swiper-pagination-bullet-active {
  background: #ff5b5b !important;
  opacity: 1 !important;
}

/* Home stats */
.stats-section {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-card {
  background: rgba(255,255,255,0.9);
  color: #0b1736;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.stat-card h3 {
  font-size: 2.2rem;
  color: #0b1736;
  margin-bottom: 6px;
}

.stat-card p {
  color: #475569;
}

/* Home support */
.home-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.support-box {
  background: rgba(255,255,255,0.88);
  color: #0b1736;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.support-box h3 {
  color: #0b1736;
  margin-bottom: 10px;
}

.support-box p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 12px;
}

.corporate-box {
  box-shadow: inset 0 6px 0 0 #2563eb, 0 16px 34px rgba(16, 24, 40, 0.08);
}

.individual-box {
  box-shadow: inset 0 6px 0 0 #16a34a, 0 16px 34px rgba(16, 24, 40, 0.08);
}

.text-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

/* Services */
.service-box {
  background: rgba(255,255,255,0.88);
  color: #0b1736;
  border-radius: 22px;
  padding: 25px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.service-box h2 {
  color: #0b1736;
  margin-bottom: 10px;
}

.service-intro {
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.7;
}

.service-cards-two,
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-box.corporate {
  box-shadow: inset 0 6px 0 0 #2563eb;
}

.service-box.individuals {
  box-shadow: inset 0 6px 0 0 #16a34a;
}

.service-box.education {
  box-shadow: inset 0 6px 0 0 #f59e0b;
  border-top: 6px solid #f59e0b !important;
}

.card {
  background: #ffffff;
  color: #0b1736;
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: #0b1736;
  margin-bottom: 10px;
}

.card p {
  color: #475569;
  line-height: 1.7;
}

/* About */
.about-highlight-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 28px;
  color: white;
}

.about-highlight-box p {
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards .card {
  background: rgba(255,255,255,0.92);
}

.modern-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.modern-list li {
  background: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  color: #0b1736;
}

.mini-icon,
.approach-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1736, #2563eb);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.approach-card {
  background: rgba(255,255,255,0.9);
  color: #0b1736;
  border-radius: 20px;
  padding: 24px;
}

.approach-card h3 {
  color: #0b1736;
  margin-bottom: 10px;
}

.approach-card p {
  color: #475569;
}

/* Contact */
.contact-hero-layout {
  align-items: center;
}

.contact-action-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.center-buttons {
  justify-content: center;
}

.contact-main-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.contact-main-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.linkedin-btn {
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: white;
}

.contact-glass {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 28px;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.contact-glass h3 {
  color: #ffffff !important;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.contact-glass p,
.contact-glass strong {
  color: rgba(255,255,255,0.92) !important;
}

.contact-highlight-link {
  display: inline-block;
  margin-top: 6px;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(59,130,246,0.95));
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(37,99,235,0.28);
  transition: 0.3s ease;
}

.contact-highlight-link:hover {
  transform: translateY(-3px) scale(1.02);
}

.quick-connect-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.quick-connect-item {
  display: block;
  background: rgba(255,255,255,0.16);
  color: #ffffff !important;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600;
  transition: 0.3s ease;
}

.quick-connect-item:hover {
  background: rgba(255,255,255,0.24);
  transform: translateX(6px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* CTA */
.cta-home-section {
  padding-top: 16px;
}

.cta-home-box {
  background: linear-gradient(135deg, rgba(11,23,54,0.92), rgba(21,75,143,0.9));
  color: white;
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.14);
}

.cta-home-box h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  color: #ffffff;
}

.cta-home-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #e8eefc;
  line-height: 1.8;
}

/* Footer */
.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer {
  background: rgba(11, 23, 54, 0.95);
  color: white;
  padding: 24px 0;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.18s;
}

.delay-2 {
  transition-delay: 0.34s;
}

/* Responsive */
@media (max-width: 900px) {
  .premium-split,
  .service-cards-two,
  .approach-grid,
  .contact-grid,
  .contact-hero-layout,
  .stats-grid,
  .home-support-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-right: 16px;
    display: inline-block;
    margin-top: 10px;
  }

  .swiper {
    height: 75vh;
    min-height: 500px;
  }

  .slide-content {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 2.1rem;
  }

  .slide-content p {
    font-size: 0.98rem;
  }

  .contact-action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .center-buttons {
    align-items: center;
  }
}
.card,
.service-box,
.support-box,
.contact-glass {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}
/* floating cards */
.service-box,
.contact-glass {
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* glow border on hover */
.service-box:hover,
.card:hover {
  box-shadow:
    0 25px 50px rgba(0,0,0,0.25),
    0 0 20px rgba(59,130,246,0.4);
}
.section-img {
  transition: transform 0.6s ease;
}

.premium-image-card:hover .section-img {
  transform: scale(1.08) rotate(1deg);
}

/* =========================
   EXTRA PREMIUM ANIMATIONS
   ========================= */

/* Stronger reveal */
.fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 3D tilt smoothness */
.card,
.service-box,
.support-box,
.contact-glass,
.approach-card {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Glow on hover */
.card:hover,
.service-box:hover,
.support-box:hover,
.contact-glass:hover,
.approach-card:hover {
  box-shadow:
    0 25px 50px rgba(0,0,0,0.25),
    0 0 20px rgba(59,130,246,0.35);
}

/* Floating depth */
.service-box,
.contact-glass,
.premium-image-card {
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Image hover depth */
.section-img {
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.premium-image-card:hover .section-img {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
}

/* Button shine effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transition: 0.6s;
}

.btn:hover::before {
  left: 130%;
}

/* Click burst effect */
.click-burst {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.9),
    rgba(255,91,91,0.8),
    transparent
  );
  transform: translate(-50%, -50%) scale(0);
  animation: burst 0.6s ease-out forwards;
}

@keyframes burst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}


/* =========================
   PREMIUM CINEMATIC SLIDER
   ========================= */

.hero-slider {
  position: relative;
  z-index: 2;
}

.heroSwiper {
  width: 100%;
  height: 90vh;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
}

.heroSwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.heroSwiper .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.heroSwiper .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
  transform: scale(1.08);
  transition: transform 6s ease;
}

.heroSwiper .swiper-slide-active .slide-bg img {
  transform: scale(1);
}

.heroSwiper .slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,10,25,0.78) 0%, rgba(8,20,45,0.48) 45%, rgba(8,20,45,0.18) 100%);
}

.heroSwiper .slide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 70px;
  padding-right: 20px;
  color: white;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.heroSwiper .swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.heroSwiper .slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  color: white;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.heroSwiper .slide-content h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
  text-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.heroSwiper .slide-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  max-width: 650px;
  margin-bottom: 20px;
}

.heroSwiper .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Premium arrows */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: white !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}

/* Premium dots */
.heroSwiper .swiper-pagination {
  bottom: 18px !important;
}
.heroSwiper .swiper-pagination-bullet {
  background: white !important;
  opacity: 0.45 !important;
  width: 10px;
  height: 10px;
  transition: 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: #ff5b5b !important;
  opacity: 1 !important;
  width: 28px;
  border-radius: 999px;
}

/* Center hero buttons */
.hero-buttons {
  justify-content: center;
}

/* EDUCATION SERVICES SUB-BOXES SMALLER - KEEP THIS AT VERY END */
.service-box.education .service-cards-two .card {
  padding: 16px 18px !important;
  min-height: auto !important;
  height: auto !important;
}

.service-box.education .service-cards-two .card h3 {
  font-size: 1.05rem !important;
  margin-bottom: 6px !important;
}

.service-box.education .service-cards-two .card p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.service-box.education .service-cards-two {
  gap: 16px !important;
}
/* EDUCATION CARDS - SMALLER HORIZONTAL RECTANGLES */
.service-box.education .service-cards-two {
  grid-template-columns: repeat(2, 420px) !important;
  justify-content: start !important;
  gap: 18px !important;
}

.service-box.education .service-cards-two .card {
  width: 420px !important;
  min-height: 150px !important;
  height: 150px !important;
  padding: 16px 20px !important;
  border-radius: 18px !important;
}

.service-box.education .service-cards-two .card h3 {
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  margin-bottom: 8px !important;
}

.service-box.education .service-cards-two .card p {
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  justify-content:start !important;
  justify-content:center !important;
}
/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 94%;
    max-width: 100%;
    padding: 0 8px;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    align-items: flex-start;
    gap: 10px;
  }

  .logo {
    width: 78px;
  }

  .brand h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .tagline {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
  }

  nav a {
    margin: 0;
    font-size: 1rem;
  }

  .heroSwiper,
  .swiper {
    height: auto;
    min-height: unset;
    border-radius: 0 0 24px 24px;
  }

  .swiper-slide {
    min-height: 540px;
    align-items: flex-end;
  }

  .slide-content,
  .heroSwiper .slide-content {
    max-width: 100%;
    padding: 24px 20px 34px;
  }

  .slide-badge,
  .heroSwiper .slide-badge {
    font-size: 0.82rem;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .slide-content h2,
  .heroSwiper .slide-content h2 {
    font-size: 2.2rem;
    line-height: 1.08;
    margin-bottom: 12px;
    word-break: break-word;
  }

  .slide-content p,
  .heroSwiper .slide-content p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev,
  .swiper-button-next,
  .swiper-button-prev {
    width: 42px;
    height: 42px;
  }

  .page-banner {
    padding: 48px 0;
  }

  .page-banner h2 {
    font-size: 2rem;
  }

  .section {
    padding: 56px 0;
  }

  .premium-split,
  .service-cards-two,
  .approach-grid,
  .contact-grid,
  .home-support-grid,
  .stats-grid,
  .cards {
    grid-template-columns: 1fr !important;
  }

  .premium-text {
    max-width: 100%;
    padding: 22px 20px;
  }

  .premium-text h2 {
    font-size: 1.7rem;
  }

  .premium-image-card {
    padding: 12px;
  }

  .service-box,
  .support-box,
  .contact-glass,
  .approach-card,
  .stat-card,
  .card {
    width: 100%;
    padding: 20px;
    margin-bottom: 18px;
  }

  .service-box h2,
  .support-box h3,
  .contact-glass h3 {
    font-size: 1.5rem;
  }

  .service-intro,
  .card p,
  .support-box p,
  .contact-glass p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .service-cards-two .card {
    min-height: auto !important;
    height: auto !important;
    padding: 18px !important;
  }

  .service-cards-two .card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .service-cards-two .card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .cta-home-box {
    padding: 28px 20px;
  }

  .cta-home-box h2 {
    font-size: 1.7rem;
  }

  .footer-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
h1 {
  word-break: normal;
  overflow-wrap: break-word;
}
.hero-text {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
}
.hero-container {
  display: flex;
  flex-direction: column;
}
/* ===== MOBILE HERO FIX - ADD AT VERY END ===== */
@media (max-width: 768px) {
  .swiper,
  .heroSwiper {
    height: 560px !important;
    min-height: 560px !important;
  }

  .swiper-slide,
  .heroSwiper .swiper-slide {
    align-items: flex-end !important;
  }

  .slide-content,
  .heroSwiper .slide-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 20px 18px 30px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .slide-content h2,
  .heroSwiper .slide-content h2 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
    margin-bottom: 12px !important;
  }

  .slide-content p,
  .heroSwiper .slide-content p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    white-space: normal !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    text-align: center !important;
  }

  .swiper-button-prev,
  .swiper-button-next,
  .heroSwiper .swiper-button-prev,
  .heroSwiper .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }
}
/* ===== MOBILE SERVICES CARD FIX ===== */
@media (max-width: 768px) {
  .service-cards-two {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-cards-two .card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 18px !important;
    box-sizing: border-box !important;
  }

  .service-box {
    overflow: hidden !important;
  }
}
/* ===== EXACT MOBILE FIX FOR EDUCATION SERVICES ===== */
@media (max-width: 768px) {
  .service-box.education {
    overflow: hidden !important;
    padding: 20px !important;
  }

  .service-box.education .service-cards-two {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .service-box.education .service-cards-two .card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 16px !important;
    box-sizing: border-box !important;
  }

  .service-box.education .service-cards-two .card h3 {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .service-box.education .service-cards-two .card p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  .service-box.education .service-cards-two,
  .service-box.education .service-cards-two > * {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .contact-glass {
    padding: 20px !important;
  }

  .contact-glass .contact-main-btn,
  .contact-glass .contact-highlight-link {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 10px 0 !important;
  }

  .contact-action-buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }
}
.contact-action-buttons {
  gap: 15px;
}
.contact-glass .contact-highlight-link {
  display: inline-block;
  margin-top: 8px;
}
.contact-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.contact-glass {
  flex: 1;
}
/* ===== HEADER / NAV FIX ===== */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand > div {
  min-width: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

nav a {
  margin: 0 !important;
  white-space: nowrap !important;
}
/* ===== CONTACT PAGE DESKTOP FIX ===== */
.contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.contact-glass {
  height: 100% !important;
  padding: 28px !important;
  box-sizing: border-box !important;
}

.contact-glass p {
  margin-bottom: 12px !important;
}

.contact-glass .contact-highlight-link,
.contact-glass .contact-main-btn {
  display: inline-block !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.contact-action-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  align-items: center !important;
}

.contact-action-buttons .contact-main-btn {
  margin: 0 !important;
}
/* ===== BUSINESS INFO CLEAN ALIGNMENT ===== */
.contact-glass p strong {
  display: inline-block;
  min-width: 120px;
}

.contact-glass p a.contact-highlight-link {
  vertical-align: middle;
}
.tagline {
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
}
/* ===== CONTACT PAGE: DESKTOP + MOBILE BALANCE ===== */

/* Desktop */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-glass {
  height: 100%;
  box-sizing: border-box;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .contact-glass {
    width: 100% !important;
    padding: 20px !important;
  }

  .contact-glass p strong {
    display: block !important;
    margin-bottom: 6px !important;
  }

  .contact-highlight-link,
  .contact-main-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 8px 0 !important;
    box-sizing: border-box !important;
  }

  .contact-action-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  .quick-connect-list {
    gap: 12px !important;
  }

  .quick-connect-item {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
/* ===== SERVICES PAGE FINAL FIX ===== */
.education-equal {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.education-equal .card {
  height: 100% !important;
}

@media (max-width: 768px) {
  .education-equal {
    grid-template-columns: 1fr !important;
  }
}
/* ===== EDUCATION CARDS SPACING FIX ===== */
.service-box.education .service-cards-two {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  margin-top: 18px !important;
}

.service-box.education .service-cards-two .card {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 20px !important;
  min-height: auto !important;
  height: auto !important;
  position: relative !important;
  transform: none !important;
}

.service-box.education .service-cards-two .card h3 {
  margin-bottom: 10px !important;
}

.service-box.education .service-cards-two .card p {
  margin: 0 !important;
  line-height: 1.6 !important;
}
.section {
  padding: 60px 0;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.service-box {
  background: rgba(255,255,255,0.88);
  color: #0b1736;
  border-radius: 22px;
  padding: 25px;
  margin-bottom: 25px;
}