/* ==========================================
   CSS RESET & DESIGN SYSTEM TOKENS
   ========================================== */
:root {
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Colors derived from Blend branding screenshot & modern design */
    --color-nav-bg: #ffffff;
    --color-text-primary: #12102e;
    --color-text-secondary: #4b4f68;
    --color-text-muted: #8086a3;
    
    --color-accent: #00bcce;
    --color-accent-hover: #009db0;
    --color-accent-light: #e6fa97;
    
    --color-bg-main: #f8fafc;
    --color-card-bg: #ffffff;
    --color-border: #e2e8f0;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 20px rgba(18, 16, 46, 0.08);
    --shadow-lg: 0 16px 36px rgba(18, 16, 46, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Offset anchor scroll targets so sticky navbar doesn't cover them */
section[id] {
    scroll-margin-top: 84px;
}


/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
    background-color: #12102e;
    color: #ffffff;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.admin-badge-link {
    background-color: rgba(0, 188, 206, 0.2);
    color: #00bcce;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.admin-badge-link:hover {
    background-color: #00bcce;
    color: #ffffff;
}

/* ==========================================
   WHITE NAVBAR STYLING
   ========================================== */
.navbar-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-nav-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.navbar {
    max-width: 1380px;
    margin: 0 auto;
    height: 76px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

/* Logo */
.navbar-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    height: 100%;
}

.navbar-logo .logo-image {
    height: 170px;
    width:500px;
    display: block;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.navbar-logo:hover .logo-image {
    transform: scale(1.03);
}


.logo-text {
    color: #12102e;
    font-weight: 800;
}

.logo-dot {
    color: var(--color-accent);
    font-size: 17px;
    font-weight: 700;
    margin-left: 5px;
}

/* Menu Items (Middle) */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
    white-space: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-accent);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.dropdown-link:hover {
    background-color: #f1f5f9;
    color: var(--color-accent);
}

/* Highlighted Nav Button */
.nav-btn-highlight {
    background-color: #f1f5f9;
    color: var(--color-text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-btn-highlight:hover {
    background-color: var(--color-text-primary);
    color: #ffffff;
}

/* End Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Language Selector Dropdown */
.lang-selector-dropdown {
    position: relative;
}

.lang-btn {
    background: #f8fafc;
    border: 1px solid var(--color-border);
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: #e2e8f0;
}

.lang-btn .arrow {
    font-size: 10px;
    color: var(--color-text-secondary);
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #ffffff;
    min-width: 150px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 6px 0;
    list-style: none;
    display: none;
    flex-direction: column;
    z-index: 150;
}

.lang-menu.show {
    display: flex;
}

.lang-option {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.lang-option:hover {
    background-color: #f1f5f9;
    color: var(--color-accent);
}

.lang-option.active {
    color: var(--color-accent);
    font-weight: 700;
}

.region-selector {
    gap: 6px;
    cursor: pointer;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.region-selector:hover {
    background-color: #f1f5f9;
}

.region-selector .arrow {
    font-size: 11px;
    color: var(--color-text-secondary);
}

/* LOGIN BUTTON AT END OF NAVBAR */
.btn-talk-us {
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0, 188, 206, 0.35);
    transition: all var(--transition-fast);
}

.btn-talk-us:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 206, 0.45);
}

.btn-talk-us i {
    transition: transform var(--transition-fast);
}

.btn-talk-us:hover i {
    transform: translateX(4px);
}

/* Logged-In User Profile Menu */
.user-profile-menu {
    position: relative;
}

.user-btn {
    background: #f1f5f9;
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.user-btn:hover {
    background: #e2e8f0;
}

.badge-admin {
    background-color: #12102e;
    color: var(--color-accent-light);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.user-dropdown-card {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 240px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 120;
}

.user-dropdown-card.show {
    display: flex;
}

.user-dropdown-header {
    display: flex;
    flex-direction: column;
}

.email-text {
    font-size: 12px;
    color: var(--color-text-muted);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.user-dropdown-item:hover {
    background-color: #f1f5f9;
}

.admin-item {
    color: #2563eb;
}

.logout-item {
    color: #dc2626;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--color-text-primary);
    cursor: pointer;
}

/* ==========================================
   HERO CAROUSEL
   ========================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: #12102e;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.carousel-slide.active .slide-bg {
    transform: scale(1.05);
}

/* Dark overlay so text is readable */
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 16, 46, 0.72) 0%,
        rgba(18, 16, 46, 0.45) 50%,
        rgba(18, 16, 46, 0.30) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slide-heading {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: none;
}

.carousel-slide.active .slide-heading {
    animation: slideUp 0.7s ease forwards;
}

.slide-subheading {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.6;
}

.carousel-slide.active .slide-subheading {
    animation: slideUp 0.7s ease 0.15s both;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 188, 206, 0.45);
    transition: all var(--transition-fast);
    width: fit-content;
}

.carousel-slide.active .slide-btn {
    animation: slideUp 0.7s ease 0.3s both;
}

.slide-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 188, 206, 0.55);
}

.slide-btn i {
    transition: transform var(--transition-fast);
}

.slide-btn:hover i {
    transform: translateX(4px);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
    font-size: 14px;
}

.carousel-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   HERO SECTION (old static hero kept for reference)
   ========================================== */
.hero-section {
    padding: 90px 24px 70px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 188, 206, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 188, 206, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 188, 206, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 188, 206, 0); }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 19px;
    color: var(--color-text-secondary);
    max-width: 760px;
    margin: 0 auto 36px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-primary-hero {
    background-color: var(--color-text-primary);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-primary-hero:hover {
    background-color: #2a2566;
    transform: translateY(-2px);
}

.btn-secondary-hero {
    background-color: #ffffff;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-secondary-hero:hover {
    background-color: #f1f5f9;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    max-width: 1200px;
    margin: 60px auto 90px;
    padding: 0 24px;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 188, 206, 0.1);
    color: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Old footer styles removed — see SITE FOOTER section at bottom of file */

/* ==========================================
   AUTHENTICATION MODAL
   ========================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 16, 46, 0.6);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 36px 30px 28px;
    position: relative;
    transform: scale(0.92) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.show .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    font-size: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: var(--color-text-primary);
}

/* Modal Tabs */
.modal-header-tabs {
    display: flex;
    background-color: #f1f5f9;
    border-radius: var(--radius-pill);
    padding: 4px;
    margin-bottom: 24px;
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: #ffffff;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
}

/* Modal Alert */
.modal-alert {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 600;
}

.modal-alert.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.modal-alert.success {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.modal-alert.hidden {
    display: none;
}

/* Auth Forms */
.auth-form {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.auth-form.active {
    display: flex;
}

.form-title h3 {
    font-size: 24px;
    font-weight: 800;
}

.form-title p {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 188, 206, 0.15);
}

.btn-submit-auth {
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 188, 206, 0.3);
}

.btn-submit-auth:hover {
    background-color: var(--color-accent-hover);
}

.modal-footer-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.link-switch-auth {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
}

.admin-hint-box {
    background-color: #f8fafc;
    border-left: 3px solid var(--color-text-primary);
    padding: 10px 12px;
    font-size: 12px;
    color: var(--color-text-secondary);
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 6px;
}

.admin-hint-box i {
    color: var(--color-text-primary);
    margin-top: 2px;
}

/* Notification Toasts */
.toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid #16a34a;
    animation: slideIn 0.3s ease;
}

.toast-error {
    border-left-color: #dc2626;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text-muted);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 38px;
    }
}

 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       H E R O   C A R O U S E L   S T Y L E S 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . h e r o - c a r o u s e l   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   7 0 v h ; 
         m i n - h e i g h t :   5 0 0 p x ; 
         o v e r f l o w :   h i d d e n ; 
         b a c k g r o u n d - c o l o r :   # 0 f 1 7 2 a ; 
 } 
 
 . c a r o u s e l - c o n t a i n e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
 } 
 
 . c a r o u s e l - s l i d e   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o p a c i t y :   0 ; 
         v i s i b i l i t y :   h i d d e n ; 
         t r a n s i t i o n :   o p a c i t y   0 . 8 s   e a s e ,   v i s i b i l i t y   0 . 8 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         t e x t - a l i g n :   c e n t e r ; 
         z - i n d e x :   1 ; 
 } 
 
 . c a r o u s e l - s l i d e . a c t i v e   { 
         o p a c i t y :   1 ; 
         v i s i b i l i t y :   v i s i b l e ; 
         z - i n d e x :   2 ; 
 } 
 
 . s l i d e - b g   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d - s i z e :   c o v e r ; 
         b a c k g r o u n d - p o s i t i o n :   c e n t e r ; 
         b a c k g r o u n d - r e p e a t :   n o - r e p e a t ; 
         z - i n d e x :   - 2 ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   6 s   e a s e ; 
 } 
 
 . c a r o u s e l - s l i d e . a c t i v e   . s l i d e - b g   { 
         t r a n s f o r m :   s c a l e ( 1 ) ; 
 } 
 
 . c a r o u s e l - s l i d e : : a f t e r   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   r g b a ( 1 5 ,   2 3 ,   4 2 ,   0 . 6 ) ; 
         z - i n d e x :   - 1 ; 
 } 
 
 . s l i d e - c o n t e n t   { 
         m a x - w i d t h :   8 0 0 p x ; 
         p a d d i n g :   2 0 p x ; 
         c o l o r :   # f f f f f f ; 
         t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ; 
         o p a c i t y :   0 ; 
         t r a n s i t i o n :   a l l   0 . 8 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 )   0 . 3 s ; 
 } 
 
 . c a r o u s e l - s l i d e . a c t i v e   . s l i d e - c o n t e n t   { 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
         o p a c i t y :   1 ; 
 } 
 
 . s l i d e - h e a d i n g   { 
         f o n t - s i z e :   c l a m p ( 2 . 5 r e m ,   5 v w ,   4 . 5 r e m ) ; 
         f o n t - w e i g h t :   8 0 0 ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         l i n e - h e i g h t :   1 . 1 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   # f f f f f f ,   # 0 0 d 2 f f ) ; 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
         t e x t - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 } 
 
 . s l i d e - s u b h e a d i n g   { 
         f o n t - s i z e :   c l a m p ( 1 r e m ,   2 v w ,   1 . 2 5 r e m ) ; 
         m a r g i n - b o t t o m :   4 0 p x ; 
         c o l o r :   # e 2 e 8 f 0 ; 
         f o n t - w e i g h t :   4 0 0 ; 
 } 
 
 . s l i d e - b t n   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 0 p x ; 
         p a d d i n g :   1 4 p x   3 2 p x ; 
         b a c k g r o u n d :   v a r ( - - c o l o r - a c c e n t - l i g h t ) ; 
         c o l o r :   # f f f f f f ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - w e i g h t :   6 0 0 ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   2 1 0 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . s l i d e - b t n : h o v e r   { 
         b a c k g r o u n d :   # 0 0 b 0 d b ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   2 1 0 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 / *   C a r o u s e l   C o n t r o l s   * / 
 . c a r o u s e l - n a v   { 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   3 0 p x ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   2 0 p x ; 
         z - i n d e x :   1 0 ; 
 } 
 
 . c a r o u s e l - d o t s   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
 } 
 
 . d o t   { 
         w i d t h :   1 0 p x ; 
         h e i g h t :   1 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . d o t . a c t i v e   { 
         b a c k g r o u n d :   v a r ( - - c o l o r - a c c e n t - l i g h t ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 3 ) ; 
 } 
 
 . c a r o u s e l - b t n   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         c o l o r :   # f f f ; 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . c a r o u s e l - b t n : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - c o l o r - a c c e n t - l i g h t ) ; 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - a c c e n t - l i g h t ) ; 
 } 
 
 
 

/* ==========================================
   TRUSTED BY 300+ COURSES - MARQUEE SECTION
   ========================================== */
.trusted-section {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    overflow: hidden;
}

.trusted-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 24px 18px;
    text-align: center;
}

.trusted-label {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #0d0d1a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trusted-count {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #00bcce 0%, #0055ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
    line-height: 1;
}

.trusted-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 14px 0 20px;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trusted-marquee {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 0 28px;
    flex-shrink: 0;
}

/* JS adds this class after cloning the track */
.marquee-track.marquee-running {
    animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.trusted-marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.trusted-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    opacity: 1;
    transition: transform 0.25s ease, filter 0.25s ease;
    cursor: pointer;
}

.trusted-item:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0,188,206,0.25));
}

.trusted-logo {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
}

.trusted-name-text {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0d0d1a;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .trusted-header {
        gap: 8px;
        padding: 20px 16px 14px;
    }
    .trusted-label {
        font-size: 18px;
    }
    .trusted-count {
        font-size: 22px;
    }
    .marquee-track {
        gap: 40px;
    }
    .trusted-logo {
        height: 40px;
        max-width: 130px;
    }
    .trusted-name-text {
        font-size: 16px;
    }
}

/* ==========================================
   AI & ROBOTICS SHOWCASE SECTION
   ========================================== */
.showcase-section {
    background: linear-gradient(180deg, #090b15 0%, #0d1127 50%, #060812 100%);
    color: #ffffff;
    padding: 70px 24px 90px;
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 188, 206, 0.12) 0%, rgba(0, 85, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 188, 206, 0.12);
    border: 1px solid rgba(0, 188, 206, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #00bcce;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.showcase-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.25;
    background: linear-gradient(135deg, #ffffff 30%, #a5c7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}

.showcase-subtitle {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Grid Layout */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 28px;
    align-items: start;
}

.showcase-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card General */
.showcase-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.35s ease;
}

.showcase-card:hover {
    border-color: rgba(0, 188, 206, 0.4);
    box-shadow: 0 10px 30px rgba(0, 188, 206, 0.12);
}

/* Left Code Card */
.code-card {
    background: #0d111a;
    border: 1px solid rgba(0, 188, 206, 0.25);
}

.card-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
    font-family: monospace;
    font-size: 12px;
    color: #94a3b8;
}

.status-tag {
    font-size: 10px;
    font-weight: 800;
    color: #00bcce;
    background: rgba(0, 188, 206, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.code-body {
    padding: 18px;
    font-family: 'Consolas', 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: auto;
}

.code-keyword { color: #ff79c6; font-weight: bold; }
.code-string { color: #f1fa8c; }
.code-comment { color: #6272a4; font-style: italic; }
.code-func { color: #50fa7b; }

/* Center Video Column */
.showcase-col-center {
    position: relative;
}

.center-video-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-frame-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #00bcce, #0055ff, #8a2be2);
    border-radius: 20px;
    opacity: 0.4;
    filter: blur(14px);
    z-index: 0;
}

.center-video-card {
    position: relative;
    z-index: 1;
    background: #070913;
    border: 1px solid rgba(0, 188, 206, 0.4);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.video-header-overlay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(7, 9, 19, 0.95);
    border-bottom: 1px solid rgba(0, 188, 206, 0.25);
}

.pulse-icon {
    color: #00bcce;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

.video-live-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    flex-grow: 1;
    margin-left: 8px;
}

.live-indicator {
    font-size: 10px;
    font-weight: 900;
    color: #ff4757;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 71, 87, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.blink-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4757;
    animation: blinkAnim 1s infinite alternate;
}

@keyframes blinkAnim {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.video-reel-container {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #000000;
}

.video-reel-track {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-reel-item {
    height: 380px;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-robotics-video {
    width: 100%;
    height: 295px;
    object-fit: cover;
    display: block;
    background: #000;
    position: relative;
    z-index: 2;
}

.main-robotics-video.img-as-video {
    object-fit: cover;
}

/* Futuristic Animated Video Player Fallback */
.animated-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 295px;
    background: radial-gradient(circle at center, #0d1a2d 0%, #050811 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cyber-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 188, 206, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 188, 206, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.radar-sweep {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(0, 188, 206, 0.2);
    background: conic-gradient(from 0deg, rgba(0, 188, 206, 0.3) 0deg, transparent 90deg);
    animation: rotateRadar 4s linear infinite;
}

@keyframes rotateRadar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyber-robot-icon {
    font-size: 68px;
    color: #00bcce;
    z-index: 3;
    text-shadow: 0 0 30px rgba(0, 188, 206, 0.8);
    animation: floatRobot 3s ease-in-out infinite alternate;
}

@keyframes floatRobot {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-10px) scale(1.08); }
}

.cyber-hud-overlay {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
}

.hud-tag {
    font-family: monospace;
    font-size: 10px;
    font-weight: 800;
    color: #00bcce;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-left: 2px solid #00bcce;
    border-radius: 0 4px 4px 0;
}

.hud-tag.blue {
    color: #38bdf8;
    border-color: #38bdf8;
}

.video-item-caption {
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    height: 85px;
}

.v-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.v-sub {
    font-size: 12px;
    color: #00bcce;
}

/* Up/Down Floating Controls */
.floating-up-down-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-top: 4px;
}

.float-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 188, 206, 0.15);
    border: 1px solid rgba(0, 188, 206, 0.4);
    color: #00bcce;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.float-btn:hover {
    background: #00bcce;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 188, 206, 0.4);
}

.float-indicator {
    font-size: 12px;
    font-weight: 700;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27c93f;
    box-shadow: 0 0 8px #27c93f;
}

/* Right Column Cards & Up/Down Animations */
.ai-info-card {
    padding: 22px;
}

.float-card-1 {
    animation: floatUpDown 6s ease-in-out infinite alternate;
}

.float-card-2 {
    animation: floatUpDown 7s ease-in-out infinite alternate-reverse;
}

@keyframes floatUpDown {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.ai-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #00bcce;
    background: rgba(0, 188, 206, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.badge-purple {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.12);
}

.ai-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.ai-card-text {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 14px;
}

.ai-card-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tag {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
}

.ai-card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 8px;
}

.card-item-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.card-item-sub { font-size: 12px; color: #00bcce; margin-bottom: 6px; }
.card-item-desc { font-size: 13px; color: #94a3b8; margin-bottom: 10px; }
.card-item-img { width: 100%; height: 130px; object-fit: cover; border-radius: 8px; }
.card-item-video { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }

/* Responsive Showcase */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SOLUTIONS & INNOVATIVE SERVICES SECTION
   (MATCHING USER SCREENSHOT STYLING)
   ========================================== */
.solutions-section {
    background: #f8fafc;
    padding: 80px 24px 90px;
    border-top: 1px solid var(--color-border);
}

.solutions-container {
    max-width: 1240px;
    margin: 0 auto;
}

.solutions-header {
    text-align: left;
    margin-bottom: 40px;
}

.solutions-tag {
    font-size: 13px;
    font-weight: 800;
    color: #e11d48;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.solutions-title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    max-width: 800px;
    margin-bottom: 12px;
}

.solutions-subtitle {
    font-size: 16px;
    color: #64748b;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.solution-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #00bcce;
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .zoom-overlay {
    opacity: 1;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.card-summary {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #004d40;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.learn-more-btn .btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.solution-card:hover .learn-more-btn {
    background: #00bcd4;
    transform: translateX(4px);
}

/* ==========================================
   POPUP LIGHTBOX MODAL WITH FADE & ZOOM ACTIONS
   ========================================== */
.media-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.media-modal-card {
    background: #0f172a;
    border: 1px solid rgba(0, 188, 206, 0.4);
    border-radius: 20px;
    max-width: 750px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.media-modal-overlay.active .media-modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close-btn:hover {
    background: #ff4757;
}

.modal-media-header {
    padding: 20px 24px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-badge {
    font-size: 11px;
    font-weight: 800;
    color: #00bcce;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 4px;
}

.modal-body-content {
    padding: 24px;
}

.modal-image-container {
    border-radius: 12px;
    overflow: hidden;
    max-height: 340px;
    margin-bottom: 18px;
    background: #000;
}

.modal-img-preview,
.modal-video-preview {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.modal-description {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-action-row {
    display: flex;
    justify-content: flex-end;
}

.modal-cta-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00bcce, #0055ff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 188, 206, 0.3);
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 206, 0.5);
}

/* ==========================================
   BLEND-INSPIRED FULL-WIDTH VIDEO SHOWREEL
   (POSITIONED DIRECTLY BELOW TRUSTED MARQUEE)
   ========================================== */
.blend-video-section {
    background: #090c15;
    padding: 60px 24px 70px;
    position: relative;
    overflow: hidden;
}

.blend-video-container {
    max-width: 1280px;
    margin: 0 auto;
}

.blend-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(0, 188, 206, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.video-backdrop-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 188, 206, 0.25) 0%, rgba(0, 85, 255, 0.1) 60%, transparent 80%);
    filter: blur(25px);
    pointer-events: none;
}

.blend-video-frame {
    position: relative;
    z-index: 2;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.video-showreel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 12, 21, 0.95) 0%, rgba(9, 12, 21, 0.4) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    pointer-events: none;
}

.video-showreel-overlay * {
    pointer-events: auto;
}

.showreel-badge-pill {
    font-size: 12px;
    font-weight: 800;
    color: #00bcce;
    background: rgba(0, 188, 206, 0.18);
    border: 1px solid rgba(0, 188, 206, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.showreel-overlay-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    max-width: 700px;
    margin-bottom: 8px;
}

.showreel-overlay-sub {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 650px;
    margin-bottom: 20px;
}

.showreel-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00bcce, #0055ff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 188, 206, 0.35);
    transition: all 0.3s ease;
}

.showreel-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 206, 0.5);
    color: #ffffff;
}

/* ==========================================
   BLEND-INSPIRED TWO-COLUMN PERFORMANCE SECTION
   ========================================== */
.blend-performance-section {
    background: #ffffff;
    padding: 90px 24px;
    border-top: 1px solid var(--color-border);
}

.performance-container {
    max-width: 1240px;
    margin: 0 auto;
}

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

.perf-tag {
    font-size: 12px;
    font-weight: 800;
    color: #00bcce;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.perf-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
}

.perf-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 28px;
}

.perf-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.perf-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.perf-feature-item .feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 188, 206, 0.12);
    color: #00bcce;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.perf-feature-item .feat-text h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.perf-feature-item .feat-text p {
    font-size: 14px;
    color: #64748b;
}

.perf-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.perf-action-btn:hover {
    background: #00bcce;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 206, 0.3);
}

.perf-col-right {
    position: relative;
}

.perf-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.perf-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.perf-stat-floating {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0, 188, 206, 0.3);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.stat-top {
    top: 24px;
    left: -20px;
}

.stat-bottom {
    bottom: 24px;
    right: -20px;
}

.stat-num {
    font-size: 26px;
    font-weight: 900;
    color: #00bcce;
}

.stat-lbl {
    font-size: 12px;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
    .stat-top, .stat-bottom {
        position: static;
        margin-top: 10px;
    }
}

/* ==========================================
   CASE STUDIES / PORTFOLIO REEL SECTION
   ========================================== */
.cases-section {
    background: #f8fafc;
    padding: 90px 24px;
}
.cases-container { max-width: 1280px; margin: 0 auto; }
.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}
.cases-tag {
    font-size: 12px;
    font-weight: 800;
    color: #00bcce;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.cases-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.2;
}
.cases-sub { font-size: 16px; color: #64748b; max-width: 500px; }
.cases-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #0f172a;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cases-view-all:hover { background: #0f172a; color: #fff; }

.cases-scroll-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15,23,42,0.07);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.14);
}
.case-img-wrap { position: relative; overflow: hidden; height: 200px; }
.case-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.case-card:hover .case-img { transform: scale(1.06); }
.case-category-pill {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(9,12,21,0.8);
    color: #00bcce;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(6px);
}
.case-card-body { padding: 20px; }
.case-card-title { font-size: 17px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.case-card-desc { font-size: 13px; color: #64748b; margin-bottom: 14px; line-height: 1.5; }
.case-result-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.case-metric {
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 5px 10px;
    border-radius: 8px;
}
.case-metric strong { color: #00bcce; font-weight: 900; }
.case-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: gap 0.2s ease;
}
.case-read-btn:hover { gap: 12px; color: #00bcce; }

@media (max-width: 1024px) { .cases-scroll-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cases-scroll-row { grid-template-columns: 1fr; } }

/* ==========================================
   SERVICES GRID SECTION
   ========================================== */
.services-section { background: #090c15; padding: 90px 24px; }
.services-container { max-width: 1280px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-tag {
    font-size: 12px; font-weight: 800; color: #00bcce;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px; font-weight: 900; color: #ffffff;
    margin-bottom: 12px; line-height: 1.2;
}
.services-sub { font-size: 16px; color: #94a3b8; max-width: 600px; margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
    background: rgba(0,188,206,0.07);
    border-color: rgba(0,188,206,0.3);
    transform: translateY(-4px);
}
.service-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(0,188,206,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #00bcce;
    margin-bottom: 18px;
}
.service-name { font-size: 18px; font-weight: 800; color: #f1f5f9; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: #94a3b8; line-height: 1.65; margin-bottom: 20px; }
.service-link {
    font-size: 13px; font-weight: 800; color: #00bcce;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================
   STATS / IMPACT NUMBERS SECTION
   ========================================== */
.stats-section {
    background: linear-gradient(135deg, #00bcce 0%, #0055ff 100%);
    padding: 80px 24px;
}
.stats-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.stats-header { margin-bottom: 52px; }
.stats-tag {
    font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.7);
    letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 12px;
}
.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px; font-weight: 900; color: #ffffff; line-height: 1.25;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-block { text-align: center; }
.stat-big-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}
.stat-suffix { font-size: 40px; font-weight: 900; color: rgba(255,255,255,0.8); }
.stat-name { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 600; }

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .stat-big-num { font-size: 48px; } }

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section { background: #ffffff; padding: 90px 24px; }
.testimonials-container { max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-tag {
    font-size: 12px; font-weight: 800; color: #00bcce;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px; font-weight: 900; color: #0f172a;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testi-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.1);
}
.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-quote {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcce, #0055ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900; color: #fff;
    flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 15px; color: #0f172a; font-weight: 800; }
.testi-info span { font-size: 13px; color: #64748b; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
    background: #ffffff;
    padding: 80px 24px;
}
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15,23,42,0.1);
}
.about-content {
    flex: 1;
    min-width: 280px;
}
.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
}
.about-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #00bcce;
    text-decoration: none;
    border: 2px solid #00bcce;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}
.about-cta-btn:hover {
    background: #00bcce;
    color: #fff;
}
@media (max-width: 900px) {
    .about-container { flex-direction: column; text-align: center; }
    .about-image img { max-width: 100%; }
}

/* CONTAINER CLASS */
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ABOUT US ROW/COLUMN LAYOUT */
.about-section {
    padding: 80px 20px;
    background-color: var(--color-bg-main);
}
.about-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 80px 0;
}
.col-image {
    flex: 0 0 auto;
    min-width: 260px;
}
.col-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15,23,42,0.1);
    display: block;
}
.col-text {
    flex: 1;
    min-width: 260px;
    text-align: justify;
}
.col-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
}
.col-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
}
.col-text a.about-cta-btn {
    margin-top: 12px;
    display: inline-block;
}

@media (max-width: 768px) {
    .about-row { flex-direction: column; text-align: center; }
    .col-image img { max-width: 100%; }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.services-header p {
    font-size: 15px;
    color: #00bcce;
    font-weight: 500;
    text-transform: capitalize;
}

/* Service Card */
.service-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 48px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(18, 16, 46, 0.07);
    border: 1px solid #e8eaf6;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 40px rgba(18, 16, 46, 0.12);
}

/* Reverse layout for even items */
.service-card--reverse {
    flex-direction: row-reverse;
}

/* Text column */
.service-card__text {
    flex: 1;
    min-width: 260px;
}

.service-card__text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 14px;
}

.service-card__text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid #1e3a8a;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.service-btn:hover {
    background: #1e3a8a;
    color: #ffffff;
}

/* ============================================================
   SERVICES SECTION — Modern 10-Card Grid
   ============================================================ */

/* ---------- Section Shell ---------- */
.services-section {
    padding: 100px 0 0;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 50%, #f8f0ff 100%);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.services-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.services-label-pill {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.services-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-highlight {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    font-size: 17px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Card Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* ---------- Individual Card ---------- */
.svc-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

/* ---------- Glow Orb ---------- */
.svc-glow-orb {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.svc-card:hover .svc-glow-orb { opacity: 0.22; }

/* ---------- Card Top (Icon / Image Area) ---------- */
.svc-card-top {
    position: relative;
    padding: 32px 28px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Icon Wrap */
.svc-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

/* Image Wrap (when image uploaded) */
.svc-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.svc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.svc-card:hover .svc-card-img {
    transform: scale(1.05);
}

/* Badge */
.svc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    z-index: 3;
    white-space: nowrap;
}

/* ---------- Card Body ---------- */
.svc-card-body {
    padding: 0 28px 20px;
    flex: 1;
}

.svc-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.svc-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Tag Pills */
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.svc-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.18);
    transition: background 0.2s ease, color 0.2s ease;
}

.svc-card:hover .svc-tag {
    background: rgba(99, 102, 241, 0.15);
}

/* ---------- Card Footer ---------- */
.svc-card-footer {
    padding: 18px 28px 28px;
    margin-top: auto;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f1f5f9;
    color: #0f172a;
}

.svc-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.svc-btn:hover i {
    transform: translateX(4px);
}

/* ---------- 10 Color Themes ---------- */

/* 1 — AI & Machine Learning: Deep Indigo/Purple */
.svc-color-1 .svc-icon-wrap {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}
.svc-color-1 .svc-glow-orb { background: #6366f1; }
.svc-color-1 .svc-badge { color: #6366f1; }
.svc-color-1 .svc-btn:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* 2 — Programming Courses: Emerald/Teal */
.svc-color-2 .svc-icon-wrap {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}
.svc-color-2 .svc-glow-orb { background: #10b981; }
.svc-color-2 .svc-badge { color: #059669; }
.svc-color-2 .svc-tag { background: rgba(16, 185, 129, 0.08); color: #059669; border-color: rgba(16,185,129,0.18); }
.svc-color-2 .svc-card:hover .svc-tag { background: rgba(16, 185, 129, 0.15); }
.svc-color-2 .svc-btn:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* 3 — Full Stack: Sky Blue/Cyan */
.svc-color-3 .svc-icon-wrap {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}
.svc-color-3 .svc-glow-orb { background: #0ea5e9; }
.svc-color-3 .svc-badge { color: #0284c7; }
.svc-color-3 .svc-tag { background: rgba(14, 165, 233, 0.08); color: #0284c7; border-color: rgba(14,165,233,0.18); }
.svc-color-3 .svc-btn:hover {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* 4 — Final Year Projects: Amber/Orange */
.svc-color-4 .svc-icon-wrap {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.svc-color-4 .svc-glow-orb { background: #f59e0b; }
.svc-color-4 .svc-badge { color: #d97706; }
.svc-color-4 .svc-tag { background: rgba(245, 158, 11, 0.08); color: #d97706; border-color: rgba(245,158,11,0.18); }
.svc-color-4 .svc-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* 5 — Internship: Pink/Rose */
.svc-color-5 .svc-icon-wrap {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}
.svc-color-5 .svc-glow-orb { background: #ec4899; }
.svc-color-5 .svc-badge { color: #db2777; }
.svc-color-5 .svc-tag { background: rgba(236, 72, 153, 0.08); color: #db2777; border-color: rgba(236,72,153,0.18); }
.svc-color-5 .svc-btn:hover {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* 6 — Client Projects: Slate/Dark Blue */
.svc-color-6 .svc-icon-wrap {
    background: linear-gradient(135deg, #334155, #1e293b);
    box-shadow: 0 8px 24px rgba(51, 65, 85, 0.4);
}
.svc-color-6 .svc-glow-orb { background: #334155; }
.svc-color-6 .svc-badge { color: #334155; }
.svc-color-6 .svc-tag { background: rgba(51, 65, 85, 0.08); color: #334155; border-color: rgba(51,65,85,0.18); }
.svc-color-6 .svc-btn:hover {
    background: linear-gradient(135deg, #334155, #1e293b);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(51, 65, 85, 0.4);
}

/* 7 — Data Science: Violet/Purple */
.svc-color-7 .svc-icon-wrap {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}
.svc-color-7 .svc-glow-orb { background: #7c3aed; }
.svc-color-7 .svc-badge { color: #6d28d9; }
.svc-color-7 .svc-tag { background: rgba(124, 58, 237, 0.08); color: #6d28d9; border-color: rgba(124,58,237,0.18); }
.svc-color-7 .svc-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* 8 — Generative AI: Deep Pink to Violet */
.svc-color-8 .svc-icon-wrap {
    background: linear-gradient(135deg, #f43f5e, #a855f7);
    box-shadow: 0 8px 24px rgba(244, 63, 94, 0.4);
}
.svc-color-8 .svc-glow-orb { background: #f43f5e; }
.svc-color-8 .svc-badge { color: #e11d48; }
.svc-color-8 .svc-tag { background: rgba(244, 63, 94, 0.08); color: #e11d48; border-color: rgba(244,63,94,0.18); }
.svc-color-8 .svc-btn:hover {
    background: linear-gradient(135deg, #f43f5e, #a855f7);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
}

/* 9 — Mobile: Indigo/Blue */
.svc-color-9 .svc-icon-wrap {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
.svc-color-9 .svc-glow-orb { background: #3b82f6; }
.svc-color-9 .svc-badge { color: #2563eb; }
.svc-color-9 .svc-tag { background: rgba(59, 130, 246, 0.08); color: #2563eb; border-color: rgba(59,130,246,0.18); }
.svc-color-9 .svc-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* 10 — Cloud: Teal/Cyan */
.svc-color-10 .svc-icon-wrap {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}
.svc-color-10 .svc-glow-orb { background: #14b8a6; }
.svc-color-10 .svc-badge { color: #0d9488; }
.svc-color-10 .svc-tag { background: rgba(20, 184, 166, 0.08); color: #0d9488; border-color: rgba(20,184,166,0.18); }
.svc-color-10 .svc-btn:hover {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* ---------- Empty State ---------- */
.services-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}

.services-empty i { font-size: 40px; margin-bottom: 16px; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .services-section { padding: 70px 0 80px; }
    .services-header h2 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .svc-card-top { padding: 24px 22px 18px; }
    .svc-card-body { padding: 0 22px 16px; }
    .svc-card-footer { padding: 14px 22px 22px; }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
    background-color: #17113e;
    color: #ffffff;
    padding: 80px 5% 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1150px;
    margin: 0 auto;
}

/* Left Column */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-brand {
    text-decoration: none;
    margin-bottom: 40px;
    display: inline-block;
}

.footer-brand .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-brand .logo-dot {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #00bcce;
}

.footer-brand .logo-image {
    height: 64px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-brand:hover .logo-image {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-links-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

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

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

.footer-col ul li a {
    color: #b0b5cf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b5cf;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info li i {
    margin-top: 4px;
    font-size: 16px;
    color: #b0b5cf;
}

.contact-info li a {
    color: #b0b5cf;
    text-decoration: none;
}

.contact-info li a:hover {
    color: #ffffff;
}

.mt-4 { margin-top: 32px; }
.mt-3 { margin-top: 16px; }

/* Socials & Badges */
.footer-bottom-left {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #00bcce;
    transform: translateY(-3px);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-badge {
    height: 36px;
    background: #ffffff;
    border-radius: 4px;
    padding: 4px;
}

.cert-icon {
    font-size: 24px;
    color: #b0b5cf;
}

.rating-badge {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-badge span {
    font-size: 12px;
    font-weight: 600;
}

.rating-badge .stars {
    color: #f59e0b;
    font-size: 12px;
    display: flex;
    gap: 4px;
}

/* Right Column: Contact Form */
.footer-right {
    width: 100%;
    max-width: 500px;
    flex-shrink: 0;
}

.contact-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    color: #0f172a;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .input-group {
    flex: 1;
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
}

.contact-form label span {
    color: #ef4444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #e2e8f0;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.privacy-note {
    font-size: 11px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.privacy-note a {
    color: #3b82f6;
    text-decoration: underline;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Copyright */
.footer-copyright {
    max-width: 1150px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 60px;
    }
    .footer-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        flex-direction: column;
        gap: 40px;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-copyright {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Responsive Logo Image Adjustments */
@media (max-width: 768px) {
    .navbar-logo .logo-image {
        height: 42px;
        width: auto;
        max-width: 160px;
    }
    .footer-brand .logo-image {
        height: 52px;
        width: auto;
        max-width: 200px;
    }
}

/* ==========================================
   AUTH MODAL (LOGIN & REGISTRATION)
   ========================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 16, 46, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(18, 16, 46, 0.25), 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.modal-backdrop.show .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
    gap: 4px;
}

.tab-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.tab-btn.active {
    background: #ffffff;
    color: var(--color-text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-btn:hover:not(.active) {
    color: var(--color-text-primary);
}

/* Modal Alerts */
.modal-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInAlert 0.3s ease;
}

.modal-alert.hidden {
    display: none !important;
}

.modal-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.modal-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

@keyframes fadeInAlert {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Auth Forms */
.auth-form {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.auth-form.active {
    display: flex !important;
}

.form-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.form-title p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--color-accent);
    font-size: 13px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--color-text-primary);
    background: #f8fafc;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 188, 206, 0.15);
}

.form-actions {
    margin-top: 6px;
}

.btn-submit-auth {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0, 188, 206, 0.35);
    transition: all var(--transition-fast);
}

.btn-submit-auth:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 188, 206, 0.45);
    filter: brightness(1.05);
}

.btn-submit-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modal-footer-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.link-switch-auth {
    background: none;
    border: none;
    color: var(--color-accent);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
    padding: 0;
}

.link-switch-auth:hover {
    color: var(--color-accent-hover);
}



