  /* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif !important;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
   font-family: 'Poppins', sans-serif !important;
       font-weight: 700  !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #3f4596;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff1f1f;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #F2F4F7;
  color: #002f6c;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}



/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.navbar .logo img {
  height: 52px;
}

.navbar .nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.navbar .nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
  position: relative;
}

.navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff1f1f;
  transition: width 0.3s;
}

.navbar .nav-links a:hover {
  color: #ff1f1f;
}

.navbar .nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #ff1f1f;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: #e55d00;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: #002f6c;
  color: #fff;
  padding: 60px 5% 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite alternate;
  
}

@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(2%, -2%); }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
p.top-tagline {
    font-size: 22px;
    margin-bottom: 8px;
}
.hero-content {
  flex: 1;
  text-align: left;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.15rem;
  opacity: 9;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: #ff1f1f;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.hero-bottom {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 10px;
}

.hero-bottom strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 4px;
  opacity: 1;
  color: #fff;
}

/* ===== LEAD FORM CARD ===== */
.lead-form-card {
  flex-shrink: 0;
  width: 370px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: #333;
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #ff1f1f;
}

.lead-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 4px;
}

.lead-form-subtitle {
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  margin-bottom: 22px;
}

.lead-form .form-group {
  margin-bottom: 14px;
}

body .lead-form input,
body .lead-form select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid #e0e0e0 ;
  border-radius: 10px !important;
  font-size: 0.92rem !important;
  font-family: 'Poppins', sans-serif !important;
  color: #333 !important;
  background: #fafafa !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
 text-align: left;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: #ff1f1f;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  background: #fff;
}

.lead-form input::placeholder {
 color: #333 !important;
}

.lead-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

body .lead-form-btn {
  width: 100% !important;
  padding: 18px 14px !important;
  background: #ff1f1f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.3s !important;
  letter-spacing: 0.3px !important;
  margin-top: 4px !important;
}

.lead-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}

.lead-form-btn:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 10px;
  margin-bottom: 0px;
}

.form-success {
  text-align: center;
  padding: 30px 10px;
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 14px;
}

.form-success h3 {
  font-size: 1.25rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.form-success p {
  font-size: 0.9rem;
  color: #666;
}

/* ===== PROGRAMS ===== */
.programs {
  padding: 65px 5%;
  background: #f9f9fb;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
   margin-top: 25px;
}

.program-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.program-card img {
  width: 100%;
  height: 231px;
  object-fit: cover;
}

.program-card-body {
  padding: 20px;
}

.program-card h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.program-card p {
  font-size: 0.92rem;
  color: #666;
}

/* ===== IIT SECTION ===== */
.iit-section {
  padding: 65px 5%;
  background: #fff;
}

.iit-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 30px auto;
  max-width: 900px;
}

.iit-logo-item {
  text-align: center;
  width: 110px;
}

.iit-logo-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  padding: 6px;
  background: #fff;
}

.iit-logo-item span {
  font-size: 0.8rem;
  color: #555;
  font-weight: 500;
}

.iit-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 30px auto 0;
}


.iit-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f4fff4;
  border-radius: 10px;
  border-left: 4px solid #28a745;
}

.iit-feature .check {
  color: #28a745;
  font-weight: 700;
  font-size: 1.1rem;
}

.iit-feature span {
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
}

/* ===== FACULTY ===== */
.faculty {
  padding: 65px 5%;
  background: #f9f9fb;
}

.faculty-slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 25px;
 padding-bottom: 18px;
}

.faculty-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.faculty-card {
  min-width: calc(100% / 3);
  padding: 0 15px;
  box-sizing: border-box;
}

.faculty-card-inner {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding-bottom: 20px;
}

.faculty-card-inner img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  object-position: top;
}

.faculty-card-inner h3 {
  margin-top: 16px;
  font-size: 1.05rem;
  color: #1a1a2e;
}

.faculty-card-inner p {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  background: #3f4596;
  color: #fff;
  border: none;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  font-size: 1.3rem !important;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px !important;
}

.slider-btn:hover {
  background: #e55d00;
  color:#fff !important;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* ===== SELECTIONS / RESULTS ===== */
.selections {
  padding: 65px 5%;
  background: #002f6c;
  color: #fff;
}

.selections .section-title {
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.stat-card .label {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-top: 6px;
}

.selections .highlight-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.student-scroll {
  overflow: hidden;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.student-scroll-track {
  display: flex;
  gap: 20px;
  animation: scrollStudents 30s linear infinite;
  width: max-content;
}

@keyframes scrollStudents {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.student-scroll-track:hover{animation-play-state: paused;}
.student-card img {
    width: 173px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
	    object-fit: cover;
    height: 199px;
}
.student-card {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
}

.student-card .name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== WHY RESIDENTIAL ===== */
.why-residential {
  padding: 65px 5%;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 25px;
}

.why-card {
  padding: 28px 24px;
  background: #f9f9fb;
  border-radius: 14px;
  border-left: 4px solid #ff1f1f;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
  font-size: 1.05rem;
  color: #3f4596;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: #666;
}

/* ===========================================
   TIMELINE — "A Day in the Life" FIXED DOTS
   ===========================================
   The fix: each .timeline-item uses relative positioning
   with generous padding-bottom so that the ::before dot
   (absolutely positioned within the item) never overlaps
   the next item's dot. The vertical line runs via the
   parent's ::before pseudo-element.
   =========================================== */
.timeline-section {
  padding: 65px 5%;
  background: #f9f9fb;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Vertical connecting line */
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #ff1f1f, #ffba6b);
  border-radius: 2px;
}

/* Each timeline entry — uses padding to create natural flow, no fixed positions */
.timeline-item {
  position: relative;
  padding: 0 0 44px 72px;
  /* min-height prevents very short items from letting dots collide */
  min-height: 80px;
}

.timeline-item:last-child {
  padding-bottom: 0;
  min-height: auto;
}

/* The orange dot — placed relative to its own .timeline-item */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: #ff1f1f;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #ff1f1f, 0 3px 10px rgba(255, 107, 0, 0.3);
  z-index: 2;
}

.timeline-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3f4596;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.timeline-activity {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 65px 5%;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.cta-section .btn-group {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}
.cta-section .btn-group a.nav-cta.whatsapp_btn {
    font-weight: bold;
    font-size: 18px;
}

a.nav-cta.whatsapp_btn {
    background: #17980e;
    display: flex;
    align-items: center;
    column-gap: 5px;
    line-height: 95%;
    padding: 11px 20px;
}
a.nav-cta.whatsapp_btn:hover{ background: #14760d;}
.student-card img {
    width: 173px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
    object-fit: cover;
    height: 199px;
}


.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #ff1f1f;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 45px 5%;
  background: #002f6c;
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #002f6c;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); */
}

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 30px 5%;
  font-size: 0.88rem;
}

.footer strong {
  color: #3f4596;
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer .footer-tags {
  margin-bottom: 6px;
  color: #3f4596;
}
footer p{color: #3f4596;}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.iit-feature .check img.emoji{filter: invert(48%) sepia(79%) saturate(403%) hue-rotate(93deg) brightness(95%) contrast(90%);}
section.cta-section h2 { color: #fff;}
.footer{padding-bottom: 15px;}
.lead-form-card h2{font-size: 1.35rem;}

.btn-group.section-btn-group {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-top: 40px;
    column-gap: 20px;
}

.btn-group.section-btn-group.section-btn-group-red a.cta-btn {
    background: #ff1f1f;
    color: #fff;
}
.btn-group.section-btn-group.section-btn-group-red a.cta-btn:hover{  background: #002f6c;}

a.nav-cta.whatsapp_btn i {
    font-size: 22px;
}

.page-id-5875 .site-header { display:none;}
.page-id-5875 .site-footer { display:none;}
.lead-form select.wpcf7-form-control.wpcf7-select{text-align: left;}
.lead-form input[type="text"]{margin-top: 0px;}
.lead-form input.wpcf7-form-control.wpcf7-submit.has-spinner.form-btn { width: 100%;background: #ff1f1f ! important; color: #fff ! important;
 text-align: center; font-weight: 600; font-size: 16px ! important; padding: 17px 20px ! important; margin: 0px ! important;}
 .lead-form select.wpcf7-form-control.wpcf7-select{margin: 0px;}
 .lead-form input.wpcf7-form-control.wpcf7-submit.has-spinner.form-btn:hover{background: #002f6c ! important;}
 .lead-form span.wpcf7-spinner { position: absolute;left: 47%; margin: 0px; bottom: -20px;}
 .lead-form .form-group-btn {position: relative;}
 .lead-form form.wpcf7-form.invalid .wpcf7-response-output,  .lead-form form.wpcf7-form.failed .wpcf7-response-output {
    color: #dc3232; font-size: 13px ! important;  text-align: center; line-height: 14px; border: 1px solid #dc3232 ! important; margin-top: 0px ! important;}

a.nav-cta.whatsapp_btn img {
    width: 20px;
}
.footer-sticky{display: none;}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .faculty-card {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .lead-form-card {
    width: 100%;
    max-width: 400px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .faculty-card {
    min-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline mobile adjustments */
  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    padding-left: 56px;
    padding-bottom: 36px;
  }

  .timeline-item::before {
    left: 8px;
    width: 20px;
    height: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-badges span {
    font-size: 0.82rem;
    padding: 6px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .iit-logos {
    gap: 18px;
  }

  .iit-logo-item {
    width: 85px;
  }

  .iit-logo-item img {
    width: 60px;
    height: 60px;
  }

  .timeline-item {
    padding-bottom: 30px;
    min-height: 70px;
  }
  p.top-tagline{font-size: 18px;}
  .hero-wrapper{gap: 13px;}
  .hero{padding: 40px 5% 53px;}
  .programs{ padding: 34px 5%;padding-bottom: 61px;}
  .iit-section{padding: 34px 5%;padding-bottom: 61px;}
  .faculty{padding: 34px 5%;padding-bottom: 61px;}
  .selections{padding: 34px 5%;padding-bottom: 61px;}
 .why-residential{padding: 34px 5%;padding-bottom: 61px;}
 .timeline-section{padding: 34px 5%;padding-bottom: 61px;}
 .gallery-section{padding: 34px 5%;padding-bottom: 61px;}
 .cta-section{padding: 34px 5%;padding-bottom: 61px;}
  h2{font-size: 26px !important;}
   h2 br{display:none;}
   .cta-section .btn-group a.nav-cta.whatsapp_btn{padding: 16px;}
   .cta-section .btn-group{text-align: center; align-items: center;}
   a.nav-cta.whatsapp_btn i {font-size: 20px;}
  .student-card {
  width: calc(50vw - 30px); 
  flex-shrink: 0;
} 
.btn-group.section-btn-group {
 text-align: center;
    align-items: center;
} 
a.nav-cta.whatsapp_btn{padding: 19px;}
.footer-sticky {
    background: #f1f1f1;
    padding: 12px 0px;
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
}
.footer-sticky  .btn-group.section-btn-group {
        flex-direction: row;
        row-gap: 20px;
        text-align: center;
        align-items: center;
        margin-top: 0px;
    }
.footer-sticky .cta-btn{padding: 10px 28px;}
.footer-sticky a.nav-cta.whatsapp_btn{padding: 14px 14px;}
.footer{padding-bottom: 100px;}
.footer-sticky{display: block;}
.cta-section { padding: 40px 5%; padding-bottom: 53px;}
 .navbar a.nav-cta.whatsapp_btn {  padding: 10px 19px;}
 a.nav-cta.whatsapp_btn {padding: 13px 19px;}
 .cta-btn{padding: 10px 30px;}
 body .lead-form-btn{padding: 14px 14px !important;}
 .program-card img{height: auto;}
}

@media (max-width: 390px) {
.btn-group.section-btn-group {flex-direction: column;row-gap: 20px;text-align: center; align-items: center;} 
.cta-section .btn-group{flex-direction: column; row-gap: 20px; text-align: center; align-items: center;}
}