html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100%;
   /* overflow-x: hidden;
    overflow-y: hidden;*/
    background-color: #FAFAFA;
}

.scroll-container {
  /*  height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;*/
    position: relative;
}


.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotateY(30deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rotate-in.active {
    opacity: 1;
    transform: rotateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Interactive vocabulary space */
#vocabSpace {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vocabulary-tooltip {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    border-left: 4px solid #3B82F6;
}

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



.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Image containers */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

/* Vocabulary container */
.vocab-container {
    position: relative;
    width: 90%;
    height: 70%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(235, 245, 255, 0.7);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

/* CTA buttons */
.floating-cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: translateX(-50%) translateY(-5px);
}

/* Section backgrounds */
.bg-gradient-light {
    background: linear-gradient(135deg, #EBF5FF 0%, #F0F9FF 100%);
}

/* Card styles */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

/* Icon styles */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EBF5FF;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
    background-color: #3B82F6;
    color: white;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
}

/* Feature icon */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3B82F6;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    section {
        padding-top: 80px;
        /* Add space for fixed navbar */
    }

    .vocab-container {
        width: 95%;
        height: 60%;
    }

    .floating-cta {
        bottom: 20px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

/* Touch device optimizations */
@media (hover: none) {

    .btn-primary:active,
    .btn-secondary:active {
        transform: translateY(-3px);
    }

    .image-container:active {
        transform: translateY(-5px);
    }

    .floating-cta:active {
        transform: translateX(-50%) translateY(-5px);
    }
}



.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

/* Feature icon */
.feature-icon {
    background-color: #ebe9ff;
    color: #4f46e5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}



.feature-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item i {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-right: 1rem;
    background-color: #ebe9ff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.feature-item-content p {
    font-size: 1rem;
    color: #4b5563;
}

/* Cartoon elements */
.cartoon-bubble {
    position: absolute;
    background-color: white;
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #4f46e5;
    z-index: 5;
}

.cartoon-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.cartoon-bubble.right:after {
    left: auto;
    right: 20px;
}

/* Skool.com branding */
.skool-logo {
    background: linear-gradient(90deg, #3b5998 0%, #4f46e5 25%, #00acee 50%, #f58025 75%, #dd4b39 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Pricing table styles */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid #4f46e5;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -3rem;
    background-color: #4f46e5;
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.pricing-duration {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-feature i {
    color: #4f46e5;
    margin-right: 0.75rem;
}

.pricing-cta {
    text-align: center;
}

/* New styles for the redesigned hero section */
.option-card {
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.option-card:hover .option-content {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.option-card.dimmed .option-content {
    opacity: 0.6;
}

.character-container {
    transition: all 0.3s ease;
}

.option-card:hover .character-container {
    transform: translateY(-5px);
}

.platform {
    transition: all 0.3s ease;
}

/* Video section styles */
.play-overlay {
    transition: all 0.3s ease;
}

.play-button {
    transition: all 0.3s ease;
}

.play-overlay:hover .play-button {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.gsap-pulse {
    animation: pulse 2s infinite;
}

.video-btn-arrow {
    transition: all 0.3s ease;
}

/* Course section tooltip styles */
.course-feature {
    position: relative;
    cursor: pointer;
}

.course-tooltip {
    max-width: 300px;
    transition: all 0.3s ease;
}

/* Enhanced CTA button */
.enhanced-cta {
    padding-right: 3rem;
}

/* Comparison table styles */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 2rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead th {
    background-color: #f9fafb;
    font-weight: 600;
}

.comparison-row {
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background-color: #f9fafb;
}

.comparison-icon {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.comparison-table th:hover .comparison-icon {
    transform: translateY(-5px);
}

.feature-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e5e7eb;
    color: #4b5563;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-tag-premium {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bundle-offer {
    transition: all 0.3s ease;
}

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

/* Responsive styles */
@media (min-width: 640px) {

    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (min-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-table {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Add these new styles for the hero section */
.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-half {
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.hero-half::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.hero-half.dimmed::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-divider {
    z-index: 3;
}

.character-placeholder {
    transition: all 0.3s ease;
}

.hero-half:hover .character-placeholder {
    opacity: 0.8;
    transform: translateY(-10px);
}

/* Update comparison table styles */
.comparison-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    overflow: hidden;
}

.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
}

.comparison-table thead th {
    background-color: #f9fafb;
    font-weight: 600;
}

.comparison-row {
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background-color: #f9fafb;
}

.comparison-icon {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.comparison-table th:hover .comparison-icon {
    transform: translateY(-5px);
}

.feature-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e5e7eb;
    color: #4b5563;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-tag-premium {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bundle-offer {
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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


.btn-theme {
	color: #fff;
	background: #0d6efd;
	border-color: transparent
}

.btn-theme:active,
.btn-theme:focus,
.btn-theme:hover {
	color: #fff;
	background : #0d6efd;
	border-color: transparent
}
