@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Coming+Soon&family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ===================================================
   1. Font Faces
=================================================== */


@font-face {
  font-family: 'EthnocentricRg-Regular';
  font-style: normal;
  font-weight: normal;
  src: local('EthnocentricRg-Regular'), url('../fonts/ethnocentric rg.ttf') format('woff');
}

@font-face {
  font-family: 'CenturyGothic';
  font-style: normal;
  font-weight: normal;
  src: local('Century Gothic'), local('CenturyGothic'), url('../fonts/centurygothic.ttf') format('truetype');
}

/* ===================================================
   2. Base Global Styles
=================================================== */
body {
  font-family: 'Outfit', sans-serif; /* Modern premium font */
  color: #333;
  line-height: 1.6;
}

/* Logo text font */
a.navbar-brand span,
.footer-heading {
  font-family: 'EthnocentricRg-Regular';
}

/* Responsive gradient company name text */
.company-name {
  font-family: 'Outfit', sans-serif;
  font-size: calc(1.1rem + 0.5vw);
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Gradient text utility */
.gradient-text,
.text-primary {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Logo image size */
.main-logo {
  height: 40px;
  max-width: 160px;
}

/* ===================================================
   3. Responsive Navigation Styles
=================================================== */
@media (max-width: 767.98px) {
  .main-logo {
    height: 50px;
    max-width: 140px;
  }

  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .btn-call,
  .btn-outline-primary,
  .btn-add-cal {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================
   4. Buttons
=================================================== */
.btn-call {
  background-color: transparent !important;
  color: #333 !important;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 8px !important; /* Minimalistic curve */
  font-family: 'CenturyGothic';
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none !important;
}

.btn-call i {
  color: #6411e0;
}

.btn-call:hover {
  background-color: #f8f9fa !important;
  color: #6411e0 !important;
}

.navbar-brand {
  margin-top: 8px; /* Move it a bit lower */
}

.btn-outline-primary {
  font-weight: 600;
  border-radius: 8px !important; /* Minimalistic curve */
  padding: 0.4rem 1.2rem;
  color: #6411e0;
  border: 1px solid #6411e0;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #6411e0;
  color: white;
}

/* === New Add Calendar Button === */
.btn-add-cal {
  background-color: #0d6efd;
  color: #fff;
  font-weight: 600;
  border-radius: 8px; /* Minimalistic curve */
  padding: 0.4rem 1.4rem;
  font-family: 'CenturyGothic';
  border: none;
  transition: background-color 0.3s ease;
}

.btn-add-cal:hover {
  background-color: #094bbf;
  color: #fff;
}

/* ===================================================
   5. Navigation Menu Colors & Behavior
=================================================== */
.navbar .nav-link {
  color: #001b47;
  font-weight: 500;
  transition: color 0.3s ease;
  
}

.navbar .nav-link:hover,
.navbar .dropdown-menu a:hover {
  color: #0d6efd;
  
}

/* Highlight active dropdown toggle */
a.dropdown-toggle.show {
  color: #0d6efd !important;
}

/* ===================================================
   6. Dropdown Menu Styling
=================================================== */
.dropdown-menu {
  --bs-dropdown-border-color: none;
  --bs-dropdown-link-active-bg: #b1b1b18c;
}

/* ===================================================
   7. Hero Section & Global Tags
=================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8faff 0%, #f0ebf8 100%);
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(142,45,226,0.12) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%; z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,0,224,0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%; z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.banner-count {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}

.floating-tag {
  z-index: 10;
  max-width: 300px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  position: absolute;
  font-size: 0.9rem;
}


/* Example positions for floating tags */
.Student1 { top: 15%; left: 10%; border: 2px solid #ffd500;}
.Student2 { bottom: 20%; right: 15%; border: 2px solid #00c48c;}
.Student3 { top: 40%; right: 5%; border: 2px solid #ff3bd4;}

.hero-section h1 span {
  font-style: italic;
}

@keyframes float-anim {
  0% { transform: translateY(0px) scale(1.25); }
  50% { transform: translateY(-15px) scale(1.25); }
  100% { transform: translateY(0px) scale(1.25); }
}

.hero-zoom-img {
  transform: scale(1.25); /* Zoom in on girl */
  transform-origin: center center;
  margin-top: 20px;
  animation: float-anim 6s ease-in-out infinite;
}

.header-top-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  opacity: 0.8;
}

.search-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  max-width: 550px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  box-shadow: 0 15px 35px rgba(100, 17, 224, 0.1), 0 5px 15px rgba(100, 17, 224, 0.05);
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(142,45,226,0.3);
}

.search-box i.search-icon {
  font-size: 1.1rem;
  color: #8e2de2;
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}

.search-box input.form-control {
  border: none;
  flex: 1;
  font-size: 1rem;
  padding-left: 0;
  box-shadow: none !important;
  background: transparent;
  color: #333;
}

.search-box .btn-go {
  background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: white !important;
  box-shadow: 0 4px 15px rgba(74,0,224,0.2);
  transition: all 0.3s ease;
}

.search-box .btn-go:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74,0,224,0.3);
}

/* ===================================================
   Premium Global Utilities
=================================================== */
.section-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: -0.5px !important;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem !important;
  color: #333 !important;
  font-size: calc(1.5rem + 1vw) !important;
}

.section-title .text-primary {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: inherit !important;
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/*===============================================
=            About Section Styles               =
===============================================*/

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
}

.about-section ul li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-section img {
  max-height: 420px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Responsive adjustments for About Section */
@media (max-width: 767.98px) {
  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section ul li {
    font-size: 0.9rem;
  }

  .about-section img {
    max-height: 300px;
  }
}

/*===============================================
=            Icon & Course Box Styles           =
===============================================*/

.bg-light-green {
  width: 22px;
  height: 22px;
  background-color: #dcfce7;
  top: -6px;
  right: -6px;
  z-index: 0;
}

.icon-container .fa {
  position: relative;
  z-index: 1;
}

.icon-container span {
  position: absolute;
}

.course-box:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

/*===============================================
=            Image Box Styling                  =
===============================================*/

.img-box {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*===============================================
=            Sticky CTA Button                  =
===============================================*/

.sticky-cta {
  z-index: 1030;
}

@media (max-width: 576px) {
  .sticky-cta {
    align-items: stretch;
  }

  .sticky-cta .btn {
    width: 100%;
    height: 50px;
  }
}

/*===============================================
=            Branch Card Styles                 =
===============================================*/

.branch-card {
  transition: all 0.3s ease-in-out;
  border-radius: 1rem;
  background-color: #fff;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.branch-card i {
  transition: color 0.3s ease;
}

.branch-card:hover i {
  color: #0d6efd;
}

/* Hover shadow utility */
.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

/* Transition utility class */
.transition {
  transition: all 0.3s ease-in-out;
}

/*===============================================
=            Swiper Styles                      =
===============================================*/

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -5px) !important;
}

.student-testimonials .swiper-horizontal {
  padding: 2em 1em;
}

.testimonial-card-premium {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(142,45,226,0.05) !important;
}

.testimonial-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(100, 17, 224, 0.08) !important;
  border-color: rgba(142,45,226,0.2) !important;
}

.star-rating i {
  margin-right: 2px;
  filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.2));
}

.testimonial-content .rich-content {
  padding-bottom: 0 !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*===============================================
=            Student Avatar Borders             =
===============================================*/



/*===============================================================
=            Exam Section: Container + Course Boxes             =
===============================================================*/

.exam-container {
  max-width: 1030px !important;
}

.test-prep-section {
  background-color: #fff;
  padding: 60px 0;
}

.custom-course-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 110px;
  padding: 1.5rem 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(142,45,226,0.1);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.custom-course-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(142,45,226,0.05) 0%, rgba(74,0,224,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.custom-course-box:hover::before {
  opacity: 1;
}

.custom-course-box:hover {
  border-color: rgba(142,45,226,0.4);
  box-shadow: 0 15px 35px rgba(100, 17, 224, 0.1);
  transform: translateY(-6px);
}

.custom-course-box > * {
  position: relative;
  z-index: 1;
}

.icon-container {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f8faff 0%, #f0ebf8 100%);
  border: 1px solid rgba(142,45,226,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 4px 10px rgba(142,45,226,0.1);
  transition: all 0.3s ease;
}

.custom-course-box:hover .icon-container {
  background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  border-color: transparent;
}

.custom-course-box:hover .icon-zoom {
  color: white !important;
  -webkit-text-fill-color: white !important;
}

.icon-zoom {
  color: #8e2de2;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.custom-course-box p {
  font-size: 0.80rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #212529;
  margin: 0;
  gap: 4px;
  flex-wrap: wrap;
  line-height: 1.3;
}

.custom-course-box p i.fas.fa-arrow-right {
  font-size: 0.75rem;
  color: #6c757d;
  transition: transform 0.2s ease-in-out;
}

.custom-course-box:hover p i.fas.fa-arrow-right {
  transform: translateX(3px);
  color: #0D6EFD;
}


/*===============================================================
=            Student Gallery Section (with Hover Effects)       =
===============================================================*/

/* Base styles */
.student-gallery {
  background-color: #f8f9fa;
}

/* Utility override */
.student-gallery .text-primary {
  color: #0d6efd !important;
}

/* Image card container */
.student-gallery .img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-gallery .img-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.student-gallery .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.student-gallery .img-box:hover img {
  transform: scale(1.05);
}

/* Overlay text for captions */
.student-gallery .img-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.student-gallery .img-box:hover .img-caption-overlay {
  transform: translateY(0);
  opacity: 1;
}


/*===============================================================
=            Responsive Adjustments for Gallery Cards           =
===============================================================*/

@media (max-width: 991.98px) {
  .student-gallery .img-box {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .student-gallery .img-box {
    height: 180px;
    border-radius: 10px;
  }

  .student-gallery .img-caption-overlay {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .student-gallery .img-box {
    height: 150px;
    border-radius: 8px;
  }

  .student-gallery .img-caption-overlay {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}


/*===============================================================
=            Image Modal / Lightbox Viewer                      =
===============================================================*/

#imageModal .modal-content {
  background-color: transparent;
  border: none;
}

#imageModal .modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 90vh;
  position: relative;
}

#imageModal .modal-body img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Close button in modal header */
#imageModal .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1055;
  padding: 0;
  border-bottom: none;
}

#imageModal .modal-header .btn-close {
  filter: invert(1);
  opacity: 1;
  font-size: 1.5rem;
  padding: 1rem;
  margin: 0;
  box-shadow: none;
}

/* Navigation arrows in modal (prev/next) */
#imageModal .modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 15px 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#imageModal .modal-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#imageModal .modal-nav-btn.prev {
  left: 10px;
}

#imageModal .modal-nav-btn.next {
  right: 10px;
}
/* ===================================================
22. Editor Content Styling (Rich Text)
=================================================== */
.content-wrapper, .section-fields-content, .rich-content {
  /* Spacing for paragraphs and headings */
  padding-bottom: 2rem;
}

.content-wrapper p, .section-fields-content p {
  margin-bottom: 1.25rem;
}

/* Table Styling */
.content-wrapper table, .section-fields-content table, .rich-content table {
  width: 100% !important;
  margin-bottom: 1.5rem;
  background-color: #fff; /* Ensure white background for tables */
  border-collapse: collapse !important;
  border: 1px solid #bbb !important;
}

.content-wrapper table th, .content-wrapper table td,
.section-fields-content table th, .section-fields-content table td,
.rich-content table th, .rich-content table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #bbb !important;
}

.content-wrapper table th, .section-fields-content table th, .rich-content table th {
  background-color: #f8f9fa;
  font-weight: 700;
  text-align: inherit;
}

.content-wrapper table tbody tr:nth-of-type(odd),
.section-fields-content table tbody tr:nth-of-type(odd),
.rich-content table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

/* List Styling */
.content-wrapper ul, .section-fields-content ul, .rich-content ul,
.content-wrapper ol, .section-fields-content ol, .rich-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-wrapper ul, .section-fields-content ul, .rich-content ul {
  list-style-type: disc;
}

.content-wrapper ol, .section-fields-content ol, .rich-content ol {
  list-style-type: decimal;
}

.content-wrapper li, .section-fields-content li, .rich-content li {
  margin-bottom: 0.5rem;
}

/* Blockquote Styling */
.content-wrapper blockquote, .section-fields-content blockquote, .rich-content blockquote {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  border-left: 5px solid #6411e0;
  background-color: #f8f9fa;
  font-style: italic;
  color: #555;
}

/* Image Styling within content */
.content-wrapper img, .section-fields-content img, .rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
}

/* In-line formatting */
.content-wrapper strong, .section-fields-content strong, .rich-content strong,
.content-wrapper b, .section-fields-content b, .rich-content b {
  font-weight: bold !important;
}

.content-wrapper em, .section-fields-content em, .rich-content em,
.content-wrapper i, .section-fields-content i, .rich-content i {
  font-style: italic !important;
}

/* Headings within content */
.content-wrapper h1, .section-fields-content h1, .rich-content h1,
.content-wrapper h2, .section-fields-content h2, .rich-content h2,
.content-wrapper h3, .section-fields-content h3, .rich-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive Tables */
@media (max-width: 768px) {
  .content-wrapper table, .section-fields-content table, .rich-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Results Marquee Styling */
.results-marquee-section {
  background: #fff;
}

.marquee-container {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
  background: #fdfdfd;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.track-right {
  animation: scroll-right 60s linear infinite;
}

.track-left {
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-label {
  position: absolute;
  z-index: 10;
  background: #6411e0;
  color: white;
  padding: 6px 18px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  border-radius: 4px;
  box-shadow: 2px 4px 15px rgba(100, 17, 224, 0.2);
  pointer-events: none;
}

.overlay-top-left {
  top: 15px;
  left: 30px;
}

.overlay-bottom-right {
  bottom: 15px;
  right: 30px;
}

.result-card {
  transition: transform 0.3s ease;
  border-color: #eee !important;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: #6411e0 !important;
}

.result-card .extra-small {
  font-size: 0.7rem;
}

/* Polished Lead Form */
#enquiry .form-control, #enquiry .form-select {
  border: 2px solid #f1f5f9;
  background-color: #f8fafc;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 12px !important;
  transition: all 0.3s ease;
  color: #334155;
}

#enquiry .form-control:focus, #enquiry .form-select:focus {
  background-color: #ffffff;
  border-color: #8e2de2;
  box-shadow: 0 0 0 4px rgba(142,45,226,0.1);
  outline: none;
}

#enquiry .form-control:focus, #enquiry .form-select:focus {
  border-color: #6411e0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(100, 17, 224, 0.08) !important;
}

#enquiry .form-label {
  color: #444;
  margin-bottom: 0.4rem;
}

#enquiry .btn-primary {
  background: #6411e0;
  border: none;
  transition: all 0.3s;
}

#enquiry .btn-primary:hover {
  background: #4a00e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(100, 17, 224, 0.2);
}

/* Standardized Gradient Text (Matches Section Titles) */
.hero-section h1 .gradient-text,
.section-title .text-primary {
  font-family: 'Outfit', sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

/* Explore Subjects Layout Improvements */
.custom-course-box {
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.custom-course-box .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(100, 17, 224, 0.05);
  border-radius: 50%;
  position: relative;
}

.custom-course-box p {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0;
}

/* Inner Page Banner Styles */
.inner-page-banner {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #6411e0;
  color: white;
  margin-bottom: 3rem;
  overflow: hidden;
}

.inner-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 0, 80, 0.85) 0%, rgba(100, 17, 224, 0.6) 100%);
  z-index: 1;
}

.inner-page-banner .container {
  position: relative;
  z-index: 2;
}

.inner-page-banner .banner-content {
  max-width: 800px;
}

.inner-page-banner h1 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 3.5rem !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: -1.5px !important;
  color: white !important;
  text-transform: capitalize !important;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.inner-page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.inner-page-banner .breadcrumb-item, 
.inner-page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  text-decoration: none;
}

.inner-page-banner .breadcrumb-item.active {
  color: white !important;
}

.inner-page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Premium Branch Card Styles */
.branch-card-premium {
  background: #ffffff;
  border: 1px solid rgba(100, 17, 224, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
}

.branch-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(142, 45, 226, 0.03) 0%, rgba(74, 0, 224, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.branch-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(100, 17, 224, 0.12);
  border-color: rgba(100, 17, 224, 0.2);
}

.branch-card-premium:hover::before {
  opacity: 1;
}

.branch-icon-container {
  width: 80px;
  height: 80px;
  background: rgba(100, 17, 224, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.branch-icon-container i {
  font-size: 2rem;
  color: #6411e0;
  transition: all 0.4s ease;
}

.branch-card-premium:hover .branch-icon-container {
  background: #6411e0;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(100, 17, 224, 0.3);
}

.branch-card-premium:hover .branch-icon-container i {
  color: #ffffff;
}

.branch-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2d3436;
  margin-bottom: 0.75rem;
}

.branch-description {
  color: #636e72;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.branch-contact-info {
  background: #f8faff;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.4s ease;
}

.branch-card-premium:hover .branch-contact-info {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #2d3436;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: #6411e0;
  font-size: 0.85rem;
}

.contact-item:hover {
  color: #6411e0;
  transform: translateX(3px);
}




