:root {
    --primary-blue: #1a56db;
    --accent-golden: #f59e0b;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for sticky footer */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #7e22ce, var(--primary-blue), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-top: 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-golden));
    border-radius: 5px;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-golden), #eab308);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.section-btn {
    text-align: center;
    margin-top: 40px;
}

/* Header */
header {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    z-index: 1000;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative; /* Add this to make it flow normally */
}

.header-text {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 50px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #fef7cd 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 600;
}

.hero-media {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.video-container {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: transparent; /* Remove white background */
    padding: 0; /* Remove padding */
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* YouTube video aspect ratio fix */
.video-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* Black background for video */
    border-radius: 15px;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Remove the white shine effect */
.video-placeholder::after {
    display: none;
}

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

.webinar-info {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.webinar-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-logo {
    text-align: center;
    margin-bottom: 5px;
}

.logo-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.coach-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    width: 40px;
    text-align: center;
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.info-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.hero-stat {
    text-align: center;
    flex: 1;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.hero-stat-text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-button-container {
    text-align: center;
    margin-top: 30px;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-blue), #7e22ce, var(--accent-golden));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    padding: 22px 80px;
    font-size: 1.4rem;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* About Section */
.about {
    background-color: #f8fafc;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-text {
    flex: 1;
}

.stats {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* What You'll Learn Section */
.learn {
    background-color: var(--white);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.learn-item:nth-child(even) {
    background: linear-gradient(135deg, #fef7cd, #fef3c7);
}

.learn-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.learn-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

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

.learn-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Who It's For Section */
.audience {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

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

.audience-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.audience-card:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    transform: translateY(-5px);
}

.audience-card:hover .audience-icon {
    background: var(--accent-golden);
    color: var(--white);
    transform: scale(1.1);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.audience-card h4 {
    font-size: 1.3rem;
}

/* Events Section */
.events {
    background-color: var(--white);
}

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

.event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

/* Community Section - VIP Members */
.community {
    background-color: #f8fafc;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.community-video {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.community-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.community-video .video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.community-video:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-thumbnail .play-button i {
    color: white;
    font-size: 28px;
}

.community-video:hover .video-thumbnail .play-button {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 1100px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail .play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-thumbnail .play-button i {
        font-size: 24px;
    }
}

/* Feedback Section */
.feedback {
    background-color: var(--white);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feedback-video {
    transition: var(--transition);
}

.feedback-video:hover {
    transform: translateY(-5px);
}

.feedback-video .video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--white);
}

.feedback-video .video-player:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feedback-video .video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

/* Achievements Section */
.achievements {
    background-color: #f8fafc;
}

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

.achievement-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

/* Client Feedback Section */
.client-feedback {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 50%, #7e22ce 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.client-feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.client-feedback h2 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    position: relative;
    z-index: 2;
}

.client-feedback h2::after {
    background: var(--accent-golden);
}

.feedback-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.feedback-track {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 25px;
    padding: 10px 0;
    width: max-content;
}

.feedback-slide {
    flex: 0 0 380px;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feedback-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.feedback-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 65px;
    height: 65px;
    background: var(--accent-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    background: var(--accent-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.client-details h4 {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.client-details p {
    margin: 6px 0 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.feedback-text p {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.rating {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.rating i {
    color: var(--accent-golden);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Continuous Chain Animation - Fixed for all screens */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 5 - 25px * 4));
    }
}

/* Pause animation on hover */
.feedback-slider:hover .feedback-track {
    animation-play-state: paused;
}

/* Mobile Responsive Design - FIXED CONTINUOUS SCROLL */
@media (max-width: 1200px) {
    .feedback-slide {
        flex: 0 0 350px;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-350px * 5 - 25px * 4));
        }
    }
}

@media (max-width: 992px) {
    .feedback-slider {
        mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    }
    
    .feedback-track {
        animation-duration: 35s;
    }
    
    .feedback-slide {
        flex: 0 0 320px;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-320px * 5 - 25px * 4));
        }
    }
}

@media (max-width: 768px) {
    .client-feedback {
        padding: 60px 0;
    }
    
    .feedback-slider {
        padding: 30px 0;
        mask: linear-gradient(90deg, transparent, white 3%, white 97%, transparent);
    }
    
    .feedback-track {
        animation: scroll 30s linear infinite;
        gap: 20px;
        padding: 5px 0;
    }
    
    .feedback-slide {
        flex: 0 0 300px;
    }
    
    .feedback-card {
        padding: 25px 20px;
        border-radius: 16px;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .feedback-card::before {
        font-size: 60px;
        top: 8px;
        right: 15px;
    }
    
    .client-info {
        flex-direction: row;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .client-avatar {
        width: 55px;
        height: 55px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .avatar-fallback {
        font-size: 1.2rem;
    }
    
    .client-details h4 {
        font-size: 1.15rem;
    }
    
    .client-details p {
        font-size: 0.9rem;
    }
    
    .feedback-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .rating i {
        font-size: 1rem;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-300px * 5 - 20px * 4));
        }
    }
}

@media (max-width: 576px) {
    .feedback-slider {
        mask: linear-gradient(90deg, transparent, white 2%, white 98%, transparent);
    }
    
    .feedback-track {
        animation-duration: 25s;
        gap: 15px;
    }
    
    .feedback-slide {
        flex: 0 0 280px;
    }
    
    .feedback-card {
        padding: 20px 18px;
        min-height: 260px;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .client-details h4 {
        font-size: 1.1rem;
    }
    
    .client-details p {
        font-size: 0.85rem;
    }
    
    .feedback-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .rating {
        gap: 4px;
    }
    
    .rating i {
        font-size: 0.9rem;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-280px * 5 - 15px * 4));
        }
    }
}

@media (max-width: 400px) {
    .feedback-slide {
        flex: 0 0 260px;
    }
    
    .feedback-card {
        padding: 18px 15px;
        min-height: 250px;
    }
    
    .client-avatar {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .feedback-text p {
        font-size: 0.9rem;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-260px * 5 - 15px * 4));
        }
    }
}

@media (max-width: 360px) {
    .feedback-slide {
        flex: 0 0 240px;
    }
    
    .feedback-card {
        padding: 16px 14px;
        min-height: 240px;
    }
    
    .client-avatar {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .client-details h4 {
        font-size: 0.95rem;
    }
    
    .client-details p {
        font-size: 0.8rem;
    }
    
    .feedback-text p {
        font-size: 0.85rem;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-240px * 5 - 15px * 4));
        }
    }
}


/* Webinar Section */
.webinar {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

.webinar h2 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.webinar h2::after {
    background: var(--accent-golden);
}

.webinar-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.webinar-text {
    flex: 1;
}

.webinar-text p {
    color: rgba(255, 255, 255, 0.9);
}

.webinar-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: var(--accent-golden);
}

.webinar-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.phone-input {
    display: flex;
}

.phone-prefix {
    background: var(--light-gray);
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
    font-weight: 500;
}

.phone-prefix img {
    width: 20px;
    height: 15px;
}

.phone-input .form-control {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #c026d3, #ec4899);
    font-size: 1.2rem;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}


/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

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

.image-modal-content {
    width: 80%;
    max-width: 800px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.close-image-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Desktop: center both */
    gap: 30px;
}

/* Countdown - White boxes with dark blue text */
.countdown-timer {
    display: flex;
    gap: 8px;
    font-weight: bold;
}

.countdown-box {
    background: var(--white); /* Changed to white */
    color: var(--primary-blue); /* Changed to dark blue */
    padding: 8px 10px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(26, 86, 219, 0.2); /* Subtle border */
}

.countdown-box div:first-child {
    font-size: 20px !important; /* Bigger font */
    line-height: 1;
    font-weight: 700;
}

.countdown-box div:last-child {
    font-size: 10px !important; /* Slightly bigger */
    opacity: 0.9;
    font-weight: 600;
}

/* Button - Desktop: Bigger button with same font */
.footer-register-btn {
    background: linear-gradient(135deg, #ec4899, #d946ef); /* Pink to purple gradient */
    color: var(--white); /* White text */
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 30px; /* Bigger padding for desktop */
    font-weight: 800; /* Bolder */
    font-size: 1.2rem; /* Same big font */
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* Zoom pulse animation effect */
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.footer-register-btn {
    animation: zoomPulse 2s infinite; /* Continuous zoom pulse effect */
}

/* Shine effect on hover */
.footer-register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.footer-register-btn:hover::before {
    left: 100%;
}

.footer-register-btn:hover {
    animation: zoomPulse 1s infinite; /* Faster pulse on hover */
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.6);
    background: linear-gradient(135deg, #d946ef, #ec4899); /* Reverse gradient on hover */
}

/* Remove the icon */
.footer-register-btn i {
    display: none;
}

/* MOBILE: Smaller button with same font size */
@media (max-width: 768px) {
    .sticky-footer {
        padding: 14px 0;
    }
    
    .footer-content {
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 0;
        padding: 0 10px;
    }
    
    .footer-countdown-container {
        width: 45%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .footer-button-container {
        width: 55%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .countdown-timer {
        gap: 6px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .countdown-box {
        min-width: 45px;
        padding: 6px 8px;
        flex: 1;
        max-width: 60px;
        background: var(--white);
        color: var(--primary-blue);
    }
    
    .countdown-box div:first-child {
        font-size: 18px !important;
        font-weight: 700;
    }
    
    .countdown-box div:last-child {
        font-size: 9px !important;
        font-weight: 600;
    }
    
    .footer-register-btn {
        padding: 6px 12px; /* Smaller padding for mobile */
        font-size: 1.1rem; /* Same big font */
        font-weight: 800;
        width: auto;
        animation: zoomPulse 2.5s infinite; /* Slower pulse on mobile */
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .footer-content {
        padding: 0 8px;
    }
    
    .countdown-timer {
        gap: 4px;
    }
    
    .countdown-box {
        min-width: 40px;
        padding: 5px 6px;
        max-width: 55px;
    }
    
    .countdown-box div:first-child {
        font-size: 16px !important;
    }
    
    .countdown-box div:last-child {
        font-size: 8px !important;
    }
    
    .footer-register-btn {
        padding: 5px 10px; /* Even smaller padding */
        font-size: 1rem; /* Same big font */
        font-weight: 800;
        animation: zoomPulse 3s infinite; /* Even slower pulse on very small screens */
    }
}

/* Very small devices */
@media (max-width: 380px) {
    .footer-countdown-container {
        width: 48%;
    }
    
    .footer-button-container {
        width: 52%;
    }
    
    .countdown-box {
        min-width: 35px;
        padding: 4px 5px;
        max-width: 50px;
    }
    
    .countdown-box div:first-child {
        font-size: 15px !important;
    }
    
    .countdown-box div:last-child {
        font-size: 7px !important;
    }
    
    .footer-register-btn {
        padding: 4px 8px; /* Smallest padding */
        font-size: 0.95rem; /* Same big font */
        font-weight: 800;
        animation: zoomPulse 3.5s infinite; /* Slowest pulse on smallest screens */
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-media {
        flex-direction: column;
    }
    
    .feedback-grid, .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content, .webinar-content {
        flex-direction: column;
    }
    
    .about-image, .about-text, .webinar-text, .webinar-form {
        width: 100%;
    }
    
    .hero {
        padding: 30px 0 80px;
    }

    .audience-grid, .community-grid, .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }

    

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .audience-grid, .community-grid, .events-grid, .feedback-grid, .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-video {
        height: 300px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

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

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 14px 13px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .webinar-form {
        padding: 30px 20px;
    }

    .header-text {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 18px 40px;
        font-size: 1.2rem;
    }

    .countdown {
        gap: 5px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
    
    /* YouTube Placeholder Styles for Mobile Video Fix */
.youtube-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.youtube-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.community-video:hover .youtube-placeholder img {
    transform: scale(1.05);
}

.youtube-placeholder .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.youtube-placeholder .play-button i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-left: 4px;
}

.community-video:hover .youtube-placeholder .play-button {
    background: var(--accent-golden);
    transform: translate(-50%, -50%) scale(1.1);
}

.community-video:hover .youtube-placeholder .play-button i {
    color: white;
}
}

