:root {
            --bg-color: #0f172a;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --accent: #38bdf8;
            --nav-bg: rgba(15, 23, 42, 0.95);
            --border: rgba(255, 255, 255, 0.1);
            --card-bg: #1e293b;
            --input-bg: #0f172a;
            --login-bg: #1e293b; 
            --login-text: #f8fafc;
            --signup-bg: #f8fafc;
            --signup-text: #020617;
            --modal-overlay: rgba(0, 0, 0, 0.85);
            --success: #10b981;
            --sidebar-width: 280px;
        }

        [data-theme="light"] {
            --bg-color: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --accent: #0ea5e9;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --border: rgba(0, 0, 0, 0.08);
            --card-bg: #ffffff;
            --input-bg: #ffffff;
            --login-bg: #e2e8f0; 
            --login-text: #475569;
            --signup-bg: #ffffff;
            --signup-text: #1e293b;
            --modal-overlay: rgba(0, 0, 0, 0.6);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
        body { background: var(--bg-color); color: var(--text-main); transition: 0.3s; min-height: 100vh; overflow-x: hidden; }

        /* Navbar Styles */
        .navbar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 8%; height: 75px; background: var(--nav-bg);
            border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .logo { font-size: 1.4rem; font-weight: 800; text-decoration: none; color: var(--text-main); }
        .logo span { color: var(--accent); }
        .nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
        .nav-link { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 0.9rem; cursor: pointer; }
        
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; top: 100%; left: 0; background: var(--card-bg);
            border: 1px solid var(--border); list-style: none; min-width: 220px;
            display: none; border-radius: 8px; padding: 10px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li a { padding: 10px 20px; display: block; text-decoration: none; color: var(--text-muted); font-size: 0.85rem; }

        .nav-right { display: flex; align-items: center; gap: 1rem; }
        .whatsapp-btn { background: #25d366; color: white; padding: 8px 18px; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
        .hamburger { display: none; font-size: 1.4rem; cursor: pointer; color: var(--text-main); }


/* Sidebar Container */
.premium-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--border);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.premium-sidebar.active {
    left: 0;
}

/* Header & Theme Button */
.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--border);
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
}

.sidebar-logo span {
    color: var(--accent);
}

.sidebar-theme-row-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-theme-row-btn i { color: #bf953f; }

/* Navigation Links */
.sidebar-content-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.sidebar-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.sidebar-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.sidebar-nav-link i:not(.drop-arrow) {
    font-size: 1.1rem;
    color: #bf953f; /* Premium Gold Icon */
    width: 24px;
    text-align: right;
}

/* Dropdowns */
.icon-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drop-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.4s ease;
}

.sidebar-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin: 0 10px 10px 10px;
}

.sidebar-dropdown-menu.show {
    max-height: 500px;
    padding: 8px 0;
}

.sub-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sub-link:hover {
    color: var(--accent);
    padding-left: 25px;
}

/* WhatsApp Footer */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.sidebar-whatsapp-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-whatsapp-action:hover { transform: translateY(-2px); }

/* Overlay Styling */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 1999;
    display: none;
}

.sidebar-overlay.active { display: block; }



/* Ensure the theme button is visible and high-end */
.sidebar-theme-row-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    margin-top: 15px; /* Space from logo */
    background: var(--card-bg); /* Uses your card background color */
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important; /* Force display */
    visibility: visible !important;
}

.sidebar-theme-row-btn:hover {
    border-color: #bf953f;
    background: rgba(191, 149, 63, 0.1);
}

/* Icon specifically set to your gold accent */
#theme-icon {
    color: #bf953f !important;
    font-size: 1.1rem;
}

/* Fix for potential text-fill issues from logo styles */
#theme-text {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--text-main);
}

/* Slide-out Button Container */
#support-slide-wrapper {
    position: fixed;
    right: 0;
    /* Changed from 50% to 75% to move it lower */
    top: 75%; 
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
}

/* The actual sliding button */
.side-pull-btn {
    display: flex;
    align-items: center;
    /* Updated to use your --accent root color */
    background-color: var(--accent); 
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 30px 0 0 30px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    width: 50px;
    overflow: hidden;
    white-space: nowrap;
    /* Slightly softened shadow to match your UI */
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Text inside the button */
.support-label {
    margin-left: 15px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Icon styling */
#user-icon-fixed {
    font-size: 24px;
    min-width: 24px;
    text-align: center;
}

/* Hover Effect */
.side-pull-btn:hover {
    width: 220px;
    /* Slight brightness boost on hover instead of a hardcoded color */
    filter: brightness(1.1); 
}

.side-pull-btn:hover .support-label {
    opacity: 1;
}

@media (max-width: 1300px) {
    .hamburger {
        display: block !important; /* Shows the icon on mobile/tablet */
    }
    .nav-links, .nav-right .whatsapp-btn {
        display: none; /* Hides desktop nav so it doesn't overlap */
    }
}

        /* Footer Styles */
        .tf-elite-footer {
    --tf-bg: #030712; /* Premium Deep Black */
    --tf-accent: #38bdf8; /* Your Blue */
    --tf-text: #f8fafc;
    --tf-muted: #94a3b8;
    --tf-border: rgba(56, 189, 248, 0.1);

    background-color: var(--tf-bg);
    color: var(--tf-text);
    position: relative;
    padding: 100px 0 0 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 2px solid var(--tf-accent);
}

/* 3D BACKGROUND GRID */
.tf-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--tf-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--tf-border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.4;
    animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.tf-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 90px;
    position: relative;
    z-index: 10;
}

/* MAIN LAYOUT */
.tf-main-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 80px;
    padding-bottom: 80px;
}

/* HEADINGS & LABELS */
.tf-label {
    color: var(--tf-accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 40px; /* High-end spacing */
    position: relative;
    display: inline-block;
}

.tf-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--tf-accent);
}

/* LOGO & BRAND */
.tf-logo { font-size: 1.8rem; font-weight: 900; margin-bottom: 30px; }
.tf-logo span { color: var(--tf-accent); }
.tf-summary { color: var(--tf-muted); line-height: 1.8; margin-bottom: 35px; font-size: 0.95rem; }

/* SOCIAL CIRCLES */
.tf-social-row { display: flex; gap: 15px; }
.tf-social-circle {
    width: 38px; height: 38px;
    border: 1px solid var(--tf-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--tf-text);
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.02);
}
.tf-social-circle:hover { background: var(--tf-accent); color: var(--tf-bg); transform: translateY(-5px); border-color: var(--tf-accent); }

/* NAVIGATION ITEMS */
.tf-nav { display: flex; flex-direction: column; gap: 18px; }
.tf-nav-item {
    color: var(--tf-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}
.tf-nav-item:hover { color: var(--tf-accent); transform: translateX(8px); }

/* SUBSCRIPTION BOX */
.tf-update-text { color: var(--tf-muted); margin-bottom: 25px; font-size: 0.9rem; line-height: 1.6; }
.tf-subscribe-box {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 35px;
}
.tf-input {
    border: none; padding: 15px 20px; flex: 1; outline: none; font-size: 0.9rem;
}
.tf-join-btn {
    background: #ffcc00; /* Match TenzSoft Gold */
    color: #000; border: none; padding: 0 25px;
    font-weight: 700; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; gap: 10px;
}
.tf-join-btn:hover { background: #e6b800; }

/* CONTACT DETAILS */
.tf-contact-details { display: flex; flex-direction: column; gap: 20px; }
.tf-contact-item { display: flex; align-items: center; gap: 15px; color: var(--tf-muted); font-size: 0.9rem; }
.tf-icon-box { color: var(--tf-accent); font-size: 1.1rem; }

/* TERMINAL BAR */
.tf-terminal-footer {
    border-top: 1px solid var(--tf-border);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.75rem;
    color: #475569;
}
.tf-pulse {
    height: 8px; width: 8px; background: #10b981; border-radius: 50%;
    display: inline-block; margin-right: 8px; box-shadow: 0 0 10px #10b981;
}

/* RESPONSIVE */
@media (max-width: 1024px) { .tf-main-layout { grid-template-columns: 1fr 1fr; gap: 50px; } }
@media (max-width: 600px) { .tf-main-layout { grid-template-columns: 1fr; } }

/* Remove default underlines and style footer links */
.tf-elite-footer a {
    text-decoration: none !important; /* Removes the underline */
    color: inherit;                  /* Keeps the text color consistent with your design */
    display: flex;                   /* Ensures the icon and text stay aligned */
    transition: all 0.3s ease;       /* Smooth transition for hover effects */
}

/* Ensure clicked links don't turn purple */
.tf-elite-footer a:visited {
    color: inherit;
}

/* Optional: Add a subtle hover effect since the underline is gone */
.tf-elite-footer a:hover {
    color: var(--tf-accent);         /* Changes color to your sky blue on hover */
    text-decoration: none;           /* Ensures underline stays off during hover */
}

/* Specific fix for the contact items to keep icon and text on one line */
.tf-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
}


/* Base navigation item style */
.tf-nav-item {
    display: flex;
    align-items: center;
    text-decoration: none !important; /* No underline */
    color: var(--tf-muted); /* Your muted gray color */
    transition: all 0.3s ease;
    position: relative;
}

/* The Arrow Styling */
.tf-hover-arrow {
    color: #38bdf8; /* Your specific blue color */
    font-size: 0.7rem;
    margin-right: 0; /* Hidden by default */
    opacity: 0;      /* Invisible by default */
    width: 0;        /* Takes no space until hover */
    transition: all 0.3s ease;
}

/* Hover Effect: Show arrow and push text forward */
.tf-nav-item:hover {
    color: #f8fafc; /* White text on hover */
    padding-left: 5px;
}

.tf-nav-item:hover .tf-hover-arrow {
    opacity: 1;
    margin-right: 10px;
    width: 12px; /* Smoothly grows and appears */
}



.tf-social-circle:hover i {
    color: #000000;
}
/* Footer Background Styling */
.tf-footer {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
}

.tf-logo-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

/* Image Dimensions and Fixes */
.tf-footer-logo-img {
    /* Increased size */
    height: 180px; 
    width: auto; /* Maintains natural aspect ratio */
    
    /* Rounded corners */
    border-radius: 15px; 
    
    /* Ensures the image stays clean within its box */
    object-fit: cover; 
    
    /* Centering logic */
    display: block;
    margin: 0 auto;
    
    /* Optional: subtle border to define the shape on dark backgrounds */
    border: 1px solid #333; 
}

/* Hover effect for the link */
.tf-logo-wrapper a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tf-logo-wrapper a:hover {
    opacity: 0.9;
    transform: scale(1.02); /* Slight zoom effect on hover */
}
/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet View: 2 Sections per row */
@media (max-width: 950px) {
    .tf-main-layout {
        /* Switch to a 2x2 grid */
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding-bottom: 50px;
    }

    /* Keep the Logo and Brand column centered at the top */
    .brand-info {
        grid-column: span 2; /* Spans across both columns */
        text-align: center;
        margin-bottom: 20px;
    }

    /* Aligning the logo image and social icons to center */
    .tf-logo-wrapper, 
    .tf-social-row {
        justify-content: center;
        display: flex;
    }

    .tf-footer-logo-img {
        margin: 0 auto;
    }

    /* Ensuring the summary text stays centered */
    .tf-summary {
        max-width: 600px;
        margin: 0 auto 35px;
    }
}

/* Mobile View: 1 Section per row */
@media (max-width: 600px) {
    .tf-container {
        padding: 0 25px; /* Tighter side padding for small screens */
    }

    .tf-main-layout {
        /* Everything stacks in 1 column */
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center; /* Centers all headings and text */
    }

    .brand-info {
        grid-column: span 1;
    }

    /* Aligning Navigation items and arrows to center */
    .tf-nav-item {
        justify-content: center;
    }

    .tf-nav-item:hover {
        transform: none; /* Disables horizontal shift on mobile for better UX */
    }

    /* Centering the Subscribe Box and Buttons */
    .tf-subscribe-box {
        max-width: 100%;
    }

    .tf-contact-item {
        justify-content: center;
    }

    /* Terminal Bar Stacking */
    .tf-terminal-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* --- EXTRA SMALL SCREENS (Below 420px) --- */
@media (max-width: 420px) {
    .tf-container {
        padding: 0 15px;
    }

    .tf-main-layout {
        gap: 35px; /* Tighter spacing for smaller height */
    }

    .tf-footer-logo-img {
        max-width: 220px; /* Smaller logo */
    }

    .tf-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .tf-nav-item {
        font-size: 0.85rem;
    }

    .tf-contact-item span {
        font-size: 0.8rem; /* Prevents long emails from breaking the layout */
    }

    .tf-terminal-footer {
        font-size: 0.65rem; /* Very small terminal text */
        letter-spacing: 0.5px;
    }
}

/* --- ULTRA NARROW SCREENS (Below 250px) --- */
@media (max-width: 250px) {
    .tf-container {
        padding: 0 10px;
    }

    /* Stack the subscribe button on top of the input */
    .tf-subscribe-box {
        flex-direction: column;
        border: none;
        background: transparent;
    }

    .tf-input {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 10px;
        padding: 10px;
    }

    .tf-join-btn {
        width: 100%;
        border-radius: 8px;
        padding: 10px;
    }

    /* Hide non-essential decorative elements to save space */
    .tf-grid-overlay, 
    .tf-ambient-glow {
        display: none;
    }

    .tf-summary {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Make icons smaller to fit the row */
    .tf-social-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .tf-copyright {
        font-size: 0.6rem;
    }
}

/* --- NAVBAR BUTTONS LOGIC --- */
/* At 690px and below, hide the anchor buttons in the navbar */
@media screen and (max-width: 690px) {
    .nav-right a {
        display: none !important;
    }
    
    /* Ensure the theme toggle button stays visible */
    .nav-right #theme-toggle {
        display: block !important;
    }
}

/* --- SIDEBAR BUTTONS LOGIC --- */
/* 1. Hide sidebar buttons on large screens (above 1001px) */
@media screen and (min-width: 1002px) {
    .sidebar-footer {
        display: none !important;
    }
}

/* 2. Show sidebar buttons on screens 1001px and below */
@media screen and (max-width: 1001px) {
    .sidebar-footer {
        display: block !important; /* Shows the footer container */
    }
    
    .sidebar-footer > div {
        display: flex !important; /* Ensures the buttons inside stay inline */
    }
}





/* Unique solid styling specifically for the Courses button */
        .sidebar-nav-link.courses-special-btn {
            background-color: #1e293b !important; /* Rich, dark solid color to stand out */
            color: #38bdf8 !important;            /* Vibrant blue text color to pop */
            border-left: 4px solid #38bdf8 !important; /* Sleek accent strip on the left side */
            border-radius: 4px !important;
            margin: 6px 10px !important;          /* Clean spacing gap above and below */
            padding: 10px 12px !important;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important; /* Lifts it off the background */
            transition: all 0.25s ease-in-out !important;
        }

        /* Changes the icon colors within the courses button */
        .sidebar-nav-link.courses-special-btn .link-label,
        .sidebar-nav-link.courses-special-btn i {
            color: #38bdf8 !important; 
        }

        /* Hover interaction for the courses action button */
        .sidebar-nav-link.courses-special-btn:hover {
            background-color: #0f172a !important; /* Deepens background on hover */
            color: #ffffff !important;            /* Changes text to clean white */
        }
        
        /* Ensures icons also change color on hover */
        .sidebar-nav-link.courses-special-btn:hover .link-label,
        .sidebar-nav-link.courses-special-btn:hover i {
            color: #ffffff !important;
        }
      /* Distinct solid styling for the header navbar Courses button */
        .nav-link.navbar-courses-btn {
            background-color: #1e293b !important;    /* Rich, dark solid color background */
            color: #38bdf8 !important;               /* Vibrant blue text color to pop */
            border-bottom: 3px solid #38bdf8 !important; /* Sleek accent underline indicator */
            border-radius: 4px !important;
            padding: 8px 16px !important;            /* Balanced horizontal spacing */
            margin: 0 4px !important;
            font-weight: 6px !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 6px !important;
            transition: all 0.25s ease-in-out !important;
        }

        /* Hover interaction for the navbar courses button */
        .nav-link.navbar-courses-btn:hover {
            background-color: #0f172a !important;    /* Deepens background context on hover */
            color: #ffffff !important;               /* Switches text color to solid white */
            border-bottom-color: #ffffff !important; /* Changes accent underline line to white */
        }

        /* Standard hidden drop menu states */
        .navbar-courses-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #1e293b;
            min-width: 200px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
            border-radius: 4px;
            padding: 6px 0;
            display: none;                          /* Hidden by default */
            z-index: 1000;
        }

        /* Links inside the dropdown box */
        .navbar-courses-dropdown a {
            color: #ffffff;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: background-color 0.2s ease;
        }

        /* Hover action on item selection */
        .navbar-courses-dropdown a:hover {
            background-color: #0f172a;
            color: #38bdf8;
        }

        /* Hover behavior to reveal panel directly via CSS layout */
        .navbar-courses-container:hover .navbar-courses-dropdown {
            display: block;
        }



:root {
    --bg-color: #0f172a;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --accent: #38bdf8;
    --side-gap: 100px; /* Change this value to adjust side spacing */
}

.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--side-gap);
    height: 600px;
    background-color: #050a14;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    overflow: hidden;
}

.hero-left {
    max-width: 50%;
    z-index: 2;
}

.hero-left h1 {
    font-size: 3.5rem;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 .highlight {
    color: var(--accent);
}

.hero-left p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: var(--accent);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
}

.hero-right {
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero-right img {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--accent));
    border-radius: 20px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 1050px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 50px var(--side-gap);
    }

    .hero-left {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-right {
        order: 2; /* Ensures image comes after the text content */
    }
}
/* Tablet & Mobile Responsiveness */
@media (max-width: 1050px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 60px var(--side-gap);
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
        order: 1; /* Content first */
    }

    .hero-left h1 {
        font-size: 2.5rem; /* Smaller heading for mobile */
    }

    .hero-right {
        order: 2; /* Image second */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        width: 80%; /* Fluid image width */
        max-width: 400px;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    :root {
        --side-gap: 20px; /* Tighter padding for very small screens */
    }

    .hero-left h1 {
        font-size: 2rem;
    }
}

/* Container for flexible side-gap control */
.page-container {
    --side-padding: 0px; /* Adjust this value directly to change side gaps */
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
}

.audience-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--bg-color);
    transition: background-color 0.5s ease;
}

.section-headline {
    text-align: center;
    color: var(--text-main);
    font-size: 3.2rem;
    margin-bottom: 70px;
}

.section-headline span {
    color: var(--accent);
}

.audience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.audience-card {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Luxury Hover Animation */
.audience-card:hover {
    transform: translateY(-20px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.audience-card:hover::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.05), transparent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.audience-card h3 {
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 2rem;
}

.audience-card p {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.audience-card li {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    list-style: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}
.content-wrapper {
    --side-padding: px; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.learning-path-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.header-group {
    margin-bottom: 70px;
    text-align: center;
}

.header-group h2 {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

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

.module-card {
    background: var(--card-bg);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.module-card h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.module-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.keyword-tag {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}


.section-title {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    color: var(--accent);
}
.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 20px auto 0 auto; /* Centers the text and adds spacing from the H2 */
    line-height: 1.6;
    font-weight: 400;
}

/* Unique Gap Control for this section */
.roadmap-wrapper {
    --side-padding: 0px;
    padding: 100px var(--side-padding);
}

.roadmap-header {
    text-align: center;
    margin-bottom: 80px;
}

.roadmap-header h2 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* Container setup */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 cards in one row */
    gap: 20px;
    max-width: 1200px; /* Keeps everything contained */
    margin: 0 auto;    /* Centers the container on the screen */
    padding: 20px;
}

/* 1000px breakpoint: Switch to 2 cards per row */
@media (max-width: 1000px) {
    .roadmap-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 600px breakpoint: Switch to 1 card per row */
@media (max-width: 600px) {
    .roadmap-container {
        grid-template-columns: 1fr;
    }
}

/* Optional: Ensure the card content stays centered */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content inside the card */
    text-align: center;  /* Centers text inside the card */
}

.step-card {
    flex: 1;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.15);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Container for local side-gap control */
.why-section {
    --side-gap: px; /* Adjust this value to change side spacing */
    padding: 100px var(--side-gap);
    display: flex;
    align-items: stretch;
    gap: 50px;
    background-color: var(--bg-color);
}

.text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-heading {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.why-content {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.image-side {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 500px;
}

/* Background Blur Effect */
.image-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('your-image-url.jpg') center/cover;
    filter: blur(15px) brightness(0.8);
    transform: scale(1.1);
}

.image-side img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 30px;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .why-section {
        flex-direction: column;
        --side-gap: 30px;
    }
}
/* 1. Base Setup (3 columns) */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
    justify-items: center;
}

/* 2. Medium Screens (Below 1000px: 2 columns) */
@media (max-width: 1000px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Center the 3rd card */
    .plan-card:last-child {
        grid-column: span 2;
    }
}

/* 3. Small Screens (Below 750px: 1 column) */
@media (max-width: 750px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    /* Reset the last card span so it doesn't try to span 2 columns */
    .plan-card:last-child {
        grid-column: span 1;
    }
}

/* Base Card Styling */
.plan-card {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.pricing-header h1 { color: var(--accent); font-size: 3rem; margin-bottom: 60px; }


.plan-card {
    background: #0f172a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.plan-card:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* Tooltip Logic */
.info-icon { position: absolute; top: 20px; right: 20px; cursor: help; color: #94a3b8; font-size: 1.2rem; }
.tooltip-box {
    visibility: hidden; opacity: 0; position: absolute; bottom: 110%; right: 0;
    background: #334155; color: white; padding: 15px; width: 250px; border-radius: 8px;
    font-size: 0.85rem; line-height: 1.4; transition: 0.3s;
}
.info-icon:hover .tooltip-box { visibility: visible; opacity: 1; }

.plan-price { font-size: 3rem; font-weight: 800; color: white; margin: 20px 0; }

/* Luxury Features */
.features-list { list-style: none; padding: 0; margin-bottom: 30px; }
.features-list li { color: #cbd5e1; margin-bottom: 15px; display: flex; align-items: center; }
.tick {
    width: 20px; height: 20px; background: var(--accent); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-right: 15px; font-weight: bold; font-size: 0.7rem;
}

.choose-btn {
    display: block; padding: 15px; background: transparent; border: 1px solid #334155;
    color: white; border-radius: 8px; text-decoration: none; transition: 0.3s;
}
.choose-btn:hover { background: var(--accent); color: #000; }


:root {
  --bg-color: #0f172a;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --nav-bg: rgba(15,23,42,0.95);
  --border: rgba(255,255,255,0.1);
  --card-bg: #1e293b;
  --input-bg: #0f172a;
  --login-bg: #1e293b;
  --login-text: #f8fafc;
  --signup-bg: #f8fafc;
  --signup-text: #020617;
  --modal-overlay: rgba(0,0,0,0.85);
  --success: #10b981;
  --sidebar-width: 280px;

  --accent-rgb: 56,189,248;
  --error: #f87171;
  --warning: #fbbf24;
  --input-border: rgba(255,255,255,0.12);
  --input-focus: rgba(56,189,248,0.5);
  --input-hover: rgba(255,255,255,0.18);
  --label-color: #cbd5e1;
  --placeholder: rgba(148,163,184,0.5);
  --glow: rgba(56,189,248,0.15);
}

[data-theme="light"] {
  --bg-color: #f0f6ff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --accent: #0ea5e9;
  --nav-bg: rgba(255,255,255,0.95);
  --border: rgba(0,0,0,0.08);
  --card-bg: #ffffff;
  --input-bg: #f8fafc;
  --login-bg: #e2e8f0;
  --login-text: #475569;
  --signup-bg: #ffffff;
  --signup-text: #1e293b;
  --modal-overlay: rgba(0,0,0,0.6);

  --accent-rgb: 14,165,233;
  --input-border: rgba(0,0,0,0.1);
  --input-focus: rgba(14,165,233,0.4);
  --input-hover: rgba(0,0,0,0.06);
  --label-color: #475569;
  --placeholder: rgba(100,116,139,0.5);
  --glow: rgba(14,165,233,0.1);
}

html { scroll-behavior: smooth; }
.page {
  position: relative; z-index: 1;
  padding: 7rem 1.5rem 4rem;
  max-width: 780px;
  margin: 0 auto;
}

/* ── HEADER ── */
.form-header { margin-bottom: 2.5rem; }

.eyebrow {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: .85rem;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--accent); opacity: .6; }
.eyebrow-text {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); opacity: .85;
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: .65rem;
  transition: color 0.45s;
}

.form-title span {
  background: linear-gradient(135deg, var(--accent), #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-sub {
  color: var(--text-muted); font-size: 1rem; font-weight: 300;
  line-height: 1.6; max-width: 560px;
  transition: color 0.45s;
}

/* progress bar */
.progress-wrap {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 2rem;
}
.progress-bar {
  flex: 1; height: 4px; border-radius: 99px;
  background: var(--border); overflow: hidden;
  transition: background 0.45s;
}
.progress-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #818cf8);
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
  width: 0%;
}
.progress-label {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted); white-space: nowrap;
  transition: color 0.45s;
  min-width: 52px; text-align: right;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  transition: background 0.45s, border 0.45s;
  position: relative; overflow: hidden;
}

.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), #818cf8, transparent);
  border-radius: 24px 24px 0 0;
}

/* ── SECTION LABELS ── */
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
  transition: color 0.45s;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border); transition: background 0.45s;
}

/* ── GRID ── */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.row.full { grid-template-columns: 1fr; }
.row.trio { grid-template-columns: 1fr 1fr 1fr; }
@media(max-width:600px){
  .row,.row.trio { grid-template-columns: 1fr; }
}

/* ── FIELD ── */
.field { display: flex; flex-direction: column; gap: 7px; }

.field label {
  font-size: 13px; font-weight: 500;
  color: var(--label-color);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.45s;
}

.req {
  color: var(--accent); font-size: 11px;
  background: rgba(var(--accent-rgb),.12);
  padding: 1px 5px; border-radius: 4px;
  font-weight: 600;
}

.field-wrap {
  position: relative; display: flex; align-items: center;
}

.field-icon {
  position: absolute; left: 14px;
  color: var(--text-muted); pointer-events: none;
  display: flex; align-items: center;
  transition: color 0.3s;
}
.field-icon svg { width: 16px; height: 16px; stroke-width: 1.8; }

input, select, textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  color: var(--text-main);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 400;
  padding: 13px 14px 13px 42px;
  outline: none;
  transition: border 0.3s, background 0.45s, box-shadow 0.3s, color 0.45s;
  appearance: none; -webkit-appearance: none;
}

input::placeholder, textarea::placeholder {
  color: var(--placeholder);
}

input:hover, select:hover, textarea:hover {
  border-color: var(--input-hover);
  background: var(--input-bg);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--input-focus);
  background: var(--input-bg);
}

input:focus ~ .field-icon svg,
select:focus ~ .field-icon svg {
  color: var(--accent);
}

.field-wrap:focus-within .field-icon { color: var(--accent); }

/* phone prefix */
.phone-wrap { display: flex; gap: 0; }
.phone-prefix {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 13px 14px;
  color: var(--text-muted);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.45s, border 0.45s, color 0.45s;
  user-select: none; cursor: default;
}
.phone-prefix .flag { font-size: 16px; }
.phone-wrap input {
  border-radius: 0 12px 12px 0;
  padding-left: 16px;
}
.phone-wrap input:focus { box-shadow: 0 0 0 3px var(--input-focus); }

/* select arrow */
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}
.select-arrow svg { width: 16px; height: 16px; stroke-width: 2; }
.select-wrap:focus-within .select-arrow { color: var(--accent); transform: translateY(-50%) rotate(180deg); }

/* textarea */
textarea {
  padding: 13px 14px 13px 42px;
  resize: vertical; min-height: 110px;
  line-height: 1.6; vertical-align: top;
}

/* select options */
select option { background: var(--card-bg); color: var(--text-main); }

/* ── CHAR COUNT ── */
.field-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px;
}
.char-count { font-size: 11px; color: var(--text-muted); transition: color 0.3s; }
.char-count.warn { color: var(--warning); }
.char-count.over { color: var(--error); }
.hint { font-size: 12px; color: var(--text-muted); font-style: italic; transition: color 0.45s; }

/* ── VALIDATION ── */
.field-msg {
  font-size: 12px; min-height: 16px;
  display: flex; align-items: center; gap: 5px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.field-msg.show { opacity: 1; transform: translateY(0); }
.field-msg.err { color: var(--error); }
.field-msg.ok  { color: var(--success); }
.field-msg svg { width: 12px; height: 12px; stroke-width: 2.5; flex-shrink: 0; }

input.invalid, select.invalid, textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.2);
}
input.valid, select.valid, textarea.valid {
  border-color: var(--success);
}

/* ── CHECKBOX ── */
.checkbox-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1rem 1.25rem;
  background: rgba(var(--accent-rgb),.05);
  border: 1px solid rgba(var(--accent-rgb),.15);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
  margin-bottom: 1.25rem;
}
.checkbox-row:hover { background: rgba(var(--accent-rgb),.08); border-color: rgba(var(--accent-rgb),.3); }

.custom-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  border: 1.5px solid var(--input-border);
  background: var(--input-bg);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; margin-top: 1px;
}
.custom-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 3; opacity: 0; transition: opacity 0.2s; }
input[type="checkbox"] { display: none; }
input[type="checkbox"]:checked + .custom-check {
  background: var(--accent); border-color: var(--accent);
}
input[type="checkbox"]:checked + .custom-check svg { opacity: 1; }

.check-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; transition: color 0.45s; }
.check-text strong { color: var(--text-main); font-weight: 500; transition: color 0.45s; }

/* ── SUBMIT ── */
.form-footer { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.submit-btn {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), #818cf8);
  color: #fff;
  border: none; border-radius: 14px;
  padding: 15px 32px;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb),.3);
}
.submit-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.submit-btn:hover::before { background: rgba(255,255,255,0.08); }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(var(--accent-rgb),.4); }
.submit-btn:active { transform: scale(0.98); }
.submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.submit-btn svg { width: 18px; height: 18px; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
.submit-btn:hover svg { transform: translateX(3px); }

.submit-note { font-size: 12px; color: var(--text-muted); font-weight: 300; transition: color 0.45s; }
.submit-note svg { width: 13px; height: 13px; stroke: var(--success); vertical-align: -2px; margin-right: 4px; }

/* ── SUCCESS STATE ── */
.success-overlay {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.25rem;
}
.success-overlay.show { display: flex; }

.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(16,185,129,.12);
  display: flex; align-items: center; justify-content: center;
  animation: popIn 0.5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from{transform:scale(0.4);opacity:0} to{transform:scale(1);opacity:1} }
.success-icon svg { width: 32px; height: 32px; stroke: var(--success); stroke-width: 2; }

.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text-main); transition: color 0.45s;
}
.success-sub { font-size: 14px; color: var(--text-muted); font-weight: 300; max-width: 360px; transition: color 0.45s; }

.reset-btn {
  background: transparent; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 10px 24px;
  color: var(--text-muted); font-family: 'DM Sans', sans-serif;
  font-size: 13px; cursor: pointer; transition: all 0.3s;
}
.reset-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── LOADING SPINNER ── */
.spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to{ transform: rotate(360deg); } }
.submit-btn.loading .spinner { display: block; }
.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon { display: none; }
/* 1. Container - Set height and background */
/* 1. Container - Set height, background, and WIDTH */
.ts-wrapper {
    height: 45px !important; 
    width: 290px !important; /* <--- INCREASE THIS NUMBER TO MAKE IT WIDER */
    min-width: 150px !important; /* Ensures it stays that size */
    background-color: #1f1f1f !important; 
    border: 1px solid #444 !important;
    border-radius: 4px;
}

/* 2. Control - Ensure text is white and height matches */
.ts-control {
    height: 100% !important;
    color: #ffffff !important;
    background-color: #1f1f1f !important;
    border: none !important;
    display: flex;
    align-items: center;
}

/* 3. Dropdown Menu - Dark mode styling */
.ts-dropdown {
    background-color: #1f1f1f !important;
    color: #ffffff !important;
    border: 1px solid #444 !important;
}

/* 4. Dropdown Options - Hover state */
.ts-dropdown .option {
    color: #ffffff !important;
    background-color: #1f1f1f !important;
    padding: 10px;
}

.ts-dropdown .option.active {
    background-color: #333 !important; /* Slightly lighter on hover */
}

/* 5. Placeholder text color */
.ts-control input::placeholder {
    color: #aaa !important;
}

/* 6. Arrow icon color */
.ts-control .item {
    color: #ffffff !important;
}

/* Responsive adjustment for padding */
@media (max-width: 768px) {
    main {
        padding: 50px 4%; /* Reduces padding on smaller screens to prevent overflow */
    }
}

/* Ensure sections do not overflow */
section {
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Safety net for any internal content */
}
    