/* --- RESET & VARIABLES --- */
:root {
  --topbar-bg: #06152B;
  --navbar-bg: #ffffff;
  --hero-bg: #0B2B50;
  --primary-accent: #D4AF37; /* Gold theme accent */
  --text-dark: #1e293b;
  --text-light: #ffffff;
  --blue-btn-bg: #0066cc;
  --input-border: #e2e8f0;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #f8fafc;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Anchor targets offset below the sticky header */
section[id],
footer[id] {
  scroll-margin-top: 130px;
}

/* Smooth scroll for anchor navigation */
html {
  scroll-behavior: smooth;
}

/* WIDER CONTAINER - Reduced side spacing */
.container {
  width: 100%;
  max-width: 1350px; /* Increased from 1200px for wider layout */
  margin: 0 auto;
  padding: 0 25px; /* Tighter side margins */
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: #ffffff;
}

.btn-accent {
  background-color: var(--primary-accent);
  color: var(--topbar-bg);
  font-size: 1rem;
  padding: 12px 30px;
}

.btn-blue-submit {
  width: 100%;
  background-color: var(--blue-btn-bg);
  color: #ffffff;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 6px;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --- TOP BAR --- */
/* HEADER WRAPPER (Dono Top-bar & Navbar Sticky rahenge) */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* TOP BAR */
.top-bar {
  background-color: var(--topbar-bg, #00122e);
  color: var(--text-light, #ffffff);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.top-info i {
  color: var(--primary-accent, #eab308);
}

/* NAVBAR */
.navbar {
  background-color: var(--navbar-bg, #ffffff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img,
.logo-img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  transition: color 0.3s;
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-accent, #eab308);
}

/* Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-only-btn {
  display: none;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #334155;
  cursor: pointer;
}

/* --- NAVBAR DROPDOWN STYLES --- */
.nav-links li.dropdown {
  position: relative;
}

.nav-links li.dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-links li.dropdown > a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-links li.dropdown.open > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border-top: 4px solid var(--primary-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.dropdown-menu.services-dropdown-menu {
  left: 0;
  width: 280px;
  padding: 12px 8px;
}

.services-dropdown-menu li {
  width: 100%;
  list-style: none;
}

.services-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  color: #333333;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.services-dropdown-menu li a i {
  font-size: 1.1rem;
  color: var(--primary-accent);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.services-dropdown-menu li a:hover {
  background-color: #f8fafc;
  color: #1e3a8a;
}

ul.dropdown-menu.subjects-dropdown-menu {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 750px;
  max-width: 90vw;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  box-sizing: border-box;
}

.nav-links li.dropdown.open ul.dropdown-menu.subjects-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-links li.dropdown.open ul.dropdown-menu.services-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subjects-dropdown-menu li {
  list-style: none;
  width: 100%;
  margin: 0;
}

.subjects-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: #333333;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.subjects-dropdown-menu li a i {
  font-size: 1.05rem;
  color: var(--primary-accent);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.subjects-dropdown-menu li a:hover {
  background-color: #f8fafc;
  color: #1e3a8a;
}

/* Mobile Responsive Rules for Dropdowns */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border-top: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    background-color: #f8fafc !important;
    border-radius: 8px !important;
    margin-top: 5px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
  }

  .nav-links li.dropdown.open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 500px !important;
  }

  ul.dropdown-menu.subjects-dropdown-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    grid-template-columns: 1fr !important;
    padding: 10px !important;
  }

  .nav-links li.dropdown.open ul.dropdown-menu.subjects-dropdown-menu {
    transform: none !important;
  }

  .services-dropdown-menu li a,
  .subjects-dropdown-menu li a {
    color: #334155 !important;
  }

  .services-dropdown-menu li a i,
  .subjects-dropdown-menu li a i {
    color: var(--primary-accent) !important;
  }

  .services-dropdown-menu li a:hover,
  .subjects-dropdown-menu li a:hover {
    background-color: #e2e8f0 !important;
    color: var(--primary-accent) !important;
  }
}

/* --- MOBILE & TABLET STYLES --- */
@media (max-width: 991px) {
  .hamburger-menu {
    display: block; /* Hamburger icon show hoga */
  }

  .desktop-only-btn {
    display: none; /* Desktop button hide ho jayega */
  }

  /* Mobile Menu Container */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    box-sizing: border-box;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #334155;
  }

  .nav-links a.active,
  .nav-links a:hover {
    color: var(--primary-accent);
  }

  .nav-links li.dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    color: #334155;
  }

  .nav-links li.dropdown > a i {
    font-size: 0.8rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
  }

  .nav-links li.dropdown.open > a i {
    transform: rotate(180deg);
  }

  /* Mobile Button Fix */
  .mobile-only-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* Button ko Menu ke andar properly style aur align karne ke liye */
  .mobile-only-btn .btn {
    display: inline-block;
    width: auto;
    min-width: 180px;
    text-align: center;
    padding: 12px 24px;
    margin: 0 auto;
  }

  .brand-logo img,
  .logo-img {
    max-height: 55px;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  background-color: var(--hero-bg);
  color: var(--text-light);
  /* padding: 50px 0 70px 0; */
  padding: 100px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Expanded text container */
.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.highlight {
  color: var(--primary-accent);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e2e8f0;
}

.features-list {
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.features-list i {
  color: var(--primary-accent);
  font-size: 1.2rem;
}

/* SLIMMER & COMPACT FORM CARD */
.hero-form-card {
  width: 100%;
  max-width: 390px; /* Reduced width to match screenshot */
  flex-shrink: 0;
  background: #ffffff;
  color: var(--text-dark);
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  color: var(--topbar-bg);
  margin-bottom: 20px;
  line-height: 1.3;
}

.lead-form .form-group {
  margin-bottom: 14px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  font-size: 0.92rem;
  outline: none;
  background-color: #f8fafc;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue-btn-bg);
  background-color: #ffffff;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    text-align: center;
  }

  .features-list li {
    justify-content: center;
    text-align: left;
  }

  .hero-form-card {
    max-width: 450px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .desktop-only-btn {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-only-btn {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .top-bar-container {
    flex-direction: row;
    font-size: 0.75rem;
  }
}
/* --- LOGO SLIDER SECTION --- */
.logo-slider-section {
  background-color: #ffffff;
  padding: 60px 0 70px 0;
  text-align: center;
  overflow: hidden;
}

.slider-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--topbar-bg);
  margin-bottom: 50px;
}

/* Slider Container with Smooth Fade/Vanish Effect on both edges */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  /* Fade mask effect at left and right boundaries */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 110px; /* Increased spacing between logos */
  width: max-content;
  animation: scroll 14s linear infinite; /* Faster scroll speed (14s) */
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.08);
}

/* Continuous Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 55px)); /* Accounts for 110px gap */
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .slider-heading {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .logo-track {
    gap: 60px;
    animation-duration: 10s;
  }

  .logo-item {
    width: 100px;
    height: 60px;
  }
}
/* --- SOLUTIONS SECTION --- */
.solutions-section {
  background-color: var(--hero-bg);
  padding: 80px 0;
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Individual Feature Cards */
.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
  background: rgba(255, 255, 255, 0.06);
}

/* Circular Gold Outline Icon */
.card-icon {
  width: 65px;
  height: 65px;
  border: 1.5px solid var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary-accent);
  font-size: 1.4rem;
}

.solution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.solution-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
/* --- HUMAN EXPERTISE SECTION --- */
.human-expertise-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Rounded Split Card Wrapper */
.banner-card {
  background-color: var(--hero-bg);
  border-radius: 18px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Left Side Content */
.banner-content {
  flex: 1;
  padding: 50px 45px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
}

.banner-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* Action Buttons */
.banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-gold {
  background-color: var(--primary-accent);
  color: #06152B;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
}

.btn-slate {
  background-color: #3b526d;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
}

.btn-gold:hover,
.btn-slate:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* Right Side Image Area */
.banner-image-wrapper {
  flex: 1;
  position: relative;
  min-height: 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .banner-card {
    flex-direction: column;
  }

  .banner-content {
    padding: 40px 30px;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-image-wrapper {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .human-expertise-section {
    padding: 50px 0;
  }

  .banner-content {
    padding: 30px 20px;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-buttons {
    flex-direction: column;
  }

  .banner-buttons .btn {
    width: 100%;
  }

  .banner-image-wrapper {
    height: 250px;
  }
}
/* --- PROMOTIONAL CTA BANNER SECTION --- */
.promo-cta-section {
  background-color: var(--hero-bg);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.promo-content {
  max-width: 950px;
  margin: 0 auto;
}

.promo-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
}

.promo-title .highlight {
  color: var(--primary-accent);
}

.promo-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 35px auto;
}

/* CTA Pill Button with Subtle Glow */
.btn-promo-cta {
  display: inline-block;
  background-color: var(--primary-accent);
  color: #06152B;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.btn-promo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
  opacity: 0.95;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .promo-title {
    font-size: 2.2rem;
  }
  
  .promo-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .promo-cta-section {
    padding: 55px 0;
  }

  .promo-title {
    font-size: 1.75rem;
  }

  .btn-promo-cta {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
}
/* --- TUTORS AT YOUR SERVICE SECTION --- */
/* ==========================================
   1. TUTORS SERVICE SECTION (Desktop)
========================================== */
.tutors-service-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.tutors-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Content Styles */
.tutors-content {
  flex: 1.1;
  max-width: 620px;
}

.tutors-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--topbar-bg, #00122e);
  line-height: 1.25;
  margin-bottom: 20px;
}

.tutors-title .highlight {
  color: var(--primary-accent, #eab308);
}

.tutors-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 30px;
}

.tutors-buttons {
  display: flex;
  gap: 15px;
}

.btn-dark-blue {
  background-color: var(--topbar-bg, #00122e);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-dark-blue:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Desktop Floating Badges Wrapper */
.tutors-badges-wrapper {
  flex: 0.9;
  position: relative;
  height: 400px;
  min-width: 380px;
}

.badge-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.badge-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.badge-left {
  bottom: 10px;
  left: 10px;
  z-index: 1;
}

.badge-right {
  bottom: 10px;
  right: 10px;
  z-index: 3;
}

.badge-icon {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 6px;
}

.badge-icon.gold-icon {
  color: var(--primary-accent, #eab308);
}

.badge-text {
  font-size: 0.85rem;
  color: var(--topbar-bg, #00122e);
  line-height: 1.3;
}


/* ==========================================
   2. CONFIDENTIAL SERVICE SECTION (Desktop)
========================================== */
.confidential-section {
  background-color: #ffffff;
  padding: 0 0 80px 0;
}

.banner-card {
  display: flex;
  background-color: var(--topbar-bg, #00122e);
  border-radius: 16px;
  overflow: hidden;
  align-items: center;
}

.banner-card.reverse-card {
  flex-direction: row;
}

.banner-image-wrapper {
  flex: 1;
  height: 100%;
  min-height: 400px;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  flex: 1.2;
  padding: 50px;
  color: #ffffff;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.banner-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 30px;
}

.banner-buttons {
  display: flex;
  gap: 15px;
}

.btn-slate {
  background-color: #334155;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}


/* ==========================================
   3. MOBILE & TABLET RESPONSIVE FIX (Flex Flow)
========================================== */
@media (max-width: 991px) {
  .tutors-service-section {
    padding: 40px 0;
  }

  .tutors-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .tutors-content {
    max-width: 100%;
  }

  .tutors-buttons {
    justify-content: center;
  }

  /* Switched absolute layout to Flexbox layout on Mobile */
  .tutors-badges-wrapper {
    position: relative;
    width: 100%;
    min-width: unset;
    height: auto !important; /* Removes fixed box size */
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  /* Badges now float dynamically in layout flow */
  .badge-circle {
    position: static !important; /* Complete fix for overlapping */
    transform: none !important;
    width: 145px;
    height: 145px;
    padding: 10px;
    margin: 0;
  }

  .badge-top, 
  .badge-left, 
  .badge-right {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .badge-icon {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .badge-text {
    font-size: 0.78rem;
  }

  /* Confidential Section Responsive Adjustments */
  .banner-card.reverse-card {
    flex-direction: column-reverse;
  }

  .banner-content {
    padding: 30px 20px;
    text-align: center;
  }

  .banner-title {
    font-size: 1.6rem;
  }

  .banner-buttons {
    justify-content: center;
  }

  .banner-image-wrapper {
    width: 100%;
    min-height: 220px;
  }
}

/* Small Smartphone Screen Tweaks */
@media (max-width: 576px) {
  .tutors-title {
    font-size: 1.75rem;
  }

  .tutors-buttons, 
  .banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .tutors-buttons .btn, 
  .banner-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .badge-circle {
    width: 130px;
    height: 130px;
  }

  .badge-text {
    font-size: 0.72rem;
  }
}
/* --- 3-STEP PROCESS SECTION --- */
.process-section {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}   

.process-header {
  max-width: 850px;
  margin: 0 auto 60px auto;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--topbar-bg);
  margin-bottom: 15px;
}

.process-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* Steps Grid & Vertical Divider Lines */
.process-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.step-card {
  flex: 1;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-accent);
  margin-bottom: 25px;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--topbar-bg);
  margin-bottom: 15px;
}

.step-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}

/* Vertical Thin Line Dividers */
.step-divider {
  width: 1px;
  background-color: #f1f5f9;
  border-right: 1px solid #e2e8f0;
  margin: 10px 0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .process-grid {
    flex-direction: column;
    gap: 40px;
  }

  .step-divider {
    width: 100%;
    height: 1px;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
  }

  .process-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .process-section {
    padding: 50px 0;
  }

  .process-title {
    font-size: 1.6rem;
  }

  .step-icon {
    font-size: 2.5rem;
  }
}
/* --- SERVICES WE OFFER SECTION --- */
.services-offer-section {
  background-color: var(--hero-bg);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.services-header {
  margin-bottom: 50px;
}

.services-main-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
}

/* 3-Column Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

/* Solid Gold Circular Icon Badge */
.service-icon-circle {
  width: 100px;
  height: 100px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.service-icon-circle i {
  font-size: 2.4rem;
  color: #ffffff;
}

.service-card:hover .service-icon-circle {
  transform: translateY(-5px) scale(1.05);
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.service-description {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .services-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .services-offer-section {
    padding: 55px 0;
  }

  .services-main-title {
    font-size: 1.8rem;
  }

  .service-icon-circle {
    width: 85px;
    height: 85px;
  }

  .service-icon-circle i {
    font-size: 2rem;
  }
}
/* --- LOOKING FOR CLASS HELP SECTION --- */
.looking-help-section {
  background-color: #ffffff;
  padding: 90px 0;
}

.looking-help-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Image Box with Rounded Corners */
.looking-help-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.help-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Right Text Content */
.looking-help-content {
  flex: 1.1;
  max-width: 600px;
}

.looking-help-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--topbar-bg);
  line-height: 1.25;
  margin-bottom: 20px;
}

.looking-help-description {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .looking-help-container {
    flex-direction: column;
    text-align: center;
  }

  .looking-help-content {
    max-width: 100%;
  }

  .looking-help-title {
    font-size: 2rem;
  }

  .looking-help-image {
    width: 100%;
    max-width: 550px;
  }
}

@media (max-width: 576px) {
  .looking-help-section {
    padding: 50px 0;
  }

  .looking-help-title {
    font-size: 1.65rem;
  }

  .looking-help-content .btn {
    width: 100%;
  }
}
/* --- KEY GUARANTEES SECTION --- */
.guarantees-section {
  background-color: #ffffff;
  padding: 60px 0 90px 0;
}

/* 2-Column Grid Layout */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
}

/* Heading with Gold Vertical Accent Bar */
.guarantee-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--topbar-bg);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.title-bar {
  display: inline-block;
  width: 5px;
  height: 28px;
  background-color: var(--primary-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.7;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 576px) {
  .guarantees-section {
    padding: 40px 0 60px 0;
  }

  .guarantee-title {
    font-size: 1.35rem;
  }

  .title-bar {
    height: 22px;
  }
}
/* --- MAIN CONTAINER --- */
/* desktop par side-by-side ensure karne ke liye */
    .reviews-faq-container {
    display: flex;
    align-items: flex-start; /* Taaki FAQ lamba ho to review section stretch na ho */
    gap: 50px;
    width: 100%;
    }

    /* Left & Right Columns share width */
    .reviews-column, .faq-column {
    flex: 1; 
    width: 50%;
    }

    /* --- TESTIMONIALS (Left Column) --- */
    .reviews-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Dots ko bottom me push hone se roke */
    position: relative;
    }

    /* Wrapper requires relative but dynamic height */
    .testimonial-card-wrapper {
    position: relative;
    width: 100%;
    }

    /* THE KEY FIX: Removed absolute position and transition glitches */
    .testimonial-card {
    background: #eef2f6;
    border-radius: 20px;
    padding: 40px 35px;
    width: 100%;
    
    /* Natural Flow Control */
    display: none;    /* JS dynamic check */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    }

    /* Dynamic Active State */
    .testimonial-card.active {
    display: block;  /* Card takes up normal space */
    opacity: 1;
    transform: translateY(0);
    }

    /* Original Styling elements */
    .quote-icon {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    }

    .review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 25px;
    }

    .stars {
    color: var(--primary-accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    }

    .order-id {
    font-weight: 800;
    color: var(--primary-accent);
    font-size: 0.95rem;
    }

    /* Diamond Indicator Dots */
    .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    
    /* FIX 2: Dynamic Position - Just right below the card */
    margin-top: 25px; 
    width: 100%;
    position: relative; 
    z-index: 10;
    }

    .slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #fcd34d;
    transform: rotate(45deg); /* Diamond shape */
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    }

    .slider-dots .dot.active,
    .slider-dots .dot:hover {
    background-color: var(--primary-accent);
    transform: rotate(45deg) scale(1.3);
    opacity: 1;
    }

    /* --- FAQ ACCORDION (Right Column) --- */
    .faq-accordion {
    background-color: var(--hero-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .faq-item:last-child {
    border-bottom: none;
    }

    .faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    transition: color 0.3s ease;
    }

    .faq-header:hover {
    color: var(--primary-accent);
    }

    .faq-icon {
    font-size: 1.2rem;
    color: #ffffff;
    margin-left: 15px;
    flex-shrink: 0;
    }

    /* Active Open FAQ Styling */
    .faq-item.active .faq-header {
    color: var(--primary-accent);
    }

    .faq-item.active .faq-icon {
    color: var(--primary-accent);
    }

    .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background-color: #ffffff;
    color: #334155;
    padding: 0 25px;
    }

    .faq-item.active .faq-body {
    max-height: 400px; /* Allow enough expansion space */
    padding: 22px 25px;
    border-top: 1px solid #e2e8f0;
    }

    .faq-body p {
    font-size: 0.95rem;
    line-height: 1.65;
    }

    /* --- RESPONSIVE STYLES --- */
    @media (max-width: 992px) {
    .reviews-faq-container {
        flex-direction: column; /* Stack vertically on smaller tablets/mobile */
        gap: 60px;
    }
    
    .reviews-column, .faq-column {
        width: 100%; /* Columns become full width */
    }

    .slider-dots {
        margin-top: 25px; /* Clean dynamic space on mobile too */
    }
    
    }

    @media (max-width: 576px) {
    .reviews-faq-section {
        padding: 50px 0;
    }

    .column-title {
        font-size: 1.8rem;
    }

    .faq-header {
        padding: 18px 18px;
        font-size: 0.95rem;
    }
    }

    /* --- FOOTER STYLES --- */
    .site-footer {
    margin-top: 60px;
    background-color: #0b192e; /* Dark navy background */
    color: #cbd5e1;
    font-family: inherit;
    padding: 60px 0 30px 0;
    }

    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

    /* Flexbox Layout for Main Grid */
    .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
    }

    .footer-col {
    flex: 1;
    }

    /* Brand Column */
    .brand-col {
    max-width: 280px;
    }

    .footer-logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
    }

    .brand-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 25px;
    }

    .social-icons {
    display: flex;
    gap: 12px;
    }

    .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    }

    .social-icons a:hover {
    background-color: var(--primary-accent);
    color: #0b192e;
    }

    /* Titles with Underline Accent */
    .col-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    }

    .col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 3px;
    background-color: var(--primary-accent);
    border-radius: 2px;
    }

    /* Links List */
    .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    }

    .footer-links li {
    margin-bottom: 12px;
    position: relative;
    }

    .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
    }

    /* Footer arrow SVG */
.footer-links a .footer-arrow {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: var(--primary-accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.footer-links a:hover .footer-arrow {
    transform: translateX(4px);
}

    .footer-links a:hover {
    color: #ffffff;
    }

    /* Subjects Column - 2 Column Grid */
    .subjects-col {
    flex: 1.8;
    }

    .subjects-grid {
    display: flex;
    gap: 30px;
    }

    .subjects-grid .footer-links {
    flex: 1;
    }

    /* Contact Info Column */
    .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    }

    .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #94a3b8;
    }

    .contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .contact-item a:hover {
    color: #ffffff;
    }

    .contact-icon {
    color: var(--primary-accent);
    font-size: 1rem;
    margin-top: 3px;
    }

    .cards-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    }

    .payment-methods img {
    max-width: 180px;
    height: auto;
    }

    /* --- BOTTOM BAR --- */
    .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    }

    .bottom-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    }

    .bottom-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    }

    .bottom-nav a:hover {
    color: #ffffff;
    }

    .copyright {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    }

    /* --- RESPONSIVE STYLES --- */
    @media (max-width: 992px) {
    .footer-top {
        flex-wrap: wrap;
        gap: 40px 20px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
    }

    @media (max-width: 600px) {
    .footer-col {
        flex: 1 1 100%;
    }

    .subjects-grid {
        flex-direction: column;
        gap: 0;
    }

    .bottom-nav {
        gap: 12px 18px;
    }
    }


    /* FLOATING WHATSAPP BUTTON STYLES */
.floating-whatsapp {
  position: fixed;
  bottom: 95px; /* Sits above the Tawk.to widget */
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999; /* Ensures it stays on top of page content */
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  color: #ffffff;
}

/* Mobile Adjustment */
@media (max-width: 576px) {
  .floating-whatsapp {
    bottom: 85px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-hero {
  text-align: center;
  padding: 70px 0;
}

.contact-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.25;
}

.contact-hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-section {
  background-color: #ffffff;
  padding: 60px 0 70px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-info-card {
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-accent);
}

.contact-info-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.12);
  border: 1.5px solid var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-accent);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--topbar-bg);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  word-break: break-word;
}

.contact-info-card a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-accent);
}

/* Contact Form + Side Info */
.contact-main-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.contact-main-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1.2;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--topbar-bg);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 25px;
}

.lead-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  font-size: 0.92rem;
  outline: none;
  background-color: #f8fafc;
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}

.lead-form textarea:focus {
  border-color: var(--blue-btn-bg);
  background-color: #ffffff;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Side Info Panel */
.contact-side-info {
  flex: 0.8;
  background-color: var(--hero-bg);
  border-radius: 16px;
  color: #ffffff;
  padding: 40px 30px;
}

.contact-side-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-side-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.contact-side-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.contact-side-info ul li i {
  color: var(--primary-accent);
  margin-top: 4px;
}

.contact-side-info .btn {
  margin-top: 10px;
}

/* Map Section */
.contact-map-section {
  background-color: #f8fafc;
  padding-bottom: 80px;
}

.contact-map-section .map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  line-height: 0;
}

.contact-map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
  .contact-main-container {
    flex-direction: column;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-side-info {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-card {
    padding: 30px 20px;
  }
}
