/* =============================================
   BCA EDUCATION – style.css
   Color: #525FE1 (primary) | #F86F03 (orange) | White bg
============================================= */

:root {
   --primary: #525FE1;
   --primary-dark: #3a4bc9;
   --primary-light: #eef0fd;
   --orange: #F86F03;
   --orange-light: #fff4ec;
   --white: #ffffff;
   --text-dark: #1a1a2e;
   --text-body: #4a4a6a;
   --text-muted: #8888aa;
   --border-color: #e8eaf6;
   --shadow-sm: 0 2px 12px rgba(82, 95, 225, 0.08);
   --shadow-md: 0 8px 32px rgba(82, 95, 225, 0.13);
   --shadow-lg: 0 16px 48px rgba(82, 95, 225, 0.18);
   --radius: 14px;
   --radius-sm: 8px;
   --transition: all 0.3s ease;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Poppins', sans-serif;
   color: var(--text-body);
   background: var(--white);
   overflow-x: hidden;
   line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
   font-family: 'Poppins', sans-serif;
   color: var(--text-dark);
   font-weight: 700;
}

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

img {
   max-width: 100%;
}

/* ---- Utility ---- */
.text-accent {
   color: var(--primary) !important;
}

.text-accent2 {
   color: var(--orange) !important;
}

.text-primary-custom {
   color: var(--primary) !important;
}

.text-orange {
   color: var(--orange);
}

.bg-white {
   background: var(--white) !important;
}

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

.section-label {
   display: inline-block;
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--primary);
   background: var(--primary-light);
   padding: 5px 18px;
   border-radius: 50px;
   margin-bottom: 16px;
}

.section-label.testi-label {
   color: var(--primary);
   background: rgba(82, 95, 225, 0.12);
}

.section-title {
   font-size: clamp(1.7rem, 3vw, 2.5rem);
   font-weight: 800;
   color: var(--text-dark);
   line-height: 1.2;
   margin-bottom: 16px;
}

.section-sub {
   font-size: 1rem;
   color: var(--text-muted);
   max-width: 580px;
   margin: 0 auto;
}

/* ============================================
   SECTION BACKGROUNDS — alternating gradients
============================================= */

/* Programs — soft peach+lavender (like reference) */
.bg-programs-gradient {
   background: linear-gradient(135deg, #fdf0e8 0%, #f0ecfb 50%, #e8f0ff 100%);
}

/* Instructors — cool blue-lavender */
.bg-instructors-gradient {
   background: linear-gradient(135deg, #eef0fd 0%, #f0f4ff 60%, #e8eeff 100%);
}

/* Placed Students — warm peach-orange tint */
.bg-placed-gradient {
   background: linear-gradient(135deg, #fff4ec 0%, #ffeee0 50%, #fff8f0 100%);
}

/* Testimonials — exact reference: peach left → lavender right */
.bg-testi-gradient {
   background: linear-gradient(120deg, #fde8d8 0%, #f5eef8 45%, #e8ecff 100%);
}

/* Stats — deep primary bg for contrast */
.bg-stats-gradient {
   background: linear-gradient(135deg, var(--primary) 0%, #3a4bc9 60%, #2d3ab0 100%);
}

/* Contact — soft lavender-blue */
.bg-contact-gradient {
   background: linear-gradient(135deg, #f0f2ff 0%, #eef4ff 100%);
}

/* ============================================
   BUTTONS
============================================= */
.btn-primary-custom {
   background: var(--primary);
   color: var(--white) !important;
   border: 2px solid var(--primary);
   border-radius: 50px;
   padding: 12px 32px;
   font-weight: 600;
   font-size: 0.92rem;
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 8px;
}

.btn-primary-custom:hover {
   background: var(--orange);
   border-color: var(--orange);
   color: var(--white) !important;
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(248, 111, 3, 0.35);
}

.btn-outline-custom {
   background: transparent;
   color: var(--white) !important;
   border: 2px solid rgba(255, 255, 255, 0.7);
   border-radius: 50px;
   padding: 12px 32px;
   font-weight: 600;
   font-size: 0.92rem;
   transition: var(--transition);
}

.btn-outline-custom:hover {
   background: var(--white);
   color: var(--primary) !important;
   border-color: var(--white);
}

/* ============================================
   TOP BAR
============================================= */
.top-bar {
   background: var(--text-dark);
   color: rgba(255, 255, 255, 0.85);
   font-size: 0.8rem;
   padding: 8px 0;
}

.top-bar span {
   display: flex;
   align-items: center;
   gap: 4px;
}

.top-bar-right {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: 8px;
   flex-wrap: wrap;
}

.top-bar-right a {
   color: rgba(255, 255, 255, 0.85);
   display: flex;
   align-items: center;
   gap: 4px;
   font-size: 0.78rem;
}

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

.top-bar-right .divider {
   color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   HEADER
============================================= */
.site-header {
   background: var(--white);
   box-shadow: 0 2px 20px rgba(82, 95, 225, 0.1);
   z-index: 1000;
}

.navbar {
   padding: 14px 0;
}

.navbar-toggler {
   border: 2px solid var(--primary);
   border-radius: var(--radius-sm);
   padding: 5px 10px;
}

.navbar-toggler-icon {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23525FE1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-logo {
   display: flex;
   align-items: center;
   gap: 12px;
}

.brand-icon {
   width: 46px;
   height: 46px;
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   color: var(--white);
   box-shadow: 0 4px 16px rgba(82, 95, 225, 0.35);
}

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

.brand-name {
   font-size: 1.22rem;
   font-weight: 800;
   color: var(--primary);
   letter-spacing: -0.3px;
}

.brand-tagline {
   font-size: 0.68rem;
   font-weight: 500;
   color: var(--orange);
   letter-spacing: 1px;
   text-transform: uppercase;
}

.nav-link {
   font-weight: 500;
   font-size: 0.9rem;
   color: var(--text-dark) !important;
   padding: 8px 16px !important;
   border-radius: 8px;
   transition: var(--transition);
}

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

/* ============================================
   HERO
============================================= */
.hero-section {
   position: relative;
}

.hero-slide {
   position: relative;
   min-height: 92vh;
   display: flex;
   align-items: center;
}

.hero-bg-img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(100deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.4) 100%);
   z-index: 1;
}

.hero-content {
   position: relative;
   z-index: 2;
}

.min-vh-80 {
   min-height: 80vh;
}

.hero-badge {
   display: inline-block;
   background: var(--orange);
   color: var(--white);
   font-size: 0.8rem;
   font-weight: 600;
   padding: 6px 20px;
   border-radius: 50px;
   margin-bottom: 20px;
}

.hero-title {
   font-size: clamp(2.2rem, 5vw, 3.8rem);
   font-weight: 800;
   color: var(--white);
   line-height: 1.15;
   margin-bottom: 20px;
}

.hero-desc {
   font-size: 1.08rem;
   color: rgba(255, 255, 255, 0.88);
   margin-bottom: 36px;
   max-width: 520px;
}

.hero-btns {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.carousel-control-prev,
.carousel-control-next {
   width: 52px;
   height: 52px;
   background: rgba(255, 255, 255, 0.18);
   border-radius: 50%;
   top: 50%;
   transform: translateY(-50%);
   backdrop-filter: blur(8px);
   border: 1px solid rgba(255, 255, 255, 0.25);
   opacity: 0.9;
   transition: var(--transition);
}

.carousel-control-prev {
   left: 20px;
}

.carousel-control-next {
   right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
   background: var(--primary);
   opacity: 1;
}

.carousel-indicators [data-bs-target] {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.55);
   border: none;
   transition: var(--transition);
}

.carousel-indicators .active {
   width: 28px;
   border-radius: 4px;
   background: var(--orange);
}

/* ============================================
   MARQUEE
============================================= */
.marquee-section {
   background: var(--primary-light);
   border-top: 1px solid var(--border-color);
   border-bottom: 1px solid var(--border-color);
   overflow: hidden;
   padding: 14px 0;
}

.marquee-wrapper {
   overflow: hidden;
}

.marquee-track {
   display: flex;
   gap: 60px;
   white-space: nowrap;
   animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
   font-size: 0.88rem;
   font-weight: 600;
   color: var(--primary);
   flex-shrink: 0;
}

@keyframes marqueeScroll {
   from {
      transform: translateX(0);
   }

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

.marquee-section:hover .marquee-track {
   animation-play-state: paused;
}

/* ============================================
   ABOUT
============================================= */
.about-img-wrap {
   position: relative;
   display: inline-block;
   width: 100%;
}

.about-main-img {
   border-radius: 20px;
   object-fit: cover;
   width: 100%;
   height: 440px;
   box-shadow: var(--shadow-lg);
}

.about-badge-box {
   position: absolute;
   bottom: 28px;
   right: -20px;
   background: var(--orange);
   color: var(--white);
   border-radius: 16px;
   padding: 20px 24px;
   text-align: center;
   box-shadow: 0 8px 32px rgba(248, 111, 3, 0.4);
}

.about-years {
   display: block;
   font-size: 2.8rem;
   font-weight: 800;
   line-height: 1;
}

.about-years-text {
   font-size: 0.78rem;
   font-weight: 600;
   opacity: 0.9;
}

.about-lead {
   font-size: 1.08rem;
   font-weight: 600;
   color: var(--text-dark);
   margin-bottom: 16px;
}

.about-body {
   font-size: 0.95rem;
   color: var(--text-body);
   margin-bottom: 14px;
}

.about-feature {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.88rem;
   font-weight: 500;
   color: var(--text-dark);
   background: var(--primary-light);
   padding: 10px 16px;
   border-radius: 50px;
}

/* ============================================
   PROGRAMS
============================================= */
.program-card {
   background: var(--white);
   border: 1.5px solid var(--border-color);
   border-radius: var(--radius);
   padding: 28px 24px;
   height: 100%;
   transition: var(--transition);
   position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column;
}

.program-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: var(--primary);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s ease;
}

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

.program-card:hover::before {
   transform: scaleX(1);
}

.program-card-featured {
   border-color: var(--primary);
   background: linear-gradient(160deg, #f0f2ff 0%, var(--white) 100%);
}

.program-card-featured::before {
   transform: scaleX(1);
}

.program-icon {
   width: 52px;
   height: 52px;
   background: var(--primary-light);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--primary);
   margin-bottom: 16px;
   transition: var(--transition);
}

.program-card:hover .program-icon {
   background: var(--primary);
   color: var(--white);
}

.program-img-wrap {
   width: 100%;
   height: 160px;
   border-radius: var(--radius-sm);
   overflow: hidden;
   margin-bottom: 16px;
}

.program-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
}

.program-card:hover .program-img {
   transform: scale(1.06);
}

.program-title {
   font-size: 1.18rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 8px;
}

.program-full {
   font-size: 0.85rem;
   color: var(--text-muted);
   margin-bottom: 12px;
   flex: 1;
}

.program-mode {
   display: inline-flex;
   align-items: center;
   font-size: 0.78rem;
   font-weight: 600;
   color: var(--primary);
   background: var(--primary-light);
   padding: 4px 14px;
   border-radius: 50px;
   margin-bottom: 16px;
}

.program-links {
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.program-link {
   font-size: 0.83rem;
   font-weight: 600;
   color: var(--orange);
}

.program-link:hover {
   color: var(--primary);
   text-decoration: underline;
}

.program-link-sec {
   font-size: 0.83rem;
   font-weight: 500;
   color: var(--text-muted);
}

.program-link-sec:hover {
   color: var(--primary);
}

/* ============================================
   WHY CHOOSE US
============================================= */
.feature-card {
   display: flex;
   gap: 20px;
   background: var(--white);
   border: 1.5px solid var(--border-color);
   border-radius: var(--radius);
   padding: 28px 24px;
   height: 100%;
   transition: var(--transition);
}

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

.feature-icon-wrap {
   width: 56px;
   height: 56px;
   background: var(--orange-light);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.6rem;
   color: var(--orange);
   flex-shrink: 0;
   transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
   background: var(--orange);
   color: var(--white);
}

.feature-content h3 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 10px;
}

.feature-content p {
   font-size: 0.88rem;
   color: var(--text-body);
   margin: 0;
   line-height: 1.75;
}

/* ============================================
   INSTRUCTORS
============================================= */
.instructor-card {
   background: var(--white);
   border: 1.5px solid var(--border-color);
   border-radius: var(--radius);
   overflow: hidden;
   transition: var(--transition);
   text-align: center;
}

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

.instructor-img-wrap {
   position: relative;
   overflow: hidden;
   height: 240px;
}

.instructor-img {
   width: 80%;
   height: 100%;
   transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-img {
   transform: scale(1.06);
}

.instructor-overlay {
   position: absolute;
   inset: 0;
   background: rgba(82, 95, 225, 0.6);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: var(--transition);
}

.instructor-card:hover .instructor-overlay {
   opacity: 1;
}

.instructor-link {
   width: 44px;
   height: 44px;
   background: var(--white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   font-size: 1.1rem;
   transform: translateY(12px);
   transition: var(--transition);
}

.instructor-card:hover .instructor-link {
   transform: translateY(0);
}

.instructor-info {
   padding: 20px;
}

.instructor-info h4 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 6px;
}

.instructor-info p {
   font-size: 0.83rem;
   color: var(--text-muted);
   margin: 0;
}

.carousel-ctrl-btn {
   background: none;
   border: none;
   font-size: 2.2rem;
   color: var(--primary);
   margin: 0 10px;
   transition: var(--transition);
   cursor: pointer;
}

.carousel-ctrl-btn:hover {
   color: var(--orange);
   transform: scale(1.15);
}

.orange-ctrl {
   color: var(--orange);
}

.orange-ctrl:hover {
   color: var(--primary);
}

/* ============================================
   GALLERY
============================================= */
.gallery-item {
   position: relative;
   overflow: hidden;
   border-radius: var(--radius);
   cursor: pointer;
}

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

.gallery-overlay {
   position: absolute;
   inset: 0;
   background: rgba(82, 95, 225, 0.55);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: var(--transition);
   font-size: 2rem;
   color: var(--white);
}

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

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

/* ============================================
   PLACED STUDENTS
============================================= */
.placed-card {
   border-color: rgba(248, 111, 3, 0.2);
}

.placed-card:hover {
   border-color: var(--orange);
   box-shadow: 0 8px 32px rgba(248, 111, 3, 0.18);
}

.placed-card .instructor-overlay {
   background: rgba(248, 111, 3, 0.55);
}

.placed-badge-overlay {
   position: absolute;
   top: 14px;
   left: 14px;
   z-index: 3;
}

.placed-chip {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   background: var(--orange);
   color: var(--white);
   font-size: 0.74rem;
   font-weight: 700;
   padding: 5px 12px;
   border-radius: 50px;
   box-shadow: 0 3px 12px rgba(248, 111, 3, 0.4);
}

.placed-info {
   padding: 20px;
   text-align: center;
}

.placed-info h4 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 4px;
}

.placed-course {
   font-size: 0.8rem;
   color: var(--primary);
   font-weight: 600;
   margin-bottom: 8px;
}

.placed-company {
   font-size: 0.82rem;
   color: var(--text-muted);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 4px;
}

/* ============================================
   TESTIMONIALS — new card layout (like reference image)
============================================= */
.testi-title {
   color: var(--text-dark);
}

.testi-new-card {
   display: flex;
   align-items: center;
   gap: 36px;
   background: var(--white);
   border: 1.5px solid rgba(82, 95, 225, 0.12);
   border-radius: 20px;
   padding: 40px;
   box-shadow: 0 8px 40px rgba(82, 95, 225, 0.1);
}

.testi-new-left {
   flex-shrink: 0;
}

.testi-photo {
   width: 200px;
   height: 200px;
   border-radius: 16px;
   object-fit: cover;
   box-shadow: 0 8px 24px rgba(248, 111, 3, 0.2);
   border: 3px solid var(--orange);
}

.testi-new-right {
   flex: 1;
}

.testi-stars {
   color: #FFD700;
   font-size: 1rem;
   margin-bottom: 16px;
   display: flex;
   gap: 4px;
}

.testi-text {
   font-size: 1rem;
   color: var(--text-body);
   font-style: italic;
   line-height: 1.85;
   margin-bottom: 22px;
}

.testi-author-row strong {
   display: block;
   color: var(--text-dark);
   font-size: 1rem;
   font-weight: 700;
}

.testi-author-row span {
   color: var(--primary);
   font-size: 0.83rem;
   font-weight: 500;
}

.testi-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: rgba(82, 95, 225, 0.25);
   border: none;
   cursor: pointer;
   margin: 0 5px;
   transition: var(--transition);
   padding: 0;
}

.testi-dot.active,
.testi-dot:hover {
   background: var(--orange);
   width: 28px;
   border-radius: 5px;
}

/* ============================================
   STATS — new card style (on dark primary bg)
============================================= */
.stat-card {
   background: rgba(255, 255, 255, 0.1);
   border: 1.5px solid rgba(255, 255, 255, 0.18);
   border-radius: var(--radius);
   padding: 36px 24px;
   text-align: center;
   transition: var(--transition);
   backdrop-filter: blur(10px);
}

.stat-card:hover {
   background: rgba(255, 255, 255, 0.18);
   transform: translateY(-5px);
   border-color: rgba(255, 255, 255, 0.35);
}

.stat-icon {
   font-size: 2rem;
   color: var(--orange);
   margin-bottom: 12px;
   display: block;
}

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

.stat-plus {
   font-size: 1.6rem;
   font-weight: 800;
   color: var(--orange);
}

.stat-card p {
   font-size: 0.85rem;
   color: rgba(255, 255, 255, 0.75);
   margin-top: 8px;
   margin-bottom: 0;
   font-weight: 500;
}

/* ============================================
   FAQs
============================================= */
.faq-item {
   border: 1.5px solid var(--border-color) !important;
   border-radius: var(--radius) !important;
   margin-bottom: 12px;
   overflow: hidden;
   box-shadow: var(--shadow-sm);
}

.faq-btn {
   font-size: 0.95rem;
   font-weight: 600;
   color: var(--text-dark) !important;
   background: var(--white) !important;
   padding: 18px 24px;
   box-shadow: none !important;
   border: none;
}

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

.faq-btn::after {
   content: '\F282';
   font-family: 'bootstrap-icons';
   font-size: 1rem;
   color: var(--primary);
   flex-shrink: 0;
   margin-left: auto;
   transition: transform 0.3s ease;
   background-image: none;
}

.faq-btn:not(.collapsed)::after {
   transform: rotate(180deg);
}

.faq-body {
   font-size: 0.92rem;
   color: var(--text-body);
   line-height: 1.8;
   padding: 0 24px 20px;
   background: var(--white);
}

/* ============================================
   CONTACT
============================================= */
.contact-info-card {
   background: var(--white);
   border: 1.5px solid var(--border-color);
   border-radius: var(--radius);
   padding: 36px 32px;
   height: 100%;
   box-shadow: var(--shadow-sm);
}

.contact-info-title {
   font-size: 1.4rem;
   font-weight: 800;
   color: var(--primary);
   margin-bottom: 28px;
   padding-bottom: 16px;
   border-bottom: 2px solid var(--border-color);
}

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

.contact-icon {
   width: 44px;
   height: 44px;
   background: var(--primary-light);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   color: var(--primary);
   flex-shrink: 0;
}

.contact-info-item strong {
   display: block;
   font-size: 0.82rem;
   font-weight: 700;
   color: var(--text-muted);
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 4px;
}

.contact-info-item p {
   margin: 0;
   font-size: 0.92rem;
   color: var(--text-dark);
}

.contact-info-item a {
   color: var(--primary);
   font-weight: 500;
}

.contact-info-item a:hover {
   color: var(--orange);
}

.contact-form-card {
   background: var(--white);
   border: 1.5px solid var(--border-color);
   border-radius: var(--radius);
   padding: 36px 32px;
   box-shadow: var(--shadow-sm);
}

.contact-form-title {
   font-size: 1.4rem;
   font-weight: 800;
   color: var(--text-dark);
   margin-bottom: 28px;
   padding-bottom: 16px;
   border-bottom: 2px solid var(--border-color);
}

.contact-input {
   border: 1.5px solid var(--border-color);
   border-radius: 10px;
   padding: 12px 16px;
   font-size: 0.9rem;
   font-family: 'Poppins', sans-serif;
   transition: var(--transition);
   background: var(--white);
}

.contact-input:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(82, 95, 225, 0.12);
   outline: none;
}

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

.map-wrap {
   border-radius: var(--radius);
   overflow: hidden;
   border: 2px solid var(--border-color);
   box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
============================================= */
.site-footer {
   background: #0f1033;
   color: rgba(255, 255, 255, 0.75);
}

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

.footer-brand {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 20px;
}

.footer-brand-icon {
   width: 44px;
   height: 44px;
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   color: var(--white);
}

.footer-brand-name {
   font-size: 1.3rem;
   font-weight: 800;
   color: var(--white);
}

.footer-about {
   font-size: 0.88rem;
   line-height: 1.8;
   color: rgba(255, 255, 255, 0.6);
   margin-bottom: 24px;
}

.footer-social {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
}

.footer-social a {
   width: 38px;
   height: 38px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.7);
   font-size: 1rem;
   transition: var(--transition);
}

.footer-social a:hover {
   background: var(--primary);
   color: var(--white);
   border-color: var(--primary);
   transform: translateY(-3px);
}

.footer-heading {
   font-size: 0.88rem;
   font-weight: 700;
   color: var(--white);
   text-transform: uppercase;
   letter-spacing: 1.5px;
   margin-bottom: 20px;
}

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

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

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

.footer-links a::before {
   content: '›';
   color: var(--primary);
   font-size: 1.1rem;
}

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

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

.footer-contact-list li {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   margin-bottom: 16px;
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list i {
   color: var(--orange);
   font-size: 1rem;
   margin-top: 3px;
   flex-shrink: 0;
}

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

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

.footer-bottom {
   background: rgba(0, 0, 0, 0.3);
   border-top: 1px solid rgba(255, 255, 255, 0.07);
   padding: 18px 0;
   font-size: 0.83rem;
   color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   FLOATING BUTTONS
============================================= */
.float-btn {
   position: fixed;
   bottom: 36px;
   width: 54px;
   height: 54px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   color: var(--white);
   z-index: 9999;
   transition: var(--transition);
   box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.float-whatsapp {
   left: 24px;
   background: #25D366;
}

.float-call {
   right: 24px;
   background: var(--primary);
}

.float-btn:hover {
   transform: scale(1.1) translateY(-4px);
   color: var(--white);
}

.float-whatsapp:hover {
   background: #1da851;
}

.float-call:hover {
   background: var(--orange);
}

.float-tooltip {
   position: absolute;
   bottom: 110%;
   left: 50%;
   transform: translateX(-50%);
   background: rgba(0, 0, 0, 0.8);
   color: var(--white);
   font-size: 0.72rem;
   font-weight: 500;
   padding: 5px 12px;
   border-radius: 6px;
   white-space: nowrap;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s ease;
}

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

/* ============================================
   BACK TO TOP
============================================= */
.back-to-top {
   position: fixed;
   bottom: 36px;
   right: 90px;
   width: 44px;
   height: 44px;
   background: var(--white);
   border: 2px solid var(--primary);
   color: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   cursor: pointer;
   z-index: 9998;
   opacity: 0;
   transform: translateY(20px);
   transition: var(--transition);
   box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
   opacity: 1;
   transform: translateY(0);
}

.back-to-top:hover {
   background: var(--primary);
   color: var(--white);
}

/* ============================================
   ANIMATIONS
============================================= */
.carousel-item.active .hero-badge {
   animation: fadeInUp 0.6s ease 0.2s both;
}

.carousel-item.active .hero-title {
   animation: fadeInUp 0.6s ease 0.4s both;
}

.carousel-item.active .hero-desc {
   animation: fadeInUp 0.6s ease 0.6s both;
}

.carousel-item.active .hero-btns {
   animation: fadeInUp 0.6s ease 0.8s both;
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

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

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

   .about-badge-box {
      right: 10px;
   }

   .testi-new-card {
      flex-direction: column;
      padding: 30px 24px;
      gap: 24px;
   }

   .testi-photo {
      width: 140px;
      height: 140px;
   }
}

@media (max-width: 767px) {
   .section-pad {
      padding: 50px 0;
   }

   .top-bar-right {
      justify-content: center;
      font-size: 0.72rem;
   }

   .hero-slide {
      min-height: 70vh;
   }

   .hero-title {
      font-size: clamp(1.7rem, 7vw, 2.2rem);
   }

   .hero-desc {
      font-size: 0.92rem;
   }

   .hero-btns {
      flex-direction: column;
      gap: 10px;
   }

   .btn-primary-custom,
   .btn-outline-custom {
      width: 100%;
      justify-content: center;
   }

   .about-main-img {
      height: 280px;
   }

   .about-badge-box {
      right: 8px;
      bottom: 12px;
      padding: 12px 16px;
   }

   .about-years {
      font-size: 1.8rem;
   }

   .gallery-img {
      height: 160px;
   }

   .feature-card {
      flex-direction: column;
   }

   .instructor-img-wrap {
      height: 230px;
   }

   .testi-photo {
      width: 110px;
      height: 110px;
   }

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

   .float-btn {
      width: 48px;
      height: 48px;
      font-size: 1.2rem;
   }

   .back-to-top {
      right: 74px;
   }

   .footer-top {
      padding: 48px 0 32px;
   }
}

@media (max-width: 480px) {
   .brand-name {
      font-size: 1rem;
   }

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

   .program-img-wrap {
      height: 200px;
   }

   .gallery-img {
      height: 130px;
   }
}