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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-video-bg.active {
    opacity: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    z-index: 10;
    padding: 0 5%;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced opacity (50-60%) to make moving video much more visible/energetic */
    background: linear-gradient(135deg, rgba(29, 219, 189, 0.55) 0%, rgba(135, 96, 238, 0.6) 100%);
    z-index: 1;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.square-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    /* Compact size */
    aspect-ratio: 1 / 1;
    border-radius: 40px;
    /* More rounded as in reference */
    overflow: hidden;
    /* Professional glass border and deep shadow */
    border: 8px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Subtle overlay to blend images with the brand theme */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 219, 189, 0.1) 0%, rgba(135, 96, 238, 0.15) 100%);
}

.slide.active {
    opacity: 1;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: 5%;
}

.circle-2 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 15%;
}

.circle-3 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 10%;
}


/* Navbar */
.navbar {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo Group */
.logo-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    object-fit: contain;
    transition: transform 0.3s ease;
}



.logo img:hover {
    transform: scale(1.1);
}

/* Main SFT logo */
.logo-main img {
    height: 55px;
}

.logo-divider {
    width: 1.5px;
    height: 35px;
    background: #e2e8f0;
    margin: 0 0.8rem;
}

.logo-partners {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.partner-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-logo:hover {
    transform: translateY(-3px) scale(1.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 5%;
}

.navbar.scrolled .logo-main img {
    height: 45px;
}

.navbar.scrolled .partner-logo {
    height: 32px;
}

.partner-logo:hover {
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 1024px) {
    .logo-partners {
        display: none;
        /* Hide extra logos on smaller tablets/mobile for space */
    }

    .logo-divider {
        display: none;
    }
}



.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00cca8;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-register {
    background: #00cca8;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 204, 168, 0.3);
}

.btn-register:hover {
    background: #00b393;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 204, 168, 0.4);
}

/* Main Content Wrapper */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    padding: 2.5rem 5%;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    width: max-content;
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-title-italic {
    font-weight: 300;
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-weight: 400;
    max-width: 650px;
    opacity: 0.95;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.btn-primary {
    background: linear-gradient(90deg, #10e0c0, #735bf0);
    color: #ffffff;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.stats-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
}

.stat-value .star {
    font-size: 2rem;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.stat-divider {
    width: 2px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

/* Slider Controls */
.slider-controls {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slider-arrows {
    display: flex;
    gap: 0.75rem;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Hero Pricing Column */
.hero-pricing {
    display: flex;
    justify-content: flex-end;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.75rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 260px;
    animation: floatingPricing 3s ease-in-out infinite;
    z-index: 20;
}

@keyframes floatingPricing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pricing-badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pricing-text {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.price-box {
    margin: 0.5rem 0;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-right: 2px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.price-desc {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.btn-enroll {
    display: block;
    background: #ffffff;
    color: #00cca8;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.75rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-enroll:hover {
    background: #00cca8;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 204, 168, 0.3);
}

/* Company Overview Section */
.overview-section {
    padding: 80px 5% 60px;
    /* Reduced from 120px */
    background: #fcfcfd;
}

.overview-footer {
    margin-top: 40px;
}

.btn-impact {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-impact:hover {
    background: transparent;
    color: #0f172a;
    border-color: #0f172a;
    transform: translateY(-3px);
}

/* ===== ACCREDITATIONS SECTION (REFINED) ===== */
.accreditations-section {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background: #fbfbfc;
    /* Sophisticated fallback */
}

.accred-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.accred-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Increased visibility for the aesthetic background */
}

.accred-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    /* Lighter white tint to make dynamic background pop */
    z-index: 2;
}

.accred-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.accred-header {
    text-align: center;
    margin-bottom: 70px;
}

.accred-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.accred-title .gradient-text {
    background: linear-gradient(135deg, #0fb8b3 0%, #00cca8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accred-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.accred-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    min-height: 100%;
}

.accred-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 184, 179, 0.3);
}

.accred-cert-wrapper {
    width: 100%;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.accred-cert-image {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.accred-info h3 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.accred-info p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
}

.accred-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.badge-blue {
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.02);
}

.badge-green {
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.15);
    background: rgba(16, 185, 129, 0.02);
}

.accred-card:hover .badge-blue {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.accred-card:hover .badge-green {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

@media (max-width: 768px) {
    .accreditations-section {
        padding: 60px 4%;
    }

    .accred-grid {
        grid-template-columns: 1fr;
    }

    .accred-card {
        padding: 40px 25px;
    }
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.overview-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.overview-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 204, 168, 0.1);
}

.exp-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00cca8;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a6f73;
    margin-top: 5px;
}

.overview-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: #00cca8;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.overview-title {
    font-size: 3.2rem;
    color: #1a1b1c;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.overview-para {
    font-size: 1.2rem;
    color: #2d2f31;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overview-para.highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1b1c;
    border-left: 4px solid #00cca8;
    padding-left: 25px;
}

.overview-divider {
    height: 1px;
    background: #e4e6ea;
    width: 100%;
    margin: 35px 0;
}

.overview-para-small {
    font-size: 1rem;
    color: #6a6f73;
    line-height: 1.8;
    margin-bottom: 40px;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2d2f31;
}

.feat-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 204, 168, 0.1);
    color: #00cca8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .overview-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .overview-image-wrapper img {
        height: 400px;
    }
}

/* Career Impact Section */
.impact-section {
    position: relative;
    padding: 60px 5% 50px;
    /* Highly compact padding */
    background: #0f172a;
    overflow: hidden;
}

.impact-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.impact-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    /* Subtle visibility */
}

.impact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.impact-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.impact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.impact-tag {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1ddbbd;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 2px 10px rgba(29, 219, 189, 0.3);
}

.impact-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.impact-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.impact-roles {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.impact-roles p {
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.role-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.role-pills span {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-pills span:hover {
    background: #1ddbbd;
    color: #0f172a;
    border-color: #1ddbbd;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(29, 219, 189, 0.2);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-bg);
}

.impact-card.active {
    grid-column: span 2;
    transform: scale(1.02);
    border-color: var(--card-bg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

.card-visual {
    position: relative;
    height: 140px;
    overflow: hidden;
}

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

.impact-card:hover .card-visual img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.8));
}

.impact-icon {
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 2rem;
    z-index: 2;
}

.card-body {
    padding: 20px;
    flex: 1;
}

.card-body h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
}

.short-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.impact-card.active .expanded-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 25px;
}

.detail-list {
    list-style: none;
    padding-left: 0;
}

.detail-list li {
    font-size: 0.95rem;
    color: #ffffff;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 500;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--card-bg);
}

.expand-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--card-bg);
    width: 100%;
    padding: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.impact-card.active .expand-btn {
    background: var(--card-bg);
    color: #ffffff;
}

.benefit-box {
    background: linear-gradient(135deg, rgba(29, 219, 189, 0.9), rgba(135, 96, 238, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.benefit-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

.benefit-cta .btn-primary {
    background: #ffffff;
    color: #1ddbbd;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

.benefit-cta .btn-primary:hover {
    background: #f0f0f0;
    color: #8760ee;
}

@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-title {
        font-size: 2.2rem;
    }
}




.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1ddbbd;
    width: 24px;
    border-radius: 10px;
}

/* Floating Controls (Repositioned) */
.floating-controls {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

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

    .stats-group {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .cta-group {
        flex-direction: column;
    }

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

    .stats-group {
        gap: 1rem;
    }

    .floating-controls {
        display: none;
    }
}


/* =========================================
   FSSAI COURSE CARD SECTION
   ========================================= */

.course-section {
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    /* Allow video background to show */
}

.course-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #020617;
    pointer-events: none;
    overflow: hidden;
}

.course-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.65;
    filter: brightness(0.6) contrast(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cyan-to-DeepSpace Aesthetic */
    background: linear-gradient(135deg,
            rgba(2, 6, 23, 0.98) 0%,
            rgba(0, 204, 168, 0.12) 50%,
            rgba(2, 6, 23, 0.98) 100%);
    z-index: 0;
}

.course-content-relative {
    position: relative;
    z-index: 5;
}

.course-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 219, 189, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.course-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 96, 238, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.course-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.course-section .section-title {
    background: linear-gradient(to right, #ffffff, #00cca8, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: shine 6s linear infinite;
    letter-spacing: -0.5px;
}

.course-section .section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.course-section .section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 204, 168, 0.15);
    color: #00cca8;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 204, 168, 0.3);
    text-transform: uppercase;
    animation: pulseGlow 3s infinite alternate;
}

/* Main Course Card */
.main-course-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(29, 219, 189, 0.15);
}

.main-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ddbbd, #8760ee);
    border-radius: 24px 24px 0 0;
}

/* Card Left */
.card-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(90deg, #1ddbbd, #8760ee);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    width: fit-content;
}

.card-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(29, 219, 189, 0.15), rgba(135, 96, 238, 0.15));
    border: 1px solid rgba(29, 219, 189, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    font-size: 2.2rem;
}

.card-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.card-desc {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* Meta items */
.card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
}

.meta-icon {
    font-size: 1rem;
}

/* Level Chips */
.card-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.level-chip {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.level-chip.beginner {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: #34d399;
}

.level-chip.intermediate {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: #fbbf24;
}

.level-chip.advanced {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #ef4444;
}

.level-chip.master {
    background: linear-gradient(90deg, rgba(29, 219, 189, 0.15), rgba(135, 96, 238, 0.15));
    border: 1px solid rgba(135, 96, 238, 0.35);
    color: #c084fc;
}

/* CTA Buttons */
.card-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-enroll {
    background: linear-gradient(90deg, #1ddbbd, #8760ee);
    color: #fff;
    font-weight: 700;
    font-size: 0.97rem;
    padding: 0.85rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 25px rgba(135, 96, 238, 0.35);
}

.cta-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(135, 96, 238, 0.5);
}

.cta-preview {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.97rem;
    padding: 0.85rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.cta-preview:hover {
    border-color: rgba(29, 219, 189, 0.5);
    color: #1ddbbd;
}

/* Card Right */
.card-right {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

/* Feature List */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #1ddbbd, #8760ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    font-weight: 800;
    margin-top: 2px;
}

.feature-list li div strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.feature-list li div p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Card Stats Row */
.card-stats-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
}

.cs-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    text-align: center;
}

.cs-num {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #1ddbbd, #8760ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cs-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .main-course-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .card-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-left: 0;
        padding-top: 2rem;
    }

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

@media (max-width: 600px) {
    .course-section {
        padding: 4rem 5%;
    }

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

    .card-title {
        font-size: 1.4rem;
    }

    .card-meta {
        grid-template-columns: 1fr;
    }

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

    .card-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .cs-divider {
        width: 100%;
        height: 1px;
    }
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: #050c18;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 5rem 5% 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */

.footer-logo {
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
    margin-bottom: 1.2rem;
    display: block;
}

.footer-desc {
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1ddbbd;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    color: #fff;
    transform: translateX(5px);
}



.footer-social-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    color: #fff;
    transform: translateX(8px);
}

.social-link-item.linkedin:hover i {
    background: #0077b5;
    color: white;
}

.social-link-item.instagram:hover i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link-item.facebook:hover i {
    background: #1877f2;
    color: white;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: #1ddbbd;
    color: #050c18;
    border-color: transparent;
    transform: translateY(-5px) rotate(10deg);
}

/* Quick Links column */
.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}

.footer-links li a::before {
    content: '→ ';
    opacity: 0;
    transition: opacity 0.25s;
}

.footer-links li a:hover {
    color: #1ddbbd;
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Locations column */
.footer-locations {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-locations li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.loc-flag {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-locations li div strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.footer-locations li div p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.footer-locations li div a {
    color: #1ddbbd;
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.25s;
}

.footer-locations li div a:hover {
    opacity: 0.75;
}

/* Footer bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand,
    .footer-locations-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* CREATIVE: Luxe Editorial Course Cards */
.course-grid-v2 {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 20px;
}

.course-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.course-group:not(.active) {
    display: none;
}

.luxe-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.luxe-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 204, 168, 0.6);
    box-shadow: 0 20px 45px rgba(0, 204, 168, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.luxe-img-container {
    position: relative;
    height: 200px;
    width: 100%;
}

.luxe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 1.2s ease;
}

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

.luxe-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--accent-color, #1ddbbd);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.luxe-content {
    padding: 35px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.luxe-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 5px;
}

.luxe-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luxe-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instr-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.instr-name {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}

.luxe-meta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}

.luxe-meta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 5px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    min-width: 0;
}

.luxe-meta-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    font-weight: 700;
    white-space: nowrap;
}

.luxe-meta-val {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.luxe-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.luxe-price {
    display: flex;
    flex-direction: column;
}

.price-now {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.price-was {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: line-through;
}

.luxe-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.luxe-btn:hover {
    background: #fff;
    color: #0f172a;
    transform: scale(1.05);
}

.card-curriculum-overview ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.card-curriculum-overview li {
    font-size: 0.8rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color 0.3s ease;
}

.card-curriculum-overview li i {
    color: var(--accent-color, #1ddbbd);
    margin-top: 3px;
    font-size: 0.75rem;
}

.card-curriculum-overview li:hover {
    color: #fff;
}

.haccp-special-btn {
    border-color: var(--accent-color, #1ddbbd);
    color: var(--accent-color, #1ddbbd);
}

.haccp-special-btn:hover {
    background: var(--accent-color, #1ddbbd);
    color: #0f172a;
}




/* Course Grid */
.course-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modal Styles */
.mindmap-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 12, 24, 0.95);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 85vh;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff5e5e;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.modal-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #1ddbbd;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Level Selection */
/* Level Selection Circular Design */
.level-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding: 2rem 0;
}

.level-box {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    /* PERFECT ROUND SHAPE */
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

/* Improved Flow Chart Connection Arrows */
.level-box:not(:last-child)::after {
    content: '\f061';
    /* Right Arrow icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--level-color);
    font-size: 1.5rem;
    z-index: 1;
    opacity: 0.5;
    animation: flowArrow 2s infinite;
}

@keyframes flowArrow {

    0%,
    100% {
        transform: translate(0, -50%);
        opacity: 0.3;
    }

    50% {
        transform: translate(10px, -50%);
        opacity: 0.7;
    }
}

.level-box:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--level-color);
    box-shadow: 0 0 30px var(--level-glow);
}

.level-box.expanded {
    transform: scale(1.15);
    background: var(--level-color);
    border-color: white;
}

.level-content {
    text-align: center;
    transition: all 0.4s ease;
}

.level-box.expanded .level-content {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.level-box.beginner {
    --level-color: #1ddbbd;
    --level-glow: rgba(29, 219, 189, 0.3);
}

.level-box.intermediate {
    --level-color: #ff9f43;
    --level-glow: rgba(255, 159, 67, 0.3);
}

.level-box.advanced {
    --level-color: #ef4444;
    --level-glow: rgba(239, 68, 68, 0.3);
}

.level-box.professional {
    --level-color: #c084fc;
    --level-glow: rgba(192, 132, 252, 0.3);
}

.level-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.level-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.level-box p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brief Explain Section */
.brief-explain {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--level-color);
    color: #000;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 5;
}

.level-box.expanded .brief-explain {
    opacity: 1;
    transform: translateY(0);
}

.brief-explain h4 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.brief-explain p {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8) !important;
    line-height: 1.3;
    margin-bottom: 1rem !important;
}

.proceed-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.proceed-btn:hover {
    transform: scale(1.1);
    background: #333;
}

/* MindMap Visuals */
/* Radial Hub & Spoke MindMap Styling */
.mindmap-view {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    color: #1e293b;
    position: relative;
}

.mindmap-header-inner {
    margin-bottom: 2rem;
}

.mm-instruction {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.mindmap-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 500px;
    position: relative;
    padding: 2rem 0;
}

.mm-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.mm-hub {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

/* Level Specific Themes */
.mindmap-view.theme-beginner {
    --theme-color: #1ddbbd;
    --theme-glow: rgba(29, 219, 189, 0.4);
    --hub-bg: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.mindmap-view.theme-intermediate {
    --theme-color: #ff9f43;
    --theme-glow: rgba(255, 159, 67, 0.4);
    --hub-bg: radial-gradient(circle at center, #2d1b0a 0%, #0f172a 100%);
}

.mindmap-view.theme-advanced {
    --theme-color: #ef4444;
    --theme-glow: rgba(239, 68, 68, 0.4);
    --hub-bg: radial-gradient(circle at center, #3b0f0f 0%, #0f172a 100%);
}

.mindmap-view.theme-professional {
    --theme-color: #c084fc;
    --theme-glow: rgba(192, 132, 252, 0.5);
    --hub-bg: radial-gradient(circle at center, #2e1052 0%, #0f172a 100%);
}

.hub-content {
    width: 100%;
    height: 100%;
    background: var(--hub-bg);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--theme-color);
    box-shadow: 0 0 50px var(--theme-glow), inset 0 0 30px rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--theme-color);
    opacity: 0.3;
    border-radius: 50%;
    animation: hubPulse 2s infinite;
}

@keyframes hubPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
        box-shadow: 0 0 0 0 var(--theme-color);
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
        box-shadow: 0 0 40px 10px var(--theme-color);
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
        box-shadow: 0 0 60px 20px transparent;
    }
}

.hub-icon {
    width: 50px;
    height: 50px;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.hub-title {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.hub-subtitle {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-top: 5px;
}

.mindmap-layout {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 2rem 0;
}

.mm-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: 10;
}

.mm-node-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    white-space: nowrap;
    animation: mmFloat 6s ease-in-out infinite;
}

@keyframes mmFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Stagger floating for different nodes */
.pos-1 {
    animation-delay: 0s;
}

.pos-2 {
    animation-delay: 0.5s;
}

.pos-3 {
    animation-delay: 1s;
}

.pos-4 {
    animation-delay: 1.5s;
}

.pos-5 {
    animation-delay: 2s;
}

.pos-6 {
    animation-delay: 2.5s;
}

/* Node Positions (Using logical pos classes) */
.pos-1 {
    top: 5%;
}

.pos-2 {
    top: 23%;
}

.pos-3 {
    top: 41%;
}

.pos-4 {
    top: 59%;
}

.pos-5 {
    top: 77%;
}

.pos-6 {
    top: 95%;
}

.node-left {
    right: 60%;
}

.node-right {
    left: 60%;
}

/* Ensure horizontal offsets create the curve */
.pos-1.node-left,
.pos-6.node-left {
    right: 60%;
}

.pos-2.node-left,
.pos-5.node-left {
    right: 63%;
}

.pos-3.node-left,
.pos-4.node-left {
    right: 65%;
}

.pos-1.node-right,
.pos-6.node-right {
    left: 60%;
}

.pos-2.node-right,
.pos-5.node-right {
    left: 63%;
}

.pos-3.node-right,
.pos-4.node-right {
    left: 65%;
}

.mm-node-pill:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px var(--theme-glow);
    border-color: var(--theme-color);
    z-index: 20;
}

/* Connectors with exact anchor points and Aero Marks (Arrows) */
.np-connector {
    position: absolute;
    top: 50%;
    height: 1px;
    border-top: 1.5px dashed var(--theme-color);
    opacity: 0.4;
    pointer-events: none;
}

.np-connector::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--theme-color);
    border-right: 2px solid var(--theme-color);
}

.node-left .np-connector {
    left: 100%;
    width: 80px;
}

.node-left .np-connector::after {
    left: 0;
    transform: rotate(-135deg);
}

.node-right .np-connector {
    right: 100%;
    width: 80px;
}

.node-right .np-connector::after {
    right: 0;
    transform: rotate(45deg);
}

/* Specific Beginner 'Organic' Aero Marks */
.theme-beginner .np-connector {
    border-top-style: solid;
    border-radius: 50%;
    border-top-width: 2px;
}

/* Specific angles for radial effect (using pos classes) */
.node-left.pos-1 .np-connector {
    transform: rotate(25deg);
    width: 100px;
}

.node-left.pos-2 .np-connector {
    transform: rotate(15deg);
    width: 90px;
}

.node-left.pos-3 .np-connector {
    transform: rotate(0deg);
    width: 85px;
}

.node-left.pos-4 .np-connector {
    transform: rotate(-15deg);
    width: 90px;
}

.node-left.pos-5 .np-connector {
    transform: rotate(-25deg);
    width: 100px;
}

.node-left.pos-6 .np-connector {
    transform: rotate(-35deg);
    width: 110px;
}

.node-right.pos-1 .np-connector {
    transform: rotate(-25deg);
    width: 100px;
}

.node-right.pos-2 .np-connector {
    transform: rotate(-15deg);
    width: 90px;
}

.node-right.pos-3 .np-connector {
    transform: rotate(0deg);
    width: 85px;
}

.node-right.pos-4 .np-connector {
    transform: rotate(15deg);
    width: 90px;
}

.node-right.pos-5 .np-connector {
    transform: rotate(25deg);
    width: 100px;
}

.node-right.pos-6 .np-connector {
    transform: rotate(35deg);
    width: 110px;
}

/* Hub Polish */
.hub-content {
    background: var(--hub-bg);
    box-shadow: 0 0 50px var(--theme-glow), inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.np-icon {
    background: #0f172a;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    box-shadow: 0 0 10px var(--theme-glow);
}

.mm-node-pill:hover .np-icon {
    background: var(--theme-color);
    color: #fff;
    transform: rotate(360deg);
}

/* Module Details Overlay */
.module-info-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 20px;
}

.module-info-overlay.active {
    display: flex;
}

.info-card {
    background: #ffffff;
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: cardPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cardPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-info {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.info-card h4 {
    color: #0f172a;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.info-content section {
    margin-bottom: 1.5rem;
}

.info-content h5 {
    color: #1ddbbd;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Left Column Nodes */
.node-left.pos-1 {
    top: 5%;
    right: 60%;
}

.node-left.pos-2 {
    top: 23%;
    right: 63%;
}

.node-left.pos-3 {
    top: 41%;
    right: 65%;
}

.node-left.pos-4 {
    top: 59%;
    right: 65%;
}

.node-left.pos-5 {
    top: 77%;
    right: 63%;
}

.node-left.pos-6 {
    top: 95%;
    right: 60%;
}

/* Right Column Nodes */
.node-right.pos-1 {
    top: 5%;
    left: 60%;
}

.node-right.pos-2 {
    top: 23%;
    left: 63%;
}

.node-right.pos-3 {
    top: 41%;
    left: 65%;
}

.node-right.pos-4 {
    top: 59%;
    left: 65%;
}

.node-right.pos-5 {
    top: 77%;
    left: 63%;
}

.node-right.pos-6 {
    top: 95%;
    left: 60%;
}

/* Specific angles for radial effect */
.node-left.pos-1 .np-connector {
    transform: rotate(25deg);
    width: 100px;
}

.node-left.pos-2 .np-connector {
    transform: rotate(15deg);
    width: 90px;
}

.node-left.pos-3 .np-connector {
    transform: rotate(0deg);
    width: 85px;
}

.node-left.pos-4 .np-connector {
    transform: rotate(-15deg);
    width: 90px;
}

.node-left.pos-5 .np-connector {
    transform: rotate(-25deg);
    width: 100px;
}

.node-left.pos-6 .np-connector {
    transform: rotate(-35deg);
    width: 110px;
}

.node-right.pos-1 .np-connector {
    transform: rotate(-25deg);
    width: 100px;
}

.node-right.pos-2 .np-connector {
    transform: rotate(-15deg);
    width: 90px;
}

.node-right.pos-3 .np-connector {
    transform: rotate(0deg);
    width: 85px;
}

.node-right.pos-4 .np-connector {
    transform: rotate(15deg);
    width: 90px;
}

.node-right.pos-5 .np-connector {
    transform: rotate(25deg);
    width: 100px;
}

.node-right.pos-6 .np-connector {
    transform: rotate(35deg);
    width: 110px;
}

/* Footer CTA */
.modal-footer-cta {
    margin-top: 3rem;
    text-align: center;
}

.book-course-btn {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 1.2rem 4rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 600px;
}

.book-course-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 900px) {
    .mindmap-layout {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mm-node-pill {
        position: static;
        width: 100%;
    }

    .mm-hub {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        margin: 0 auto;
    }

    .np-connector {
        display: none;
    }
}

/* Student Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    overflow: hidden;
}

.reviews-marquee-wrapper {
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.reviews-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 120s linear infinite;
}

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

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 380px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #1ddbbd88;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.student-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.student-course {
    font-size: 0.85rem;
    color: #64748b;
    margin: 2px 0 0 0;
}

.review-rating {
    color: #fbbf24;
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
}



@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-380px * 40 - 30px * 40));
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 320px;
    }

    @keyframes marquee-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-320px * 40 - 30px * 40));
        }
    }
}

/* ==========================================================================
   CONTACT UI SYSTEM
   ========================================================================== */

/* 1. Contact Section Layout */
.contact-section {
    padding: 100px 5% 80px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--card-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--card-bg);
    color: var(--card-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

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

.contact-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.contact-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

/* Specific Card Themes */
.card-call {
    --card-color: #00cca8;
    --card-bg: rgba(0, 204, 168, 0.1);
}

.card-whatsapp {
    --card-color: #25d366;
    --card-bg: rgba(37, 211, 102, 0.1);
}

.card-email {
    --card-color: #735bf0;
    --card-bg: rgba(115, 91, 240, 0.1);
}

.btn-call {
    background: #00cca8;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-email {
    background: #735bf0;
    color: white;
}

.contact-btn:hover {
    filter: brightness(0.9);
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 2. Floating Action Buttons (Desktop & Mobile) */
.floating-contact-actions {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.contact-action-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-contact-actions .phone-btn {
    background: #00cca8;
}

.floating-contact-actions .whatsapp-btn {
    background: #25d366;
}

.floating-contact-actions .email-btn {
    background: #735bf0;
}

/* 3. Sticky Bottom Mobile Bar */
.mobile-contact-bar {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 5%;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mobile-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 4px;
}

.mobile-action-item i {
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
}

.mobile-call i {
    background: #00cca8;
}

.mobile-whatsapp i {
    background: #25d366;
}

.mobile-email i {
    background: #735bf0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-contact-bar {
        display: grid;
    }

    .floating-contact-actions {
        bottom: 85px;
        /* Move up to show above mobile bar */
        right: 15px;
    }

    .contact-section {
        padding: 60px 5%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. Scroll Reveal Utilities */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.section-header.reveal-hidden {
    transform: translateY(20px);
}

.contact-card:nth-child(2) {
    transition-delay: 0.1s;
}

.contact-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* ==========================================================================
   FAQ SECTION SYSTEM
   ========================================================================== */
.faq-section {
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    /* Changed to transparent so the video behind shows through */
}

.faq-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Changed from -1 to be above section background */
    background: #020617;
    /* Moved fallback background here */
    pointer-events: none;
    overflow: hidden;
}

.faq-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.8;
    /* Increased opacity for clear movement */
    filter: brightness(0.8) contrast(1.2);
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* High-Aesthetic Cyan-to-DeepSpace Gradient */
    background: linear-gradient(135deg,
            rgba(2, 6, 23, 0.98) 0%,
            rgba(0, 204, 168, 0.2) 50%,
            rgba(2, 6, 23, 0.98) 100%);
    z-index: 1;
    /* Sits above video */
}

/* Content must be high z-index and relative */
.faq-content-relative {
    position: relative;
    z-index: 5;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.section-title.faq-title {
    background: linear-gradient(to right, #ffffff, #00cca8, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: none;
    margin-bottom: 0.8rem;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.faq-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 204, 168, 0.15);
    color: #00cca8;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 204, 168, 0.3);
    text-transform: uppercase;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 5px rgba(0, 204, 168, 0.2);
    }

    to {
        box-shadow: 0 0 15px rgba(0, 204, 168, 0.5);
    }
}

.section-subtitle.faq-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.faq-group {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.faq-group.active {
    display: flex;
    animation: faqFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 204, 168, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 204, 168, 0.15);
    /* Subtle teal glow on hover */
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: #00cca8;
    transform: translateX(5px);
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 204, 168, 0.1);
    color: #00cca8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: #00cca8;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.open .faq-answer {
    max-height: 800px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer-inner {
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-controls {
    text-align: center;
    margin-top: 30px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 5px auto;
}

.btn-view-more:hover {
    background: #00cca8;
    color: #050c18;
    border-color: #00cca8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 204, 168, 0.2);
}

.btn-view-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-view-more.expanded i {
    transform: rotate(180deg);
}

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

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

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }
}