/* =========================================================
   A TO Z Educational Trust — style.css
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Tamil', 'Poppins', Arial, sans-serif;
  background: #f6fbff;
  color: #09213e;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: auto; }

/* ---------- Particles ---------- */
.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
/* =========================================================
   Lead Capture Popup
   ========================================================= */

/* =========================================================
   Lead Capture Popup — Bootstrap 3-column layout
   ========================================================= */

.lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 25, 58, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lp-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Wide box for 3-column layout */
.lp-box {
  background: #ffffff;
  border-radius: 22px;
  width: 100%;
  max-width: 860px;          /* wider for 3 cols */
  position: relative;
  box-shadow: 0 40px 100px rgba(6,38,80,0.38), 0 0 0 1.5px rgba(9,104,216,0.12);
  transform: scale(0.88) translateY(28px);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  max-height: 95vh;
  overflow-y: auto;
}
.lp-overlay.active .lp-box {
  transform: scale(1) translateY(0);
}

/* Rainbow top bar */
.lp-box::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #ffce00 0%, #f04b23 25%, #0968d8 55%, #25D366 80%, #a855f7 100%);
}

/* Header */
.lp-header {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 100%);
  padding: 22px 32px 18px;
  text-align: center;
  border-bottom: 1.5px solid #dbeafe;
}
.lp-emoji {
  font-size: 38px;
  display: block;
  margin-bottom: 8px;
  animation: lpBounce 2s ease-in-out infinite;
}
@keyframes lpBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.lp-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #062650;
  margin: 0 0 6px;
  line-height: 1.2;
}
.lp-sub {
  font-size: 0.85rem;
  color: #496680;
  line-height: 1.5;
  margin: 0;
}

/* Body / grid area */
.lp-body {
  padding: 20px 28px 4px;
}

/* Individual field */
.lp-field {
  margin-bottom: 12px;
}
.lp-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #062650;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.lp-field input,
.lp-field select {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid #dbeafe;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  color: #09213e;
  background: #f6fbff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.lp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%230968d8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 30px;
  cursor: pointer;
}
.lp-field input:focus,
.lp-field select:focus {
  border-color: #0968d8;
  box-shadow: 0 0 0 3px rgba(9,104,216,0.12);
  background: #ffffff;
}
.lp-field input::placeholder { color: #a8b8cc; }
.lp-field .req { color: #f04b23; }

/* "Others" reveal text input — orange border */
.lp-other-input {
  border-color: #f04b23 !important;
}
.lp-other-input:focus {
  box-shadow: 0 0 0 3px rgba(240,75,35,0.12) !important;
}

/* Slide-in animation */
@keyframes lpSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-slide { animation: lpSlideDown 0.25s ease forwards; }

/* Message */
.lp-msg {
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.3s;
}
.lp-msg.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 10px 14px;
  animation: fadeUp .4s ease;
}
.lp-msg.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 10px 14px;
  animation: fadeUp .4s ease;
}

/* Submit button */
.lp-submit {
  display: block;
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0968d8 0%, #043a83 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(9,104,216,0.30);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.lp-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(9,104,216,0.42);
}
.lp-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Note */
.lp-note {
  text-align: center;
  font-size: 0.74rem;
  color: #94a3b8;
  padding: 12px 28px 18px;
  margin: 0;
}

/* Close button */
.lp-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid #dbeafe;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #496680;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s;
  line-height: 1;
}
.lp-close:hover {
  background: #f04b23;
  border-color: #f04b23;
  color: #ffffff;
  transform: rotate(90deg);
}

/* ── Responsive: stack to 1 column on mobile ── */
@media (max-width: 767px) {
  .lp-box { border-radius: 16px; }
  .lp-header { padding: 18px 18px 14px; }
  .lp-body { padding: 14px 16px 4px; }
  .lp-title { font-size: 1.2rem; }
  .lp-note { padding: 10px 18px 14px; }
}

/* ---------- Topbar ---------- */
.topbar {
  background: #062650;
  color: white;
  font-size: 13px;
  padding: 9px 0;
  position: relative;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(8,36,70,.08);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(8,36,70,.18);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 900;
  color: #08315f;
}
.brand img {
   height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffce00;
  transition: transform .3s;
}
.brand img:hover { transform: rotate(5deg) scale(1.08); }
.brand span { font-size: 20px; line-height: 1.1; }
.brand small { display: block; color: #f04b23; font-size: 11px; font-weight: 800; letter-spacing: .8px; }
.navlinks {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 800;
  color: #123a68;
}
.nav-link { position: relative; transition: color .2s; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #f04b23;
  transition: width .3s;
}
.nav-link:hover { color: #f04b23; }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: #062650;
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffce00, #ff8a00);
  color: #081f3e;
  font-weight: 900;
  padding: 12px 24px;
  box-shadow: 0 14px 30px rgba(255,148,0,.25);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 18px 36px rgba(255,148,0,.35); }
.btn.blue {
  background: linear-gradient(135deg, #0968d8, #043a83);
  color: white;
  box-shadow: 0 14px 30px rgba(9,104,216,.24);
}
.btn.blue:hover { box-shadow: 0 18px 36px rgba(9,104,216,.38); }

/* ---------- Animations ---------- */
@keyframes fadeUp   { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-50px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(50px); } to { opacity:1; transform:translateX(0); } }
@keyframes popIn    { from { opacity:0; transform:scale(.8); } to { opacity:1; transform:scale(1); } }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,206,0,.5); }
  50%       { box-shadow: 0 0 0 14px rgba(255,206,0,0); }
}
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.animate-pop       { animation: popIn .6s ease both; }
.animate-slide-up  { opacity: 0; animation: fadeUp .7s ease forwards; }
.animate-fade-left { opacity: 0; }
.animate-fade-right{ opacity: 0; }
.animate-up        { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.animate-up.show   { opacity: 1; transform: translateY(0); }
.animate-fade-left.show  { animation: fadeLeft .7s ease forwards; }
.animate-fade-right.show { animation: fadeRight .7s ease forwards; }

.delay1 { animation-delay: .2s; }
.delay2 { animation-delay: .4s; }
.delay3 { animation-delay: .6s; }

.pulse-anim  { animation: pulseGlow 2s infinite; }
.bounce-anim { animation: bounceY 2s ease-in-out infinite; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: 80px 0 90px;
  background: radial-gradient(circle at 20% 20%, #fff6ba 0, transparent 30%),
              linear-gradient(135deg, #eaf6ff 0%, #ffffff 50%, #eaf2ff 100%);
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape1 {
  width: 520px; height: 520px;
  background: #ffce00;
  opacity: .14;
  right: -130px; bottom: -150px;
  animation: bounceY 7s ease-in-out infinite;
}
.shape2 {
  width: 200px; height: 200px;
  background: #0968d8;
  opacity: .08;
  left: -60px; top: 60px;
  animation: bounceY 5s ease-in-out infinite reverse;
}
.shape3 {
  width: 120px; height: 120px;
  background: #f04b23;
  opacity: .07;
  left: 42%;top: 10px;
  animation: bounceY 4s ease-in-out infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dceafd;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 900;
  color: #0a60c5;
  box-shadow: 0 10px 30px rgba(8,49,95,.08);
  margin-bottom: 20px;
}
.badge {
    --bs-badge-padding-x: 0.65em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
   --bs-badge-color: black !important;
    --bs-badge-border-radius: var(--bs-border-radius);
    display: inline-block;
    padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    font-size: var(--bs-badge-font-size);
    font-weight: var(--bs-badge-font-weight);
    line-height: 1;
    color: var(--bs-badge-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--bs-badge-border-radius);
    text-color: black;
}
h1 {
  font-size: clamp(28px,3.5vw,42px);
  line-height: 1.4;
  font-weight: 900;
  color: #062650;
}
.highlight { color: #f04b23; }
.hero p {
  font-size: 18px;
  margin: 20px 0 28px;
  color: #284968;
  max-width: 700px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hstat b {
  font-size: 28px;
  font-weight: 900;
  color: #062650;
  line-height: 1;
}
.hstat span { font-size: 13px; color: #496680; font-weight: 600; }
.hero-card {
  background: white;
  border-radius: 34px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(8,36,70,.16);
  position: relative;
}
.hero-card img { border-radius: 26px; box-shadow: 0 15px 34px rgba(0,0,0,.12); }
.float {
  position: absolute;
  right: -18px; bottom: 34px;
  background: #062650;
  color: white;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 18px 35px rgba(6,38,80,.28);
  font-weight: 900;
  font-size: 14px;
}
.float b { display: block; color: #ffce00; font-size: 24px; }
.float2 {
  position: absolute;
  left: -18px; top: 30px;
  background: linear-gradient(135deg,#ffce00,#ff8a00);
  color: #081f3e;
  border-radius: 50%;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  font-size: 22px;
  box-shadow: 0 10px 26px rgba(255,148,0,.35);
  font-weight: 900;
}

/* ---------- Section Titles ---------- */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { font-size: clamp(26px,4vw,44px); color: #062650; font-weight: 900; }
.section-title p { color: #496680; font-size: 17px; max-width: 760px; margin: 10px auto 0; }
.title-tag {
  display: inline-block;
  background: linear-gradient(135deg,#ffce00,#ff8a00);
  color: #081f3e;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 12px;
}
.title-tag.light { background: rgba(255,206,0,.2); color: #ffce00; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(8,36,70,.08);
  border: 1px solid #e7f0fb;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(8,36,70,.14); }
.card-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 4px;
  background: linear-gradient(90deg,#ffce00,#f04b23);
  border-radius: 0 0 0 24px;
  transition: width .4s ease;
}
.card:hover .card-line { width: 100%; }
.icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: transform .3s;
}
.card:hover .icon { transform: scale(1.15) rotate(5deg); }
.icon-yellow { background: #fff3bf; }
.icon-blue   { background: #dbeafe; }
.icon-red    { background: #fee2e2; }
.icon-green  { background: #dcfce7; }
.icon-purple { background: #ede9fe; }
.icon-orange { background: #ffedd5; }
.card h3 { font-size: 19px; margin-bottom: 10px; color: #092f60; }
.card p, .card li { color: #50677f; }

/* ---------- About ---------- */
.about {
  background: #062650;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.about-bg-circle {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: #ffce00;
  opacity: .09;
  right: -140px; top: -140px;
  animation: bounceY 8s ease-in-out infinite;
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.about img { border-radius: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.about h2 { font-size: clamp(26px,3.5vw,40px); line-height: 1.2; margin-bottom: 18px; }
.about p { font-size: 17px; color: #d8e8fb; margin-bottom: 14px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  transition: background .3s, transform .3s;
}
.stat:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.stat b { display: block; font-size: 26px; color: #ffce00; }
.stat span { font-size: 13px; color: #b8d0e8; }

/* ---------- Steps ---------- */
.steps-section { background: #f0f7ff; }
.steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-radius: 22px;
  padding: 28px 20px;
  border: 1px solid #dfeeff;
  flex: 1;
  min-width: 180px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(8,36,70,.12); }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0968d8,#043a83);
  color: white;
  display: grid; place-items: center;
  font-weight: 900;
  margin: 0 auto 12px;
  font-size: 16px;
}
.step-icon { font-size: 30px; margin-bottom: 12px; }
.step h3 { font-size: 16px; color: #092f60; margin-bottom: 8px; font-weight: 800; }
.step p { color: #50677f; font-size: 14px; }
.step-arrow {
  font-size: 26px;
  color: #0968d8;
  font-weight: 900;
  flex-shrink: 0;
  animation: bounceY 2s ease-in-out infinite;
}

/* ---------- Gallery ---------- */
.gallery { background: #fff; }
.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 14px;
  background: linear-gradient(135deg, #f3f9ff, #ffffff);
  box-shadow: 0 22px 55px rgba(8,36,70,.10);
  border: 1px solid #e7f0fb;
}
.gallery-track {
  display: flex;
  gap: 20px;
  animation: galleryScroll 28s linear infinite;
  width: max-content;
}
.gallery-carousel:hover .gallery-track { animation-play-state: paused; }
.gallery-slide {
  width: 360px;
  flex: 0 0 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8,36,70,.10);
  transition: transform .3s;
}
.gallery-slide:hover { transform: scale(1.03); }
.gallery-slide img { width: 100%; object-fit: cover; }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Contact ---------- */
.contact { background: #f6fbff; padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.contact-box {
  background: white;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(8,36,70,.08);
  border: 1px solid #e0edfa;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #eef3fa;
  transition: background .2s;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { background: #f6fbff; border-radius: 12px; padding-left: 8px; }
.contact-icon { font-size: 22px; min-width: 30px; margin-top: 2px; }
.contact-row b { display: block; color: #062650; font-weight: 800; margin-bottom: 2px; }
.contact-row span { color: #50677f; font-size: 15px; }
.contact-row a:hover { color: #0968d8; }
.cta-panel {
  background: linear-gradient(135deg, #062650, #0a3d80);
  color: white;
  border-radius: 28px;
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
  
}
.cta-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: #ffce00;
  opacity: .08;
  top: -100px; right: -80px;
}
.cta-panel h2 { font-size: 30px; margin-bottom: 14px; line-height: 1.3; }
.cta-panel p { color: #b8d0ea; font-size: 19px; }

/* ---------- Form Band ---------- */
.form-band {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  position: relative;
  overflow: hidden;
}
.form-band-shapes { position: absolute; inset: 0; pointer-events: none; }
.fshape {
  position: absolute;
  border-radius: 50%;
}
.fshape1 {
  width: 400px; height: 400px;
  background: #ffce00;
  opacity: .07;
  right: -100px; top: -100px;
  animation: bounceY 9s ease-in-out infinite;
}
.fshape2 {
  width: 250px; height: 250px;
  background: #0968d8;
  opacity: .06;
  left: -80px; bottom: -80px;
  animation: bounceY 6s ease-in-out infinite reverse;
}
.sec-head {
  text-align: center;
  font-size: clamp(28px,4vw,44px);
  font-weight: 900;
  color: #062650;
  margin-bottom: 12px;
}
.hl { color: #f04b23; }
.sec-sub {
  text-align: center;
  color: #496680;
  font-size: 17px;
  margin-bottom: 40px;
}
.form-box {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(8,36,70,.10);
  border: 1px solid #dceafd;
  max-width: 960px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 800;
  color: #062650;
  font-size: 14px;
}
.req { color: #f04b23; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #dbeafe;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #09213e;
  background: #f6fbff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0968d8;
  box-shadow: 0 0 0 4px rgba(9,104,216,.12);
  background: #fff;
  transform: translateY(-1px);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* ── "Specify College Name" — orange border to stand out ── */
#collegeOtherWrap {
  animation: regSlideDown 0.25s ease forwards;
}
@keyframes regSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#collegeOtherInput {
  border-color: #f04b23 !important;
}
#collegeOtherInput:focus {
  border-color: #f04b23 !important;
  box-shadow: 0 0 0 4px rgba(240, 75, 35, 0.12) !important;
}
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0968d8, #043a83);
  color: white;
  font-weight: 900;
  font-size: 16px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(9,104,216,.3);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(9,104,216,.4); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #dbeafe;
  border-radius: 999px;
  background: white;
  color: #496680;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  cursor: pointer;
  transition: all .2s;
}
.clear-btn:hover { border-color: #f04b23; color: #f04b23; }
.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  display: none;
}
.form-message.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  animation: fadeUp .4s ease;
}
.form-message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  animation: fadeUp .4s ease;
}

/* ---------- Footer ---------- */
.footer { background: #04193a; color: white; }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-desc { color: #8aa3c0; font-size: 14px; line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn.whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.social-btn.whatsapp:hover { box-shadow: 0 12px 28px rgba(37,211,102,.45); }
.social-btn.phone {
  background: linear-gradient(135deg,#0968d8,#043a83);
  color: white;
  box-shadow: 0 8px 20px rgba(9,104,216,.3);
}

.footer-heading {
  font-size: 15px;
  font-weight: 900;
  color: #ffce00;
  margin-bottom: 18px;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: #ffce00;
  border-radius: 2px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: #8aa3c0;
  font-size: 14px;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-links li a:hover { color: #ffce00; padding-left: 6px; }
.policy-links li a:hover { color: #ffce00; }
.footer-contact-mini { margin-top: 20px; }
.footer-contact-mini p { color: #8aa3c0; font-size: 13px; margin-bottom: 6px; }
.footer-contact-mini a { color: #ffce00; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #5a7a9e;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: #5a7a9e; transition: color .2s; }
.footer-bottom-links a:hover { color: #ffce00; }

/* ---------- WhatsApp Float (Right) ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 200;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .3s, box-shadow .3s;
  animation: bounceY 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,.6);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: #25D366;
  color: white;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.wa-tooltip::before {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #25D366;
  border-right: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---------- Scroll To Top (Right) ---------- */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  background: linear-gradient(135deg, #0968d8, #043a83);
  color: white;
  border: none;
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(9,104,216,.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s, box-shadow .2s;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 10px 28px rgba(9,104,216,.5); transform: translateY(-2px); }

/* ---------- Thank You Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,38,80,.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: white;
  border-radius: 32px;
  padding: 50px 44px;
  max-width: 480px;
  width: 92%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(6,38,80,.3);
  position: relative;
  transform: scale(.85) translateY(30px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  top: -20px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  to { transform: translateY(600px) rotate(720deg); opacity: 0; }
}
.modal-icon { font-size: 64px; margin-bottom: 16px; animation: bounceY 1s ease-in-out infinite; }
.modal-box h2 { font-size: 28px; color: #062650; font-weight: 900; margin-bottom: 12px; }
.modal-box p { color: #496680; font-size: 16px; line-height: 1.7; }
.modal-details {
  margin-top: 16px;
  background: #f0f7ff;
  border-radius: 14px;
  padding: 12px 18px;
  color: #062650;
  font-weight: 800;
  font-size: 16px;
}
.modal-close {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: 2px solid #e0edfa;
  border-radius: 999px;
  padding: 10px 28px;
  color: #496680;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
}
.modal-close:hover { border-color: #f04b23; color: #f04b23; }

/* ---------- Shimmer loader on submit ---------- */
.shimmer-btn {
  background: linear-gradient(90deg, #0968d8 25%, #2d8ef5 50%, #0968d8 75%);
  background-size: 400px 100%;
  animation: shimmer 1.2s infinite linear;
}

/* ---------- FAQ ---------- */
.faq-section { background: #f0f7ff; padding: 80px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: white;
  border-radius: 18px;
  border: 1px solid #dceafd;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8,36,70,.06);
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: 0 16px 40px rgba(8,36,70,.12); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #062650;
  transition: background .2s;
}
.faq-q:hover { background: #f6fbff; }
.faq-item.open .faq-q { background: #f0f7ff; color: #0968d8; }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: #0968d8;
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 26px 20px;
}
.faq-a p {
  color: #496680;
  font-size: 15px;
  line-height: 1.75;
  border-top: 1px solid #e7f0fb;
  padding-top: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .navlinks { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
  .navlinks.open { display: flex; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-box { padding: 24px; }
  h1 { font-size: 26px; }
}

 .other-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 30px 0;
}

.other-box {
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid transparent;
}

.ob-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.other-box p {
  font-size: 13px; font-weight: 600;
  line-height: 1.45; margin: 0;
}

/* Colours */
.ob-edu  { background:#fff8e1; border-color:#e6c84a;text-decoration: none; }
.ob-edu  .ob-icon { background:#fdeea3; color:#856005;text-decoration: none; }
.ob-edu  p { color:#633806;text-decoration: none; }

.ob-blue { background:#e6f1fb; border-color:#85b7eb; text-decoration: none;}
.ob-blue .ob-icon { background:#b5d4f4; color:#0c447c;text-decoration: none; }
.ob-blue p { color:#042c53;text-decoration: none;text-decoration: none; }

.ob-green{ background:#e1f5ee; border-color:#5dcaa5; text-decoration: none; }
.ob-green .ob-icon { background:#9fe1cb; color:#085041; text-decoration: none; }
.ob-green p { color:#04342c; text-decoration: none; }

.ob-orange{ background:#faece7; border-color:#f0997b;text-decoration: none; }
.ob-orange .ob-icon { background:#f5c4b3; color:#712b13;text-decoration: none; }
.ob-orange p { color:#4a1b0c; }

.ob-pink { background:#fbeaf0; border-color:#ed93b1;text-decoration: none; }
.ob-pink .ob-icon { background:#f4c0d1; color:#72243e;text-decoration: none; }
.ob-pink p { color:#4b1528;text-decoration: none; }

a {
  text-decoration: none;
}
.nav-link,
.btn,
.footer-links a {
  text-decoration: none;
}
.footer-social a {
  text-decoration: none;
}
.footer-contact-mini  a {
  text-decoration: none;
}
.footer-bottom-links a{
 text-decoration: none; 
}
.navbar a{
text-decoration:none;
}