/* =========================================
   SPT EDUTECH – style.css
   Vibrant Purple + Gold + Red Colour Theme
   ========================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  --primary: #7B2FBE;
  /* royal purple */
  --primary-dark: #5A1F8C;
  --primary-light: #9B4FDE;
  --accent: #E8A020;
  /* gold / amber */
  --accent-dark: #C8820A;
  --red: #D42B2B;
  /* highlight red */
  --teal: #00BCD4;
  --green: #27AE60;
  --bg-light: #F5F0FF;
  --dark: #0F0728;
  --dark-2: #1C1040;
  --text: #2D2D4E;
  --text-light: #6A6A9A;
  --white: #FFFFFF;
  --border: #DDD4F5;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 14px rgba(123, 47, 190, .10);
  --shadow-md: 0 6px 32px rgba(123, 47, 190, .16);
  --shadow-lg: 0 14px 50px rgba(123, 47, 190, .22);
  --transition: 0.3s ease;
}

/* ---- RESET & GLOBALS ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* ---- UTILITY ---- */
.section-pad {
  padding: 90px 0;
}

.bg-light-spt {
  background: var(--bg-light);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 160, 32, .12);
  border: 1px solid rgba(232, 160, 32, .3);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-heading span {
  color: var(--primary);
}

.section-text {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 14px;
  font-size: 15.5px;
}

.section-sub {
  color: var(--text-light);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary-spt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 4px 20px rgba(123, 47, 190, .35);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-primary-spt:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 160, 32, .4);
}

.btn-outline-spt {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, .65);
  border-radius: 50px;
  padding: 11px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-outline-spt:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--dark-2);
  padding: 8px 0;
  font-size: 12.5px;
  border-bottom: 2px solid var(--primary);
}

.top-bar-left a,
.top-bar-left span {
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-left a:hover {
  color: var(--accent);
}

.top-bar-branches {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.top-bar-right a {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  transition: color var(--transition);
}

.top-bar-right a:hover {
  color: var(--accent);
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(15, 7, 40, .09);
  z-index: 999;
}

.site-header .navbar {
  padding: 12px 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.brand-name strong {
  color: var(--primary);
}

.brand-tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--bg-light);
}

.navbar-toggler {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
  color: var(--primary);
  font-size: 20px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
#heroCarousel {
  height: 100vh;
  min-height: 580px;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-slide {
  height: 100vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-1 {
  background-image: url('../images/banner1.webp');
  background-color: #1A073A;
}

.slide-2 {
  background-image: url('../images/banner2.webp');
  background-color: #0D2040;
}

.slide-3 {
  background-image: url('../images/banner4.webp');
  background-color: #120F38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(15, 7, 40, .90) 45%, rgba(123, 47, 190, .50) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroIn .9s cubic-bezier(.22, .68, 0, 1.2) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 160, 32, .18);
  border: 1px solid rgba(232, 160, 32, .45);
  color: #FFD070;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .4px;
}

.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-desc {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 32px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  margin: 0 4px;
  transition: all var(--transition);
}

.carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* =========================================
   BRANCH TICKER
   ========================================= */
.branch-ticker {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: tickerScroll 28s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, .9);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0 8px;
}

.ticker-sep {
  color: var(--accent) !important;
  font-size: 14px !important;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   ABOUT
   ========================================= */
.about-img-wrap {
  position: relative;
}

.about-img-wrap .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  /* min-height: 380px; */
}

.about-float-card {
  position: absolute;
  bottom: 24px;
  right: -10px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.about-float-card i {
  font-size: 28px;
  color: var(--primary);
}

.about-float-card strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.about-float-card span {
  font-size: 12px;
  color: var(--text-light);
}

.about-partners {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(123, 47, 190, .08), rgba(123, 47, 190, .04));
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
}

.partner-pill i {
  font-size: 14px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.about-feat i {
  color: var(--green);
  font-size: 16px;
}

/* =========================================
   SERVICES
   ========================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-img {
  position: relative;
  /*height: 200px;*/
  overflow: hidden;
}

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

.service-card:hover .service-img img {
  transform: scale(1.07);
}

.service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--red), #FF5252);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .4px;
}

.popular-tag {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent)) !important;
}

.service-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-name i {
  color: var(--primary);
  font-size: 1.15rem;
}

.service-desc {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 14px;
}

.service-list {
  list-style: none;
  padding: 0;
  flex: 1;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  font-weight: 500;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-highlight-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.why-highlight-box i {
  font-size: 26px;
  color: var(--accent);
  flex-shrink: 0;
}

.why-highlight-box strong {
  display: block;
  font-size: 15px;
}

.why-highlight-box span {
  font-size: 14px;
  opacity: .85;
}

.why-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  height: 100%;
}

.why-card:hover {
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--white);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-light);
  margin: 0;
}

/* =========================================
   COUNTER
   ========================================= */
.counter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, var(--primary-dark) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 160, 32, .07) 1px, transparent 1px);
  background-size: 30px 30px;
}

.counter-box {
  color: var(--white);
  position: relative;
}

.counter-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 2px;
}

.counter-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
  margin-top: 8px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 22px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 160, 32, .4);
}

.step-icon {
  width: 68px;
  height: 68px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 18px auto 18px;
  transition: all var(--transition);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 47, 190, .8), rgba(212, 43, 43, .6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2.2rem;
  color: var(--white);
}

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

.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 3, 30, .96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-modal img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--red);
  border: none;
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.testi-quote {
  font-size: 2.8rem;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--red));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.testi-author small {
  font-size: 12px;
  color: var(--text-light);
}

.testi-stars {
  color: var(--accent);
  font-size: 13px;
}

.testi-indicators button {
  background: var(--border) !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
}

.testi-indicators button.active {
  background: var(--primary) !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* =========================================
   FAQs
   ========================================= */
.faq-cta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 20px;
}

.faq-cta-box i {
  font-size: 24px;
  color: var(--green);
}

.faq-cta-box strong {
  display: block;
  font-size: 13px;
  color: var(--dark);
}

.faq-cta-box a {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.faq-cta-box a:hover {
  color: var(--green);
}

.faq-item {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px !important;
  overflow: hidden;
}

.faq-btn {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark) !important;
  background: var(--white) !important;
  padding: 18px 20px;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--bg-light) !important;
}

.faq-body {
  font-size: 14.5px;
  color: var(--text-light);
  padding: 4px 20px 18px;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-info-box {
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
}

.contact-info-box h3 {
  color: var(--white);
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 160, 32, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info-item strong {
  display: block;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14.5px;
  margin: 0;
  opacity: .88;
  line-height: 1.7;
}

.contact-info-item a {
  color: rgba(255, 255, 255, .85);
}

.contact-info-item a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.branch-label {
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
}

.branch-pill {
  background: rgba(232, 160, 32, .15);
  border: 1px solid rgba(232, 160, 32, .3);
  color: #FFD680;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.contact-form-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.spt-input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}

.spt-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 47, 190, .12);
  outline: none;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-success-msg {
  background: linear-gradient(135deg, var(--green), #1E9C50);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
  font-size: 15px;
}

/* Social icons (reusable) */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(123, 47, 190, .1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .52);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.footer-links a i {
  font-size: 10px;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 12px;
  line-height: 1.55;
}

.footer-contact-list li i {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .52);
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 0;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .38);
  margin: 0;
}

.site-footer .social-icons a {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .6);
  border-color: rgba(255, 255, 255, .1);
}

.site-footer .social-icons a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-color: transparent;
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: var(--white) !important;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .28);
  transition: all var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.13);
}

.call-btn {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.whatsapp-btn {
  background: linear-gradient(135deg, #128C7E, #25D366);
}

.float-label {
  position: absolute;
  right: 66px;
  background: var(--dark-2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-btn:hover .float-label {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 20px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 1050;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* =========================================
   HOME TUITION SECTION
   ========================================= */
.tuition-section {
  background: var(--white);
}

.tuition-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tuition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.tuition-card:nth-child(1)::before {
  background: linear-gradient(90deg, #7B2FBE, #9B4FDE);
}

.tuition-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0077B6, #00B4D8);
}

.tuition-card:nth-child(3)::before {
  background: linear-gradient(90deg, #D42B2B, #FF5252);
}

.tuition-card:nth-child(4)::before {
  background: linear-gradient(90deg, #E8A020, #FFC107);
}

.tuition-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.tuition-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  color: var(--white);
}

.ibdp-color {
  background: linear-gradient(135deg, #7B2FBE, #9B4FDE);
}

.igcse-color {
  background: linear-gradient(135deg, #0077B6, #00B4D8);
}

.icse-color {
  background: linear-gradient(135deg, #D42B2B, #FF5252);
}

.cbse-color {
  background: linear-gradient(135deg, #E8A020, #FFC107);
}

.tuition-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.ibdp-badge {
  background: rgba(123, 47, 190, .1);
  color: var(--primary);
  border: 1px solid rgba(123, 47, 190, .25);
}

.igcse-badge {
  background: rgba(0, 119, 182, .1);
  color: #0077B6;
  border: 1px solid rgba(0, 119, 182, .25);
}

.icse-badge {
  background: rgba(212, 43, 43, .1);
  color: var(--red);
  border: 1px solid rgba(212, 43, 43, .25);
}

.cbse-badge {
  background: rgba(232, 160, 32, .12);
  color: var(--accent-dark);
  border: 1px solid rgba(232, 160, 32, .3);
}

.tuition-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.tuition-full {
  font-size: 11.5px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 30px;
}

.tuition-desc {
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.65;
  text-align: left;
}

.tuition-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.tuition-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  font-weight: 500;
}

.tuition-list li:last-child {
  border-bottom: none;
}

.tuition-list li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Strip */
.tuition-cta-strip {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.tuition-cta-strip h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tuition-cta-strip p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin: 0;
}

.btn-accent-spt {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--dark) !important;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 18px rgba(232, 160, 32, .35);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-accent-spt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, .45);
}

.btn-whatsapp-spt {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-whatsapp-spt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
}

.cu-lg-wdth {
  width: 250px;
}

@media (max-width: 767.98px) {
  .tuition-cta-strip {
    padding: 24px 20px;
    text-align: center;
  }

  .tuition-cta-strip .col-md-4 {
    text-align: center !important;
    margin-top: 16px;
  }

  .tuition-name {
    font-size: 1.7rem;
  }
}

/* =========================================
   SCROLLED HEADER
   ========================================= */
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(15, 7, 40, .14);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 68px 0;
  }

  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
  }

  .about-float-card {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .cu-ds-nn {
    display: none !important
  }

  .cu-jf-cntre {
    justify-content: center !important
  }

  .section-pad {
    padding: 52px 0;
    overflow-x: hidden;
  }

  #heroCarousel,
  .hero-slide {
    height: 88vh;
    min-height: 520px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-desc {
    font-size: 14.5px;
  }

  .about-float-card {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }

  .gallery-item img {
    height: 155px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 24px 18px;
  }

  .float-label {
    display: none;
  }

  .why-highlight-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .service-img {
    /*height: 175px;*/
  }

  .step-card {
    padding: 34px 16px 22px;
  }

  .testimonial-card {
    padding: 22px 16px 18px;
  }
}

@media(max-width:374px) {
  .cu-lg-wdth {
    width: 220px;
  }
}