/*!

Project: GIET Landing Page
Developed by: The Weblish [Weblish Technologies PVT. LTD.]
Website: https://theweblish.com
Developer: The Weblish
Location: India

This stylesheet is part of a proprietary project.
Unauthorized copying, modification, or redistribution
of this code without permission is strictly prohibited.

For development services, contact:
https://theweblish.com

## © 2026 The Weblish. All Rights Reserved.

*/


@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --navy: #0a1628;
  --deep: #0d1f3c;
  --gold: #e8a020;
  --gold-light: #f5c04a;
  --white: #ffffff;
  --off: #f5f3ee;
  --muted: #6b7280;
  --red: #c0392b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Google Sans", sans-serif;
}

/*  TOP BAR  */
.topbar {
  background: var(--navy);
  min-height: 50px;
  color: var(--white);
  font-size: 14px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar .topbar-contact {
  font-weight: 500;
}

.topbar .topbar-alert {
  font-weight: 600;
  text-align: right;
  padding: 4px 12px;
  border-radius: 999px;
  animation: topbarAlertColorShift 1.2s ease-in-out infinite, topbarAlertPulse 1.2s ease-in-out infinite;
}

@keyframes topbarAlertColorShift {
  0%,
  100% {
    background-color: #d92d20;
    color: #ffffff;
  }
  50% {
    background-color: #ffb020;
    color: #0a1628;
  }
}

@keyframes topbarAlertPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(217, 45, 32, 0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(217, 45, 32, 0);
  }
}


/*  HERO  */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #122345 55%, #1a3560 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.15) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 90vh;
  align-items: center;
  padding: 60px 40px;
}

/* left content */
.hero-content {
  padding-right: 60px;
}

.badge-row {
  display: flex;
  gap: 10px;
  /*flex-wrap: wrap;*/
  margin-bottom: 24px;
  text-align: center;
}

.badge {
background: rgba(232, 160, 32, 0.15);
border: 1px solid var(--gold);
color: var(--gold);
font-size: 10px;
font-weight: 600;
padding: 5px 10px;
border-radius: 20px;
letter-spacing: 0.5px;
}

.hero h1 {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero h1 span {
  color: var(--gold);
}

.sub-head {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 5px;
  font-weight: 600;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 160, 32, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(232, 160, 32, 0);
  }
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/*  LEAD FORM  */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 12px 12px 0 0;
}

.form-card h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card .form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.form-card input,
.form-card select {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-card input:focus,
.form-card select:focus {
  border-color: var(--gold);
}

.form-card button {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-card button:hover {
  background: var(--gold-light);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

.form-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 9px 10px;
  font-size: 12px;
  margin-bottom: 8px;
}

.form-urgent {
  background: #fff3e0;
  border: 1px solid var(--gold);
  border-radius: 4px;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #b45309;
  margin-bottom: 18px;
}

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 30px 0;
}

.container {
  width: min(1300px, 92%);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 34px;
  color: #ffdcbf;
}

.stat span {
  font-size: 13px;
  color: #d9e0ea;
}

/*  SECTION WRAPPER  */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-title span {
  color: var(--gold);
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/*  COURSES  */
.courses-bg {
  background: var(--off);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.course-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.course-card .course-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.course-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.course-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.course-card .duration {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(232, 160, 32, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.program-card {
  background: var(--white);
  border: 1px solid #d9e2ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 31, 60, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(13, 31, 60, 0.18);
}

.program-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.program-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.28) 100%);
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.program-card:hover .program-media img {
  transform: scale(1.06);
}

.program-card h4,
.program-card .program-meta {
  padding-left: 18px;
  padding-right: 18px;
}

.program-card h4 {
  color: var(--navy);
  font-size: 18px;
  margin: 14px 0 12px;
}

.program-meta {
  margin-bottom: 12px;
}

.program-meta span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.program-meta strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.program-card .program-meta:last-child {
  margin-bottom: 0;
}

.program-cta-btn {
  display: inline-block;
  margin: 14px 18px 18px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.program-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/*  WHY GIET  */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card .why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/*  PLACEMENT  */
.placement-bg {
  background: var(--navy);
}

.placement-bg .section-title {
  color: var(--white);
}

.placement-bg .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.placement-bg .section-tag {
  color: var(--gold);
}

.placement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.p-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}

.p-stat .num {
  font-family: "Google Sans", sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 900;
}

.p-stat .label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-top: 6px;
}

.recruiter-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recruiter-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
}

.recruiter-marquee {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.recruiter-track {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  animation: recruiterScroll 26s linear infinite;
}

.recruiter-logo {
  width: 138px;
  height: 62px;
  border-radius: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.recruiter-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: contrast(1.05);
}

.recruiter-marquee:hover .recruiter-track {
  animation-play-state: paused;
}

@keyframes recruiterScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 14px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruiter-track {
    animation: none;
  }
}

/*  CAMPUS LIFE  */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.campus-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}

.campus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.campus-card:hover img {
  opacity: 0.9;
}

.campus-card.large {
  grid-column: span 2;
  min-height: 300px;
}

.campus-card.tall {
  min-height: 200px;
}

.campus-card .campus-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.9) 0%, transparent 100%);
  color: var(--white);
  padding: 20px 16px 12px;
  font-weight: 600;
  font-size: 14px;
}

/* fallback colors when no img */
.cc1 {
  background: linear-gradient(135deg, #1a3a6e, #0d2347);
}

.cc2 {
  background: linear-gradient(135deg, #2d5016, #1a3010);
}

.cc3 {
  background: linear-gradient(135deg, #5c1a0e, #3a0f08);
}

.cc4 {
  background: linear-gradient(135deg, #1a2f5c, #0d1f3c);
}

.cc5 {
  background: linear-gradient(135deg, #4a1a5c, #2d0f3a);
}

/*  TESTIMONIALS  */
.testimonials-bg {
  background: var(--off);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Google Sans", sans-serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testi-card p {
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.avatar img {
  width: 50px;
  border-radius: 50%;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.author-info span {
  font-size: 12px;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

/*  ADMISSION PROCESS  */
.admission-process-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}

.admission-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.admission-step {
  background: var(--white);
  border: 1px solid #d7e1ed;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(13, 31, 60, 0.06);
}

.admission-step .step-no {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--gold);
  background: rgba(232, 160, 32, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.admission-step h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.admission-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.admission-cta-wrap {
  margin-top: 28px;
  text-align: center;
}

.admission-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  transition: transform 0.2s, background 0.2s;
}

.admission-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/*  BOTTOM LEAD FORM  */
.bottom-lead-bg {
  background: var(--off);
}

.bottom-lead-inner .section-title,
.bottom-lead-inner .section-desc,
.bottom-lead-inner .section-tag {
  text-align: center;
}

.bottom-lead-inner .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.bottom-lead-card {
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 14px 36px rgba(13, 31, 60, 0.14);
}

/*  CTA BAND  */
.cta-band {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 60px 40px;
  text-align: center;
}

.cta-band h2 {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(10, 22, 40, 0.7);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-band .btn-dark {
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.cta-band .btn-dark:hover {
  transform: translateY(-2px);
}

.cta-phones {
  margin-top: 20px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}

.cta-phones a {
  color: var(--navy);
  text-decoration: none;
}

/*  FAQ  */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/*  FOOTER  */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 40px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  margin-bottom: 32px;
}

footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 14px;
}

footer p,
footer a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  line-height: 1.75;
}

footer a:hover {
  color: var(--gold);
}

.footer-brand-block{
  text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-brand-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 6px;
}

.footer-contact-block h4 {
  margin-top: 12px;
}

.footer-contact-block h4:first-child {
  margin-top: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 15px;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
}

/*  STICKY MOBILE CTA  */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 14px 20px;
  text-align: center;
}

.sticky-cta a {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.visit-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.visit-modal.is-open {
  display: block;
}

.visit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 18, 0.64);
  backdrop-filter: blur(3px);
}

.visit-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 28px));
  margin: 6vh auto 0;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  animation: modalEnter 0.34s ease-out;
  max-height: calc(100vh - 12vh);
  overflow-y: auto;
}

.visit-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: rgba(10, 22, 40, 0.08);
  color: #334155;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.visit-modal-card {
  margin: 0;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}

@media (max-width: 600px) {
  .visit-modal-dialog {
    margin-top: 4vh;
    max-height: calc(100vh - 8vh);
  }

  .visit-modal-card {
    padding: 24px 18px;
  }
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.apply-now-float {
  position: fixed;
  right: 18px;
  bottom: 50px;
  z-index: 1001;
  background: #25d366;
    color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: floatCtaEnter 0.7s ease-out 0.2s forwards, pulse 2.5s infinite 0.9s;
  will-change: transform, opacity;
}

.apply-now-float:hover {
  background: #25d366;
  transform: translateY(-2px);
}

@keyframes floatCtaEnter {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  RESPONSIVE  */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    min-height: auto;
    gap: 40px;
  }

  .hero-content {
    padding-right: 0;
  }

  .form-card {
    max-width: 480px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .campus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .campus-card.large {
    grid-column: span 2;
  }

  .sticky-cta {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 50px;
  }

  .apply-now-float {
    right: 12px;
    bottom: 68px;
    font-size: 13px;
    padding: 10px 14px;
  }
}

@media (max-width: 600px) {
    .hero h1{
            text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    }
  .topbar {
    font-size: 11px;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 10px 12px;
    gap: 10px;
  }

  .topbar .topbar-contact {
    line-height: 1.5;
    word-break: break-word;
    font-size: 15px;
  }

  .sub-head {
    font-size: 17px;
  }

  .hero-sub {
    font-size: 14px;
    text-align: justify;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .topbar .topbar-alert {
    text-align: center;
    font-size: 15px;
  }

  .admission-steps {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testi-grid::-webkit-scrollbar {
    display: none;
  }

  .testi-grid .testi-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .campus-grid {
    grid-template-columns: 1fr;
  }

  .campus-card.large {
    grid-column: span 1;
  }

  .trust-bar {
    gap: 24px;
  }
}

/*  ANIMATION  */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
