:root {
    --primary-color: #0d0d0d;
    /* Elegant Black */
    --secondary-color: #f5f0e6;
    /* Warm Cream/Beige */
    --accent-color: #c9a84c;
    /* Rich Gold */
    --accent-light: #e8d9a0;
    /* Light Gold */
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --text-regular: #1a1a1a;
    --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e8d9a0 50%, #c9a84c 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-regular);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 10px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a84c 0%, #f2e0a0 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, #f0d77a 0%, #c9a84c 50%, #f0d77a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.85;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* Dropdown Hover (Desktop Only) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Burger Menu */
.navbar-toggler {
    border: none;
    padding: 0;
}

/* Burger Menu */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1000;
}

.burger-icon {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: transform 0.3s;
}

.burger-icon::before {
    top: -8px;
}

.burger-icon::after {
    top: 8px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.45) 40%, rgba(13, 13, 13, 0.3) 100%), url('../images/hero-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 80px;
    color: var(--text-light);
}

.welcome-badge {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 10px;
}

.hero-desc {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.custom-btn {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.custom-btn:hover {
    background: linear-gradient(135deg, #e8d9a0 0%, #c9a84c 50%, #e8d9a0 100%);
    transform: translateY(-2px);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        text-align: center;
        /* Center everything */
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-item {
        width: 100%;
        /* Ensure full width for centering */
    }

    .dropdown-menu {
        background-color: transparent;
        border: none;
        text-align: center;
        /* Center dropdown items */
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .dropdown-item:hover {
        background-color: transparent;
        color: #fff !important;
    }

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

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

/* About Section */
.about-section {
    background-color: #fff;
    color: #333;
}

.section-badge {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);

}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    line-height: 1.2;
}

.custom-btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s;
}

.custom-btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.stats-wrapper {
    background-color: #e8e6dd;
    /* Light Beige Stats Bg */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.stat-divider {
    position: relative;
}



.stat-item {
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

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

/* Services Section */
.services-section {
    background-color: #fff;
    padding-bottom: 0;
}

.service-card {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-overlay {
    background-color: rgba(13, 13, 13, 0.6);
    /* 60% opacity black fill */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
}

.service-card:hover .service-overlay {
    opacity: 0;
}

.bg-beige {
    background-color: var(--secondary-color) !important;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-arrow i {
    color: var(--primary-color);
}

/* Why Choose Us */
.feature-icon {
    color: var(--primary-color);
}

.center-image-wrapper {
    width: 300px;
    height: 400px;
}

.center-image-wrapper img {
    border-radius: 50%;
    /* Just to be safe if wrapper isn't enough */
}

/* Team Section */
.team-image img {
    transition: transform 0.5s;
}

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

/* Appointment Form */
.form-control-custom {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
    padding: 10px 0;
}

.form-control-custom:focus {
    background-color: transparent;
    color: #fff;
    box-shadow: none;
    border-bottom: 1px solid #fff;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

select.form-control-custom option {
    background-color: #583330;
    color: #fff;
}

/* Footer */
.footer a:hover {
    color: #fff !important;
}

/* Animations Trigger Classes (optional if using IntersectionObserver in JS) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Hover Effect */
.service-hover-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
    background: linear-gradient(to top, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.85) 40%, transparent 100%);
}

.service-card:hover .service-hover-content {
    opacity: 1;
}



.contact-card {
    background-color: var(--primary-color);
}

/* News Section */
.news-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    transition: color 0.3s;
}

.news-item:hover .news-title {
    color: var(--accent-color);
}

.news-date {
    background-color: #f8f9fa;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item {
    transition: opacity 0.3s ease;
}

/* Custom Icon Sizing */
.custom-icon,
.custom-icon path,
.custom-icon svg path {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
    /* Inherit color from parent */
    vertical-align: -0.125em;
}

.error-section {
    padding: 120px 0;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    background: linear-gradient(0deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.85) 100%), url('../images/h3-img1.jpg');
    background-size: cover;
    background-position: center;
}

.error-number {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
}

.page-header {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.9) 100%), url('../images/h3-img1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.page-header h1 {
    font-size: 4rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    background: #fff;
    padding: 80px 0;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: #fff;
}

.course-link,
.service-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.course-card:hover .course-arrow {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.course-card:hover .course-arrow i {
    color: var(--accent-color);
}

.course-arrow i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.course-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.course-duration i {
    color: var(--accent-color);
}

.course-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.course-price-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-badge.popular {
    background: var(--primary-color);
    color: var(--accent-color);
}


.contact-info-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid var(--accent-color);
}

.contact-icon i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.contact-info-card h4 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--primary-color);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.form-control-contact {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
    padding: 15px 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control-contact:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border-bottom-color: var(--accent-color);
}

.form-control-contact::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

textarea.form-control-contact {}

select.form-control-contact option {
    background: var(--primary-color);
    color: #fff;
}

.btn-submit {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 15px 50px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e8d9a0 0%, #c9a84c 50%, #e8d9a0 100%);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}


.certificate-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.certificate-image {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.certificate-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border: 1px solid var(--accent-color);
}

.certificate-badge.accredited {
    background: #28a745;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.view-certificate-btn {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-certificate-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.certificate-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.certificate-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.certificate-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.certificate-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.certificate-level {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.certificate-level i {
    color: var(--accent-color);
}

.certificate-duration {
    color: #999;
    font-size: 0.85rem;
}



.course-header {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.9) 100%), url('../images/h3-img1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: #fff;
}

.course-badge {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.course-header .course-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #FFF;
}

.course-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.meta-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.price-box {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.price-label {
    color: #666;
    margin-bottom: 10px;
}

.enroll-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--accent-color);
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid var(--accent-color);
}

.enroll-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

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

.course-includes li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-includes li:last-child {
    border-bottom: none;
}

.course-includes i {
    color: #28a745;
    font-size: 1.1rem;
}

.course-content-text {
    line-height: 150%;
}

.course-content-text h1,
.course-content-text h2,
.course-content-text h3,
.course-content-text h4,
.course-content-text h5 {
    margin-bottom: 1.5rem;
}

/* ===================================
   TESTIMONIALS SECTION - WHITE BG
   =================================== */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.stars i {
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin: 30px 0;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-info {
    text-align: left;
}

.author-name {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Controls - White Version */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--accent-color);
}

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

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

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

.carousel-control-prev:hover .carousel-control-icon i,
.carousel-control-next:hover .carousel-control-icon i {
    color: var(--primary-color);
}

.carousel-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.carousel-control-icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* Carousel Indicators - White Version */
.carousel-indicators {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   TESTIMONIALS SECTION - BLUE BG
   =================================== */
.testimonials-section-blue {
    background-color: var(--primary-color);
    position: relative;
}

.section-badge-white {
    color: #fff;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
}

.section-title-white {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.testimonial-card-blue {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars-white {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.stars-white i {
    margin: 0 3px;
}

.testimonial-text-white {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    font-style: italic;
    margin: 30px 0;
    font-family: 'Playfair Display', serif;
}

.author-name-white {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-title-white {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Controls - Blue Version */
.carousel-control-icon-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.carousel-control-icon-white i {
    color: #fff;
    font-size: 1.2rem;
}

.testimonials-section-blue .carousel-control-prev,
.testimonials-section-blue .carousel-control-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonials-section-blue .carousel-control-prev:hover,
.testimonials-section-blue .carousel-control-next:hover {
    background: var(--gold-gradient);
}

.testimonials-section-blue .carousel-control-prev:hover .carousel-control-icon-white i,
.testimonials-section-blue .carousel-control-next:hover .carousel-control-icon-white i {
    color: var(--primary-color);
}

/* Carousel Indicators - Blue Version */
.carousel-indicators-white {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.carousel-indicators-white button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators-white button.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Testimonials */
@media (max-width: 991px) {

    .testimonial-card,
    .testimonial-card-blue {
        padding: 40px 30px;
        min-height: 300px;
    }

    .testimonial-text,
    .testimonial-text-white {
        font-size: 1.1rem;
    }

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

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

@media (max-width: 576px) {

    .testimonial-card,
    .testimonial-card-blue {
        padding: 30px 20px;
    }

    .testimonial-text,
    .testimonial-text-white {
        font-size: 1rem;
        margin: 20px 0;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

    .author-info {
        text-align: center;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

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

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

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

@media (min-width: 768px) {
    .stat-divider::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(13, 13, 13, 0.15);
    }
}

@media (max-width: 768px) {

    .page-header h1,
    .course-header .course-title {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 20px;
    }

    .map-wrapper {
        height: 300px;
    }

    .certificate-title {
        font-size: 1.3rem;
    }

    .course-image {
        height: 250px;
    }

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

    .course-price {
        font-size: 1.5rem;
    }

}

/* ===================================
   FAQ ACCORDION SECTION
   =================================== */
.faq-section {
    background-color: #fff;
}

.faq-section .section-title {
    color: var(--primary-color);
}

/* Accordion Items */
.accordion-item {
    background-color: var(--secondary-color);
    border: 1px solid rgba(201, 168, 76, 0.2) !important;
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--accent-color) !important;
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.15);
}

/* Accordion Button (Header) */
.accordion-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
    border-color: var(--accent-color);
}

.accordion-button:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/* Accordion Arrow Icon */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d0d0d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a84c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Accordion Body */
.accordion-body {
    background-color: #fff;
    color: var(--text-regular);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.accordion-body p {
    margin-bottom: 0;
    color: #555;
}

/* Alternative: Dark FAQ Style (optional class) */
.faq-section.faq-dark {
    background-color: var(--primary-color);
}

.faq-section.faq-dark .section-badge,
.faq-section.faq-dark .section-title {
    color: #fff;
}

.faq-section.faq-dark .accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
}

.faq-section.faq-dark .accordion-button {
    background-color: transparent;
    color: #fff;
}

.faq-section.faq-dark .accordion-button:not(.collapsed) {
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--accent-color);
}

.faq-section.faq-dark .accordion-body {
    background-color: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    border-top-color: rgba(201, 168, 76, 0.2);
}

.faq-section.faq-dark .accordion-body p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 20px;
    }
}