html {
    scroll-behavior: smooth;
}

.testimonial-carousel {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 150px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
    width: max-content;
    padding: 0 2rem;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 33.33%;
    width: 150px;
    height: 150px;
    
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 163, 255, 0.2) 0%, transparent 70%);
    z-index: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide:hover::before {
    opacity: 0.5;
}

.prop-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.prop-image:hover {
    transform: scale(1.02);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 163, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    backdrop-filter: var(--glass-blur);
}

.carousel-btn:hover {
    background: rgba(0, 163, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 1.5rem;
        height: 400px;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-track {
        flex-direction: column;
        width: 100%;
        height: max-content;
        padding: 0;
        transition: none;
        gap: 1.5rem;
    }

    .carousel-slide {
        width: 100%;
        height: 120px;
        margin: 0 auto;
    }

    .carousel-btn {
        display: none;
    }
    
    
    .testimonial-carousel::-webkit-scrollbar {
        width: 5px;
    }
    
    .testimonial-carousel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .testimonial-carousel::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        padding: 1rem;
        height: 350px;
    }

    .carousel-slide {
        height: 100px;
    }
}


:root {
    --primary-color: #00a3ff;
    --text-color: #ffffff;
    --background-color: #1a1a1a;  /* Lightened from #121212 */
    --glass-background: rgba(26, 26, 26, 0.95);  /* Adjusted to match new background */
    --glass-blur: blur(10px);
    --card-background: rgba(255, 255, 255, 0.1);  /* Increased opacity for better visibility */
    --section-separator: rgba(0, 163, 255, 0.15);
    --section-separator-glow: rgba(0, 163, 255, 0.02);
    --transition: all 0.3s ease;
    
    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;
}


[data-theme="light"] {
    --primary-color: #0066cc;
    --text-color: #1a1f2c;
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --secondary-color: #e9f0f7;
    --glass-background: rgba(255, 255, 255, 0.9);
    --glass-blur: blur(15px);
    --section-separator: rgba(0, 102, 204, 0.1);
    --section-separator-glow: rgba(0, 102, 204, 0.02);
}

[data-theme="light"] .hero::before {
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
    opacity: 0.85;
}

[data-theme="light"] .hero::after {
    background: linear-gradient(
        0deg,
        var(--background-color) 0%,
        rgba(248, 249, 250, 0.6) 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
}

[data-theme="light"] .hero h2 {
    color: #000000;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .feature-card {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-color);
}

[data-theme="light"] .feature-card i {
    color: var(--primary-color);
}


[data-theme="light"] .feature-card[data-aos-delay="400"] i,
[data-theme="light"] .feature-card[data-aos-delay="400"] h3 {
    color: #000000;
    text-shadow: none;
}

[data-theme="light"] .feature-card::before {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 99%);
}

[data-theme="light"] .section-title {
    background: linear-gradient(45deg, #1a1f2c, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .footer {
    background: #ffffff;
}

[data-theme="light"] .footer-text {
    color: #000000;
}

[data-theme="light"] .footer-link {
    color: #000000;
}

[data-theme="light"] .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

[data-theme="light"] .btn-outline {
    background: linear-gradient(135deg, #f8d231, #e6b800);
    border: 2px solid #d4af37; 
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .btn-outline::before {
    background: linear-gradient(45deg, #d4af37, #f8d231, #d4af37);
    opacity: 0.2;
    border-radius: 8px;
}

[data-theme="light"] .btn-outline:hover {
    background: linear-gradient(45deg, #e6b800, #d4af37);
    color: #000;
    border-color: #b8860b; 
    box-shadow: 
        0 7px 20px rgba(212, 175, 55, 0.4),
        0 0 15px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    letter-spacing: -0.01em;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 163, 255, 0.1) 1px, transparent 1px) 0 0,
        linear-gradient(0deg, rgba(0, 163, 255, 0.1) 1px, transparent 1px) 0 0;
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.1;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 163, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(0, 163, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 163, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 163, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Remove any scroll-based color changes */
.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 50px;  /* Increased from original size */
    width: auto;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .logo img {
        height: 50px;  /* Increased from 40px to 50px */
    }
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-right: 3rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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


.nav-links a[href="#mentorship"] {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(0, 163, 255, 0.1);
}

.nav-links a[href="#mentorship"]:hover {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.2);
}

.social-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 3rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    font-family: var(--body-font);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}


.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 75%;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.social-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-nav .social-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.7;
    font-family: var(--body-font);
}

.social-nav .social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    opacity: 1;
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--glass-background);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: 0.5s ease;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .social-nav {
        border-left: none;
        padding-left: 0;
        justify-content: center;
        width: 100%;
        margin-top: 2rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 2rem 0;
    }

    .social-nav .social-link {
        font-size: 1.5rem;
    }
}


.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 163, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 163, 255, 0.3);
}


.btn-outline {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    color: #ffd700; 
    border: 2px solid #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffcc00, #ffd700);
    z-index: -2;
    opacity: 0.2;
    border-radius: 8px;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #ffd700, #ffcc00);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 
        0 7px 20px rgba(255, 215, 0, 0.3),
        0 0 15px rgba(255, 215, 0, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover::after {
    opacity: 1;
}

.btn-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}


.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border: 2px solid transparent;
    border-right-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}


@media (max-width: 768px) {
    .btn-container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
        min-width: auto;
    }
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: var(--background-color);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../banner.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        var(--background-color) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}


@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 163, 255, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 5px 25px rgba(0, 163, 255, 0.5));
    transform: scale(1.05);
}

.hero h1 {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(0, 163, 255, 0.8),
        0 0 20px rgba(0, 163, 255, 0.6),
        0 0 30px rgba(0, 163, 255, 0.4),
        0 0 40px rgba(0, 163, 255, 0.2);
    animation: pulsate 2s infinite alternate;
}

@keyframes pulsate {
    0% {
        text-shadow: 
            0 2px 5px rgba(0, 0, 0, 0.7),
            0 0 10px rgba(0, 163, 255, 0.8),
            0 0 20px rgba(0, 163, 255, 0.6),
            0 0 30px rgba(0, 163, 255, 0.4),
            0 0 40px rgba(0, 163, 255, 0.2);
    }
    100% {
        text-shadow: 
            0 2px 5px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(0, 163, 255, 0.9),
            0 0 25px rgba(0, 163, 255, 0.7),
            0 0 35px rgba(0, 163, 255, 0.5),
            0 0 45px rgba(0, 163, 255, 0.3);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}


.features {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-grid > *:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(107, 7, 7, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 200px;
    aspect-ratio: 1.6;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.2) 0%, transparent 99%);
    transform: scale(1);
    transition: transform 0.5s ease;
    z-index: -1;
}

.feature-card:hover::before {
    transform: scale(1.2);
}

.feature-card {
    border: 1px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 
        0 10px 30px rgba(0, 163, 255, 0.2),
        0 0 20px rgba(0, 163, 255, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}


.feature-card[data-aos-delay="400"] {
    position: relative;
    overflow: hidden;
}

.feature-card[data-aos-delay="400"]::before {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 99%);
}

.feature-card[data-aos-delay="400"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: goldenGlow 5s ease-in-out infinite;
}

@keyframes goldenGlow {
    0% {
        background-size: 100% 100%, 100% 100%;
        background-position: 50% 50%, 50% 50%;
    }
    50% {
        background-size: 120% 120%, 120% 120%;
        background-position: 60% 60%, 40% 40%;
    }
    100% {
        background-size: 100% 100%, 100% 100%;
        background-position: 50% 50%, 50% 50%;
    }
}

.feature-card[data-aos-delay="400"] i {
    color: #ffd700;
    font-size: 2.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.feature-card[data-aos-delay="400"] h3 {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}


@media (max-width: 768px) {
    .feature-card {
        padding: 2rem;
        min-height: 180px;
        aspect-ratio: auto;
    }
}
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-grid > *:last-child:nth-child(2n + 1) {
        grid-column: auto;
        max-width: none;
    }

    .feature-card {
        padding: 2rem;
        min-height: 180px;
        aspect-ratio: auto;
    }
}


.about-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    font-family: var(--body-font);
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text strong {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    color: #ffffff;
}

[data-theme="light"] .about-text strong {
    text-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
    color: #000000;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-family: var(--body-font);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.about-text .btn-container {
    margin-top: 2.5rem;
}

.about-text .btn {
    background: linear-gradient(45deg, var(--primary-color), #0088ff);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--body-font);
}

.about-text .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0088ff, var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-text .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
}

.about-text .btn:hover::before {
    opacity: 1;
}

.about-text .btn span {
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.dan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    
    background: linear-gradient(
        45deg,
        rgba(0, 163, 255, 0.2),
        transparent 90%
    );
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.about-image:hover .dan-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover::after {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        text-align: center;
        font-size: 1rem;
    }

    .about-image {
        order: -1;
        width: 250px;
        height: 250px;
    }
}

/* Premium Features Section */
.premium-features,
.signals,
.mentorship-hero,
.about-dan,
.mentorship-perks,
.testimonials,
.contact-section {
    padding: 8rem 0;
    background-color: var(--background-color);
    position: relative;
}

/* Professional separator line */
.premium-features::after,
.signals::after,
.mentorship-hero::after,
.about-dan::after,
.mentorship-perks::after,
.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--section-separator) 20%,
        var(--section-separator) 80%,
        transparent 100%
    );
}

/* Subtle glow effect */
.premium-features::before,
.signals::before,
.mentorship-hero::before,
.about-dan::before,
.mentorship-perks::before,
.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--section-separator-glow) 20%,
        var(--section-separator-glow) 80%,
        transparent 100%
    );
    filter: blur(3px);
    transform: translateY(-1px);
}

/* Light theme adjustments */
[data-theme="light"] {
    --section-separator: rgba(0, 102, 204, 0.1);
    --section-separator-glow: rgba(0, 102, 204, 0.02);
}

.premium-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.premium-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.2) 0%, rgba(0, 163, 255, 0.1) 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.premium-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--text-color) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-card {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 163, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 120px rgba(0, 163, 255, 0.1);
}

/* Theme Toggle Styles */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#theme-toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--card-background);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--card-background);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--card-background);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 6rem 0;
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
}

.privacy-policy h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    text-align: center;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--section-separator);
}

.policy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.policy-content a {
    color: #26a5e4;
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    color: #1e80b8;
    text-decoration: underline;
}

.policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.policy-content li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    list-style: none;
}

.policy-content li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.policy-content li ul {
    margin-left: 1.5rem;
    padding-left: 0;
}

.policy-content li li {
    padding-left: 1.5rem;
    list-style: none;
}

.policy-content li li::before {
    content: "•";
    color: var(--text-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 4rem 0;
    }

    .privacy-policy h1 {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content p {
        font-size: 0.95rem;
    }

    .policy-content li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }

    .policy-content li li {
        padding-left: 1rem;
    }
}
    border-color: rgba(0, 163, 255, 0.2);
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.premium-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--primary-color);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .premium-icon::after {
    opacity: 1;
    transform: scale(1);
}

.premium-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.premium-card:hover .premium-icon i {
    color: white;
    transform: scale(1.1);
}

.premium-number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .premium-number {
    opacity: 1;
    transform: scale(1.1);
}

.premium-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
}

.premium-card p {
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .premium-features {
        padding: 5rem 0;
    }

    .premium-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0.5rem;
    }

    .premium-card {
        padding: 2rem;
    }

    .premium-number {
        top: 2rem;
        right: 2rem;
    }
}


.signals {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--background-color) 100%);
}

.signals h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}


.signals-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.signals-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.signals-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.signals-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}


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

.example-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.example-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.example-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.example-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}


.trading-example {
    margin-bottom: 3rem;
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .trading-example {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 0;
}

.chart-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(45, 45, 45, 0.95);  /* Lighter chart background */
    border: 1px solid rgba(0, 163, 255, 0.2);
    transition: all 0.3s ease;
}

[data-theme="light"] .chart-box {
    background: rgba(240, 245, 250, 0.9);
    border: 1px solid rgba(0, 102, 204, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chart-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 163, 255, 0.2);
}

.chart-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

[data-theme="light"] .chart-label {
    background: rgba(0, 102, 204, 0.8);
    color: white;
}

.chart-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
    max-height: 250px;
}

.chart-box:hover .chart-image {
    transform: scale(1.05);
}

.signal-info,
.signal-result {
    padding: 1.5rem;
}

.signal-info h4,
.signal-result h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}


.signal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(45, 45, 45, 0.95);  /* Lighter details background */
    border-radius: 10px;
    padding: 1rem;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 163, 255, 0.15);
}

[data-theme="light"] .signal-details {
    background: rgba(240, 245, 250, 0.9);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: rgba(55, 55, 55, 0.95);  /* Lighter item background */
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.detail-item:hover {
    background: linear-gradient(90deg, rgba(0, 163, 255, 0.25), rgba(0, 163, 255, 0.1));
    transform: translateX(5px);
}

[data-theme="light"] .detail-item {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.03));
    border-left: 3px solid rgba(0, 102, 204, 0.7);
}

[data-theme="light"] .detail-item:hover {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.05));
}

.detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

[data-theme="light"] .detail-value {
    color: #333333;
}


.result-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(20, 30, 40, 0.7);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 181, 67, 0.15);
}

[data-theme="light"] .result-items {
    background: rgba(240, 245, 250, 0.9);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(75, 181, 67, 0.15);
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    background: linear-gradient(90deg, rgba(75, 181, 67, 0.15), rgba(75, 181, 67, 0.05));
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid #4BB543;
}

.result-item:hover {
    background: linear-gradient(90deg, rgba(75, 181, 67, 0.25), rgba(75, 181, 67, 0.1));
    transform: translateX(5px);
}

[data-theme="light"] .result-item {
    background: linear-gradient(90deg, rgba(75, 181, 67, 0.1), rgba(75, 181, 67, 0.03));
}

[data-theme="light"] .result-item:hover {
    background: linear-gradient(90deg, rgba(75, 181, 67, 0.15), rgba(75, 181, 67, 0.05));
}

.success {
    color: #4BB543;
    font-weight: 700;
    font-size: 1rem;
}

.result-item i {
    color: #4BB543;
    font-size: 1.2rem;
}


.success-count-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.count-icon-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.count-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 163, 255, 0.3);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 0;
}

.count-icon i {
    color: white;
    font-size: 1.5rem;
}

.success-count {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    max-width: 500px;
}


@media (max-width: 768px) {
    .signals h2 {
        font-size: 2.2rem;
    }
    
    .signals-intro p {
        font-size: 1.1rem;
    }
    
    .example-title h3 {
        font-size: 1.5rem;
    }
    
    .trading-example {
        padding: 1.5rem 1rem;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-box {
        margin: 0 auto;
        max-width: 100%;
    }

    .chart-image {
        max-height: 220px;
    }
    
    .chart-label {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }

    .signal-info, .signal-result {
        padding: 1.2rem;
    }

    .signal-info h4,
    .signal-result h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .detail-item {
        padding: 0.4rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .success-count-container {
        text-align: center;
        padding: 1.2rem;
        border-radius: 15px;
        gap: 0.5rem;
    }
    
    .success-count {
        font-size: 1.2rem;
    }
}


.mentorship-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.mentorship-hero h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}


.mentorship-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 800px;
}

.tagline-item {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 50px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

[data-theme="light"] .tagline-item {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 102, 204, 0.03));
    border: 1px solid rgba(0, 102, 204, 0.15);
}

.tagline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 163, 255, 0.2);
}

.tagline-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    white-space: nowrap;
}

.tagline-item span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.tagline-item:hover span::after {
    width: 100%;
}

.tagline-separator {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 1.5rem;
    position: relative;
}

.tagline-separator::before,
.tagline-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 1px;
    background-color: rgba(0, 163, 255, 0.3);
}

.tagline-separator::before {
    right: 8px;
    transform: translateY(-50%);
}

.tagline-separator::after {
    left: 8px;
    transform: translateY(-50%);
}

.mentorship-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.6;
    color: var(--text-color);
}


.about-dan {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--background-color) 100%);
}

.about-dan-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.dan-image-container {
    text-align: center;
}

.dan-profile-image {
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.dan-profile-image:hover {
    transform: scale(1.03);
}

.dan-info h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dan-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.dan-info strong {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    color: #ffffff;
}

[data-theme="light"] .dan-info strong {
    text-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
    color: #000000;
}


.mentorship-perks {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.mentorship-perks h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.perks-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: var(--text-color);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.perk-card {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.perk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 163, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.3);
}

.perk-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 163, 255, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
}

.perk-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.perk-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}


.testimonials {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--background-color) 100%);
    text-align: center;
    overflow: hidden;
}

.testimonials-container {
    margin: 2rem auto 3rem;
    max-width: 800px;
    padding: 0 1rem;
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.04) 100%);
    padding: 30px 0;
}

.swiper-slide {
    text-align: center;
    padding: 10px;
}

.swiper-slide:hover img {
    transform: translateY(-5px);
}

.swiper-slide img {
    width: auto;
    height: auto;
    max-width: 65%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.05),
        0 0 0 3px rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.3);
    opacity: 0.8;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}

.testimonials h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.testimonials-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonials-container {
    margin-bottom: 4rem;
}

.testimonials-image {
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.testimonials-image:hover {
    transform: scale(1.02);
}

.success-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.success-story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4DA8FF;
    text-align: center;
    font-family: var(--heading-font);
    line-height: 1.2;
    margin: 0;
    padding: 0;
    background: none;
}

@media (max-width: 768px) {
    .success-story-title {
        font-size: 1.4rem;
        padding: 2rem;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--glass-background);
}

/* Video.js Custom Styling */
.video-js {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
}

.video-js .vjs-big-play-button {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 80px !important;
    height: 80px !important;
    border: none !important;
    border-radius: 50% !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    opacity: 0.9;
    transition: all 0.3s ease !important;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    content: "\f101" !important;
    font-size: 40px !important;
    line-height: 80px !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.video-js:hover .vjs-big-play-button {
    background-color: var(--primary-color) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    opacity: 1;
}

.video-js .vjs-control-bar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.video-js .vjs-progress-control .vjs-progress-holder {
    background: rgba(255, 255, 255, 0.2);
}

.video-js .vjs-play-progress {
    background-color: var(--primary-color);
}

.video-js .vjs-slider-bar {
    background: var(--primary-color);
}

.video-js .vjs-volume-panel,
.video-js .vjs-volume-control {
    transition: all 0.3s ease;
}

.video-js .vjs-volume-level {
    background-color: var(--primary-color);
}

[data-theme="light"] .video-container {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 163, 255, 0.3);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a3ff, #0088ff);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-container {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .video-js .vjs-big-play-button {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.contact-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 163, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.3);
    color: var(--primary-color);
}

.contact-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer {
    background: rgba(13, 13, 13, 0.95);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-option {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .footer-text {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.important-info {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.important-info h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 163, 255, 0.15);
    border-color: rgba(0, 163, 255, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 163, 255, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.5;
}

.disclaimer-box {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disclaimer-main {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-notes {
    text-align: center;
}

.disclaimer-notes h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.disclaimer-notes ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disclaimer-notes li {
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.disclaimer-notes li i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .important-info h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .disclaimer-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .disclaimer-main {
        font-size: 1rem;
    }

    .disclaimer-notes li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mentorship-hero {
        padding: 6rem 0 3rem;
    }

    .mentorship-hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .mentorship-tagline {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .tagline-separator {
        display: none;
    }

    .mentorship-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-dan {
        padding: 4rem 0;
    }

    .about-dan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .dan-info {
        text-align: center;
    }

    .dan-info h2 {
        font-size: 2rem;
    }

    .dan-info p {
        font-size: 1.1rem;
    }

    .dan-profile-image {
        max-width: 250px;
    }

    .mentorship-perks {
        padding: 4rem 0;
    }

    .mentorship-perks h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .perks-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .perks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .perk-card {
        padding: 2rem;
    }

    .perk-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .perk-card h3 {
        font-size: 1.3rem;
    }

    .perk-card p {
        font-size: 1rem;
    }
}
