/* ============================================
   LION'S MIND DEVELOPMENT CENTRE
   Multi-Page Website Stylesheet
   Theme: Orange / Red (5 Colors Max)
   
   Colors:
   1. Primary Orange: #E86425
   2. Primary Red: #C0222A
   3. Dark Black: #1A1A1A
   4. White: #FFFFFF
   5. Light Gray: #F5F5F5
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary-orange: #E86425;
    --primary-orange-dark: #D45A1E;
    --primary-orange-light: #F4874D;
    --primary-red: #C0222A;
    --primary-red-dark: #A01D23;
    --dark-black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --medium-gray: #6C757D;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ---- Global Reset & Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-black);
}

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

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

/* ---- Section Titles ---- */
.section-label {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Breadcrumb ---- */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-gray) 100%);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 100, 37, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(192, 34, 42, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumb-list li a {
    color: var(--primary-orange-light);
}

.breadcrumb-list li a:hover {
    color: var(--white);
}

.breadcrumb-list li.active {
    color: var(--white);
    font-weight: 500;
}

/* ============================================
   1. NAVBAR STYLES
============================================ */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 1040;
}

.navbar.scrolled {
    background: var(--dark-black);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 0.6rem;
}

.brand-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.brand-sub {
    display: block;
    font-size: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-call-now {
    background: var(--primary-orange);
    color: var(--white) !important;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-call-now:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 100, 37, 0.4);
}

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

/* ============================================
   2. HERO SECTION STYLES
============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-gray) 50%, #3A2A20 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(232, 100, 37, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(192, 34, 42, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    background: rgba(232, 100, 37, 0.2);
    color: var(--primary-orange-light);
    border: 1px solid rgba(232, 100, 37, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 100, 37, 0.4);
    color: var(--white);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--dark-black);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-trust {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.trust-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-item i {
    color: var(--primary-orange);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 400px;
}

.illustration-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark-black);
    animation: float 3s ease-in-out infinite;
}

.illustration-card i {
    font-size: 1.5rem;
}

.illustration-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.illustration-card.card-1 i {
    color: var(--primary-orange);
}

.illustration-card.card-2 {
    top: 35%;
    right: 5%;
    animation-delay: 0.5s;
}

.illustration-card.card-2 i {
    color: var(--primary-red);
}

.illustration-card.card-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
}

.illustration-card.card-3 i {
    color: var(--primary-orange);
}

.illustration-card.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

.illustration-card.card-4 i {
    color: var(--primary-red);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   3. CAROUSEL SECTION STYLES
============================================ */
.carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-section .carousel {
    position: relative;
}

.hero-split { min-height: 80vh; }
.punchline-col { position: relative; overflow: hidden; }
.punchline-bg { position: relative; height: 100%; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.punchline-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.punchline-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,107,53,0.85) 0%, rgba(192,34,42,0.85) 100%); z-index: 1; }
.punchline-content { position: relative; z-index: 2; padding: 3rem 2rem; text-align: center; color: #fff; }
.punchline-content h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.punchline-content p { font-size: 1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.punchline-content .btn-orange { background: #fff; color: var(--primary-orange); border: none; }
.punchline-content .btn-orange:hover { background: var(--dark-gray); color: #fff; }

.carousel-col { position: relative; }

@media (max-width: 991.98px) {
    .hero-split { flex-direction: column; }
    .punchline-col, .carousel-col { width: 100% !important; }
    .punchline-bg { min-height: 300px; }
}

.carousel-slide-bg {
    width: 100%;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.carousel-slide-bg img.carousel-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.carousel-caption-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    color: var(--white);
    margin-bottom: 3rem;
}

.carousel-caption-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b35, #ff9a5c, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: captionFadeUp 0.8s ease forwards;
}

.carousel-caption-content p {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.7;
    animation: captionFadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes captionFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    border: none;
    opacity: 0.5;
    transition: var(--transition);
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    margin: 0 20px;
}

.carousel-section:hover .carousel-control-prev,
.carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

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

/* ============================================
   4. HOME HIGHLIGHTS SECTION
============================================ */
.home-highlights-section {
    background: linear-gradient(180deg, #fffaf7 0%, var(--white) 100%);
}

.programs-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(232, 100, 37, 0.12);
}

.programs-title {
    margin-bottom: 1rem;
}

.programs-intro {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 620px;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.program-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.program-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.35rem;
}

.program-item p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.program-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(232, 100, 37, 0.1);
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.notice-board-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(192, 34, 42, 0.14);
    border: 1px solid rgba(192, 34, 42, 0.2);
}

.notice-board-header {
    background: linear-gradient(135deg, #ef3340 0%, var(--primary-red) 100%);
    padding: 1.25rem 1.5rem;
}

.notice-board-header h3 {
    color: var(--white);
    font-size: 1.45rem;
    margin: 0;
    text-transform: uppercase;
}

.notice-board-body {
    padding: 1.5rem;
}

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

.notice-list li {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 0.75rem;
    align-items: start;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

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

.notice-list i {
    color: var(--primary-red);
    margin-top: 0.15rem;
}

.notice-list span {
    color: var(--dark-gray);
    font-size: 0.96rem;
    line-height: 1.7;
}

.notice-list a,
.notice-board-footer a {
    color: #ef3340;
    font-weight: 600;
}

.notice-list a:hover,
.notice-board-footer a:hover {
    color: var(--primary-orange);
}

.notice-board-footer {
    text-align: right;
    padding-top: 0.5rem;
}

.vision-mission-wrap {
    margin-top: 2.5rem;
}

.vision-mission-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vision-mission-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(232, 100, 37, 0.14) 0%, rgba(192, 34, 42, 0.14) 100%);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vision-mission-card h3 {
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.vision-mission-card p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ============================================
   5. STATS SECTION STYLES
============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    position: relative;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 1.5rem;
    color: var(--white);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   4. ABOUT SECTION STYLES
============================================ */
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img.about-image-real {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-text {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-feature {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-feature i {
    color: var(--primary-orange);
}

/* ============================================
   5. COURSES SECTION STYLES
============================================ */
.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}
.course-card .course-badges {
    display: flex;
    gap: 6px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}
.course-card .badge-online, .course-card .badge-offline {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}
.course-card .badge-online { background: #0dcaf0; }
.course-card .badge-offline { background: var(--primary-orange); }

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    font-size: 2rem;
}

.course-body {
    padding: 1.5rem;
}

.course-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.course-desc {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-features li {
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-features li i {
    color: var(--primary-orange);
    font-weight: bold;
}

.course-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.course-link:hover {
    color: var(--primary-red);
    gap: 0.6rem;
}

/* ============================================
   6. FEATURES / WHY CHOOSE US STYLES
============================================ */
.feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 1.75rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   7. TRAINER / FOUNDER SECTION STYLES
============================================ */
.trainer-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trainer-avatar {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 8px 32px rgba(232, 100, 37, 0.3);
}

.trainer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
}

.trainer-role {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.trainer-bio {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.qual-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qual-title i {
    color: var(--primary-orange);
}

.qual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.qual-badge {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.qual-badge:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.t-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 120px;
}

.t-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Playfair Display', serif;
}

.t-stat-label {
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* ============================================
   8. DURATION / DETAILS SECTION STYLES
============================================ */
.duration-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
}

.duration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.duration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.duration-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 0.25rem;
}

.duration-label {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   9. TESTIMONIALS SECTION STYLES
============================================ */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: rgba(232, 100, 37, 0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.testimonial-stars i {
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--medium-gray);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar i {
    font-size: 2.5rem;
    color: var(--medium-gray);
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   ADVANCED TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    position: relative;
    background: #0f0f1a; /* Dark premium background */
    /* padding: 5rem 0; */
    overflow: hidden;
    color: #fff;
}

/* Floating Background Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: floatShape 10s infinite alternate ease-in-out;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary-orange); top: -50px; left: -100px; }
.shape-2 { width: 200px; height: 200px; background: #d32f2f; bottom: 50px; right: -50px; animation-delay: -2s; }
.shape-3 { width: 150px; height: 150px; background: #f59e0b; top: 40%; right: 40%; animation-delay: -5s; opacity: 0.2; }
.shape-4 { width: 100px; height: 100px; background: var(--primary-orange); bottom: -30px; left: 30%; animation-delay: -8s; opacity: 0.3; }

@keyframes floatShape {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 30px); }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-orange);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.highlight-text {
    background: linear-gradient(90deg, var(--primary-orange), #ff9a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Availability Badges */
.availability-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.avail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}
.avail-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}
.avail-item:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--primary-orange);
}

/* Pulse Button */
.btn-cta-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #0f0f1a;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
}
.btn-cta-pulse:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* Advanced Card */
.testimonial-wrapper {
    position: relative;
    z-index: 10;
    perspective: 1000px;
}

.testimonial-card-pro {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Animated Top Progress Bar */
.progress-bar-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff9a5c);
    z-index: 2;
    transform-origin: left;
    animation: progressTimer 3s linear infinite;
}

@keyframes progressTimer {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.quote-mark {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 6rem;
    color: var(--primary-orange);
    opacity: 0.15;
    line-height: 1;
    font-family: serif;
}

.card-body-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
}
.stars i { margin-right: 3px; }

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.reviewer-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.5);
}
.reviewer-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}

.reviewer-details .name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.reviewer-details .role {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 500;
}

/* Navigation */
.nav-arrow {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}
.nav-arrow:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}
.testimonial-wrapper .carousel-control-prev,
.testimonial-wrapper .carousel-control-next {
    width: 40px; opacity: 1; top: 50%; transform: translateY(-50%);
}
.testimonial-wrapper .carousel-control-prev { left: -25px; }
.testimonial-wrapper .carousel-control-next { right: -25px; }

/* Responsive */
@media (max-width: 991.98px) {
    .testimonials-section { text-align: center; padding-bottom: 4rem; }
    .testimonial-wrapper .carousel-control-prev,
    .testimonial-wrapper .carousel-control-next {
        display: none; /* Hide arrows on mobile, rely on swipe/auto */
    }
    .testimonial-card-pro { min-height: 320px; margin-bottom: 2rem; }
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    opacity: 0.5;
}
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}
#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover { opacity: 0.8; }

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

.gallery-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, #E8E8E8 100%);
    padding: 2.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.gallery-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--medium-gray);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
}

.gallery-item:hover .gallery-placeholder i,
.gallery-item:hover .gallery-placeholder span {
    color: var(--white);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--light-gray);
}

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

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

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

/* Video Card */
.video-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.video-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.video-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--dark-black);
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img {
    transform: scale(1.05);
}
.video-placeholder-default {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-gray) 100%);
}
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.video-play-icon i {
    font-size: 2.5rem;
    color: var(--white);
    background: var(--primary-orange);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.video-card:hover .video-play-icon i {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(232, 100, 37, 0.5);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-gray) 100%);
    padding: 3rem;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.video-placeholder i.play-icon {
    font-size: 3rem;
    color: var(--white);
    background: var(--primary-orange);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-placeholder:hover i.play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(232, 100, 37, 0.5);
}

.video-title {
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* ============================================
   11. CONTACT SECTION STYLES
============================================ */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--dark-black);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-whatsapp-lg {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp-lg:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 100, 37, 0.4);
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}
.form-check-label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.form-check-label i {
    color: var(--primary-orange);
}
.batch-selection {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
}

.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 100, 37, 0.15);
}

.btn-submit {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 100, 37, 0.4);
    color: var(--white);
}

.map-placeholder {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 0, 0, 0.1);
}

.map-content {
    text-align: center;
    color: var(--medium-gray);
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.map-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   12. AWARDS SECTION STYLES
============================================ */
.award-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.award-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    background: var(--light-gray);
}

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

.award-card:hover .award-card-img img {
    transform: scale(1.05);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 2rem;
}

.award-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-desc {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.award-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
    cursor: pointer;
    position: relative;
}
.award-img-wrapper::after {
    content: '\F20C';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 2.5rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 2;
    pointer-events: none;
}
.award-img-wrapper:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.award-img-wrapper:hover {
    transform: translateY(-5px);
}
.award-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.award-img-wrapper:hover::before {
    opacity: 1;
}
.award-img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.award-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Award Modal Styles */
#awardImageModal .modal-content {
    background: transparent;
}
#awardImageModal .modal-body {
    display: flex;
    justify-content: center;
}
#awardImageModal .modal-body img {
    max-height: 90vh;
    width: auto;
    max-width: 100%;
}

.award-text-content {
    padding: 1rem;
}
.award-item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.award-item-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    border-radius: 2px;
}
.award-item-desc {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .award-img-wrapper {
        margin-bottom: 1rem;
    }
    .award-img-wrapper img {
        height: 250px;
    }
    .award-item-title {
        font-size: 1.4rem;
    }
    .award-item-desc {
        font-size: 1rem;
    }
    .award-text-content {
        padding: 0;
    }
}
}

.award-year {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-orange);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* ============================================
   13. PDF SECTION STYLES
============================================ */
.pdf-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pdf-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
}

.pdf-header i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.pdf-body {
    padding: 1.5rem;
}

.pdf-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pdf-meta {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.btn-download {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    justify-content: center;
}

.btn-download:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* PDF Category Tabs */
.pdf-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pdf-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pdf-tab:hover,
.pdf-tab.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

/* ============================================
   14. FAQ SECTION STYLES
============================================ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question i {
    transition: var(--transition);
    color: var(--primary-orange);
}

.faq-item.show .faq-question {
    color: var(--primary-orange);
}

.faq-item.show .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-item.show .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

/* ============================================
   15. FOUNDER DESK SECTION STYLES
============================================ */
.founder-desk {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.founder-desk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-orange), var(--primary-red));
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.founder-quote {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.founder-signature-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.founder-signature-name {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.founder-signature-role {
    color: var(--primary-orange);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   16. CTA SECTION STYLES
============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 100, 37, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Batch Badges in CTA */
.cta-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}
.cta-badge i { color: var(--primary-orange); }

/* Batch Info Badges (Index Courses Section) */
.batch-info-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.batch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.batch-badge.online {
    background: rgba(13, 202, 240, 0.1);
    color: #0aa2c0;
    border: 1px solid rgba(13, 202, 240, 0.3);
}
.batch-badge.offline {
    background: rgba(232, 100, 37, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(232, 100, 37, 0.3);
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 100, 37, 0.4);
    color: var(--white);
}

/* ============================================
   17. FOOTER STYLES
============================================ */
.footer-section {
    background: var(--dark-black);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Footer Wave Animation */
.footer-wave-container {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.footer-wave-container svg {
    display: block;
    width: 100%;
    height: 60px;
}
.footer-wave {
    fill: var(--dark-black);
    animation: waveMotion 8s ease-in-out infinite;
}
@keyframes waveMotion {
    0%, 100% { d: path("M0,64 C360,120 720,0 1080,64 C1260,96 1380,80 1440,64 L1440,120 L0,120 Z"); }
    50% { d: path("M0,80 C360,20 720,100 1080,40 C1260,20 1380,70 1440,80 L1440,120 L0,120 Z"); }
}

/* Footer Main */
.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

/* Footer Title with Glow */
.footer-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.footer-title i {
    color: var(--primary-orange);
    animation: titlePulse 2s ease-in-out infinite;
}
@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.title-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: radial-gradient(circle, rgba(232, 100, 37, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}
.social-icon::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: var(--primary-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}
.social-icon:hover::before {
    width: 100%; height: 100%;
    border-radius: 12px;
}
.social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(232, 100, 37, 0.3);
}
.social-icon i {
    position: relative;
    z-index: 1;
}

/* Footer Mini Stats */
.footer-stats-mini {
    display: flex;
    gap: 1.5rem;
}
.mini-stat {
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.mini-stat:hover {
    background: rgba(232, 100, 37, 0.1);
    border-color: rgba(232, 100, 37, 0.3);
    transform: translateY(-3px);
}
.mini-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}
.mini-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Headings */
.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.footer-col-animate:hover .footer-heading::after {
    width: 60px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}
.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }
.footer-links li:nth-child(5) { animation-delay: 0.5s; }
.footer-links li:nth-child(6) { animation-delay: 0.6s; }
.footer-links li:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.footer-links a i {
    font-size: 0.65rem;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}
.footer-links a:hover i {
    color: var(--primary-orange);
    transform: translateX(3px);
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}
.footer-links a:hover::after {
    width: 100%;
}

/* Footer Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}
.footer-contact-info li:hover {
    transform: translateX(5px);
}
.footer-contact-info li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-top: 3px;
    animation: iconBounce 2s ease-in-out infinite;
}
@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.footer-contact-info a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}
.footer-contact-info a:hover {
    color: var(--white);
}

/* Call Button */
.btn-call-footer {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-call-footer::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-call-footer:hover::before {
    left: 100%;
}
.btn-call-footer:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 100, 37, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}
.footer-brand-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-top: 1rem;
    position: relative;
}
.footer-img-name{
    position: relative;
    top: 10px;
}
.footer-dev-logo {
    height: 22px;
    width: auto;
    /* margin-right: 8px; */
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
    top: 5px;
}
.footer-credit a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    padding: 4px 0;
}
.footer-dev-name {
    position: relative;
    top: 5px;
}
.footer-visitor-subtle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    font-family: monospace;
    pointer-events: none;
    user-select: none;
}
.footer-credit a:hover .footer-dev-logo {
    transform: scale(1.05);
}
.footer-credit a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-heart-pulse {
    animation: heartPulse 1.5s ease-in-out infinite;
    display: inline-block;
}
@keyframes heartPulse {
    0%, 100% { transform: scale(1); color: #e74c3c; }
    50% { transform: scale(1.3); color: #ff6b35; }
}

/* Footer Column Animations */
.footer-col-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: colFadeIn 0.6s ease forwards;
}
.footer-col-animate:nth-child(1) { animation-delay: 0.1s; }
.footer-col-animate:nth-child(2) { animation-delay: 0.2s; }
.footer-col-animate:nth-child(3) { animation-delay: 0.3s; }
.footer-col-animate:nth-child(4) { animation-delay: 0.4s; }

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
    overflow: hidden;
}
.scroll-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    border-radius: 14px;
    border: 2px solid var(--primary-orange);
    animation: scrollPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes scrollPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}
.scroll-top.active {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 100, 37, 0.4);
}

/* ============================================
   FOUNDER PROFILE SECTION
============================================ */
.founder-profile-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.founder-profile-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,100,37,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.founder-circle-wrapper {
    position: relative;
    display: inline-block;
}
.founder-circle {
    width: 280px; height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.founder-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
.founder-circle-ring,
.founder-circle-ring.ring-delay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 2px dashed rgba(232,100,37,0.25);
    animation: ringRotate 20s linear infinite;
}
.founder-circle-ring.ring-delay {
    width: 320px; height: 320px;
    animation-direction: reverse;
    animation-duration: 25s;
    border-color: rgba(232,100,37,0.15);
}
@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.founder-badge {
    position: absolute;
    bottom: 10px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(232,100,37,0.4);
    white-space: nowrap;
}
.founder-section-label {
    display: inline-block;
    background: rgba(232,100,37,0.1);
    color: var(--primary-orange);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.founder-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.founder-role-tag {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.founder-role-tag::after {
    content: '';
    display: block;
    width: 40px; height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    margin-top: 6px;
}
.founder-content {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.founder-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a5a;
    margin-bottom: 1.25rem;
}
.founder-sub-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.founder-sub-heading i {
    color: var(--primary-orange);
}
.qual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.qual-badge {
    background: #f0f2f5;
    color: #5a5a6a;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.qual-badge.highlight {
    background: var(--primary-orange);
    color: #fff;
}
.qual-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.t-stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(232,100,37,0.06);
    border-radius: 12px;
    border: 1px solid rgba(232,100,37,0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}
.t-stat:hover {
    background: rgba(232,100,37,0.12);
    transform: translateY(-3px);
}
.t-stat-num {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}
.t-stat-label {
    display: block;
    font-size: 0.7rem;
    color: #8a8a9a;
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-founder-read-more {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-founder-read-more:hover {
    background: var(--primary-orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,100,37,0.35);
}
.btn-founder-read-more i {
    transition: transform 0.3s ease;
}
.btn-founder-read-more:hover i {
    transform: translateX(4px);
}
.btn-founder-connect {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-founder-connect:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

@media (max-width: 991.98px) {
    .founder-circle {
        width: 220px; height: 220px;
    }
    .founder-circle-ring { width: 240px; height: 240px; }
    .founder-circle-ring.ring-delay { width: 260px; height: 260px; }
    .founder-section-title { font-size: 1.75rem; }
    .founder-content { padding: 1.5rem; }
    .founder-circle-wrapper { margin-bottom: 2rem; }
}

/* ============================================
   18. BUTTONS
============================================ */
.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-orange:hover {
    background: var(--primary-orange);
    color: var(--white);
}
.btn-orange {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-orange:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 100, 37, 0.4);
}

/* ============================================
   20. RESPONSIVE STYLES
============================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

    .hero-illustration {
        display: none;
    }

    .navbar-collapse {
        background: var(--dark-black);
        padding: 1rem;
        border-radius: var(--radius-sm);
        margin-top: 0.5rem;
    }

    .btn-call-now {
        margin-top: 0.5rem;
    }

    .trainer-card {
        padding: 1.5rem;
    }

    .programs-panel,
    .vision-mission-card {
        padding: 1.75rem;
    }

    .notice-board-body {
        padding: 1.25rem;
    }

    .breadcrumb-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    body {
        padding-top: 110px;
    }

    .carousel-slide-bg {
        height: 60vh;
    }

    .carousel-caption-content {
        text-align: center;
    }

    .carousel-caption-content h2 {
        font-size: 1.75rem;
    }

    .carousel-caption-content p {
        font-size: 0.95rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    .program-item {
        align-items: flex-start;
    }

    .notice-list li {
        grid-template-columns: 18px 1fr;
    }

    .notice-list a {
        grid-column: 2;
    }

    .vision-mission-card {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -15px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .trainer-avatar {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .trainer-name {
        font-size: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-stats-mini {
        gap: 0.75rem;
    }
    .mini-stat {
        padding: 0.5rem 0.75rem;
    }
    .mini-num {
        font-size: 1rem;
    }
    .mini-label {
        font-size: 0.6rem;
    }
    .social-icon {
        width: 38px;
        height: 38px;
    }

    .founder-desk {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .breadcrumb-title {
        font-size: 1.75rem;
    }

    .breadcrumb-section {
        padding: 60px 0 40px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    body {
        padding-top: 105px;
    }

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

    .hero-section {
        padding-top: 70px;
    }

    .programs-panel {
        padding: 1.4rem;
    }

    .program-item h4 {
        font-size: 1.05rem;
    }

    .program-item p,
    .notice-list span,
    .vision-mission-card p {
        font-size: 0.9rem;
    }

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

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .course-card,
    .feature-card,
    .testimonial-card,
    .award-card {
        padding: 1.25rem;
    }

    .contact-form-card,
    .contact-info {
        padding: 1.25rem;
    }

    .trainer-card {
        padding: 1.25rem;
    }

    .qual-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.65rem;
    }

    .t-stat {
        padding: 0.75rem;
    }

    .t-stat-num {
        font-size: 1.4rem;
    }
}

/* ============================================
   21. ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(232, 100, 37, 0.2);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   22. FLOATING LEFT SOCIAL ICONS
============================================ */
.floating-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.floating-social a:first-child {
    border-radius: 0 12px 0 0;
}

.floating-social a:last-child {
    border-radius: 0 0 12px 0;
}

.floating-social a .social-tooltip {
    position: absolute;
    left: 65px;
    background: var(--dark-black);
    color: var(--white);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-social a .social-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: none;
    border-right: 5px solid var(--dark-black);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.floating-social a:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

.floating-social a:hover {
    width: 65px;
}

/* WhatsApp */
.floating-social .float-whatsapp {
    background: #25D366;
}

.floating-social .float-whatsapp:hover {
    background: #20BD5A;
}

/* Instagram */
.floating-social .float-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.floating-social .float-instagram:hover {
    background: linear-gradient(135deg, #7B2FAE, #D42A64, #F06828);
}

/* Phone */
.floating-social .float-phone {
    background: var(--primary-orange);
    animation: phoneRing 2s ease-in-out infinite;
}

.floating-social .float-phone:hover {
    background: var(--primary-orange-dark);
    animation: none;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(15deg); }
    20% { transform: rotate(0); }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .floating-social a {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .floating-social a:hover {
        width: 55px;
    }

    .floating-social a .social-tooltip {
        display: none;
    }
}

/* ============================================
   23. PROFESSIONAL MARQUEE TICKER (FIXED)
============================================ */
.marquee-ticker {
    background: linear-gradient(90deg, var(--dark-black) 0%, var(--dark-gray) 50%, var(--dark-black) 100%);
    padding: 0.75rem 0;
    overflow: hidden;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1030;
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-red);
    box-shadow: var(--shadow-md);
}

.marquee-ticker::before,
.marquee-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-black), transparent);
}

.marquee-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-black), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.marquee-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.marquee-item .highlight {
    color: var(--primary-orange);
    font-weight: 700;
}

.marquee-separator {
    color: var(--primary-red);
    font-size: 0.75rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767.98px) {
    .marquee-ticker {
        padding: 0.6rem 0;
        top: 83px;
    }

    .marquee-content {
        gap: 2rem;
        padding: 0 2rem;
    }

    .marquee-item {
        font-size: 0.8rem;
    }
}

/* ============================================
   24. WHY CHOOSE US SECTION
============================================ */
.why-choose-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(45, 45, 45, 0.88) 50%, rgba(26, 26, 26, 0.92) 100%);
    z-index: 1;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red), var(--primary-orange));
    z-index: 2;
}

.why-choose-content {
    position: relative;
    z-index: 3;
}

.why-choose-section .section-label {
    color: var(--primary-orange-light);
}

.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(232, 100, 37, 0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(232, 100, 37, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(232, 100, 37, 0.5);
}

.why-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

.why-counter {
    display: inline-block;
    background: rgba(232, 100, 37, 0.2);
    color: var(--primary-orange-light);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid rgba(232, 100, 37, 0.3);
}

@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 3rem 0;
        background-attachment: scroll;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
}
