.dBlock {
    display: block;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 3000;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.copyright a{
	color:var(--primary-color)
}
.navbarContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoImg {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navLinks {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navLinks a {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.navLinks a:hover {
    color: #d4af37;
}

.navCta {
    background: var(--primary-color);
    padding: 10px 24px;
    border-radius: 100px;
    color: #000 !important;
    border: none;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navCta:hover {
    transform: translateY(-2px);
    background: #eac95b;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 15px rgba(212, 175, 55, 0.2);
}

.mobileMenuBtn {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 2500;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobileMenuBtn:hover {
    transform: scale(1.1);
}

.mobileMenuBtn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger Animation */
.mobileMenuBtn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
}

.mobileMenuBtn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobileMenuBtn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
}

.mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobileMenu.active {
    opacity: 1;
    visibility: visible;
}

.mobileMenuHeader {
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.closeMenu {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.closeMenu:hover {
    background: rgba(0, 0, 0, 0.066);
    transform: rotate(90deg);
}

.mobileLinks {
    text-align: center;
    width: 100%;
}

.mobileLinks a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
}

.mobileMenu.active .mobileLinks a {
    opacity: 1;
    transform: translateY(0);
}

.mobileLinks a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobileLinks a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobileLinks a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobileLinks a:nth-child(4) {
    transition-delay: 0.4s;
}

.mobileLinks a:nth-child(5) {
    transition-delay: 0.5s;
}

.mobileLinks a:hover {
    color: var(--primary-color);
    transform: scale(1.1) !important;
}



/* Hero Section */

.heroSection {
    padding: 212px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.textCenter {
    text-align: center;
}

.heroBgIcon {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 500px;
    color: rgb(255 255 255 / 3%);
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.heroBgIcon i {
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.05));
    transform: rotate(-10deg);
}

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

.heroBadge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(212 175 55 / 20%);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.heroBadge span {
    color: #fff;
    font-weight: 600;
    margin-right: 5px;
}

.heroTitle {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.textGradient {
    background: linear-gradient(to right, #ffffff 40%, #eac95b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroSubtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.heroActions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btnPrimary {
    background: var(--primary-color);
    color: var(--primary-text-on-btn);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.btnPrimary:hover {
    transform: translateY(-3px);
    background: #211d1d;
    color: #e7e7e7;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.464), 0 0 15px rgba(212, 175, 55, 0.2);
}

.btnGlass {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btnGlass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.heroStatsRow {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    padding-bottom: 45px;
    max-width: 800px;
    margin: 0 auto;
}

.statItem {
    display: flex;
    flex-direction: column;
}

.statNum {
    font-size: 2.4rem;
    font-weight: 700;
}

.statLabel {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.features {
    padding: 80px 0;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.sectionHeader h2 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sectionHeader p {
    color: var(--text-secondary);
}

.bentoGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 24px;
}

.bentoCard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bentoCard:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.cardLarge {
    grid-column: span 2;
    grid-row: span 2;
}

.cardTall {
    grid-column: span 1;
    grid-row: span 2;
    justify-content: space-between;
}

.cardWide {
    grid-column: span 1;
    grid-row: span 1;
    justify-content: center;
}

.cardSmall {
    grid-column: span 1;
    grid-row: span 1;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cour {
    padding-top: 0 !important;
}

.cardLarge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.cardLarge .cardContent {
    flex: 1;
}

.cardLarge .cardVisual {
    flex: 1;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.cardBadge {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cardList {
    margin: 20px 0;
    padding-left: 0;
}

.cardList li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cardList i {
    color: #fff;
    font-size: 0.8rem;
}

.btnSm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btnWhite {
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cardIcon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.bentoCard:hover .cardIcon img {
    transform: scale(1.1) rotate(5deg);
}

.bentoCard h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.bentoCard p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Marquee */
.marqueeSection {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.3);
}

.marqueeContent {
    display: inline-block;
    animation: scroll 20s linear infinite;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marqueeContent span {
    margin: 0 30px;
}

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

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


.coursesGrid {
    display: none;
}

.courseCard {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.courseCard:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cardIcon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cardIcon i {
    font-size: 24px;
    color: var(--primary-color);
}

.courseCard h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.courseCard p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.videoContainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    margin: 40px auto 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 900px;
}

.videoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Final CTA Section */
.finalCta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ctaWrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Glowing Background Orbs */
.ctaGlow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

.ctaGlow1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -150px;
    right: -100px;
}

.ctaGlow2 {
    width: 250px;
    height: 250px;
    background: #fff;
    bottom: -100px;
    left: -50px;
}


.ctaBadgeText {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ctaTitle {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.ctaDesc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.ctaFeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ctaFeatureItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Form Styles */

.ctaGlassForm {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.formInputFloating {
    position: relative;
    margin-bottom: 15px;
}

.formInputFloating input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px 10px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.formInputFloating label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.formInputFloating input:focus,
.formInputFloating input:not(:placeholder-shown) {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.03);
}

.formInputFloating input:focus~label,
.formInputFloating input:not(:placeholder-shown)~label {
    top: 15px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.formPrivacyText {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
/* .formInputFloating select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px 10px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.formInputFloating select:focus{
    border-color: var(--primary-color) !important;
    background: rgba(212, 175, 55, 0.03)  !important;
} */
.formInputFloating select {
    width: 100%;
    /* 1. Remove default iOS/Chrome appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* 2. Style to match your glass design */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 15px 8px; /* Adjusted padding for better label spacing */
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
    cursor: pointer;

    /* 3. Add a custom clean arrow (SVG) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

/* Hover & Focus states */
.formInputFloating select:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Fix for the option text color on mobile */
.formInputFloating select option {
    background-color: #fff; /* Dark background for the dropdown list */
    color: #000;
}
/* Keep label floated for select */
.formInputFloating select ~ label {
    top: 15px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}
.formInputFloating select{
    color:#fff;
    cursor:pointer;
}
select option{
	color:#000 !important
}
@media (max-width: 1200px) {
    .ctaWrapper {
        padding: 60px;
        gap: 40px;
    }

    .ctaTitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .ctaWrapper {
        padding: 50px 30px;
        text-align: center;
    }

    .ctaDesc {
        margin-left: auto;
        margin-right: auto;
    }

    .ctaFeatures {
        justify-content: center;
        margin-bottom: 40px;
    }
}

/* Audience Section */


.audienceCard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.audienceCard:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.audienceIcon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.audienceIcon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: 0.3s;
}

.audienceCard:hover .audienceIcon i {
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color);
}

.audienceCard h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.audienceCard p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.audienceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: 0.3s;
}

.audienceCard:hover::before {
    opacity: 1;
}

/* Testimonials */
/* Testimonials Slider */


/* Reference-inspired Testimonials */
.testimonialSlider {
    margin: 0 -15px;
    padding-bottom: 50px;
}

.testimonialSlide {
    padding: 15px;
}

.testimonialCard {
    border-radius: 20px;
    padding: 35px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.textCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.textCard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, rgba(212, 175, 55, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.textCard:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
}

.textCard .feedback {
    color: rgba(255, 255, 255, 0.8);
}

.textCard .testimonialName {
    color: #ffffff;
}

.textCard .role {
    color: rgba(255, 255, 255, 0.5);
}

.videoCard {
    background: url('https://img.youtube.com/vi/ZYskoRIhBCk/maxresdefault.jpg') center/cover;
    color: #ffffff;
    cursor: pointer;
}

.videoCard .cardAvatar {
    border: 2px solid #fff;
}

.cardAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cardAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: auto;
    color: inherit;
    font-style: normal;
}

.cardFooter {
    margin-top: 30px;
}

.testimonialName {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.role {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 2px;
}

.playIcon {
    position: absolute;
    top: 120px;
    left: 120px;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 2;
    transition: 0.3s;
}

.videoCard:hover .playIcon {
    background: var(--primary-color);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Inline Video Playing State */
.testimonialCard.video-playing {
    padding: 0;
}

.testimonialCard.video-playing .cardAvatar,
.testimonialCard.video-playing .cardFooter,
.testimonialCard.video-playing .playIcon,
.testimonialCard.video-playing .feedback,
.testimonialCard.video-playing .videoOverlay {
    display: none !important;
}

.inline-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 20px;
}

.videoOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.videoCard:hover .videoOverlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.videoCard .cardAvatar,
.videoCard .cardFooter,
.videoCard .playIcon {
    position: relative;
    z-index: 2;
}

.testimonialCard:hover {
    transform: translateY(-10px);
}

/* Slick Dots Customization */
.slick-dots li button:before {
    color: var(--primary-color) !important;
}

.text-white {
    color: #fff !important;
}


/* Video Modal */
.videoModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    padding: 20px;
}

.videoModalOverlay.active {
    opacity: 1;
    visibility: visible;
}

.videoModalContainer {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.videoModalContent {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.videoModalContent iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.closeVideoModal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3001;
}

.closeVideoModal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

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

.userAvatar.textAvatar {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.userInfo h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.userInfo span {
    font-size: 0.8rem;
    color: #666;
}



/* Simple FAQ Design */
/* .faqAccordion {
    border-top: 1px solid var(--border-color);
} */

.faqItem {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 0 30px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.faqItem:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.faqItem.is-open {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.01) 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.faqQuestion {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faqQuestion i {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: transform 0.3s, color 0.3s;
}

.faqItem.is-open .faqQuestion {
    color: var(--primary-color);
}

.faqItem.is-open .faqQuestion i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.answerContent {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}



/* CTA Section Cards */

.ctaSection {
    padding: 80px 0;
}

.ctaContainer {
    display: flex;
    justify-content: center;
}

.ctaCard {
    background: radial-gradient(circle at center, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 800px;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.ctaCard h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ctaForm {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 30px auto 15px;
}

.ctaForm input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    outline: none;
}

.ctaForm input:focus {
    border-color: #fff;
}



/* Footer section */

.footer {
    padding: 50px 0 0;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footerGrid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    margin-bottom: 20px;
}

.footerBrand .logo {
    display: block;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footerBrand p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 350px;
    font-size: 1rem;
}

.footerSocials {
    display: flex;
    gap: 15px;
}

.footerSocials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.footerSocials a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footerCol h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footerLinks li {
    margin-bottom: 14px;
}

.footerLinks a {
    color: var(--text-secondary);
    transition: 0.3s;
    display: inline-block;
}

.footerLinks a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.sebiSection {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.sebiBox h3 {
    margin-bottom: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.sebiBox p {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footerBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:15px;
    border-top: 1px solid var(--border-color);
    color: #666;
    font-size: 0.9rem;
}

.legalLinks {
    display: flex;
    gap: 30px;
}

.legalLinks a {
    color: #666;
    transition: 0.3s;
}

.legalLinks a:hover {
    color: var(--primary-color);
}


.enrollBtn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.bgTransparent {
    background: rgba(255, 255, 255, 0.02);
}

.footerCol ul {
    padding-left: 0;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.revealDelay1 {
    transition-delay: 0.1s;
}

.revealDelay2 {
    transition-delay: 0.2s;
}

.revealDelay3 {
    transition-delay: 0.3s;
}

/* Slick Dots Custom Styling */
.slick-dots {
    bottom: -45px;
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    margin: 0 0px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
    width: 32px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slick-dots li.slick-active button:hover {
    background: var(--primary-color);
}
.thankyou{
	display:flex;
	align-items:center;
	height:100vh;
	text-align: center;
}
.thankyou h3{
	font-size:4.2em
}