/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;


}

/* ================= BODY THEME ================= */
html {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #000;
    color: #fff;
    cursor: none;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ================= LINKS ================= */

a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    color: #A855F7;
}

/* ================= CONTAINER ================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ================= HEADER ================= */

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ================= HEADER TOP ================= */

.top-header {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 12px 0;
}

.top-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

/* ================= LOGO ================= */

.logo img {
    height: 75px;
    /* Increased from default */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}


/* ================= SEARCH ================= */

.search-box {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 2;
}

.search-box input {
    background: #111;
    border: 1px solid #333;
    padding: 10px 14px;
    color: #fff;
    border-radius: 25px;
    width: 250px;
    outline: none;
}

.search-box input:focus {
    border-color: #152674;
}

.search-btn {
    background: #152674;
    border: none;
    padding: 10px 18px;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s;
}

.search-btn:hover {
    background: #fff;
}

/* ================= BUTTON STYLE ================= */

.btn-main {
    background: #152674;
    color: #000;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}

.btn-main:hover {
    background: #fff;
    color: #000;
}

/* ================= TOP RIGHT BUTTONS ================= */

.top-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ================= NAVBAR ================= */

.main-navbar {
    background: #000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

/* ================= MENU ================= */

.menu {
    display: flex;
    gap: 10px;
    list-style: none;
    align-items: center;
}

.menu li a {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
    flex: 2;
    justify-content: flex-end;
    transition: .25s ease;
}

/* ================= HOVER EFFECT ================= */

.menu li a:hover {
    background: #152674;
    color: #000;
}

/* ================= ACTIVE TAB ================= */

.menu li.active-tab a {
    background: #152674;
    color: #000;
}



/* ================= MOBILE MENU BUTTON ================= */

.mobile-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

/* ================= CURSOR ================= */

.cursor-dot {
    width: 10px;
    height: 10px;
    background: #152674;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* ================= MOBILE NAV PERFECT (UPDATED) ================= */
@media (max-width:900px) {

    .top-header-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .search-box input {
        width: 200px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .menu {
        flex-wrap: wrap;
        gap: 8px;
    }

    .mobile-menu-btn {
        display: block;
    }

}

@media (max-width: 768px) {

    /* HEADER LAYOUT */
    .top-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        position: relative;
    }

    /* LOGO */
    .logo img {
        height: 60px;
        /* Increased for mobile */
    }



    /* SEARCH (CENTER) */
    .search-box {
        flex: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-box input {
        width: 100%;
        max-width: 140px;
        padding: 7px 10px;
        font-size: 13px;
    }

    .search-btn {
        padding: 7px 10px;
    }

    /* HAMBURGER */
    .mobile-menu-btn {
        display: block;
        flex: 0;
        font-size: 22px;
        z-index: 1001;
    }

    /* MENU DROPDOWN (FROM HEADER) */
    #mobileMenu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        background: linear-gradient(135deg, #000000 0%, #152674 50%, #34ba2e 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0 0 15px 15px;

        padding: 20px 25px;

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        transform: translateY(-10px);

        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

        z-index: 1000;
    }

    .mobile-brand {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 20px;
        border-bottom: 2px solid #34ba2e;
        padding-bottom: 10px;
        width: 100%;
        display: none;
        /* Hidden by default */
    }

    @media (max-width: 768px) {
        .mobile-brand {
            display: block;
            /* Show only in mobile menu */
        }
    }

    #mobileMenu.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    #mobileMenu li a {
        color: #ffffff !important;
        font-weight: 500;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px 0;
        transition: all 0.3s ease;
        width: 100%;
        display: block;
    }

    #mobileMenu li a:hover {
        background: transparent !important;
        color: #34ba2e !important;
        padding-left: 10px;
    }

}








/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 100vh;
    /* Professional full-screen height */
    width: 100%;
    /* Explicit full horizontal width */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* VIDEO BACKGROUND */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills while retaining internal aspect ratio */
    z-index: -2;
    pointer-events: none;
    /* Prevents user interactions such as right clicks */
    max-width: none;
    /* Fixes any container interference */
}

/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(21, 38, 116, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

/* HERO CONTENT */

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1;
}

/* CENTER CONTENT */

.hero-center {
    max-width: 900px;
    padding: 0 20px;
}

/* HEADING */

.hero-center h1 {
    font-size: 64px;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-center span {
    background: linear-gradient(90deg, #34ba2e, #0939de);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* DESCRIPTION */

.hero-center p {
    color: #e2e8f0;
    font-size: 20px;
    margin-bottom: 45px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* OUTLINE BUTTON */

.btn-outline {
    border: 2px solid #152674;
    padding: 10px 24px;
    border-radius: 6px;
    color: #152674;
    transition: .3s;
}

.btn-outline:hover {
    background: #152674;
    color: #000;
}

/* HERO ANIMATIONS */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-heading {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}

.content-desc {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

/* RESPONSIVE */

@media (max-width:768px) {

    .hero-center h1 {
        font-size: 36px;
    }

    .hero-center p {
        font-size: 16px;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* This forces it to crop and fill regardless of screen shape */
    }

}

/* ================= TRUST SECTION ================= */

.trust-section {
    background:
        radial-gradient(circle at left center, rgba(21, 38, 116, 0.08) 0%, rgba(0, 0, 0, 0) 40%),
        radial-gradient(circle at center, rgba(9, 57, 222, 0.05) 0%, rgba(0, 0, 0, 0) 30%),
        #000000;
    padding: 80px 0;

    /* section animation start */
    opacity: 0;
    transform: translateY(80px);

    transition: all 0.8s ease;
}

/* when visible */

.trust-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= GRID ================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= CARD ================= */

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    /* card animation start */
    opacity: 0;
    transform: translateY(50px);

    transition: all .6s ease;
}

/* card visible */

.trust-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* stagger animation */

.trust-card:nth-child(1) {
    transition-delay: 0.1s;
}

.trust-card:nth-child(2) {
    transition-delay: 0.25s;
}

.trust-card:nth-child(3) {
    transition-delay: 0.4s;
}

/* ================= HOVER ================= */

.trust-card:hover {
    border-color: rgba(9, 57, 222, 0.5);
    /* Blue glow */
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(9, 57, 222, 0.2);
}

/* ================= ICON ================= */

.trust-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #34ba2e;

    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    color: #34ba2e;
    text-shadow: 0 0 15px rgba(52, 186, 46, 0.6);
    background: rgba(52, 186, 46, 0.1);
    border-color: rgba(52, 186, 46, 0.3);
}

/* ================= NUMBER ================= */

.trust-card h3 {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(90deg, #34ba2e, #0939de);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* ================= TEXT ================= */

.trust-card p {
    color: #d8e0e2;
    opacity: 0.8;
    font-size: 16px;
    letter-spacing: .5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:900px) {

    .trust-section {
        background: #000000;
        /* reduce glow intensity */
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-card {
        padding: 35px 25px;
    }

}





/* SECTION BACKGROUND */

.whyus-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(21, 38, 116, 0.15) 0%, rgba(0, 0, 0, 0) 45%),
        radial-gradient(circle at 100% 50%, rgba(9, 57, 222, 0.12) 0%, rgba(0, 0, 0, 0) 45%),
        #000000;
    color: #ffffff;
}


/* TITLE */

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 80px;
    color: #ffffff;
    letter-spacing: 1px;
}

.section-title span {
    background: linear-gradient(90deg, #34ba2e, #0939de);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* LAYOUT */

.whyus-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* LEFT + RIGHT */

.whyus-left,
.whyus-right {
    width: 30%;
}

.whyus-item {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUpItem 0.6s ease forwards;
}

/* Stagger animation for items */
.whyus-left .whyus-item:nth-child(1) {
    animation-delay: 0.1s;
}

.whyus-left .whyus-item:nth-child(2) {
    animation-delay: 0.2s;
}

.whyus-left .whyus-item:nth-child(3) {
    animation-delay: 0.3s;
}

.whyus-right .whyus-item:nth-child(1) {
    animation-delay: 0.4s;
}

.whyus-right .whyus-item:nth-child(2) {
    animation-delay: 0.5s;
}

.whyus-right .whyus-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeUpItem {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whyus-item:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(9, 57, 222, 0.4);
    box-shadow: 0 15px 30px rgba(9, 57, 222, 0.15);
}

.whyus-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.whyus-item h3 i {
    color: #34ba2e;
    transition: all 0.3s ease;
}

.whyus-item:hover h3 i {
    color: #0939de;
    text-shadow: 0 0 10px rgba(9, 57, 222, 0.6);
}

.whyus-item p {
    color: #d8e0e2;
    line-height: 1.6;
}


/* CENTER */

.whyus-center {
    width: 40%;
    display: flex;
    justify-content: center;
}


/* ORBIT WRAPPER */

.orbit-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(52, 186, 46, 0.08);
    /* very soft ambient green glow */
}


/* CENTER IMAGE */

.center-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border: 6px solid #152674;
    box-shadow: 0 0 35px rgba(52, 186, 46, 0.2);
    /* subtle inner glow */
}


/* ORBIT PATH */

.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
    z-index: 10;
}


/* ICON STYLE */

.icon {
    --icon-center: -27.5px;
    position: absolute;
    width: 55px;
    height: 55px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34ba2e;
    font-size: 20px;
    animation: counterOrbit 20s linear infinite;
    transition: all 0.3s ease;
}

.orbit-wrapper:hover .icon {
    color: #0939de;
    text-shadow: 0 0 10px rgba(9, 57, 222, 0.6);
}

/* Fix for FontAwesome vertical centering offset */
.icon i,
.icon::before {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 100%;
}

/* PAUSE ON HOVER (Optional but improves UX) */
.orbit-wrapper:hover .orbit,
.orbit-wrapper:hover .icon {
    animation-play-state: paused;
}


/* ICON POSITIONS */

.icon {
    --r: 155px;
    /* Adjust radius spacing here */
    top: 50%;
    left: 50%;
    margin-top: calc(var(--icon-center) + (var(--r) * var(--y, 0)));
    margin-left: calc(var(--icon-center) + (var(--r) * var(--x, 0)));
}

/* Distribute around 360 deg: x = cos, y = sin */
.icon:nth-child(1) {
    --x: 0;
    --y: -1;
}

/* Top */
.icon:nth-child(2) {
    --x: 0.866;
    --y: -0.5;
}

/* Top-Right */
.icon:nth-child(3) {
    --x: 0.866;
    --y: 0.5;
}

/* Bottom-Right */
.icon:nth-child(4) {
    --x: 0;
    --y: 1;
}

/* Bottom */
.icon:nth-child(5) {
    --x: -0.866;
    --y: 0.5;
}

/* Bottom-Left */
.icon:nth-child(6) {
    --x: -0.866;
    --y: -0.5;
}

/* Top-Left */


/* ROTATION */

@keyframes rotateOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes counterOrbit {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* RESPONSIVE */

@media (max-width:992px) {

    .whyus-section {
        background:
            radial-gradient(circle at 0% 50%, rgba(21, 38, 116, 0.08) 0%, rgba(0, 0, 0, 0) 50%),
            radial-gradient(circle at 100% 50%, rgba(9, 57, 222, 0.06) 0%, rgba(0, 0, 0, 0) 50%),
            #000000;
    }

    .whyus-wrapper {
        flex-direction: column;
    }

    .whyus-left,
    .whyus-right,
    .whyus-center {
        width: 100%;
        text-align: center;
    }

    .whyus-item {
        margin-bottom: 30px;
    }

    .orbit-wrapper {
        margin: 50px auto;
        box-shadow: none;
        /* Disable heavy glow for performance */
        width: 280px;
        /* Reduce orbit size */
        height: 280px;
    }

    .center-img {
        width: 180px;
        height: 180px;
        box-shadow: none;
    }

}

@media (max-width:576px) {

    .section-title {
        font-size: 30px;
    }

    .orbit-wrapper {
        width: 280px;
        height: 280px;
    }

    .center-img {
        width: 180px;
        height: 180px;
    }

    .icon {
        --r: 120px;
        /* Smaller radius spacing for mobile */
        --icon-center: -22.5px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .whyus-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .orbit-wrapper {
        width: 260px;
        height: 260px;
    }

    .center-img {
        width: 160px;
        height: 160px;
    }

    .icon {
        --r: 110px;
        --icon-center: -20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .whyus-item {
        margin-bottom: 25px;
    }

}

@media (max-width: 768px) {
    .whyus-section {
        padding: 80px 20px;
        /* add side spacing */
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .whyus-wrapper {
        flex-direction: column;
        gap: 30px;
        /* consistent spacing */
    }

    .whyus-left,
    .whyus-right {
        width: 100%;
        text-align: center;
    }

    .whyus-item {
        margin-bottom: 30px;
        padding: 0 10px;
        /* breathing space */
    }

    .whyus-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .whyus-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .whyus-center {
        margin: 30px 0;
    }

    .orbit-wrapper {
        margin: 30px auto;
    }
}


/* MENTORSECTION */

.mentors-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
}


/* HEADER */

.mentors-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.mentor-title h2 {
    font-size: 48px;
}

.mentor-title span {
    color: #152674;
}

.mentor-text {
    max-width: 500px;
    color: #ccc;
}


/* SLIDER */

.mentor-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* WRAPPER */

.mentor-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;

    /* Hide scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mentor-wrapper::-webkit-scrollbar {
    display: none;
}


/* BOX */

.mentor-box {
    min-width: 220px;
    text-align: center;
}


/* CARD */

.mentor-card {
    height: 250px;
    border-radius: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    margin-bottom: 15px;
}

.mentor-card img {
    max-width: 100%;
}


/* COLORS */

.green {
    background: #44b05a;
}

.yellow {
    background: #e5d400;
}

.red {
    background: #d71e3a;
}


/* TEXT */

.mentor-box h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.mentor-box p {
    font-size: 14px;
    color: #ccc;
}


/* ARROWS */

.arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    padding: 0 10px;
}


/* ARROWS */

.arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    background:
        radial-gradient(circle at left center, rgba(21, 38, 116, 0.08) 0%, rgba(0, 0, 0, 0) 40%),
        radial-gradient(circle at right center, rgba(9, 57, 222, 0.08) 0%, rgba(0, 0, 0, 0) 40%),
        #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.testimonial-heading {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: #34ba2e;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-heading h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
}

.testimonial-heading h2 span {
    background: linear-gradient(90deg, #34ba2e, #0939de);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* =========================
   SLIDER
========================= */

.testimonial-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* Gradient Fade Edges */
.testimonial-container::before,
.testimonial-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-container::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.testimonial-container::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.testimonial-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
    padding: 0 40px;
    /* offset inner scrolling so shadow doesn't clip */
}

.testimonial-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari/Opera */
}


/* =========================
   CARD
========================= */

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    min-width: calc(33.333% - 20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(9, 57, 222, 0.4);
    box-shadow: 0 15px 40px rgba(9, 57, 222, 0.2);
}


/* =========================
   QUOTE ICON
========================= */

.quote {
    font-size: 120px;
    color: rgba(52, 186, 46, 0.2);
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
}


/* =========================
   TEXT
========================= */

.testimonial-card p {
    color: #d8e0e2;
    font-size: 15px;
    line-height: 1.6;
    margin: 40px 0 25px;
    /* Added top margin to clear the quote */
    position: relative;
    z-index: 1;
}


/* =========================
   USER
========================= */

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid rgba(52, 186, 46, 0.6);
    box-shadow: 0 0 15px rgba(52, 186, 46, 0.3);
}

.testimonial-user h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 700;
}

.testimonial-user span {
    color: #d8e0e2;
    font-size: 13px;
    opacity: 0.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .testimonial-card {
        min-width: calc(50% - 15px);
    }

}

@media (max-width: 768px) {

    .testimonial-section {
        background: #000000;
        /* reduce glow mapping */
    }

    .testimonial-card {
        min-width: 100%;
        padding: 20px;
    }

    .testimonial-container::before,
    .testimonial-container::after {
        width: 30px;
        /* prevent wide overlap */
    }
}


.courses-section {
    background: #000;
    padding: 100px 0;
    color: white;
}


/* CONTAINER */

.courses-container {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* LEFT SIDE */

.courses-left {
    padding-left: 20px;
    width: 25%;
}

.section-sub {
    color: #152674;
    margin-bottom: 10px;
}

.section-title {
    font-size: 60px;
    font-weight: 600;
}

.section-title span {
    color: #152674;
}

.contact-btn {
    margin-top: 30px;
    padding: 14px 26px;
    border-radius: 30px;
    border: none;
    background: #333;
    color: white;
    cursor: pointer;
}


/* RIGHT SIDE */

.courses-right {
    width: 65%;
    display: flex;
    gap: 30px;
}


/* COURSE CARD */

.course-card {

    background: #0c0c0c;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    flex: 1;

    opacity: 0;
    transform: translateY(-60px);
    transition: all .7s ease;

}


/* SCROLL SHOW */

.course-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* ICON */

.course-icon {
    width: 80px;
    height: 80px;
    background: #152674;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 30px;
    margin-bottom: 20px;
}


/* TEXT */

.course-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}


/* BUTTON */

.learn-btn {
    padding: 12px 26px;
    border: none;
    background: #152674;
    border-radius: 8px;
    color: white;
}


/* HOVER EFFECT */

.course-card:hover {

    background: linear-gradient(180deg, #A855F7, #152674);
    transform: translateY(-10px);

}

/* =========================
   TABLET (<= 992px)
========================= */

@media (max-width: 992px) {

    .courses-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 30px;
        text-align: center;
    }

    .courses-left,
    .courses-right {
        width: 100%;
    }

    .section-title {
        font-size: 42px;
    }

    .courses-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .course-card {
        flex: 1 1 45%;
    }
}


/* =========================
   MOBILE (<= 768px)
========================= */

@media (max-width: 768px) {

    .courses-section {
        padding: 70px 0;
    }

    .courses-container {
        padding: 0 20px;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .contact-btn {
        padding: 12px 20px;
    }

    .courses-right {
        flex-direction: column;
        gap: 20px;
    }

    .course-card {
        width: 100%;
        padding: 30px 20px;
    }

    .course-card h3 {
        font-size: 18px;
    }

    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}


/* =========================
   SMALL MOBILE (<= 480px)
========================= */

@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .section-sub {
        font-size: 14px;
    }

    .learn-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

}

/* Recent placements */
.recent-placement-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}

.section-title span {
    color: #152674;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.placement-card {
    background: #fff;
    color: #000;
    padding: 25px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.placement-card:hover {
    transform: translateY(-8px);
}

.placement-img-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: auto;
    margin-bottom: 20px;
}

.placement-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

/* YELLOW HALF SHAPE */
.yellow-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #152674;
    border-radius: 50%;
    z-index: 1;

    /* semi-circle look */
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 50%);
}

.placement-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.placement-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 3px;
}

.placement-card small {
    font-size: 12px;
    color: #777;
}

/* BUTTON */
.view-all-btn {
    margin-top: 60px;
}

.btn-view {
    background: #152674;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.btn-view:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .placement-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FOREX SECTION ================= */

.forex-section {
    background:
        radial-gradient(circle at 75% 50%, rgba(9, 57, 222, 0.1) 0%, rgba(0, 0, 0, 0) 40%),
        radial-gradient(circle at 25% 50%, rgba(21, 38, 116, 0.08) 0%, rgba(0, 0, 0, 0) 40%),
        #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Very Subtle Green Glow Behind Cards */
.forex-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(52, 186, 46, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.forex-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.forex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.forex-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.forex-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(9, 57, 222, 0.5);
    box-shadow: 0 0 30px rgba(9, 57, 222, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.forex-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.forex-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
}

.forex-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #34ba2e;
    background: rgba(52, 186, 46, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.forex-card:hover .forex-label {
    background: rgba(9, 57, 222, 0.2);
    color: #ffffff;
}

.forex-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.forex-desc {
    color: #d8e0e2;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    flex-grow: 1;
    text-align: center;
}

.forex-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.forex-btn:hover {
    background: linear-gradient(90deg, #34ba2e, #0939de);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(9, 57, 222, 0.4);
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
    .forex-grid {
        gap: 25px;
    }

    .forex-card {
        padding: 30px;
    }

    .forex-title {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .forex-section {
        background:
            radial-gradient(circle at 75% 50%, rgba(9, 57, 222, 0.05) 0%, rgba(0, 0, 0, 0) 40%),
            radial-gradient(circle at 25% 50%, rgba(21, 38, 116, 0.04) 0%, rgba(0, 0, 0, 0) 40%),
            #000000;
    }

    .forex-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .forex-card {
        padding: 20px;
    }

    .forex-card:hover {
        /* Maintain responsive hover fallback context for mobile devices */
        transform: translateY(-5px);
    }

    .forex-number {
        font-size: 40px;
    }

    .forex-title {
        font-size: 20px;
    }

    .forex-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .forex-btn {
        width: 100%;
        padding: 14px;
        box-sizing: border-box;
    }
}

/* footer  */
.footer {
    background: #152674;
    color: #ffffff;
    padding: 70px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 220px;
}

/* LOGO */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #090909;
}

.footer-tag {
    margin: 10px 0 20px;
    color: #aaa;
}

/* HEADINGS */
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #151515;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fffbfb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #A855F7;
}

/* SOCIAL */
.footer-social i {
    margin-right: 10px;
    font-size: 16px;
    background: #111;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social i:hover {
    background: #152674;
    color: #000;
}

/* ADDRESS */
.footer-col p {
    color: #fffefe;
    line-height: 1.7;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 15px;
    color: #190f00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: floatPulse 2s infinite;
}

/* Tooltip */
.float-wa .tooltip-wa {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tooltip Arrow */
.float-wa .tooltip-wa::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.75);
}

.float-wa:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-5px);
    color: #fff;
}

.float-wa:hover .tooltip-wa {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .float-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .float-wa .tooltip-wa {
        right: 65px;
        font-size: 13px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* contact section */
/* SECTION */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000, #0f0f0f, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #fff;
}

/* WRAPPER (2 COLUMN) */
.contact-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    align-items: center;
}

/* LEFT SIDE */
.contact-container {
    flex: 1;
}

/* RIGHT SIDE (MAP) */
.map-container {
    flex: 1;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    /* IMPORTANT for rounded corners */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* TITLE */
.contact-title {
    font-size: 36px;
    font-weight: 800;
    color: #152674;
}

.contact-subtitle {
    color: #aaa;
    margin-bottom: 20px;
}

/* GLASS CARD */
.contact-card {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);

    padding: 25px;
    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* FORM */
.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.contact-card input,
.contact-card textarea {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: #ccc;
}

/* BUTTON */
.contact-card button {
    background: #152674;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-card button:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .map-container {
        height: 300px;
    }
}


.about-section {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 40px;
    color: #152674;
    margin-bottom: 20px;
}

.about-left p {
    color: #aaa;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    background: #152674;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}

.allcourse-section {
    background: #000;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.allcourse-title {
    font-size: 40px;
    color: #152674;
    margin-bottom: 50px;
}

/* FLEX */
.allcourse-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* GLASS CARD */
.course-card {
    width: 300px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 20px;
    overflow: hidden;

    text-decoration: none;
    color: #fff;

    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* TEXT */
.course-card h4 {
    margin-top: 15px;
}

.course-card p {
    color: #aaa;
    margin-bottom: 15px;
}

/* FLOAT BUTTON */
.chatbot-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #fff;
    color: #152674;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.5);
    z-index: 9999;
    transition: 0.3s;
}

.chatbot-btn:hover {
    transform: scale(1.1);
}

/* CHAT BOX */
.chatbot-box {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 320px;
    height: 420px;
    display: none;
    flex-direction: column;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    z-index: 9999;
}

/* HEADER */
.chat-header {
    background: #152674;
    padding: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

/* BODY */
.chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

/* BOT MESSAGE */
.bot-msg {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: fit-content;
}

/* USER MESSAGE */
.user-msg {
    background: #152674;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    width: fit-content;
}

/* INPUT AREA */
.chat-input {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    background: transparent;
    color: #fff;
}

.chat-input input::placeholder {
    color: #aaa;
}

.chat-input button {
    background: #152674;
    border: none;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
}

/* ================= PREMIUM HEADER STYLES OVERRIDE ================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

.top-header {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.top-header-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 80px !important;
    gap: 20px !important;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 140px !important;
    width: auto !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
}

.logo a:hover img {
    transform: scale(1.06) !important;
}

/* Search Box */
.search-box {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    max-width: 320px !important;
    width: 100% !important;
    justify-content: flex-end !important;
}

.search-box input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px !important;
    padding: 12px 50px 12px 24px !important;
    color: #fff !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.search-box input:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: #00ff88 !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15) !important;
}

.search-btn {
    position: absolute !important;
    right: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.search-btn:hover {
    color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.1) !important;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5) !important;
}

/* Menu */
.menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 32px !important;
    align-items: center !important;
    position: static !important;
    flex-direction: row !important;
    background: transparent !important;
    opacity: 1 !important;
    max-height: none !important;
    border: none !important;
    transform: none !important;
    width: auto !important;
}

.menu li {
    display: inline-block !important;
    width: auto !important;
}

.menu li a {
    color: #a3a3a3 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    transition: color 0.3s ease, text-shadow 0.3s ease !important;
    position: relative !important;
    padding: 6px 0 !important;
    width: auto !important;
    background: transparent !important;
    justify-content: flex-start !important;
    display: block !important;
}

.menu li a:after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: -2px !important;
    left: 0 !important;
    background-color: #00ff88 !important;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
}

.menu li a:hover,
.menu li a.active {
    color: #ffffff !important;
    background: transparent !important;
}

.menu li a:hover:after,
.menu li a.active:after {
    width: 100% !important;
}

.menu li.active-tab a {
    background: transparent !important;
    color: #ffffff !important;
}

.menu li.active-tab a:after {
    width: 100% !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none !important;
    background: transparent !important;
    border: none !important;
    color: #e5e5e5 !important;
    font-size: 22px !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    z-index: 1001 !important;
    padding: 8px !important;
}

.mobile-menu-btn:hover {
    color: #00ff88 !important;
}

/* Overlay for Mobile Menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .menu {
        gap: 24px !important;
    }

    .search-box {
        max-width: 260px !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .search-box {
        display: none !important;
        /* Hide search bar initially on mobile */
    }

    /* Off-canvas Menu styling */
    .menu {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        /* Hidden off-screen */
        width: 280px !important;
        height: 100vh !important;
        background: #080808 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 90px 40px 40px !important;
        gap: 28px !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8) !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.05) !important;
        opacity: 1 !important;
    }

    .menu.active {
        right: 0 !important;
        /* Slide in */
    }

    .menu li {
        width: 100% !important;
        display: block !important;
    }

    .menu li a {
        display: block !important;
        font-size: 18px !important;
        width: 100% !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    .menu li a:after {
        bottom: -1px !important;
    }
}

/* Hide overlay on desktop if window is resized */
@media (min-width: 769px) {
    .menu-overlay {
        display: none !important;
    }

    body {
        overflow: visible !important;
    }
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}