:root {
    --primary-sans: "Plus Jakarta Sans", sans-serif;
    --primary-serif: "Cormorant Garamond", serif;
    --sky-blue-start: #dceffa;
    --sky-peach-mid: #fbf0e6;
    --sky-light-end: #f4fafd;
    --accent-orange: #ff5a36;
    --navy-dark: #0f172a;
    --text-gray: #475569;
}

body {
    font-family: var(--primary-sans);
    background: linear-gradient(
        180deg,
        var(--sky-blue-start) 0%,
        var(--sky-peach-mid) 35%,
        var(--sky-light-end) 70%,
        #ffffff 100%
    );
    color: var(--navy-dark);
    overflow-x: hidden;
    position: relative;
}

/* Ambient floating clouds background */
.ambient-cloud {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.65;
    filter: blur(8px);
    animation: drift 25s infinite linear;
}
.cloud-1 {
    top: 12%;
    left: -5%;
    width: 350px;
}
.cloud-2 {
    top: 40%;
    right: -10%;
    width: 450px;
    animation-duration: 35s;
}
.cloud-3 {
    top: 75%;
    left: -8%;
    width: 400px;
    animation-duration: 30s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 15px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Typography */
.serif-italic {
    font-family: var(--primary-serif);
    font-style: italic;
    font-weight: 500;
}

.serif-regular {
    font-family: var(--primary-serif);
    font-weight: 400;
}
.logo {
    max-width: 200px;
}
/* Navbar Customization */
.navbar {
    padding: 1.5rem 0;
    z-index: 10;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem !important;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--navy-dark);
}
.navbar-nav {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 6px 16px;
}
.btn-login {
    font-weight: 600;
    color: var(--navy-dark);
    text-decoration: none;
    font-size: 0.95rem;
    margin-right: 1.5rem;
    transition: opacity 0.3s ease;
}
.btn-login:hover {
    opacity: 0.8;
}
.btn-signup {
    background: #ffffff;
    color: var(--navy-dark);
    border: 1px solid rgba(15, 23, 42, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    background: var(--navy-dark);
    color: #ffffff;
}

/* Hero Styling */
.hero-section {
    padding: 5rem 0 7rem;
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}

.hero-subtext {
    font-size: 1.1rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Live Meeting Glass Card Container */
.live-meeting-container {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.video-box {
    background: linear-gradient(135deg, #e2f1fa 0%, #f5e6d8 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.5);
}

.avatar-overlays {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.avatar-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    overflow: hidden;
    background: #e2e8f0;
}
.avatar-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-timer {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.live-timer::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.9);
        opacity: 1;
    }
}

.instructor-avatar-center {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* SVG Vector Teacher portrait exactly placed in middle */
.instructor-svg-portrait {
    width: 80%;
    height: auto;
    max-height: 280px;
    margin-top: auto;
}

/* Control dock at bottom of live player */
.meeting-control-dock {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    z-index: 3;
}

.dock-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.dock-btn:hover {
    background: #e2e8f0;
    color: var(--navy-dark);
}
.dock-btn.active {
    background: var(--accent-orange);
    color: #ffffff;
}
.dock-btn.leave {
    background: #ef4444;
    color: #ffffff;
}
.dock-btn.leave:hover {
    background: #dc2626;
}

/* Hero Side Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 5;
    transition: transform 0.3s ease;
}
.floating-badge:hover {
    transform: translateY(-5px);
}

.badge-left {
    left: -12%;
    top: 25%;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    text-align: left;
}

.badge-left .quote-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.badge-right {
    right: -12%;
    top: 25%;
    max-width: 220px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    text-align: center;
}

@media (max-width: 1200px) {
    .floating-badge {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        margin: 20px auto !important;
        max-width: 100% !important;
    }
    .badge-left,
    .badge-right {
        text-align: center;
    }
}

/* Small explore link button in badge-left */
.btn-badge-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: background 0.3s;
}
.btn-badge-link:hover {
    background: var(--navy-dark);
    color: #ffffff;
}

/* Section 2: "Who we are" (Meet our Founder & Learn-By-Doing) */
.who-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

/* Left visual widget for Ajay Yadav with "Watch Video" popup */
.founder-video-card {
    position: relative;
    border-radius: 24px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
    max-width: 440px;
    margin: 0 auto;
}

.founder-photo-container {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff1e6 0%, #e0f2fe 100%);
    aspect-ratio: 1 / 1.05;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

/* Floating Video Play Button */
.btn-watch-video {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy-dark);
    transition: all 0.3s ease;
    z-index: 3;
}
.btn-watch-video:hover {
    transform: scale(1.05);
    background: var(--navy-dark);
    color: #ffffff;
}
.btn-watch-video i {
    background: #eff6ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 0.7rem;
}

/* Founder Identity overlay badge */
.founder-identity-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 280px;
    z-index: 4;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.founder-identity-badge p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-gray);
    margin: 0;
}

/* Stats Block Row matching design */
.mini-stat-item {
    border-right: 1px solid rgba(15, 23, 42, 0.1);
    padding: 0 20px;
}
.mini-stat-item:last-child {
    border-right: none;
}
.mini-stat-number {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 2px;
}
.mini-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Section 3: "More Ways To Sell" -> converted to CloudyData Core Programs Carousel */
.carousel-section {
    padding: 5rem 0 7rem;
    position: relative;
    z-index: 1;
}

/* Custom Card styling for Carousel elements */
.program-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 30px;
    margin: 15px 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.program-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
    border-color: rgba(255, 255, 255, 1);
}

.card-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.program-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: #0284c7;
    background: #e0f2fe;
    padding: 4px 12px;
    border-radius: 30px;
}

.program-duration {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 24px;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tool-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.program-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-dark);
}
.program-price span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
}

.btn-enroll {
    background: var(--navy-dark);
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition:
        background 0.3s,
        transform 0.2s;
    text-align: center;
}
.btn-enroll:hover {
    background: var(--accent-orange);
    color: #ffffff;
}

/* Carousel Arrows Style */
.owl-theme .owl-nav {
    margin-top: 30px;
}
.owl-theme .owl-nav [class*="owl-"] {
    background: #ffffff !important;
    color: var(--navy-dark) !important;
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: all 0.3s;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--navy-dark) !important;
    color: #ffffff !important;
}

/* Interactive FAQ Modal styling */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, #e0f2fe 0%, #f5e6d8 100%);
    border: none;
    padding: 24px;
}

/* Interactive Video Demo Modal style */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer aesthetic */
footer {
    background: #fafdfe;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}
.footer-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.6rem;
}
.footer-link:hover {
    color: var(--navy-dark);
}
