/* ==========================================================================
   Component / Section CSS extracted from inline <style> blocks
   Source: /components/*.php and /thankyou.php
   ========================================================================== */

/* =========================
   components/herosection.php
   ========================= */

/* Mobile phones */
@media (max-width: 576px) {
  .sagar {
    display: none !important;
  }

  .gaurav {
    margin-top: 20px;
  }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Ensure the container content appears over image */
.hero .container {
  position: relative;
  z-index: 2;
}

.video-space {
  width: 100%;
  min-height: 400px;
}

/* Contact Form */
.contact_form {
  z-index: 3;
  background: #ffffff;
  border-radius: 12px;
  /* box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1); */
}

.contact_form .form-control,
.contact_form .form-select {
  border-radius: 8px;
  font-size: 0.95rem;
  padding: 10px 14px;
}

.hero-text {
  font-size: 40px;
  color: #ffffff;
}

.contact_form .thm-btn {
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  transition: 0.3s ease;
}

.contact_form .thm-btn:hover {
  background: #000;
  color: #fff;
}

.hero-text-content {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  /* Strong shadow for contrast */
}

/* Main Headline Styling */
.main-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  /* Responsive font size */
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Sub-Headline/Tagline Styling */
.hero-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: #ffffff;
}

/* Program Quick Summary (Kept simple) */
.program-quick-summary p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.3;
}

/* Responsive adjustments for alignment */
@media (min-width: 768px) {
  /* For desktop, align content to the start (left) */
  .hero-text-content {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  /* For mobile, center the content */
  .hero-text-content {
    text-align: center;
  }
}

.special-text {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .hero {
    flex-direction: column;
    padding: 0;
  }

  .hero-bg-image {
    height: auto;
    position: relative;
  }

  .video-space {
    display: none;
    /* Remove empty area */
  }

  .contact_form {
    margin-top: -10px;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ======================
   components/programs.php
   ====================== */
.swiper-button-next:hover {
  color: #ffffff;
}

.swiper-button-prev:hover {
  color: #ffffff;
}

.program-card-light {
  height: 500px;
}

.icon-title {
  margin: 20px 0;
}

/* ====================
   components/stats.php
   ==================== */

/* Custom column width (5 cards centered) */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%; /* 5 cards across on large screens */
}

/* Make cards wider & balanced */
.principle-card {
  min-width: 230px;
  padding: 45px 30px;
}

.leadership-principles {
  background: #f5f7fb;
}

.leadership-principles .title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0a1f44;
  text-transform: uppercase;
}

.principle-card {
  background: linear-gradient(180deg, #031a4a, #041c5c);
  color: #fff;
  padding: 40px 25px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.principle-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffffff;
}

.principle-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 12px;
}

.principle-card .line {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffcc00;
  margin: 0 auto 15px;
}

.principle-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0e6f3;
}

/* Responsive */
@media (max-width: 991px) {
  .principle-card {
    margin-bottom: 20px;
  }
}

/* --- Responsive Adjustments --- */

/* Medium Devices (Tablets, 992px and up, standard Bootstrap breakpoints) */
@media (min-width: 992px) {
  /* Re-enforce 5-card layout on LG screens and up */
  .col-lg-2-4 {
    width: 20%;
  }
}

/* Small Devices (Tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Bootstrap's col-md-4 is used, making it 3 cards per row (33.33%) */
  /* We don't need to change the col classes in the HTML, just ensuring proper stacking */
  .col-lg-2-4 {
    width: 33.3333%; /* 3 cards per row on tablets */
  }
  .principle-card {
    margin-bottom: 0; /* Remove old margin style */
  }
  /* Adjust padding for the section */
  .commonSection {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Extra Small Devices (Mobile, under 576px) */
@media (max-width: 575.98px) {
  /* The col-sm-6 is used, making it 2 cards per row (50%) */
  /* Override custom width for mobile stacking */
  .col-lg-2-4,
  .col-md-4 {
    width: 50%; /* 2 cards per row on mobile */
  }
  .leadership-principles .title {
    font-size: 2rem;
  }
  .principle-card {
    min-width: auto;
    padding: 30px 15px;
  }
}

/* Final stacking on very narrow screens (less than 400px wide, forcing 1 column) */
@media (max-width: 399.98px) {
  .col-lg-2-4,
  .col-md-4,
  .col-sm-6 {
    width: 100%; /* 1 card per row */
  }
}

/* ======================
   components/placements.php
   ====================== */
.fiib-partners {
  background: linear-gradient(135deg, #fffef8 0%, #f7faff 100%);
}

.fiib-partners .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.fiib-partners .title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.3;
}
.highlighted {
  color: var(--color-primary);
}

/* Partner Logos */
.partner-logo-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid #eee;
  padding: 20px 30px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.partner-logo-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.partner-logo-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.partner-logo-card:hover img {
  opacity: 1;
}

/* Swiper */
.fiibPartnersSwiper {
  padding: 20px 0 60px;
}
.fiibPartnersSwiper .swiper-pagination-bullet {
  background: var(--color-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .partner-logo-card {
    height: 100px;
    padding: 15px 20px;
  }
}
@media (max-width: 576px) {
  .partner-logo-card {
    height: 90px;
  }
}

.fiib-recruiters {
  background: linear-gradient(135deg, #fffef8 0%, #f7faff 100%);
  overflow: hidden;
  position: relative;
}

.fiib-recruiters .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.fiib-recruiters .title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 2.3rem;
  font-weight: 700;
}
.highlighted {
  color: var(--color-primary);
}

/* Marquee Container */
.recruiter-marquee {
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: hidden;
  position: relative;
}

/* Marquee Track */
.marquee-track {
  display: flex;
  gap: 25px;
  animation: scrollMarquee 40s linear infinite;
}
.marquee-track:nth-child(2) {
  animation-delay: -20s;
}

/* Brand Cards */
.brand-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 10px 22px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.brand-card:hover {
  background: var(--color-primary);
  color: #000;
  transform: translateY(-3px);
}

/* Marquee Animation */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .brand-card {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
  .marquee-track {
    animation: scrollMarquee 30s linear infinite;
  }
}
@media (max-width: 576px) {
  .brand-card {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
  .recruiter-marquee {
    gap: 15px;
  }
}

/* ===========================
   components/campus_gallery.php
   =========================== */
.campus-gallery {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 60%, #fff7e6 100%);
}
.campus-gallery__title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-secondary);
  text-transform: uppercase;
}
.campus-gallery__subtitle {
  font-size: 0.98rem;
}
.campus-gallery__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.campus-gallery__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
  border-color: rgba(253, 181, 21, 0.55);
}
.campus-gallery__image-wrap {
  position: relative;
  overflow: hidden;
}
.campus-gallery__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.campus-gallery__card:hover .campus-gallery__image {
  transform: scale(1.06);
}
.campus-gallery__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  backdrop-filter: blur(6px);
}
.campus-gallery__card-title {
  color: #0F172A;
}
@media (max-width: 576px) {
  .campus-gallery__image {
    height: 210px;
  }
}

/* =======================
   components/campuslife.php
   ======================= */
.campus-life {
  background: linear-gradient(135deg, #fffef8 0%, #f7faff 100%);
  position: relative;
  z-index: 1;
}
.campus-life .section-title .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.campus-life .section-title .title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
}
.highlighted {
  color: var(--color-primary);
}

/* Card Styles */
.campus-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.campus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}
.campus-icon {
  color: var(--color-primary);
}
.campus-title {
  font-weight: 600;
  color: var(--color-secondary);
}
.campus-points li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
  display: flex;
  align-items: start;
}
.campus-points i {
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .campus-card {
    padding: 20px;
  }
  .campus-title {
    font-size: 1.1rem;
  }
}

/* ======================
   components/gallery.php
   ====================== */
/* Gallery Section Styles */
.gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #007bff;
  display: block;
  margin-bottom: 15px;
}

.section-title .main-title {
  font-size: 42px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title .description {
  font-size: 16px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Grid */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(0, 86, 179, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.overlay-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title .main-title {
    font-size: 32px;
  }

  .gallery-image img {
    height: 200px;
  }

  .gallery-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-title .main-title {
    font-size: 28px;
  }

  .gallery-image img {
    height: 180px;
  }

  .overlay-content h5 {
    font-size: 18px;
  }

  .overlay-content p {
    font-size: 13px;
  }
}

/* ===================
   components/fees.php
   =================== */
.fees-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.section-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffc107;
  display: block;
  margin-bottom: 15px;
}

.section-title .title {
  font-size: 42px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.fee-structure-card,
.payment-options-card,
.scholarship-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-structure-card:hover,
.payment-options-card:hover,
.scholarship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fee-item {
  transition: all 0.3s ease;
}

.fee-item:hover {
  background: #f8f9fa !important;
  transform: translateX(5px);
}

.payment-options-card {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.scholarship-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.roi-section .stat-item {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.roi-section .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bg-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Compact table styling */
.table {
  margin-bottom: 0;
}

.table th {
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  border: 1px solid #dee2e6;
}

.table td {
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title .title {
    font-size: 32px;
  }

  .fees-section {
    padding: 60px 0;
  }

  .roi-section .stat-item {
    margin-bottom: 15px;
  }

  .table-responsive {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-title .title {
    font-size: 28px;
  }

  .fee-item {
    flex-direction: column;
    text-align: center;
  }

  .fee-item .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
}

/* ===========================
   components/testimonials.php
   =========================== */
.fiib-testimonials {
  background: linear-gradient(135deg, #fffef8 0%, #f7faff 100%);
}

/* Headings */
.fiib-testimonials .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.fiib-testimonials .title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 2.3rem;
  font-weight: 700;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Avatar */
.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Text */
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-default-two);
  line-height: 1.6;
  position: relative;
}

/* Footer */
.company-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
}

/* Buttons */
.btn-outline-primary {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  border-radius: 30px;
  font-weight: 600;
  padding: 4px 12px;
}
.btn-outline-primary:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Swiper */
.fiibTestimonialsSwiper {
  padding-bottom: 60px;
}
.fiibTestimonialsSwiper .swiper-button-next,
.fiibTestimonialsSwiper .swiper-button-prev {
  color: var(--color-primary);
  transition: color 0.3s ease;
}
.fiibTestimonialsSwiper .swiper-button-next:hover,
.fiibTestimonialsSwiper .swiper-button-prev:hover {
  color: #ffffff !important;
}
.fiibTestimonialsSwiper .swiper-pagination-bullet {
  background: var(--color-primary);
}

/* Responsive */
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 20px;
  }
  .fiib-testimonials .title {
    font-size: 1.8rem;
  }
}

/* ====================
   components/faq.php
   ==================== */
/* ====== FAQ Section ====== */
.faq-section {
  background: linear-gradient(135deg, #fffef8 0%, #f8f9ff 100%);
}

/* Headings */
.faq-section .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
}

.faq-section .title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Image */
.faq-image img {
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.faq-image img:hover {
  transform: scale(1.05);
}

/* Accordion Styling */
.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.accordion-button {
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-secondary);
  background: #fff;
  border-radius: 12px !important;
  padding: 1rem 1.25rem;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: #000;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: #fff;
  color: var(--color-default-two);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid #eee;
  border-radius: 0 0 12px 12px;
  padding: 1rem 1.25rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .faq-section .title {
    font-size: 1.8rem;
    text-align: center;
  }

  .faq-section .sub-title {
    text-align: center;
  }

  .faq-image {
    text-align: center;
  }

  .faq-image img {
    max-width: 90%;
  }
}

/* ============================
   components/admissionsteps.php
   ============================ */
.admission-process {
  background: linear-gradient(135deg, #fffef8 0%, #f7faff 100%);
}

/* Section Titles */
.admission-process .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
}
.admission-process .title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.3;
}

/* Step Cards */
.step-card {
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #fffdf4, #f8faff);
}

/* Step Icons */
.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 0 15px rgba(253, 181, 21, 0.6);
}

/* Buttons */
.admission-process .btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  border: none;
  transition: 0.3s;
}
.admission-process .btn-primary:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Modal */
#popupForm .modal-content {
  border: none;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
#popupForm .modal-title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 767.98px) {
  .admission-process .title {
    font-size: 1.8rem;
    text-align: center;
  }
  .admission-process .sub-title {
    text-align: center;
  }
  .step-card {
    text-align: center;
  }
}

/* =======================
   components/finalcta.php
   ======================= */
.fiib-cta-wrapper {
  background-color: #f9f9f3;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Capsule Box */
.fiib-cta {
  background: linear-gradient(135deg, var(--color-secondary, #1E4173), #142a52);
  color: #fff;
  border-radius: 40px;
  padding: 60px;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

/* Capsule Shadow + Glow */
.fiib-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(253, 181, 21, 0.18) 0%, transparent 60%);
  border-radius: 40px;
  z-index: 1;
}
.fiib-cta .cta-content {
  position: relative;
  z-index: 2;
}

/* Text & Headings */
.cta-title {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.highlighted {
  color: var(--color-primary, #fdb515);
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

/* Buttons */
.cta-btn-group .btn-primary {
  background-color: var(--color-primary, #fdb515);
  border: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
}
.cta-btn-group .btn-primary:hover {
  background-color: #ffcc33;
  transform: translateY(-2px);
}
.cta-btn-group .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  transition: 0.3s ease;
}
.cta-btn-group .btn-outline-light:hover {
  background-color: #fff;
  color: var(--color-secondary, #1E4173);
}

/* Right Icon */
.cta-illustration {
  position: relative;
  display: inline-block;
}
.cta-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary, #fdb515) 0%, #f8d75a 60%, transparent 100%);
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 3s infinite ease-in-out;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 999px) {
  .fiib-cta {
    margin: 0 20px;
    border-radius: 30px;
    padding: 40px 25px;
  }
  .cta-title {
    font-size: 1.9rem;
  }
  .cta-text {
    font-size: 0.95rem;
  }
  .cta-circle {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cta-title {
    font-size: 1.6rem;
  }
  .fiib-cta {
    margin: 0 15px;
    padding: 30px 20px;
  }
}

/* =====================================
   components/feesandscholarships.php
   ===================================== */
.fiib-scholarships {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf7 100%);
  position: relative;
}

.fiib-scholarships .section-title .sub-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.fiib-scholarships .highlighted {
  color: var(--color-secondary);
}

/* --- Cards --- */
.capsule-card {
  border-radius: 60px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.capsule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* --- Variants --- */
.capsule-card.primary {
  border-left: 8px solid var(--color-primary);
}
.capsule-card.secondary {
  border-left: 8px solid var(--color-secondary);
}
.capsule-card.tertiary {
  border-left: 8px solid #198754;
}

/* --- Circle Icons --- */
.circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 6px 15px rgba(253, 181, 21, 0.4);
  transition: 0.3s;
}
.capsule-card.secondary .circle-icon {
  background: var(--color-secondary);
  box-shadow: 0 6px 15px rgba(30, 65, 115, 0.3);
}
.capsule-card.tertiary .circle-icon {
  background: #198754;
  box-shadow: 0 6px 15px rgba(25, 135, 84, 0.3);
}
.capsule-card:hover .circle-icon {
  transform: scale(1.1);
}

/* --- Capsule Buttons --- */
.capBtn {
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 500;
  transition: all 0.3s;
}
.capBtn:hover {
  transform: translateX(4px);
}

/* ==================
   thankyou.php (page)
   ================== */
.thankyouSection {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--color-body);
  padding: 20px;
}

.thankyouBox {
  background: var(--color-white);
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
}

.thankyouLogo {
  width: 100px;
  margin-bottom: 20px;
  background: var(--color-primary);
  width: 200px;
  padding: 5px;
  border-radius: 10px;
}

.thankyouTitle {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 12px;
}

.thankyouMessage {
  color: var(--color-default-two);
  font-size: 1rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.thankyouActions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btnWhatsApp {
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(43, 184, 38, 0.3);
  transition: var(--smooth);
}

.btnWhatsApp:hover {
  background: var(--whatsapphover);
  transform: translateY(-3px);
}

.btnCall {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 23, 82, 0.25);
  transition: var(--smooth);
}

.btnCall:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

.thankyouFooter {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.thankyouFooter strong {
  color: var(--color-heading);
}

