:root {
  --bg: #f6f8fc;
  --white: #ffffff;
  --navy: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --gold: #d97706;
  --soft-blue: #eff6ff;
  --soft-gold: #fff7ed;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-page-wrap {
  padding: 24px 16px 50px;
}

.form-topbar {
  max-width: 520px;
  margin: 0 auto 14px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.back-btn:hover {
  transform: translateY(-2px);
}


.admin-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.admin-btn:hover {
  transform: translateY(-2px);
}
.admin-panel-wrap {
  max-width: 950px;
}

.admin-topbar {
  max-width: 950px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.top-bar h1 {
  margin: 0 0 6px;
  color: var(--navy);
}

.top-bar p {
  margin: 0;
  color: var(--muted);
}

#leadsContainer {
  margin-top: 20px;
}

.lead-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.lead-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.lead-card p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.admin-field {
  margin-top: 16px;
}

.admin-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.status-select,
.notes-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--navy);
  font-size: 14px;
  outline: none;
}

.notes-input {
  resize: vertical;
  min-height: 100px;
  font-family: Arial, sans-serif;
}

.save-btn {
  margin-top: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.save-btn:hover {
  transform: translateY(-2px);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22%),
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #f6f8fc 100%);
  color: var(--text);
}

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(226,232,240,0.85);
  backdrop-filter: blur(12px);
}

.brand-topline {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-name {
  margin: 0;
  font-size: 30px;
  color: var(--navy);
}

.brand-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.top-cta,
.primary-btn,
.secondary-btn,
.mobile-sticky-cta,
button {
  transition: all 0.2s ease;
}

.top-cta,
.primary-btn,
button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.top-cta:hover,
.primary-btn:hover,
button:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.hero-premium {
  padding: 34px 16px 26px;
}

.hero-layout,
.section-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--soft-gold);
  color: var(--gold);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-left h1 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.06;
  color: var(--navy);
  max-width: 700px;
}

.hero-text {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-points span {
  background: white;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-main-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: white;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.card-mini {
  margin: 0 0 10px;
  color: #93c5fd;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-main-card h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.2;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mini-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 16px;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.mini-card p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.6;
  font-size: 14px;
}

.flags-strip,
.section {
  padding: 24px 16px 60px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.center {
  text-align: center;
}

.section-title {
  margin: 0 0 12px;
  font-size: 32px;
  color: var(--navy);
}

.section-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.flag-grid,
.path-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.flag-card,
.path-card,
.why-card,
.cta-box,
.form-container,
.lead-card,
.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.flag-card {
  text-align: center;
  padding: 18px 12px;
}

.flag {
  font-size: 34px;
  margin-bottom: 10px;
}

.flag-card p,
.path-card p,
.why-card p,
.cta-box p,
.form-container p,
.lead-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.flag-card p {
  color: var(--navy);
  font-weight: 700;
}

.path-card,
.why-card {
  text-align: left;
}

.path-card h3,
.why-card h3,
.cta-box h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.path-card {
  position: relative;
  overflow: hidden;
}

.india-card::before,
.abroad-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.india-card::before {
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

.abroad-card::before {
  background: linear-gradient(90deg, #2563eb, #0ea5e9, #8b5cf6);
}

.path-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
}

.testimonials-section {
  padding-top: 10px;
}

.testimonial-slider {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.featured-testimonial {
  background: linear-gradient(145deg, #7e93c3, #7e8796);
  border: none;
}

.featured-testimonial h3,
.featured-testimonial .student-destination,
.featured-testimonial .testimonial-text {
  color: white;
}

.featured-testimonial .testimonial-text {
  color: #dbeafe;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.student-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.featured-testimonial .student-badge {
  background: rgba(255,255,255,0.08);
  color: #93c5fd;
}

.student-flag {
  font-size: 24px;
  line-height: 1;
}

.testimonial-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--navy);
}

.student-destination {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.testimonial-text {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}

.slider-btn:hover {
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}

.dot.active {
  background: var(--blue);
}

.soft-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cta-section {
  padding-top: 10px;
}

.cta-box {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  text-align: center;
}

.cta-box .primary-btn {
  margin-top: 22px;
}

.footer {
  text-align: center;
  padding: 24px 16px 92px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
}

.form-container {
  width: calc(100% - 24px);
  max-width: 520px;
  margin: 30px auto;
}

.form-container h1 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  border-radius: 14px;
  font-size: 15px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

.note {
  margin-top: 15px;
  font-size: 13px;
  color: var(--muted);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

#leadsContainer {
  margin-top: 20px;
}

.lead-card {
  margin-top: 15px;
}

.lead-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.lead-card label {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 767px) {
  .testimonial-slider {
    gap: 8px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding: 18px 28px;
  }

  .hero-premium,
  .flags-strip,
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-left h1 {
    font-size: 60px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .mini-cards {
    grid-template-columns: 1fr 1fr;
  }

  .flag-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .path-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 42px;
  }

  .form-container {
    padding: 30px;
    margin: 50px auto;
  }
}

@media (min-width: 1024px) {
  .mobile-sticky-cta {
    display: none;
  }

  .contact-section {
  padding-top: 10px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-left h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
}

.contact-text {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-item {
  padding: 16px 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.contact-item p {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}

.contact-link {
  color: var(--navy);
  font-weight: 700;
}

.contact-link:hover {
  color: var(--blue);
}

.contact-card-box {
  height: 100%;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: white;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card-box h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.contact-card-box p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.7;
}

.contact-card-box .primary-btn {
  margin-top: 20px;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .contact-box {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    padding: 30px;
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.thankyou-card {
  width: 100%;
  max-width: 760px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 30px;
  font-weight: 700;
}

.thankyou-card h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 38px;
}

.thankyou-text {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.thankyou-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.thankyou-point {
  padding: 16px 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--navy);
  font-weight: 600;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .thankyou-card {
    padding: 40px 36px;
  }

  .thankyou-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.admin-panel-wrap {
  max-width: 950px;
}

.admin-topbar {
  max-width: 950px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.top-bar h1 {
  margin: 0 0 6px;
  color: var(--navy);
}

.top-bar p {
  margin: 0;
  color: var(--muted);
}

#leadsContainer {
  margin-top: 20px;
}

.lead-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.lead-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.lead-card p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.status-select {
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--navy);
  font-size: 14px;
}



  .footer {
    padding-bottom: 28px;
  }
}
.student-profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.student-text-left {
  flex: 1;
}

.student-text-left h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: var(--navy);
}

.student-text-left .student-destination {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.student-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #eff6ff;
  box-shadow: var(--shadow);
}
.why-choose-us {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 20px;
  background: var(--soft-blue);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive rules for the features grid */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.top-announcement {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 40;
  position: relative;
}

.top-announcement p {
  margin: 0;
  line-height: 1.5;
}

.top-announcement strong {
  color: #fed7aa; /* Soft gold color to make it pop */
  font-weight: 700;
  letter-spacing: 0.3px;
}