:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --primary-color: #bdf200;
    /* Neon green from the image */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.white-normal {
    color: var(--text-color);
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Enhancements */
h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #a3d100;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(189, 242, 0, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-links a.nav-contact-btn {
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
}

.nav-links a.nav-contact-btn:hover {
    background-color: #a3d100;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: flex-end;
    width: 100%;
}

.hero-text {
    padding-bottom: 60px;
}

.hero-text p {
    font-size: 1.4rem;
}

/* Desktop-only overrides for Hero text */
@media (min-width: 993px) {
    .hero-text {
        padding-bottom: 10vh;
    }

    .hero-text h1 {
        font-size: 4.2rem;
    }

    .hero-text p {
        font-size: 1.4rem;
    }
}

.hero-image {
    line-height: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.hero-image img {
    width: 135%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 0;
    margin-right: -30%;
    filter: drop-shadow(0 20px 30px rgba(189, 242, 0, 0.1));
}

/* Stats Banner */
.stats-banner {
    background-color: var(--primary-color);
    width: 100%;
    padding: 30px 0;
    margin-top: auto;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.stats-content-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.stats-content-wrapper:hover {
    animation-play-state: paused;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
    min-width: 100vw;
    gap: 120px;
    padding: 0 60px;
}

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

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

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

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
    font-family: var(--font-body);
    font-weight: 800;
    color: #000;
}

.stat-item p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding-top: 100px;
    padding-bottom: 0;
    background-color: #111;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.about-text {
    padding-bottom: 10vh;
}

.about-text h2 {
    font-size: 4rem;
    line-height: 1;
}

.cert-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ccc;
}

.check-icon {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.about-image {
    display: flex;
    justify-content: center;
    line-height: 0;
}

.about-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
    transform-origin: bottom center;
    filter: drop-shadow(0 10px 40px rgba(189, 242, 0, 0.15));
}

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

/* Results Section */
.results {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

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

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px dashed rgba(189, 242, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #111;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #333;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .btn {
    margin-top: auto;
}

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

.card-gold {
    border-color: #333;
}

.card-gold:hover {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.card-gold h3,
.card-gold .price {
    color: #ffd700;
}

.card-platinum {
    border-color: #333;
}

.card-platinum:hover {
    border-color: #e5e4e2;
    box-shadow: 0 0 30px rgba(229, 228, 226, 0.4);
}

.card-platinum h3,
.card-platinum .price {
    color: #e5e4e2;
}

.card-emerald {
    border-color: #333;
    background: linear-gradient(145deg, #0d1a10 0%, #1a1a1a 100%);
}

.card-emerald:hover {
    border-color: #50c878;
    box-shadow: 0 0 30px rgba(80, 200, 120, 0.4);
}

.card-emerald h3,
.card-emerald .price {
    color: #50c878;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.card .subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.card .price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.card .payment {
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.card .features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.card .features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #ddd;
}

.card .features li.disabled {
    color: #555;
    text-decoration: line-through;
}

.cross-icon {
    color: #555;
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.btn-outline-gold {
    border-color: #ffd700;
    color: #ffd700;
    display: block;
}

.btn-outline-gold:hover {
    background: #ffd700;
    color: #000;
}

.btn-outline-platinum {
    border-color: #e5e4e2;
    color: #e5e4e2;
    display: block;
}

.btn-outline-platinum:hover {
    background: #e5e4e2;
    color: #000;
}

.btn-outline-emerald {
    border-color: #50c878;
    color: #50c878;
    display: block;
}

.btn-outline-emerald:hover {
    background: #50c878;
    color: #000;
}

.card-emerald {
    background: linear-gradient(145deg, #0d1a10 0%, #1a1a1a 100%);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(189, 242, 0, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 60px auto 0;
}

.guarantee i {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.guarantee div {
    text-align: left;
}

.guarantee p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    text-align: center;
}

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

.testimonial-card {
    background: rgba(189, 242, 0, 0.05);
    color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    text-align: left;
    border: 2px dashed rgba(189, 242, 0, 0.3);
    transition: var(--transition);
}

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

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 30px;
    border: 4px solid var(--bg-color);
}

.testimonial-card p {
    color: #fff;
    font-style: italic;
    margin-top: 20px;
    font-size: 1.25rem;
}

/* Ebook Section */
.ebook-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.ebook-image {
    display: flex;
    justify-content: center;
}

.ebook-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    filter: drop-shadow(0 20px 40px rgba(189, 242, 0, 0.15));
    transition: var(--transition);
}

.ebook-image img:hover {
    transform: translateY(-10px);
}

.ebook-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ebook-text p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .ebook-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ebook-image {
        order: -1;
    }

    .ebook-text .cert-list li {
        justify-content: center;
    }
}

/* CTA Bottom Section */
.cta-bottom {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

/* Footer Section */
footer {
    background-color: var(--primary-color);
    color: #000;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-block h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-block p {
    color: #222;
    margin: 0;
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-text {
        padding-bottom: 0px;
        margin-top: 15vh;
        /* lowered text considerably */
        position: relative;
        z-index: 10;
    }

    .hero-image {
        grid-row: 2;
        margin-top: -60px;
        /* brought image closer upwards */
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cert-list li {
        justify-content: center;
    }
}

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

    h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .gallery img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .menu-toggle {
        display: block;
    }
}

/* WhatsApp Float Button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    animation: none;
    transform: scale(1.1);
}

/* Instagram Float Button */
@keyframes pulse-insta {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(225, 48, 108, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
    }
}

.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 105px;
    right: 30px;
    background: #e1306c;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-insta 2s infinite;
}

.instagram-float:hover {
    animation: none;
    transform: scale(1.1);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-box {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--primary-color);
    text-align: center;
    transform: translateY(50px);
    transition: all 0.4s ease;
}

.popup-overlay.active .popup-box {
    transform: translateY(0);
}

/* Image Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(189, 242, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

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

.popup-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup-box p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-form input {
    padding: 15px;
    border: 1px solid #333;
    background: #0d0d0d;
    color: #fff;
    border-radius: 5px;
    font-family: var(--font-body);
}

.popup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}