/* Sprofitzone Design System */
:root {
    --primary: #FF7F00;
    --primary-glow: #ff7f0080;
    --dark-bg: #0f0f0f;
    --section-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --border-color: #FF7F00;
    --text-main: #FFFFFF;
    --text-sec: #cccccc;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gradient-main: linear-gradient(135deg, #FF7F00 0%, #FF4500 100%);
    --gradient-dark: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
}

[data-theme="light"] {
    --dark-bg: #ffffff;
    --section-bg: #f9f9f9;
    --card-bg: #ffffff;
    --border-color: #FF7F00;
    --text-main: #111111;
    --text-sec: #777777;
    --gradient-dark: linear-gradient(to bottom, #ffffff, #f0f0f0);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
a {
    transition: color 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Utilities */
.container {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* Button Entry Animation */
[data-aos="fade-up"] .btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: background 0.4s ease, border-color 0.4s ease;
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--primary);
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-only-btn {
        display: none !important;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 0;
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    line-height: 1;
    transition: transform 0.3s ease, color 0.4s ease;
}

.highlight-p {
    font-size: 3.8rem;
    /* Makes P stand out significantly */
    color: var(--primary);
    font-style: italic;
    margin: 0 -2px;
    position: relative;
    top: 5px;
    /* Chrome/Gold 3D Effect for P */
    text-shadow:
        1px 1px 0px #FF9F40,
        2px 2px 0px #FF7F00,
        3px 3px 0px #CC6600,
        0 0 30px var(--primary-glow);
    filter: drop-shadow(0 0 10px var(--primary));
}

.logo:hover .logo-text {
    transform: scale(1.05) skewX(-2deg);
}

/* Redesign Scanner for new size */
.logo::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scan 4s linear infinite;
    border-radius: 10px;
}

@keyframes scan {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.logo:hover .logo-text {
    text-shadow: 0 0 15px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a,
.nav-links a:visited,
.nav-links a:active,
.nav-links a:link {
    color: var(--text-main) !important;
    /* Force white color */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 50%, #2a1500 0%, var(--dark-bg) 70%);
    transition: background 0.4s ease;
}

[data-theme="light"] .hero {
    background: radial-gradient(circle at 50% 50%, #fff0e0 0%, #f9f9f9 70%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease-out;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-sec);
    margin-bottom: 40px;
    animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    animation: fadeUp 1s ease-out 0.4s backwards;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.hero-buttons .btn {
    margin: 0;
}

/* Floating Elements Animation */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 5s infinite alternate;
}

.hero-feature-box {
    border: 2px solid var(--primary);
    padding: 30px;
    display: inline-block;
    border-radius: 15px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 127, 0, 0.15);
    transition: background 0.4s ease;
}

/* Running Services Carousel (Second Section) */
section#services .carousel-track {
    display: inline-flex;
    white-space: nowrap;
    gap: 30px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
}

section#services {
    overflow: hidden;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
}

.carousel-card {
    min-width: 300px;
    background: var(--card-bg);
    border: 1px solid var(--primary);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.carousel-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 127, 0, 0.2);
}

.carousel-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    background: rgba(255, 127, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Headings */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

/* NOTE: We need double content for infinite scroll, -50% ensures seamless */

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

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

/* Pause animations when video is playing */
body.video-playing .marquee-content,
body.video-playing .ticker-track {
    animation-play-state: paused !important;
}


/* Influencer Section & Swiper */
.influencer-section {
    position: relative;
}

.influencer-card {
    padding: 15px;
    transition: transform 0.3s ease;
}

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

.influencer-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Instagram Square Aspect Ratio */
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.influencer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.influencer-card:hover .influencer-img-wrapper img {
    transform: scale(1.1);
}

.influencer-swiper {
    padding-bottom: 60px !important;
    padding-top: 20px;
}

.influencer-swiper .swiper-pagination-bullet {
    background: var(--text-sec);
    opacity: 0.5;
}

.influencer-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.influencer-swiper .swiper-button-next,
.influencer-swiper .swiper-button-prev {
    color: var(--primary);
    transform: scale(0.7);
    filter: drop-shadow(0 0 5px rgba(255, 127, 0, 0.5));
}

@media (max-width: 768px) {
    .influencer-img-wrapper {
        max-width: 280px;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Add mobile menu later */
    }
}

/* Global Community Section */
.community-section {
    padding: 100px 0;
    text-align: center;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.community-content p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.8;
}

.globe-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    border: 1px dashed rgba(255, 127, 0, 0.2);
    animation: spinGlobe 60s linear infinite;
    z-index: 1;
}

/* Simulated dots for globe */
.globe-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    border-radius: 50%;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 200px 50px;
    /* Vertical gap large to surround globe, horizontal gap narrow */
    width: 100%;
    max-width: 800px;
}

.stat-box {
    background: var(--gradient-main);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 0 20px rgba(255, 127, 0, 0.4);
    width: 280px;
    margin: 0 auto;
    transition: transform 0.3s;
}

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

.stat-box i {
    font-size: 2rem;
    color: #000;
    /* Contrast icon */
}

.stat-text {
    text-align: left;
}

.stat-text h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1;
    color: black;
}

.stat-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

@keyframes spinGlobe {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



/* Testimonials Marquee */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark-bg);
    overflow: hidden;
    /* Hide overflow for marquee */
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
    padding-left: 30px;
    /* Initial gap */
}

.feedback-card {
    min-width: 350px;
    /* Use orange gradient for all feedback cards as per image preference or mix */
    background: linear-gradient(135deg, #FF7F00 0%, #FF4500 100%);
    color: #000;
    border-radius: 20px;
    padding: 30px;
}

.feedback-card p {
    color: black;
    font-weight: 500;
}

.feedback-card .user-profile h4 {
    color: black;
}

.feedback-card .user-profile span {
    color: rgba(0, 0, 0, 0.6);
}

.feedback-card .user-avatar {
    background: rgba(0, 0, 0, 0.1);
}

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

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


/* Membership Section */
.membership-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.pricing-card {
    background: var(--card-bg);
    text-align: center;
    position: relative;
    padding-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
    border: 1px solid var(--primary);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

.pricing-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--text-main);
    padding: 40px 20px 60px;
    position: relative;
    margin-bottom: 30px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
    transition: background 0.4s ease;
}

[data-theme="light"] .pricing-header {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    color: #fff;
}

.pricing-card.gold .pricing-header {
    background: #ff6b6b;
}

.pricing-hot-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px));
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--font-body);
    text-transform: none;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 5px;
    transform: translateY(-15px);
}

.pricing-price .period {
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 5px;
    text-transform: uppercase;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-features li {
    padding: 12px 20px;
    color: var(--text-sec);
    font-size: 1rem;
    border-bottom: 1px solid var(--primary);
}

.pricing-features li:first-child {
    border-top: 1px solid var(--primary);
}

.plan-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-sec);
    padding: 10px 20px 16px;
    opacity: 0.85;
    line-height: 1.5;
}

.pricing-action {
    padding: 0 20px;
}

.btn-buy {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-buy:hover {
    background: #cc6200;
    transform: translateY(-2px);
}

.pricing-card.gold .btn-buy {
    background: var(--primary);
    color: white;
}

.pricing-card.gold .btn-buy:hover {
    background: #cc6200;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.feedback-card {
    background: var(--section-bg);
    /* Changed to dark for better contrast with orange text/icons or keep orange */
    background: linear-gradient(135deg, #FF7F00 0%, #FF4500 100%);
    color: white;
    border: none;
    text-align: left;
}

.feedback-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

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

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact & FAQ Section */
.contact-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--section-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-sec);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Newsletter */
.newsletter-box {
    background: var(--section-bg);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    border: 1px solid #333;
}

.newsletter-content {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    background: var(--card-bg);
    color: var(--text-main);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    background: var(--dark-bg);
    transition: background 0.4s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-email,
.footer-phone {
    color: var(--text-sec);
    font-size: 0.9rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col a {
    color: var(--text-sec);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover,
.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

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

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

/* Animation Keyframes needed for map */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll Animations (AOS) */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

/* About Page Styles */
.boxed-label {
    border: 1px solid var(--primary);
    padding: 5px 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.founder-section {
    padding-top: 150px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 0%, #331500 0%, #000 60%);
    text-align: center;
}

.founder-header h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.founder-header .highlight-text {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 127, 0, 0.4);
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
    /* Inner glow effect */
    box-shadow: inset 0 0 50px rgba(255, 127, 0, 0.05);
}

.founder-image-box {
    flex-shrink: 0;
}

.founder-image-box img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    /* Slight rounded/square */
    filter: grayscale(100%);
}

.founder-details h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: white;
}

.founder-details h3 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.founder-details p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.founder-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: auto;
}

.founder-socials a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.founder-socials a:hover {
    background: var(--primary);
    color: #000;
}

.founder-text {
    max-width: 900px;
    margin: 0 auto;
    color: #bbb;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
}

.founder-text p {
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 60px;
}

.section-subtitle {
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
}

.orange-text {
    color: var(--primary);
}

.methodology-section,
.commitment-section,
.ecosystem-section,
.future-section {
    padding: 50px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--section-bg);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.method-card:hover {
    border-color: var(--primary);
    border-top-color: var(--primary);
    transform: translateY(-5px);
}

.method-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.method-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.methodology-footer {
    margin-top: 40px;
    color: #777;
    font-size: 0.85rem;
}

/* Responsiveness for Founder Card */
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .founder-socials {
        flex-direction: row;
        margin: 0 auto;
    }

    .founder-header h1 {
        font-size: 2.5rem;
    }
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

[data-theme="light"] .hamburger {
    color: var(--primary) !important;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    /* Or 100% for full screen */
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    /* Above header */
    padding: 30px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

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

.close-menu {
    align-self: flex-end;
    font-size: 2rem;
    margin-bottom: 30px;
    cursor: pointer;
    color: var(--text-sec);
    transition: color 0.3s;
}

.close-menu:hover {
    color: var(--primary);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
}

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

/* Academy Page Styles */
.academy-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 30%, #2a1500 0%, #0a0a0a 70%);
}

.academy-search-box {
    max-width: 600px;
    margin: 30px auto;
    position: relative;
}

.academy-search-box input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--section-bg);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.academy-search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    /* Match input height roughly */
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Suggested Articles (Large Feature Cards) */
.suggested-section {
    padding-bottom: 50px;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    /* Larger minimum width */
    gap: 30px;
    margin-top: 30px;
}

.mini-article-card {
    background: var(--section-bg);
    border: 1px solid #222;
    border-radius: 15px;
    /* More rounded */
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Stack vertically for bigger impact */
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
}

.mini-article-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.15);
}

.mini-article-card img {
    width: 100%;
    height: 200px;
    /* Much larger image */
    object-fit: cover;
    border-radius: 10px;
}

.mini-article-info h4 {
    font-size: 1.2rem;
    /* Larger font */
    margin: 0;
    line-height: 1.4;
    color: white;
    font-weight: 700;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.article-card {
    background: var(--section-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.article-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
    /* gentle animation */
}

/* Glossary Section */
.glossary-section {
    padding: 100px 0;
    background: #080808;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.glossary-item {
    background: #121212;
    padding: 25px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.glossary-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.glossary-item p {
    font-size: 0.9rem;
    color: #888;
}

/* Article Detail Page */
.article-detail-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    /* Clear header */
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.article-meta {
    margin-top: 15px;
    color: #ccc;
    font-size: 0.9rem;
}

.article-body-container {
    max-width: 800px;
    margin: -50px auto 100px;
    /* Pull up to overlap hero slightly */
    padding: 40px;
    background: var(--section-bg);
    border-radius: 20px;
    position: relative;
    z-index: 3;
    border: 1px solid #222;
}

.article-body h2 {
    color: white;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.article-body p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 10px;
    color: #ccc;
    margin-left: 20px;
}

/* Responsive Styles Update */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .article-body-container {
        padding: 20px;
        margin-top: 0;
        border-radius: 0;
    }
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Partners Page Styles */
.partners-hero {
    padding: 180px 0 100px;
}

.partners-intro {
    padding: 80px 0;
}

.partners-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partners-info-card {
    text-align: center;
}

.partners-section {
    padding: 80px 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.partner-card-link:hover {
    transform: scale(1.05);
}

.partner-card {
    text-align: center;
    padding: 50px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-logo-box {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.partner-name {
    font-weight: 700;
    color: var(--text-sec);
    margin-top: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.unlock-features {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.unlock-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.unlock-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.unlock-box p {
    font-size: 1.1rem;
    color: var(--text-sec);
    margin-bottom: 30px;
}

.market-updates {
    padding: 80px 0;
}

.nav-container a.active {
    color: var(--primary);
}

/* Partner Grid Mobile Responsiveness */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .partner-logo-box {
        height: 180px;
    }

    .partner-card {
        min-height: 250px;
        padding: 40px 20px;
    }
}

/* =========================================
   MENTORSHIP PAGE STYLES
   ========================================= */

.mentorship-hero-centered {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bg-glow-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.2;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-cta-box {
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.btn-pill {
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-intro-text {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.hero-intro-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-intro-text p {
    font-size: 1.1rem;
    color: var(--text-sec);
    line-height: 1.8;
}

/* Golden Features */
.golden-features {
    padding: 80px 0;
}

.section-title-gold {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-gold h2 {
    font-size: 2.5rem;
}

.features-grid-4x3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gold-feature-item {
    background: rgba(255, 127, 0, 0.05);
    /* Slight orange tint */
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
}

.gold-feature-item:hover {
    background: rgba(255, 127, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.1);
}

.gold-feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.gold-feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Three Levels */
.three-levels-section {
    padding: 80px 0;
}

.levels-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.levels-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.level-card {
    background: var(--section-bg);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: 0.3s;
}

.level-card:hover {
    border-color: var(--primary);
}

.level-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 127, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.level-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.level-text span {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.level-number {
    margin-left: auto;
    font-size: 3rem;
    font-weight: 800;
    color: #222;
}

/* Q&A Section */
.qa-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.qa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qa-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.qa-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
}

.qa-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.qa-item p {
    color: var(--text-sec);
    font-size: 0.95rem;
}

/* Confidence */
.confidence-section {
    padding: 80px 0;
}

.confidence-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.confidence-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conf-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--section-bg);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.conf-bullet {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: black;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mastery Card */
.mastery-section {
    padding: 80px 0;
}

.mastery-card-large {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(255, 127, 0, 0.2);
}

.mastery-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d0d0d;
    overflow: hidden;
}

.fox-master-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fox-character-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.mastery-content {
    padding: 50px;
    text-align: left;
}

.mastery-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
}

.mastery-features {
    list-style: none;
    margin: 30px 0;
}

.mastery-features li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.mastery-price span {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Student Feedback (Orange Cards) */
.student-feedback {
    padding: 80px 0;
}

.feedback-card-orange {
    background: linear-gradient(135deg, #FF7F00 0%, #FF4500 100%);
    padding: 30px;
    border-radius: 20px;
    color: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.feedback-card-orange p {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.student-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Course Content */
.course-content-section {
    padding: 80px 0;
    background: #080808;
}

.curriculum-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.curr-item {
    background: var(--section-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.curr-item:hover {
    background: #222;
    color: var(--primary);
}

/* Application Form */
.apply-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--section-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
}

.expert-form {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-form input,
.expert-form select {
    padding: 15px;
    background: var(--section-bg);
    border: 1px solid #333;
    color: white;
    border-radius: 8px;
}

.whatsapp-btn {
    text-align: center;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.apply-image {
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.apply-image .fox-character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Mentorship */
@media (max-width: 900px) {

    .features-grid-4x3,
    .levels-layout,
    .qa-layout,
    .confidence-layout,
    .curriculum-container,
    .apply-layout {
        grid-template-columns: 1fr;
    }

    .mastery-card-large {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .apply-image {
        display: flex;
        height: 200px;
        order: -1;
        /* Show image on top of form */
    }

    .mastery-image {
        display: flex;
        height: 300px;
        /* Taller on mobile for better proportion */
        order: -1;
    }

    .mastery-content {
        padding: 30px 20px;
        text-align: center;
    }

    .mastery-features li {
        justify-content: center;
    }

    .levels-image,
    .qa-image,
    .confidence-image {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        order: -1;
        /* Move images to top on mobile */
    }

    .fox-character-img {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* =========================================
   ABOUT PAGE STYLES (ENHANCED)
   ========================================= */

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.boxed-label {
    /* Gradient Border / Glow Effect */
    position: relative;
    background: var(--section-bg);
    padding: 15px 40px;
    /* Larger padding */
    font-size: 1.2rem;
    /* Larger text */
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
    font-weight: 800;
    border-radius: 4px;
    z-index: 1;
    display: inline-block;
}

.boxed-label::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 6px;
    background: linear-gradient(45deg, #ff7f00, #ff4500, #ffae00, #ff7f00);
    background-size: 400% 400%;
    animation: neonGlow 3s ease infinite;
    z-index: -1;
    filter: blur(8px);
    /* Stronger glow */
}

.boxed-label::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 5px;
    background: var(--section-bg);
    z-index: -1;
}

.founder-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 50% 0%, #331500 0%, #000 60%);
    text-align: center;
}

.founder-header h1 {
    font-size: 8rem;
    /* MASSIVE Text */
    line-height: 0.85;
    margin-bottom: 80px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -2px;
}

.founder-header .highlight-text {
    color: var(--primary);
    text-shadow: 0 0 60px rgba(255, 127, 0, 0.6);
    display: block;
    /* Stack on new line usually, or part of flow */
}

.founder-card {
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    max-width: 1100px;
    /* Much wider frame */
    margin: 0 auto 80px;
    padding: 60px;
    /* Heavy padding */
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    overflow: visible;
    z-index: 1;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Animated Border for Founder Card */
.founder-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(45deg, #ff7f00, #2a1500, #ff4500, #ff7f00);
    background-size: 300% 300%;
    animation: neonGlow 6s ease infinite;
    z-index: -1;
}

/* Glow under the card */
.founder-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 100px rgba(255, 69, 0, 0.25);
    z-index: -2;
}

.founder-image-box {
    flex-shrink: 0;
}

.founder-image-box img {
    width: 280px;
    /* Much Larger Image */
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%) contrast(1.2);
    border: 2px solid rgba(255, 127, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 127, 0, 0.1);
}

.founder-details h2 {
    font-size: 4rem;
    /* Massive Name */
    margin-bottom: 15px;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
}

.founder-details h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.founder-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 600px;
}

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

.founder-socials a {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.founder-socials a:hover {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
    transform: translateY(-5px);
}

/* Responsive adjustments for the massive sizes */
@media (max-width: 1024px) {
    .founder-header h1 {
        font-size: 5rem;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
    }

    .founder-details p {
        margin: 0 auto;
    }

    .founder-socials {
        justify-content: center;
    }

    .founder-image-box img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .founder-header h1 {
        font-size: 3.5rem;
    }

    .founder-details h2 {
        font-size: 2.5rem;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #2a1500 0%, #000 60%);
}

.contact-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.quote-icon {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
}

.gold-separator {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 10px;
    border-radius: 2px;
}

/* Contact Section Grid */
.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 127, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1rem;
}

/* Image/Visual Column */
.contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.bitcoin-visual {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #2a1500 0%, #000 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bitcoin-icon-large {
    font-size: 15rem;
    color: var(--primary);
    filter: drop-shadow(0 0 50px rgba(255, 127, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.circuit-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 127, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 127, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* Newsletter Section (Specific to Contact Page if needed) */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
}

.newsletter-box {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-content p {
    color: var(--text-sec);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 15px 25px;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image-wrapper {
        min-height: 300px;
        order: -1;
        /* Show image on top on mobile if desired, or keep generic order */
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-title {
        font-size: 3rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HOMEPAGE ENHANCEMENTS STYLES
   =================================== */

/* Mobile Menu Join Button */
.mobile-join-btn {
    display: block;
    margin: 30px 20px 20px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff7f00 0%, #ff4500 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 127, 0, 0.4);
    transition: all 0.3s ease;
}

.mobile-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 127, 0, 0.6);
}

/* Hero Section Gradient Buttons */
.btn-primary-gradient {
    background: linear-gradient(135deg, #ff7f00 0%, #ff4500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-gradient:hover {
    box-shadow: 0 6px 30px rgba(255, 127, 0, 0.6);
    transform: translateY(-3px);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 127, 0, 0.1);
    box-shadow: 0 4px 20px rgba(255, 127, 0, 0.3);
}

/* News Ticker */
section.news-ticker {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 127, 0, 0.1);
    border-bottom: 1px solid rgba(255, 127, 0, 0.1);
    position: relative;
}

.ticker-wrapper {
    width: 100%;
    white-space: nowrap;
    display: inline-block;
    animation: scrollLeft 30s linear infinite;
}

.ticker-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.ticker-item {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

/* Globe Background for Stats (Desktop Only) */
.stats-with-globe {
    position: relative;
}

.stats-with-globe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('images/final-map1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Plan card images are handled in the Membership Section styles */

/* Mentor Section */
.mentor-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    position: relative;
}

.mentor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Mentor Swiper Carousel Styles */
.mentor-swiper {
    padding: 40px 10px 80px !important;
    margin-top: 20px;
}

.mentor-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.mentor-swiper .mentor-card {
    height: 100%;
    margin: 10px 0 20px;
}

.mentor-swiper .swiper-pagination-bullet {
    background: var(--primary);
}

.mentor-swiper .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
}

.mentor-swiper .swiper-button-next,
.mentor-swiper .swiper-button-prev {
    color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--section-bg);
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 50%;
}

.mentor-swiper .swiper-button-next:after,
.mentor-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {

    .mentor-swiper .swiper-button-next,
    .mentor-swiper .swiper-button-prev {
        display: none;
        /* Hide arrows on small mobile to avoid clutter */
    }

    .mentor-swiper {
        padding: 20px 0 60px !important;
    }
}

.mentor-card {
    background: var(--section-bg);
    border: 2px solid rgba(255, 127, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.mentor-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff7f00, #ff4500, #ff7f00, #ff4500);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradient-rotate 4s ease infinite;
}

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

@keyframes gradient-rotate {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 127, 0, 0.3);
}

.mentor-avatar-wrapper {
    position: relative;
    margin: 0 auto 25px;
    width: 250px;
    /* Increased for better visibility on desktop */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.mentor-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.mentor-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid var(--primary);
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 127, 0, 0.4);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.2), rgba(255, 69, 0, 0.2));
}

.mentor-card:hover .mentor-avatar-img {
    box-shadow: 0 0 50px rgba(255, 127, 0, 0.8);
    transform: scale(1.05);
}

.mentor-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.2), rgba(255, 69, 0, 0.2));
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 127, 0, 0.5);
    transition: all 0.3s ease;
}

.mentor-card:hover .mentor-avatar {
    box-shadow: 0 0 50px rgba(255, 127, 0, 0.8);
    transform: scale(1.05);
}

.mentor-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.mentor-card:hover .mentor-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.mentor-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
}

.mentor-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mentor-bio {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mentor-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.mentor-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 127, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 127, 0, 0.1);
    transition: all 0.3s ease;
}

.mentor-stat:hover {
    background: rgba(255, 127, 0, 0.1);
    border-color: rgba(255, 127, 0, 0.3);
}

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

.mentor-stat span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */

/* Tablet & Below */
@media (max-width: 1024px) {

    /* Hide globe on tablets */
    .stats-with-globe::before {
        opacity: 0.15;
        width: 400px;
        height: 400px;
    }

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

    /* Plan card image height handled by aspect-ratio in membership section */
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* Hide globe background but KEEP container for stats */
    .globe-bg,
    .stats-with-globe::before {
        display: none !important;
    }

    .globe-container {
        height: auto;
        /* Remove fixed height on mobile */
        min-height: auto;
        display: block;
        /* Ensure it's not hidden if previously forced */
    }

    /* Circular Glowing Stats for Mobile */
    .stats-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 50px 0;
        width: 100%;
    }

    /* Circular Glowing Stats for Mobile Only */
    .stat-box {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: linear-gradient(135deg, #FFF5E6 0%, #FFB347 50%, #FF7F00 100%);
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        position: relative;
        margin: 0 auto 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1;
        overflow: visible;
        /* To allow glow to show */
    }

    /* Animated Glowing Border */
    .stat-box::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        background: linear-gradient(45deg, #FF7F00, #FFD700, #FF4500, #FF7F00);
        background-size: 400%;
        z-index: -1;
        animation: steam 20s linear infinite;
        filter: blur(8px);
        opacity: 0.7;
    }

    @keyframes steam {
        0% {
            background-position: 0 0;
        }

        50% {
            background-position: 400% 0;
        }

        100% {
            background-position: 0 0;
        }
    }

    .stat-box i {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 5px;
    }

    .stat-box .stat-text {
        text-align: center;
    }

    .stat-box .stat-text h3 {
        font-size: 2.4rem;
        color: #000;
        font-weight: 800;
        margin: 0;
    }

    .stat-box .stat-text span {
        font-size: 0.75rem;
        color: #444;
        font-weight: 600;
        text-transform: uppercase;
        display: block;
        max-width: 140px;
        margin: 0 auto;
    }

    /* News Ticker Mobile */
    .ticker-item {
        font-size: 0.95rem;
    }

    /* Mentor Section Mobile */
    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mentor-avatar-wrapper,
    .mentor-avatar {
        width: 100%;
        max-width: 300px;
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .mentor-avatar {
        font-size: 50px;
    }

    .mentor-card h3 {
        font-size: 1.4rem;
    }

    .mentor-bio {
        font-size: 0.9rem;
    }

    /* Plan Cards Mobile */
    /* Plan card image height handled by aspect-ratio in membership section */

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Hero Buttons Mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stat-box {
        width: 160px;
        height: 160px;
    }

    .stat-box .stat-text h3 {
        font-size: 1.8rem;
    }

    .ticker-item {
        font-size: 0.85rem;
        gap: 8px;
    }

    .mentor-card {
        padding: 30px 20px;
    }

    .mobile-join-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

/* =========================================
   LEGAL PAGES STYLES (Privacy Policy & Terms)
   ========================================= */

.legal-hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 0%, #331500 0%, #000 60%);
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(255, 127, 0, 0.5);
}

.legal-hero p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px;
}

.legal-hero-image {
    max-width: 300px;
    margin: 40px auto 0;
}

.legal-hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 127, 0, 0.3));
}

.legal-content-wrapper {
    padding: 80px 0;
    background: var(--section-bg);
}

.legal-section {
    background: var(--section-bg);
    border: 1px solid #222;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    transition: border-color 0.3s;
}

.legal-section:hover {
    border-color: rgba(255, 127, 0, 0.3);
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2 i {
    font-size: 1.5rem;
}

.numbered-heading {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.numbered-heading span {
    display: inline-block;
    background: rgba(255, 127, 0, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    margin-right: 15px;
    font-size: 1.3rem;
}

.legal-section h3 {
    color: white;
    font-size: 1.3rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-section p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #bbb;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-section li strong {
    color: white;
}

.faq-hero {
    background: linear-gradient(135deg, #ff7f00 0%, #ff4500 100%);
    padding: 80px 0;
    text-align: center;
    margin: 80px 0;
}

.faq-hero h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.faq-hero p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.faq-hero .btn {
    background: var(--section-bg);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }

    .legal-section {
        padding: 25px;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .numbered-heading span {
        width: 40px;
        height: 40px;
        line-height: 36px;
        font-size: 1.1rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Payment Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    /* Controlled by JS */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.payment-card {
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-sec);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.payment-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

.method-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: white;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.method-btn:hover {
    border-color: var(--primary-glow);
    background: rgba(255, 127, 0, 0.05);
}

.method-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: black;
}

.payment-details-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    display: block;
    color: var(--text-sec);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    word-break: break-all;
}

.payment-guide {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.payment-guide p {
    color: var(--text-sec);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-verify-btn {
    width: 100%;
    margin-bottom: 0 !important;
}

@media (max-width: 480px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 30px 20px;
    }
}

/* Greeting Card Styles */
.greeting-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.greeting-overlay.show {
    opacity: 1;
    visibility: visible;
}

.greeting-card {
    background: #0A0A0A;
    border: 3px solid #FF7F00;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 80px rgba(255, 127, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.greeting-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.08) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.greeting-arabic {
    font-size: 4rem;
    color: #FF7F00;
    margin-bottom: 25px;
    direction: rtl;
    font-family: serif;
    text-shadow: 0 0 30px rgba(255, 127, 0, 0.6);
    animation: fadeInDown 1.2s ease-out;
}

.greeting-welcome {
    font-size: 2rem;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .greeting-arabic {
        font-size: 2.5rem;
    }

    .greeting-welcome {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .greeting-card {
        padding: 40px 20px;
    }
}

/* New Partners Page Styles */
.partners-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 127, 0, 0.05) 0%, transparent 70%);
}

.partners-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.partners-hero p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-sec);
    font-size: 1.1rem;
    line-height: 1.6;
}

.ecosystem-section {
    padding: 80px 0;
}

.ecosystem-title {
    text-align: center;
    margin-bottom: 50px;
}

.ecosystem-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.ecosystem-title p {
    color: var(--text-sec);
}

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

.partner-full-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-full-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.partner-logo-container {
    width: 140px;
    height: 70px;
    margin: 0 auto 25px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.partner-logo-container.dark-bg {
    background: #1a1a1a;
}

.partner-full-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.partner-full-card p {
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Partner Section */
.why-partner-section {
    padding: 100px 0;
}

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

.why-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 127, 0, 0.1);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

/* Partner FAQ */
.partner-faq {
    padding: 100px 0;
}

/* Ready to Partner CTA */
.ready-cta-section {
    padding: 60px 0;
}

.ready-cta-box {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ready-cta-content {
    z-index: 2;
}

.ready-cta-content h2 {
    color: #000;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
}

.ready-cta-content h2 span {
    display: block;
    color: var(--primary);
}

.ready-cta-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: url('images/globe-abstract.png') no-repeat center right;
    background-size: contain;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

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

    .ready-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .ready-cta-image {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 30px;
    }

    .ready-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .why-partner-grid {
        grid-template-columns: 1fr;
    }

    .partners-hero h1 {
        font-size: 2.5rem;
    }

    .partner-full-card {
        padding: 30px 20px;
    }
}

/* Floating Feedback Button */
.floating-feedback {
    position: fixed;
    bottom: 110px;
    /* Positioned above WhatsApp button */
    right: 30px;
    padding: 12px 20px;
    background: var(--gradient-main);
    color: #000;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--primary-glow);
    z-index: 9998;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.floating-feedback i {
    font-size: 1.1rem;
}

.floating-feedback:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px var(--primary-glow);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-feedback {
        bottom: 90px;
        right: 20px;
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

/* Feedback Popup Card */
.feedback-popup-card {
    max-width: 450px;
    border: 2px solid var(--primary);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-feedback {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-sec);
    font-size: 1.5rem;
    cursor: pointer;
}

.close-feedback:hover {
    color: var(--primary);
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 127, 0, 0.1);
}

.w-full {
    width: 100%;
}

.btn-primary-gradient {
    background: var(--gradient-main);
    color: #000;
    font-weight: 800;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.btn-primary-gradient:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

/* Academy Highlights Section Updates */
.academy-highlights {
    padding: 100px 0;
    background: var(--section-bg);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.academy-highlights .section-header {
    margin-bottom: 40px;
}

/* Academy Highlights Section Updates */
.highlights-container {
    display: flex;
    flex-wrap: wrap;
    /* Fallback for older browsers */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .highlights-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.highlights-left {
    flex: 1;
}

.highlights-right {
    flex: 1;
    width: 100%;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Strict 16:9 Ratio */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--border-color);
    background: var(--section-bg);
}

.video-thumbnail-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.video-thumbnail-wrapper img,
.video-thumbnail-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Prevent distortion */
    display: block;
}

/* Media Modal Styles */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-modal.active {
    display: flex;
    opacity: 1;
}

.media-modal-content {
    position: relative;
    width: 80%;
    /* Desktop Width */
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--section-bg);
    box-shadow: 0 0 50px rgba(255, 127, 0, 0.2);
    animation: modalFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-modal-body {
    width: 100%;
    position: relative;
}

/* Allow modal videos to preserve their natural aspect ratio */
.media-modal-body video {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    background: var(--section-bg);
}


.media-modal-body img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.media-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10002;
    transition: 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
    .media-modal-content {
        width: 95%;
        /* Mobile Width */
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Academy Carousel Styles */
.academy-carousel-wrapper {
    margin-top: 50px;
    position: relative;
}

.carousel-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.academy-carousel {
    padding-bottom: 60px !important;
}

.strip-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.strip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-overlay i {
    font-size: 2rem;
    color: var(--primary);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.strip-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.2);
}

.strip-item:hover img {
    transform: scale(1.15);
}

.strip-item:hover .strip-overlay {
    opacity: 1;
}

.strip-item:hover .strip-overlay i {
    transform: scale(1);
}

/* Video Frame Style for Carousel */
.video-frame-item {
    aspect-ratio: 9/16;
    height: 400px !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    background: var(--section-bg);
}

.video-frame-item img,
.video-frame-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.video-frame-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.video-frame-item:hover .play-indicator {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-frame-item.playing .play-indicator,
.video-card.playing .play-indicator,
.video-thumbnail-wrapper.playing .play-indicator,
.ceremony-video-wrapper.playing .play-indicator {
    opacity: 0;
    visibility: hidden;
}



.video-frame-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Swiper Pagination Customization */
.academy-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.academy-carousel .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Academy Highlights Page Specific Styles */
.highlights-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('events-images-and-videos/hero-banner--2.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.highlights-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.highlights-hero .container {
    position: relative;
    z-index: 2;
}

.highlights-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.highlights-hero p {
    font-size: 1.5rem;
    color: var(--text-sec);
    max-width: 700px;
    margin: 0 auto;
}

/* Opening Ceremony Section - Premium 16:9 Re-design */
.ceremony-section {
    padding: 120px 0;
    background: var(--section-bg);
    width: 100%;
    overflow: hidden;
}

.ceremony-video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 127, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
}

.ceremony-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-content-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.overlay-tagline {
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.3);
}

.ceremony-video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 127, 0, 0.1);
    border-color: var(--primary);
}

.ceremony-text {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.ceremony-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ceremony-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-sec);
    opacity: 0.9;
}


/* Office Tour Section (Zig-Zag) */
.tour-section {
    padding: 120px 0;
    background: #050505;
}

.tour-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.tour-row:last-child {
    margin-bottom: 0;
}

.tour-row:nth-child(even) {
    flex-direction: row-reverse;
}

.tour-media {
    flex: 1.2;
}

.tour-media img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tour-content {
    flex: 1;
}

.tour-content h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.tour-content p {
    font-size: 1.15rem;
    color: var(--text-sec);
    line-height: 1.8;
}

/* Gallery Grid Styles */
.gallery-grid-main {
    padding: 100px 0;
    background: var(--section-bg);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
}

.gallery-card img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay i {
    font-size: 2.5rem;
    color: var(--primary);
    transform: scale(0.6);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover .gallery-card-overlay i {
    transform: scale(1);
}

.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card.video-card .play-indicator {
    opacity: 1;
    pointer-events: none;
}

.gallery-card.video-card.playing .play-indicator {
    opacity: 0;
}


/* Highlights Counter Section */
.highlights-stats {
    padding: 100px 0;
    background: linear-gradient(to right, #0A0A0A, #111);
    border-top: 1px solid var(--border-color);
}

.h-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.h-stat-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.h-stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.h-stat-item p {
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Animations for Highlights Page */
[data-aos="zoom-in-up"] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive Academy Highlights */
@media (max-width: 1100px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 992px) {
    .highlights-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .highlights-left {
        padding-right: 0;
        text-align: center;
    }

    .highlights-left h2 {
        font-size: 2.8rem;
    }

    .highlights-left p {
        margin: 0 auto 30px;
    }

    .label-small {
        justify-content: center;
        padding-left: 0;
    }

    .label-small::before {
        display: none;
    }

    .tour-row {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .tour-content h3 {
        font-size: 2.2rem;
    }

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

@media (max-width: 768px) {
    .highlights-hero h1 {
        font-size: 3.5rem;
    }

    .highlights-hero p {
        font-size: 1.2rem;
    }

    .masonry-grid {
        column-count: 1;
    }
}

@media (max-width: 576px) {
    .highlights-left h2 {
        font-size: 2.2rem;
    }

    .video-thumbnail-wrapper img {
        height: 350px;
    }

    .h-stats-grid {
        grid-template-columns: 1fr;
    }

    .highlights-hero h1 {
        font-size: 2.5rem;
    }

    .h-stat-item h3 {
        font-size: 2.5rem;
    }
}

/* Academy Highlights - New Sections & Carousels */
.alternate-bg {
    background: #080808 !important;
}

.academy-carousel-generic {
    width: 100%;
    position: relative;
    padding-bottom: 40px !important;
}

.academy-carousel-generic .swiper-slide {
    height: auto;
}

.academy-carousel-generic .gallery-card {
    height: 100%;
    margin-bottom: 0;
}

.academy-carousel-generic .gallery-card img,
.academy-carousel-generic .gallery-card video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Base heights for uniformity in carousels */
.academy-carousel-generic .gallery-card:not([data-portrait="true"]) img,
.academy-carousel-generic .gallery-card:not([data-portrait="true"]) video {
    aspect-ratio: 16 / 9;
}

.academy-carousel-generic .gallery-card[data-portrait="true"] img,
.academy-carousel-generic .gallery-card[data-portrait="true"] video {
    aspect-ratio: 9 / 16;
}



.tour-row.alternate {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .tour-row.alternate {
        flex-direction: column !important;
    }


    .academy-carousel-generic .gallery-card img {
        height: 300px;
    }
}

.highlight-section {
    border-left: 5px solid var(--primary);
}

/* Theme Switcher Styles */
.theme-switcher {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--card-bg);
    padding: 10px;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.theme-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.theme-btn.active {
    border-color: var(--primary);
}

/* ================================================
   SECTION-LEVEL DARK / LIGHT OVERRIDES
   Uses data-theme attribute on <html> element
================================================ */

/* Mentor section - always dark card, text adapts */
.mentor-card {
    background: #1a1a1a;
    transition: background 0.4s ease;
}

[data-theme="light"] .mentor-card {
    background: #1e1e1e;
    /* Keep dark for contrast */
}

.mentor-card h3 {
    color: var(--primary);
}

.mentor-card p,
.mentor-bio,
.mentor-title {
    color: #cccccc;
}

/* Academy highlights always dark */
.academy-highlights {
    background: #000;
    transition: background 0.4s ease;
}

[data-theme="light"] .academy-highlights {
    background: #111;
}

.academy-highlights h2 {
    color: var(--primary);
}

.academy-highlights .highlights-left p,
.academy-highlights .label-small {
    color: #dddddd;
}

/* Community section text adapts */
[data-theme="light"] .community-section h2 {
    color: #111111;
}

[data-theme="light"] .community-section h2 .highlight {
    color: var(--primary);
}

[data-theme="light"] .community-section p {
    color: #555555;
}

/* Membership section text */
[data-theme="light"] .membership-section h2 {
    color: #111111;
}

[data-theme="light"] .membership-section h2 .highlight {
    color: var(--primary);
}

[data-theme="light"] .membership-section p {
    color: #555555;
}

/* Testimonials section - keep dark always so cards pop */
.testimonials-section {
    background: var(--dark-bg);
}

[data-theme="light"] .testimonials-section {
    background: #eeeeee;
}

/* Section headers adapt */
[data-theme="light"] .section-header h2 {
    color: #f1eded;
}

[data-theme="light"] .section-header p {
    color: #ffffff;
}

[data-theme="light"] .section-header h2 .highlight {
    color: var(--primary);
}

/* About Us section */
[data-theme="light"] .about-us-section {
    background: #f9f9f9;
}

/* FAQ section */
[data-theme="light"] .faq-item {
    background: #ffffff;
    border: 1px solid #FF7F00;
}

/* Mobile menu */
.mobile-menu {
    background: var(--dark-bg);
    transition: background 0.4s ease;
}

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

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

[data-theme="light"] .close-menu {
    color: #111111;
}

/* Payment modal */
[data-theme="light"] .payment-card {
    background: #ffffff;
    color: #111111;
}

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

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

[data-theme="light"] .payment-guide p {
    color: #555555;
}

/* Hero feature box text light mode */
[data-theme="light"] .hero-feature-box h3 {
    color: #111111;
}

[data-theme="light"] .hero-feature-box p {
    color: #555555;
}

/* Stat boxes always maintain orange gradient */
.stat-box {
    background: var(--gradient-main);
}

/* Footer */
[data-theme="light"] footer {
    background: #f0f0f0;
    border-top: 2px solid var(--primary);
}

[data-theme="light"] .footer-col h4 {
    color: #111111;
}

[data-theme="light"] .footer-col ul li a {
    color: #555555;
}

[data-theme="light"] .footer-col ul li a:hover {
    color: var(--primary);
}

[data-theme="light"] .footer-bottom p {
    color: #555555;
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE — SECTION-BY-SECTION TEXT COLOR OVERRIDES
   Applied ONLY in light/white mode. Dark mode is untouched.
   Each section has its own separate color code as requested.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. PROFESSIONAL CRYPTO SERVICES section ── */
/* Heading: black base + orange highlight word */
[data-theme="light"] .services-carousel h2 {
    color: #000000 !important;
}

[data-theme="light"] .services-carousel h2 .highlight {
    color: #FF7F00 !important;
}

/* Carousel card headings & paragraphs: black */
[data-theme="light"] .carousel-card h4 {
    color: #000000 !important;
}

[data-theme="light"] .carousel-card p {
    color: #000000 !important;
}

/* ── 2. JOIN GLOBAL CRYPTO TRADING COMMUNITY section ── */
/* Heading: black base + orange highlight word */
[data-theme="light"] .community-section h2 {
    color: #000000 !important;
}

[data-theme="light"] .community-section h2 .highlight {
    color: #FF7F00 !important;
}

/* Paragraph: black */
[data-theme="light"] .community-section p {
    color: #000000 !important;
}

/* ── 3. MEMBERSHIP PLANS section ── */
/* Heading: black base + orange highlight word */
[data-theme="light"] .membership-section .section-header h2 {
    color: #000000 !important;
}

[data-theme="light"] .membership-section .section-header h2 .highlight {
    color: #FF7F00 !important;
}

/* Sub-paragraph under heading: black */
[data-theme="light"] .membership-section .section-header p {
    color: #000000 !important;
}

/* Pricing feature list items: black */
[data-theme="light"] .pricing-features li {
    color: #000000 !important;
}

/* Pricing header area stays white text (dark background card header) */
[data-theme="light"] .pricing-header,
[data-theme="light"] .pricing-header h3,
[data-theme="light"] .pricing-header .pricing-name,
[data-theme="light"] .pricing-header .pricing-price,
[data-theme="light"] .pricing-header .plan-subtitle {
    color: #ffffff !important;
}

/* ── 4. SPROFITZONE COMMUNITY FEEDBACK section ── */
/* "SPROFITZONE" heading word: black, orange highlight */
[data-theme="light"] .testimonials-section .section-header h2 {
    color: #000000 !important;
}

[data-theme="light"] .testimonials-section .section-header h2 .highlight {
    color: #FF7F00 !important;
}

/* "What our members say about us." paragraph: black */
[data-theme="light"] .testimonials-section .section-header p {
    color: #000000 !important;
}

/* Feedback cards keep dark text (cards have orange gradient background) */
[data-theme="light"] .feedback-card p {
    color: #000000 !important;
}

[data-theme="light"] .feedback-card h4 {
    color: #000000 !important;
}

[data-theme="light"] .feedback-card .user-profile span {
    color: rgba(0, 0, 0, 0.65) !important;
}

/* ── 5. FREQUENTLY ASKED QUESTIONS section ── */
/* "FREQUENTLY" heading word: black, orange highlight */
[data-theme="light"] .contact-section .section-header h2 {
    color: #000000 !important;
}

[data-theme="light"] .contact-section .section-header h2 .highlight {
    color: #FF7F00 !important;
}

/* FAQ answer paragraphs: black */
[data-theme="light"] .faq-answer p {
    color: #000000 !important;
}

/* FAQ question buttons: black text */
[data-theme="light"] .faq-question {
    color: #000000 !important;
}

/* ── 6. WEEKLY MARKET REPORTS newsletter box ── */
/* This box has a dark/gradient background — keep text WHITE */
[data-theme="light"] .newsletter-box h3 {
    color: #ffffff !important;
}

[data-theme="light"] .newsletter-box h3 .highlight {
    color: #FF7F00 !important;
}

/* "Get the latest crypto news..." paragraph: WHITE (against dark box bg) */
[data-theme="light"] .newsletter-box p {
    color: #ffffff !important;
}

/* ── 7. ACADEMY PAGE — blog article headings & paragraphs: black ── */
[data-theme="light"] .article-card h3 {
    color: #000000 !important;
}

[data-theme="light"] .article-card p {
    color: #000000 !important;
}

/* Mini article card headings: black */
[data-theme="light"] .mini-article-card h4 {
    color: #000000 !important;
}

/* Latest Content section heading: black + orange */
[data-theme="light"] .latest-content .section-header h2 {
    color: #000000 !important;
}

[data-theme="light"] .latest-content .section-header h2 .highlight {
    color: #FF7F00 !important;
}

/* Beginners section heading: black + orange */
[data-theme="light"] .beginners-section .section-header h2 {
    color: #000000 !important;
}

[data-theme="light"] .beginners-section .section-header h2 .highlight {
    color: #FF7F00 !important;
}

/* ── 8. ABOUT PAGE — FOUNDER section ── */
/* "FOUNDER'S NOTE" h1: WHITE (it sits on a dark hero/banner background) */
[data-theme="light"] .founder-section .founder-header h1 {
    color: #ffffff !important;
}

[data-theme="light"] .founder-section .founder-header h1 .highlight-text {
    color: #FF7F00 !important;
}

/* Founder name + subtitle: white (on dark card) */
[data-theme="light"] .founder-details h2,
[data-theme="light"] .founder-details h3 {
    color: #ffffff !important;
}

/* Founder intro paragraph text: black */
[data-theme="light"] .founder-text p {
    color: #000000 !important;
}

/* Founder card bio paragraph: black */
[data-theme="light"] .founder-details p {
    color: #000000 !important;
}

/* ── 9. ABOUT PAGE — Methodology section paragraphs: black ── */
[data-theme="light"] .methodology-section .section-subtitle {
    color: #000000 !important;
}

[data-theme="light"] .methodology-section p {
    color: #000000 !important;
}

[data-theme="light"] .method-card p {
    color: #000000 !important;
}

[data-theme="light"] .method-card h4 {
    color: #000000 !important;
}

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

/* ── 10. ABOUT PAGE — Commitment section paragraphs: black ── */
[data-theme="light"] .commitment-section p {
    color: #000000 !important;
}

/* ── 11. ABOUT PAGE — Ecosystem section paragraphs: black ── */
[data-theme="light"] .ecosystem-section .section-subtitle {
    color: #000000 !important;
}

[data-theme="light"] .ecosystem-section p {
    color: #000000 !important;
}

/* ── 12. ABOUT PAGE — section-title headings: black + orange ── */
[data-theme="light"] .section-title {
    color: #000000 !important;
}

[data-theme="light"] .section-title .orange-text {
    color: #FF7F00 !important;
}

/* ── General: all section-header h2 headings across whole site: black ── */
[data-theme="light"] .section-header h2 {
    color: #000000 !important;
}

[data-theme="light"] .section-header h2 .highlight {
    color: #FF7F00 !important;
    text-shadow: none !important;
}

[data-theme="light"] .section-header p {
    color: #000000 !important;
}

/* ── Orange .highlight globally: remove dark-mode glow on white bg ── */
[data-theme="light"] .highlight {
    color: #FF7F00 !important;
    text-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE — ADDITIONAL OVERRIDES (Round 2)
   ═══════════════════════════════════════════════════════════════ */

/* ── A. MEET OUR EXPERT MENTORS section ── */
/* Heading: WHITE + orange highlight (section sits on dark card bg) */
[data-theme="light"] .mentor-section .section-header h2 {
    color: #ffffff !important;
}

[data-theme="light"] .mentor-section .section-header h2 .highlight {
    color: #FF7F00 !important;
}

/* "Learn from the best minds in crypto trading" paragraph: WHITE */
[data-theme="light"] .mentor-section .section-header p {
    color: #ffffff !important;
}

/* ── B. HERO section — "BOOK 1:1 CALL" outline button: black text ── */
[data-theme="light"] .btn-secondary-outline {
    color: #000000 !important;
}

/* ── C. ABOUT US page — "ABOUT US" boxed label: black ── */
[data-theme="light"] .boxed-label {
    color: #000000 !important;
}

/* ── D. CONTACT page — "POP IN," hero heading: WHITE ── */
/* Contact hero sits on a dark gradient background */
[data-theme="light"] .contact-hero .contact-title {
    color: #ffffff !important;
}

[data-theme="light"] .contact-hero .contact-title .highlight {
    color: #FF7F00 !important;
}

/* Sub-text in contact hero: WHITE */
[data-theme="light"] .contact-hero .hero-subtitle {
    color: #ffffff !important;
}

/* ── E. MENTORSHIP page — Mastery card feature list: WHITE ── */
/* The mastery card has a dark/gradient background */
[data-theme="light"] .mastery-card-large .mastery-features li {
    color: #ffffff !important;
}

[data-theme="light"] .mastery-card-large .mastery-content h3 {
    color: #ffffff !important;
}

[data-theme="light"] .mastery-card-large .mastery-content .subtitle {
    color: #ffffff !important;
}

/* ── F. ACADEMY page — all article paragraphs: black ── */
[data-theme="light"] .article-content p {
    color: #000000 !important;
}

[data-theme="light"] .article-content h3 {
    color: #000000 !important;
}

/* Suggested mini-cards: black */
[data-theme="light"] .mini-article-info h4 {
    color: #000000 !important;
}

/* ── G. POPUP form payment method buttons text: black ── */
[data-theme="light"] .method-btn {
    color: #000000 !important;
}

[data-theme="light"] .method-btn.active {
    color: #000000 !important;
}

/* ── ADDITIONAL MODAL TEXTS ── */
[data-theme="light"] #selected-plan-text {
    color: #000000 !important;
}

[data-theme="light"] .payment-card h2 {
    color: #000000 !important;
}

[data-theme="light"] .payment-card p {
    color: #555555 !important;
}

/* ── H. ACADEMY HIGHLIGHTS page — Hero text: white ── */
/* This section has a dark background image, so text must be white even in light mode. */
[data-theme="light"] .highlights-hero h1,
[data-theme="light"] .highlights-hero p {
    color: #ffffff !important;
}

/* Article Page Styles */
.article-page header {
    position: relative;
    background: #0a0a0a;
}

.article-full-content,
.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-full-content .category {
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* User requested article paragraph headings to be black */
.article-full-content h1,
.article-full-content h2,
.article-full-content h3,
.article-full-content h4,
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    color: #000000 !important;
    text-transform: none;
    /* Often paragraph headings shouldn't be all-caps if user wants a clean look */
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-full-content .content-text p,
.article-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

[data-theme="light"] .article-full-content .content-text p,
[data-theme="light"] .article-body p {
    color: #333;
}

.article-full-content ul,
.article-body ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-full-content li,
.article-body li {
    margin-bottom: 10px;
}

.article-full-content img,
.article-body img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

@media (max-width: 768px) {

    .article-full-content,
    .article-body {
        padding: 50px 20px;
    }

    .article-full-content h1,
    .article-body h1 {
        font-size: 2rem;
    }
}
/* Change header background to white */
header {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

/* Change all menu navigation links to black */
.nav-links a, 
.nav-links li,
.nav-right,
.nav-right * {
  color: #000000 !important;
}

/* 1. Force Header Background to White */
header, 
header.fixed, 
header.scrolled, 
.nav-container {
  background-color: #ffffff !important;
  background: #ffffff !important;
  background-image: none !important; /* Removes any background gradients */
}

/* 2. Force Menu Navigation Links, List Items, and Logo to Black */
header .nav-links a,
header .nav-links li,
header .logo,
header .logo a,
header .nav-right,
header .nav-right * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important; /* Ensures color on all browsers */
}

/* 3. Force Icons (Search, Cart, etc.) to Black */
header svg, 
header svg path, 
header i,
header [class*="icon"] {
  fill: #000000 !important;
  color: #000000 !important;
  stroke: #000000 !important;
}

/* 4. Hover State: Keeps it black but adds a subtle fade */
header .nav-links a:hover {
  opacity: 0.7 !important;
  color: #000000 !important;
}
