/*───────────── TOP BAR SECTION ───────────── */
/*───────────── BASIC ───────────── */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/*───────────── BASIC END ───────────── */
.top-bar {
    background: #000000;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar a {
    color: inherit;
    text-decoration: none;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.social-icon a i {
    font-size: 19px;
    /* Increase as needed: 24px, 28px, etc. */
    margin: 0 8px;
    transition: transform 0.2s ease;
}

.social-icon a i:hover {
    transform: scale(1.2);
    /* Optional: adds a zoom on hover */
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/*───────────── TOP BAR SECTION END ───────────── */

/*───────────── WHY CHOSE US START ───────────── */
/* =========================================
   Why Choose Us Section (Scoped Styles)
   ID: #sbjtpqw
   ========================================= */

/* --- Scoped Variables --- */
#sbjtpqw {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --accent-color: #f59e0b;
    --accent2-color: #8b5cf6;
    --accent3-color: #06b6d4;
    --accent4-color: #10b981;

    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f0f0f0;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
}

/* --- Section Container --- */
.wcu-section {
    position: relative;
    padding: 5rem 1rem 8rem 1rem;
    /* Extra bottom padding for floating card */
    background: linear-gradient(to bottom, #f3f4f6, #ffffff);
    overflow: visible;
    /* Allows card shadow to show */
    box-sizing: border-box;
}

.wcu-section * {
    box-sizing: border-box;
}

/* --- Main Container (Reduced Side Space) --- */
.wcu-container {
    /* UPDATED: Wider width to reduce empty space on sides */
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- Background Decoration --- */
.wcu-bg-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #2563eb;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.05;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* --- Layout Grid --- */
.wcu-layout-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .wcu-layout-grid {
        grid-template-columns: 1fr 1fr;
        padding-left: 1rem;
    }
}

/* --- Left Column: Image & Stats --- */
.wcu-image-wrapper {
    position: relative;
    margin-bottom: 4rem;
    /* Space for the floating card on mobile */
}

.wcu-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
     transition: transform 0.5s ease;   
}

.wcu-image-container:hover{
    transform: scale(1.02);
}

.wcu-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Floating Stats Card (Bigger & Exact) --- */
.wcu-floating-card {
    position: absolute;
    bottom: -3.5rem;
    /* Overlap effect */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem 3rem;
    /* Large padding */
    width: auto;
    min-width: 32rem;
    /* Wide card */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f6;
    z-index: 20;
    white-space: nowrap;
}

.wcu-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wcu-stat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

/* Big Numbers */
.wcu-stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: sans-serif;
}

.wcu-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Vertical Divider */
.wcu-divider {
    height: 3.5rem;
    width: 2px;
    background-color: #f3f4f6;
    margin: 0 2.5rem;
}

/* Exact Colors */
.wcu-color-accent-4 {
    color: #10b981;
}

/* Green */
.wcu-color-primary {
    color: #2563eb;
}

/* Blue */
.wcu-color-accent-1 {
    color: #f59e0b;
}

/* Gold */

/* --- Right Column: Content --- */
.wcu-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wcu-header {
    margin-bottom: 0.5rem;
}

.wcu-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .wcu-title {
        font-size: 3rem;
    }
}

.wcu-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Features List */
.wcu-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wcu-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Icon Boxes */
.wcu-icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wcu-feature-item:hover .wcu-icon-box {
    transform: scale(1.1);
}

/* Icon Gradients */
.wcu-grad-primary {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
}

.wcu-grad-accent {
    background: linear-gradient(135deg, #10b981, #8b5cf6);
}

.wcu-grad-gold {
    background: linear-gradient(135deg, #f59e0b, #06b6d4);
}

.wcu-grad-purple {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
}

.wcu-grad-orange {
    background: linear-gradient(135deg, #f59e0b, #10b981);
}

/* Feature Text */
.wcu-feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.wcu-feature-text p {
    color: #6b7280;
    line-height: 1.5;
}

/* --- CTA Button --- */
.wcu-cta-wrapper {
    padding-top: 2rem;
}

.wcu-btn {
    display: inline-flex;
    align-items: center;
    background-color: #2563eb;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.wcu-btn i {
    margin-left: 0.75rem;
    transition: transform 0.3s;
}

.wcu-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
}

.wcu-btn:hover i {
    transform: translateX(4px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .wcu-floating-card {
        min-width: 90%;
        padding: 1.5rem;
        bottom: -4.5rem;
        /* Push lower on mobile to clear image */
    }

    .wcu-stat-value {
        font-size: 1.75rem;
    }

    .wcu-divider {
        margin: 0 1rem;
        height: 2.5rem;
    }

    .wcu-image-wrapper {
        margin-bottom: 5rem;
        /* Ensure space for the card */
    }
}

/*───────────── WHY CHOSE US  END ───────────── */

/*───────────── MAIN SECTION START ───────────── */
/* =========================================
   CTA / Transformation Section (Scoped Styles)
   ID: #szu1pok
   ========================================= */

/* --- Scoped Variables for this Section Only --- */
#szu1pok {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --accent-color: #f59e0b;
    --accent2-color: #8b5cf6;
    --accent4-color: #10b981;

    --white: #ffffff;
    --light-bg: #f3f4f6;

    --font-heading: sans-serif;
}

/* --- Section Container --- */
.cta-section {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    /* Fallback colors included */
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.cta-section * {
    box-sizing: border-box;
}

.cta-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Decorative Background Circles --- */
.cta-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border: 4px solid #ffffff;
    border-radius: 50%;
}

.cta-circle-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
}

.cta-circle-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 20rem;
    height: 20rem;
}

.cta-circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
}

/* --- Typography --- */
.cta-heading {
    font-family: sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .cta-heading {
        font-size: 3rem;
    }
}

.cta-subheading {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .cta-subheading {
        font-size: 1.5rem;
    }
}

/* --- Buttons --- */
.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
}

@media (min-width: 640px) {
    .cta-buttons-wrapper {
        flex-direction: row;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-btn-white {
    background-color: #ffffff;
    color: #2563eb;
    /* Primary Blue */
}

.cta-btn-white:hover {
    background-color: #f3f4f6;
}

.cta-btn-transparent {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-btn-transparent:hover {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-icon-left {
    margin-right: 0.5rem;
}

/* --- Info Cards Grid (Glassmorphism) --- */
.cta-info-grid {
    display: grid;
    gap: 1.5rem;
    padding-top: 3rem;
}

@media (min-width: 640px) {
    .cta-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-info-card {
    /* Glass Effect */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #ffffff;
}

.cta-info-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-card-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.cta-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-card-text {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* --- Social Proof Badge --- */
.cta-social-wrapper {
    padding-top: 2rem;
}

.cta-social-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    /* Glass Effect Badge */
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-user-avatars {
    display: flex;
    padding-left: 0.5rem;
}

.cta-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-left: -0.5rem;
    color: #ffffff;
}

.cta-avatar-1 {
    background-color: #f59e0b;
}

.cta-avatar-2 {
    background-color: #10b981;
}

.cta-avatar-3 {
    background-color: #8b5cf6;
}

.cta-proof-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

/*───────────── MAIN SECTION END ───────────── */


/*───────────── Navbar ───────────── */

/*───────────── BASIC ───────────── */

/*───────────── BASIC END ───────────── */
nav.main-nav {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    position: sticky;
    /* sticks after top-bar scrolls away */
    top: 0;
    z-index: 1000;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* Hamburger toggle */
.nav-toggle {
    font-size: 1.8rem;
    color: rgb(0, 115, 255);
    cursor: pointer;
    display: none;
    /* shown by media‑query */
    z-index: 1100;
    /* above sliding panel */
}

/* Desktop menu */
ul.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

ul.nav-links li a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

ul.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #008cff;
    transition: width .3s;
    border-radius: 1px;
}

ul.nav-links li a:hover,
ul.nav-links li a.active {
    color: #008cff;
}

ul.nav-links li a:hover::after,
ul.nav-links li a.active::after {
    width: 100%;
}

.btn {
    background: #008cff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background .3s;
}

.btn:hover {
    background: #008cff;
    color: black;
}

/* ───────── Mobile styles ────────── */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    ul.nav-links {
        position: fixed;
        top: 0;
        right: -260px;
        /* start off‑screen */
        width: 260px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 32px;
        padding-top: 70px;
        align-items: center;
        transition: right .3s ease;
        box-shadow: -2px 0 6px rgba(0, 0, 0, .1);
        z-index: 1000;
        /* below toggle but above content */
    }

    ul.nav-links.active {
        right: 0;
    }

    /* Make links bigger for touch */
    ul.nav-links li a {
        font-size: 20px;
    }
}


.auth-buttons button {
    background-color: #007bff;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 40px;
    width: 113px;
    font-size: 14px;
}

.auth-buttons button:hover {
    background-color: #218838;
    font-weight: bolder;
    transform: scale(1.05);
    color: white;
}

#logoutButton button {
    background-color: #dc3545;
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 40px;
    width: 113px;
    font-size: 14px;
}

#logoutButton button:hover {
    background-color: #a71d2a;
}

/*───────────── NAVBAR END ───────────── */

/*───────────── HERO SECTION START ───────────── */
/* --- Variables & Reset --- */
:root {
    /* Colors */
    --primary-color: #2563eb;
    /* Blue */
    --primary-hover: #1d4ed8;
    /* Darker Blue */
    --accent-blob-1: #60a5fa;
    /* Light Blue Blob */
    --accent-blob-2: #8b5cf6;
    /* Purple Blob */
    --accent-star: #f59e0b;
    /* Gold */
    --accent-check: #10b981;
    /* Green */
    --accent-badge: #33cc00;
    /* Orange/Green Badge */

    /* Text Colors */
    --text-dark: #111827;
    --text-gray: #88909e;
    --text-light: #9ca3af;
    --white: #ffffff;

    /* Backgrounds */
    --bg-light: #f3f4f6;
    --border-light: #e6e6e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Hero Section Layout --- */
.hero-section {
    position: relative;
    padding: 2rem 1rem 5rem 1rem;

    /* THIS IS THE LINE TO CHANGE: */
    background: linear-gradient(to bottom top, #9cbdff, #ffffff);

    overflow: hidden;
}

.container {
    /* CHANGE: Increase width (e.g., 95% or 1600px) */
    max-width: 95%;
    margin: 0 auto;
    /* Keep it centered */
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

/* Responsive Grid */
@media (min-width: 1024px) {
    .hero-grid {
        /* UPDATED: Text takes remaining space (1fr), Image takes auto (sized below) */
        grid-template-columns: 1fr auto;
        gap: 4rem;
    }
}

/* --- Background Blobs & Animation --- */
.blob {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.1;
    mix-blend-mode: multiply;
    animation: blob-bounce 7s infinite;
    z-index: 0;
}

.blob-1 {
    top: 0rem;
    right: 2.5rem;
    background-color: var(--accent-blob-1);
}

.blob-2 {
    bottom: 0rem;
    left: 2.5rem;
    background-color: var(--accent-blob-2);
    animation-delay: 2s;
}

@keyframes blob-bounce {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* --- Content Styling --- */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Rating Badge */
.rating-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    width: fit-content;
    gap: 0.5rem;
}

.star-icon {
    color: var(--accent-star);
}

.rating-score {
    font-weight: bold;
    color: var(--text-white);
}

.rating-count {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Typography */
.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0084ff;
    color: white;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    color: #2563eb;
}

.icon-right {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover .icon-right {
    transform: translateX(5px);
}

.icon-left {
    margin-right: 0.5rem;
}

/* Trust Text */
.trust-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.check-icon {
    color: var(--accent-check);
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* --- Right Image Section --- */
.image-wrapper {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    width: 100%;
    /* Default for mobile */
}

/* UPDATED: Specific dimensions for Desktop */
@media (min-width: 1024px) {
    .image-card {
        width: 736px;
        height: 414px;
        flex-shrink: 0;
        /* Prevents shrinking */
    }

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures image fills the box without stretching */
    }
}

.image-card:hover {
    transform: scale(1.02);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.4), transparent);
    pointer-events: none;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-light);
    z-index: 20;
}

.badge-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-badge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-box i {
    color: white;
    font-size: 1.25rem;
}

.badge-title {
    font-weight: bold;
    color: var(--text-white);
}

.badge-sub {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* --- Bottom Wave --- */
.bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.bottom-wave svg {
    width: 100%;
    height: auto;
}

/*───────────── HERO SECTION END ───────────── */

/*───────────── COURSE SECTION START  ───────────── */
/* =========================================
   Popular Courses Section (Scoped Styles)
   ID: #si66vbn
   ========================================= */

/* --- Scoped Variables --- */
#si66vbn {
    --primary-color: #2563eb;
    /* Blue */
    --primary-dark: #1d4ed8;
    /* Darker Blue */
    --accent-color: #f59e0b;
    /* Gold/Orange */
    --accent2-color: #8b5cf6;
    /* Purple */
    --accent3-color: #06b6d4;
    /* Cyan */
    --accent4-color: #10b981;
    /* Green */

    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f3f4f6;
    --border-light: #ffffff;

    --font-heading: sans-serif;
}

/* --- Section Layout --- */
.courses-section {
    padding: 5rem 1rem;
    background-color: var(--bg-white);
    /* Reset box sizing for this section */
    box-sizing: border-box;
}

.courses-section * {
    box-sizing: border-box;
}

.courses-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- Header --- */
.courses-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
    margin-top: -60px;
}

.courses-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .courses-title {
        font-size: 3rem;
    }
}

.courses-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Grid Layout --- */
.courses-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Course Card --- */
.courses-card {
    background: linear-gradient(to bottom right, var(--bg-white), var(--bg-light));
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.courses-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Card Header (Image Area) */
.courses-card-image {
    position: relative;
    height: 12rem;
    /* h-48 */
    overflow: hidden;
}

/* Gradients for different cards */
.header-style-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
}

.header-style-2 {
    background: linear-gradient(135deg, var(--accent2-color), var(--primary-color));
}

.header-style-3 {
    background: linear-gradient(135deg, var(--accent-color), var(--accent3-color));
}

.header-style-4 {
    background: linear-gradient(135deg, var(--accent4-color), var(--accent2-color));
}

.header-style-5 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.header-style-6 {
    background: linear-gradient(135deg, var(--accent2-color), var(--accent4-color));
}

/* Overlay Icon */
.courses-icon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.courses-icon-overlay i {
    font-size: 3.75rem;
    color: white;
    opacity: 0.2;
}

/* Most Popular Badge */
.courses-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.courses-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.courses-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.courses-card-desc {
    color: var(--text-gray);
    line-height: 1.5;
    flex-grow: 1;
}

.courses-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    gap: 0.5rem;
}

.courses-meta p{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.courses-meta i {
    color: var(--accent-color);
}

/* Tags */
.courses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.courses-tag {
    background-color: #e1e1e1;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* Card Button */
.courses-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.courses-btn:hover {
    background-color: var(--primary-dark);
}

/* --- Bottom Link --- */
.courses-bottom-cta {
    text-align: center;
    margin-top: 3rem;
}

.courses-link-all {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    gap: 0.5rem;
}

.courses-link-all:hover {
    color: var(--primary-dark);
}

.courses-link-all i {
    transition: transform 0.3s;
}

.courses-link-all:hover i {
    transform: translateX(4px);
}

/*───────────── COURSE SECTION END ───────────── */

/*───────────── FOOTER SECTION START ───────────── */
/* =========================================
   Footer Section (Scoped Styles)
   ========================================= */

/* --- Variables Scoped to Footer --- */
.footer-section {
    --footer-bg: #111827;
    /* Dark Background */
    --footer-text: #9ca3af;
    /* Gray Text */
    --footer-white: #ffffff;
    --footer-primary: #2563eb;
    /* Blue Highlight */
    --footer-accent: #f59e0b;
    /* Gold/Star Color */
    --footer-border: #1f2937;
    /* Dark Border */

    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 1rem 2rem 1rem;
    position: relative;
    font-family: sans-serif;
}

.footer-section * {
    box-sizing: border-box;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Grid Layout --- */
.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Columns --- */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Brand Column */
.footer-logo {
    height: 7rem;
    /* h-28 */
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-stars {
    color: var(--footer-accent);
    display: flex;
    gap: 2px;
}

.footer-rating-text {
    font-size: 0.875rem;
    color: var(--footer-text);
}

/* Headings */
.footer-title {
    color: var(--footer-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Links Lists */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-white);
}

.footer-links i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-icon {
    color: var(--footer-primary);
    margin-top: 0.2rem;
}

.footer-contact-list a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: var(--footer-white);
}

/* --- Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--footer-text);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--footer-white);
}

/* --- Floating Action Buttons (FAB) --- */
.footer-fab-wrapper {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
}

.footer-fab {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.footer-fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-phone {
    background-color: var(--footer-primary);
}

.fab-maps {
    background-color: var(--footer-accent);
}

/* Mobile FAB adjustment */
@media (max-width: 768px) {
    .footer-fab {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .footer-fab-wrapper {
        bottom: 1rem;
        right: 1rem;
    }
}

/*───────────── FOOTER SECTION END  ───────────── */
/* ───────────── ANIMATION STYLES ───────────── */

/* Base class for elements to be animated */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* State when element becomes visible */
.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

/* Slide in from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay for Cards (Cascading effect) */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

/* Hero Animation (On Load) */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-description,
.cta-buttons {
    animation: heroFadeUp 1s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.cta-buttons {
    animation-delay: 0.8s;
}

/* Pulse animation for CTA Circles */
@keyframes pulse-slow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.cta-circle-3 {
    animation: pulse-slow 4s infinite ease-in-out;
}

/* ───────────── DARK MODE STYLES ───────────── */

/* 1. Toggle Button Style */
.theme-btn {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 15px;
    /* Spacing from links */
}

.theme-btn:hover {
    background-color: #f3f4f6;
    transform: rotate(15deg);
}

/* Dark Mode Button State */
body.dark-mode .theme-btn {
    border-color: #4b5563;
    color: #fbbf24;
    /* Yellow for moon/sun */
    background-color: #374151;
}

/* 2. Global Dark Mode Defaults */
body.dark-mode {
    background-color: #111827;
    color: #f3f4f6;
}

body.dark-mode nav.main-nav {
    background: #1f2937;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .nav-logo {
    color: #ffffff;
}

body.dark-mode ul.nav-links li a {
    color: #e5e7eb;
}

body.dark-mode ul.nav-links li a:hover,
body.dark-mode ul.nav-links li a.active {
    color: #60a5fa;
    /* Light Blue */
}

/* Mobile Menu Dark Mode */
@media (max-width: 768px) {
    body.dark-mode ul.nav-links {
        background: #1f2937;
    }
}

/* 3. Hero Section Overrides */
body.dark-mode .hero-section {
    /* Darker Gradient */
    background: linear-gradient(to bottom, #1e3a8a, #111827);
}

body.dark-mode .hero-title {
    color: #ffffff;
}

body.dark-mode .hero-subtitle,
body.dark-mode .hero-description,
body.dark-mode .trust-text,
body.dark-mode .stat-label {
    color: #9ca3af;
    /* Light Gray */
}

body.dark-mode .rating-badge,
body.dark-mode .floating-badge,
body.dark-mode .btn-secondary {
    background: #1f2937;
    border-color: #374151;
    color: #ffffff;
}

/* Bottom Wave Connector (Make it dark to match next section) */
body.dark-mode .bottom-wave path {
    fill: #111827;
    /* Matches the dark background of the next section */
}

/* 4. Course Section Overrides (#si66vbn) */
body.dark-mode #si66vbn {
    /* Override scoped variables */
    --bg-white: #111827;
    /* Main Background */
    --bg-light: #1f2937;
    /* Card Backgrounds */
    --text-dark: #f9fafb;
    /* Titles */
    --text-gray: #9ca3af;
    /* Descriptions */
    --border-light: #374151;
    /* Borders */
}

/* 5. Why Choose Us Overrides (#about / #sbjtpqw) */
body.dark-mode .wcu-section {
    background: linear-gradient(to bottom, #111827, #0f172a);
}

body.dark-mode #about {
    /* Override scoped variables */
    --text-dark: #f9fafb;
    --text-gray: #9ca3af;
    --bg-light: #1f2937;
    --bg-white: #1f2937;
    /* Card floating bg */
    --border-light: #374151;
}

body.dark-mode .wcu-floating-card {
    border: 1px solid #374151;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* 6. Footer Tweaks */
/* Footer is already dark, just ensuring it blends */
body.dark-mode .footer-section {
    background-color: #0b0f19;
    /* Slightly darker than main body */
    border-top: 1px solid #374151;
}