/* ==========================================================================
   SKYLINE GROUP OF INSTITUTIONS - Main Design System Stylesheet
   ========================================================================== */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for design system */
:root {
    /* Brand Palette */
    --primary: #4F46E5; /* Sophisticated Indigo */
    --primary-rgb: 79, 70, 229;
    --secondary: #0F172A; /* Slate Charcoal/Black */
    --secondary-rgb: 15, 23, 42;
    --accent: #F59E0B; /* Gold/Amber */
    /* Warm gold for ratings, active states */

    /* Neutrals */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;

    /* Semantic Colors */
    --success: #10B981;
    --danger: #EF4444;

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(31, 61, 143, 0.08), 0 4px 6px -4px rgba(31, 61, 143, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(31, 61, 143, 0.12), 0 8px 10px -6px rgba(31, 61, 143, 0.12);

    /* Layout Constants */
    --max-width: 95%;
    --border-radius: 12px;
}

/* ==========================================================================
   1. RESET & BASE ELEMENTS
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

.menu-icon {
    display: none;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 85%; /* Centered page content at 85% width */
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-white);
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(77, 105, 200, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(77, 105, 200, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 61, 143, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
/* Announcement Bar */
.announcement-bar {
    background-color: var(--secondary); /* SGI brand deep navy/blackish slate */
    color: #ffffff;
    padding: 8px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    z-index: 1001;
    position: relative;
}

.badge-gold {
    background-color: var(--accent); /* Gold accent */
    color: var(--secondary);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.announcement-text {
    opacity: 0.95;
}

.announcement-link {
    color: var(--accent) !important;
    margin-left: 6px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.announcement-link:hover {
    color: var(--bg-white) !important;
}

.announcement-link:hover .animate-arrow {
    transform: translateX(4px);
}

.animate-arrow {
    transition: transform 0.2s ease-in-out;
}

/* Floating Glassmorphic Header Wrapper */
.header-main-floating {
    position: sticky;
    top: 0; /* Flat at the top initially */
    z-index: 1000;
    padding: 0;
    transition: var(--transition-normal);
}

/* Rounded Card Capsule */
.nav-card-floating {
    width: 100%;
    max-width: 100%; /* Flat full-width initially */
    margin: 0 auto;
    background: var(--bg-white);
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0; /* No rounded corners initially */
    padding: 10px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    transition: var(--transition-normal);
}

/* Sticky scrolled state transition details */
.header-main-floating.sticky {
    position: sticky;
    top: 15px; /* Floats on scroll */
    padding: 0 2.5%; /* Spans 95% of viewport width */
}

.header-main-floating.sticky .nav-card-floating {
    background: rgba(255, 255, 255, 0.92); /* Translucent glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px; /* Rounded corners in sticky state only! */
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.02);
    padding: 6px 28px; /* Compact padding */
}

/* Logo placement (Left) */
.logo-link-floating {
    display: flex;
    align-items: center;
}

.logo-img-floating {
    height: 95px; /* Large high-contrast logo */
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.header-main-floating.sticky .logo-img-floating {
    height: 95px; /* No shrink! Keep same size on scroll */
}

/* Center menu links */
.nav-menu-floating {
    display: flex;
    align-items: center;
    gap: 8px; /* Clean spacing between links */
}

.nav-link-floating {
    font-weight: 600;
    color: var(--secondary);
    padding: 10px 20px;
    font-size: 0.92rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

/* Pill background highlight on hover and active state */
.nav-link-floating:hover,
.nav-link-floating.active {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.08); /* Soft primary capsule background */
}

/* Actions Area (Right) */
.right-actions-floating {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Support Desk pill button (Desktop only) */
.contact-pill-desk {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #F8FAFC;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.contact-pill-desk:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.02);
}

.contact-pill-desk .icon-gold {
    color: var(--accent);
}

/* Auth Buttons (Desktop only) */
.auth-buttons-desk {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-login {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 50px;
}

.link-login:hover {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.04);
}

/* Gradient register capsule button */
.btn-register-capsule {
    background: linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transition: var(--transition-fast);
}

.btn-register-capsule:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

/* Profile Dropdown in Floating context */
.user-dropdown-floating {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.12);
    padding: 6px 16px 6px 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.user-dropdown-btn:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.25);
    transform: translateY(-1px);
}

.avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.user-name-txt {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
}

.dropdown-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-dropdown-floating.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    padding: 18px 0 8px 0;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-dropdown-floating.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header-info {
    padding: 0 20px 14px 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.user-full-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.2;
}

.user-email-addr {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-role-badge.role-admin {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.user-role-badge.role-student {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

/* Redesigned Logged-In Header CTA */
.btn-header-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-right: 10px;
}
.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}
.btn-header-cta i {
    font-size: 0.9rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.dropdown-item i {
    font-size: 1rem;
    width: 18px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(79, 70, 229, 0.05);
    color: var(--primary);
}

.dropdown-item:hover i {
    color: var(--primary);
}

.dropdown-item.logout-item {
    color: #EF4444;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 14px;
}

.dropdown-item.logout-item i {
    color: #EF4444;
}

.dropdown-item.logout-item:hover {
    background-color: rgba(239, 68, 68, 0.05);
    color: #EF4444;
}

/* Toggle Menu buttons */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

.menu-close {
    display: none;
}

.drawer-header {
    display: none;
}

.drawer-footer {
    display: none;
}

.mobile-only-link {
    display: none;
}

.nav-cta-mobile {
    display: none;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 61, 143, 0.95) 0%, rgba(77, 105, 200, 0.85) 100%),
        url('../images/campus-hero.png') no-repeat center center;
    background-size: cover;
    color: var(--bg-white);
    padding: 140px 0 120px 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    color: #F8FAFC;
    background: linear-gradient(90deg, #FFFFFF 0%, #A5B4FC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(248, 250, 252, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   5. STATISTICS SECTION
   ========================================================================== */
.stats-bar {
    margin-top: 0;
    position: relative;
    z-index: 5;
    padding: 40px 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(31, 61, 143, 0.08);
    border: 1px solid rgba(77, 105, 200, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 4px solid transparent;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(31, 61, 143, 0.15);
    border-bottom-color: var(--accent);
    background: var(--bg-white);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ==========================================================================
   6. ABOUT US PREVIEW
   ========================================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-graphics {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--bg-white);
    transform: rotate(-2deg);
    transition: var(--transition-normal);
}

.about-graphics:hover .about-image {
    transform: rotate(0);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 24px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
    transform: rotate(3deg);
}

.about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge-txt {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-points {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-point i {
    color: var(--success);
    font-size: 1.25rem;
}

/* ==========================================================================
   7. COURSES SECTION (CARDS & FILTER)
   ========================================================================== */
.courses-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(77, 105, 200, 0.25);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(77, 105, 200, 0.3);
}

.course-card-banner {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin: -30px -30px 20px -30px;
    border-bottom: 1px solid var(--border-color);
}

.course-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.course-card:hover .course-banner-img {
    transform: scale(1.06);
}

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

.course-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(77, 105, 200, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.course-card:hover .course-icon-badge {
    background-color: var(--primary);
    color: var(--bg-white);
}

.course-level-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background-color: rgba(77, 105, 200, 0.08);
    color: var(--primary);
    border-radius: 50px;
}

.course-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.course-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-modules-wrap {
    margin-bottom: 24px;
    flex-grow: 1;
}

.course-modules-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.course-modules-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-module-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 12px;
    background-color: #F8FAFC;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.course-card:hover .course-module-pill {
    background-color: rgba(77, 105, 200, 0.03);
    border-color: rgba(77, 105, 200, 0.15);
    color: var(--secondary);
}

.course-card-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.course-card-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 700;
}

/* ==========================================================================
   8. WHY CHOOSE US
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--bg-white);
    padding: 35px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(77, 105, 200, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(77, 105, 200, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon {
    background-color: var(--primary);
    color: var(--bg-white);
}

.why-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   9. PLACEMENT & PARTNERS
   ========================================================================== */
.placements-wrap {
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.partner-logo svg {
    max-height: 40px;
    width: auto;
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition-fast);
}

.partner-logo:hover svg {
    filter: grayscale(0) opacity(1);
}

/* ==========================================================================
   10. TESTIMONIALS (CAROUSEL / GRID)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 25px;
    position: relative;
    flex-grow: 1;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(77, 105, 200, 0.15);
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    display: block;
}

.user-stars {
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 3px;
}

/* ==========================================================================
   11. ADMISSIONS PAGE & LEAD FORM
   ========================================================================== */
.admission-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.admission-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admission-step {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(77, 105, 200, 0.3);
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Lead Application Form */
.form-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(77, 105, 200, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* FAQ Accordion */
.faq-list {
    margin-top: 50px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(77, 105, 200, 0.02);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 200px;
}

.faq-icon {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   12. GALLERY SECTION & LIGHTBOX
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 61, 143, 0.9), transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 5px;
}

.gallery-title {
    color: var(--bg-white);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Lightbox UI */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    border: 4px solid var(--bg-white);
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: calc(var(--border-radius) - 4px);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: -10px;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1rem;
}

/* ==========================================================================
   13. BLOG GRID
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(77, 105, 200, 0.2);
}

.blog-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.blog-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-readmore {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-readmore:hover {
    color: var(--secondary);
}

/* Dynamic Article Reader Popup */
.article-popup {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.article-popup.active {
    display: flex;
}

.article-popup-box {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.article-popup-header {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.article-popup-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-popup-body {
    padding: 40px;
}

.article-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.article-popup-close:hover {
    background-color: var(--danger);
    color: var(--bg-white);
}

.article-popup-body h2 {
    font-size: 1.85rem;
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.article-popup-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 25px;
}

.article-popup-content {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
}

.article-popup-content p {
    margin-bottom: 20px;
}

/* ==========================================================================
   14. CONTACT US & DYNAMIC MAPS
   ========================================================================== */
.contact-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(77, 105, 200, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(77, 105, 200, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-card-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.map-container {
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   15. COURSE DETAILS PAGE LAYOUT
   ========================================================================== */
.details-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.course-syllabus-list {
    margin-top: 30px;
}

.syllabus-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.syllabus-item i {
    color: var(--primary);
}

.course-details-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-box {
    background-color: rgba(77, 105, 200, 0.05);
    border: 1px solid rgba(77, 105, 200, 0.1);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
}

.highlight-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.highlight-box h5 {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.highlight-box p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.careers-tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.career-tag {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* ==========================================================================
   16. GLOBAL FOOTER
   ========================================================================== */
.sgi-footer {
    background: radial-gradient(circle at top, #0f2142 0%, #030712 100%);
    color: #94a3b8;
    position: relative;
    border-top: 4px solid #FFB800;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}
.sgi-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.sgi-footer-top {
    padding: 85px 0 50px;
    position: relative;
    z-index: 1;
}
.sgi-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
    gap: 45px;
}
.sgi-footer-col {
    display: flex;
    flex-direction: column;
}
.sgi-footer-logo {
    display: inline-block;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}
.sgi-footer-logo:hover {
    transform: scale(1.02);
}
.sgi-footer-logo img {
    height: 55px;
    width: auto;
}
.sgi-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 28px;
}
.sgi-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sgi-footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.sgi-footer-social-link:hover {
    transform: translateY(-4px) rotate(8deg);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.sgi-social-facebook:hover { background: #1877F2; }
.sgi-social-twitter:hover { background: #1DA1F2; }
.sgi-social-linkedin:hover { background: #0077B5; }
.sgi-social-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.sgi-social-youtube:hover { background: #FF0000; }

.sgi-footer-title {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sgi-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #FFB800, #ff8c00);
    border-radius: 2px;
}
.sgi-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sgi-footer-links li {
    margin-bottom: 14px;
}
.sgi-footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.sgi-footer-links li a i {
    font-size: 10px;
    color: #FFB800;
    opacity: 0.5;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.sgi-footer-links li a:hover {
    color: white;
    padding-left: 6px;
}
.sgi-footer-links li a:hover i {
    transform: translateX(4px);
    opacity: 1;
}
.sgi-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.sgi-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 184, 0, 0.1);
    color: #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 184, 0, 0.15);
}
.sgi-contact-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}
.sgi-contact-text a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease;
}
.sgi-contact-text a:hover {
    color: white;
}
.sgi-footer-verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFB800, #ff8c00);
    color: #001A33 !important;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
    border: none;
    cursor: pointer;
}
.sgi-footer-verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.4);
    filter: brightness(1.08);
}
.sgi-footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}
.sgi-footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.sgi-footer-bottom p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}
.sgi-footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13.5px;
    color: #475569;
}
.sgi-footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}
.sgi-footer-bottom-links a:hover {
    color: white;
}
.sgi-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sgi-whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}
.sgi-wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   17. EXTRA DECORATIVE COMPONENTS & MOBILE FLOATS
   ========================================================================== */

/* Animation triggers */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   18. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .about-split,
    .admission-split,
    .contact-split,
    .details-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        transform: rotate(0);
        max-width: 80%;
        margin: 0 auto;
    }

    .about-experience-badge {
        right: 10%;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sgi-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .logo-img {
        height: 60px;
    }

    .header-main-floating {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        z-index: 1000;
    }

    .header-main-floating.sticky {
        top: 0;
    }

    .nav-card-floating {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
        background-color: var(--bg-white);
        padding: 8px 16px;
        box-shadow: var(--shadow-sm);
    }

    .header-main-floating.sticky .nav-card-floating {
        padding: 8px 16px;
    }

    .logo-img-floating {
        height: 48px;
    }

    .header-main-floating.sticky .logo-img-floating {
        height: 48px;
    }

    .contact-pill-desk {
        display: none; /* Hide desktop support badge on mobile screen */
    }

    .auth-buttons-desk {
        display: none; /* Hide desktop auth buttons on mobile screen */
    }

    .user-dropdown-floating {
        display: none; /* User options inside drawer menu */
    }

    /* Mobile Drawer Auth Buttons styling */
    .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 24px;
        padding: 0 16px;
    }

    .btn-login-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--secondary);
        background-color: var(--bg-light);
        border: 1.5px solid var(--border-color);
        transition: var(--transition-fast);
    }

    .btn-login-mobile:hover {
        background-color: var(--border-color);
    }

    .btn-register-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
        transition: var(--transition-fast);
    }

    .btn-register-mobile:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(15, 23, 42, 0.05); /* Light toggle background */
        color: var(--secondary); /* Dark menu icon */
        font-size: 1.25rem;
        cursor: pointer;
        transition: var(--transition-normal);
        margin-right: 0;
        border: none;
    }

    .menu-toggle:hover {
        background-color: rgba(77, 105, 200, 0.12);
        color: var(--primary);
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background-color: #ffffff;
        border-left: 1px solid var(--border-color);
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
        z-index: 1100;
        padding: 24px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        margin-bottom: 24px;
    }

    .drawer-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(15, 23, 42, 0.05);
        color: var(--secondary);
        font-size: 1.1rem;
        border: none;
        cursor: pointer;
        transition: var(--transition-normal);
    }

    .menu-close:hover {
        background-color: rgba(239, 68, 68, 0.1);
        color: var(--danger);
        transform: rotate(90deg);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        margin-top: 0;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-menu-wrapper.active .nav-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu-wrapper.active .nav-menu li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(2) { transition-delay: 0.10s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(4) { transition-delay: 0.20s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(6) { transition-delay: 0.30s; }
    .nav-menu-wrapper.active .nav-menu li:nth-child(7) { transition-delay: 0.35s; }

    .nav-menu .nav-link {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--secondary);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        border-radius: 8px;
        background-color: transparent;
        transition: var(--transition-fast);
    }

    .nav-menu .nav-link::after {
        display: none !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background-color: rgba(77, 105, 200, 0.06);
        color: var(--primary);
        padding-left: 20px;
    }

    .mobile-chevron {
        display: inline-block;
        font-size: 0.8rem;
        opacity: 0.4;
        transition: var(--transition-fast);
    }

    .nav-menu .nav-link:hover .mobile-chevron,
    .nav-menu .nav-link.active .mobile-chevron {
        opacity: 0.9;
        transform: translateX(4px);
    }

    .nav-menu .menu-icon {
        display: inline-block;
        width: 24px;
        margin-right: 8px;
        font-size: 1rem;
        text-align: center;
        opacity: 0.7;
        transition: var(--transition-fast);
    }

    .nav-menu .nav-link:hover .menu-icon,
    .nav-menu .nav-link.active .menu-icon {
        opacity: 1;
        color: var(--primary);
    }

    .nav-cta {
        display: none;
    }

    .mobile-only-link {
        display: block;
    }

    .nav-menu .nav-cta {
        display: block;
        margin-top: 15px;
        width: 100%;
    }

    .nav-menu .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .drawer-footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: auto;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        padding-top: 24px;
        width: 100%;
    }

    .drawer-contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .drawer-contact-title,
    .drawer-socials-title {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 2px;
    }

    .drawer-contact-link {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition-fast);
    }

    .drawer-contact-link i {
        color: var(--primary);
        font-size: 1rem;
        width: 16px;
        text-align: center;
    }

    .drawer-contact-link:hover {
        color: var(--primary);
    }

    .drawer-socials-section {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .drawer-socials {
        display: flex;
        gap: 10px;
    }

    .drawer-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(77, 105, 200, 0.06);
        color: var(--secondary);
        font-size: 1rem;
        transition: var(--transition-normal);
    }

    .drawer-socials a:hover {
        background-color: var(--primary);
        color: var(--bg-white);
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .top-bar {
        display: none;
    }

    .nav-card-floating {
        padding: 8px 12px;
    }

    .logo-img-floating {
        height: 42px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-bar {
        margin-top: 0;
        padding: 24px 0 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 16px 10px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(31, 61, 143, 0.05);
        border: 1px solid rgba(77, 105, 200, 0.06);
        text-align: center;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .stat-item:hover {
        transform: translateY(-3px);
        border-bottom-color: var(--accent);
    }

    .stat-number {
        font-size: 1.85rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-top: 2px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .course-details-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .sgi-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .sgi-footer-logo {
        text-align: center;
        width: 100%;
    }
    .sgi-footer-logo img {
        margin: 0 auto;
    }
    .sgi-footer-socials {
        justify-content: center;
    }
    .sgi-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .sgi-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .sgi-footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .form-box {
        padding: 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   10. Student Portal STYLES (DASHBOARD, AUTH, COURSE PLAYER & ADMIN)
   ========================================================================== */
.auth-card {
    transition: var(--transition-normal);
}

.auth-card:hover {
    box-shadow: 0 30px 60px -15px rgba(31, 61, 143, 0.15);
}

/* LMS Course Player responsive layout */
@media (max-width: 991px) {
    .player-container {
        flex-direction: column !important;
        min-height: auto !important;
    }
    
    .player-sidebar {
        width: 100% !important;
        max-height: 350px !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .player-main {
        max-height: none !important;
        padding: 20px !important;
    }
}

/* Admin Dashboard Table custom rules */
@media (max-width: 768px) {
    .player-container {
        flex-direction: column !important;
    }
}

/* ==========================================================================
   11. LMS HEADER CUSTOM STYLING (RESPONSIVE DROPDOWN & MENU REDUCING)
   ========================================================================== */
.mobile-only-link {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-only-link {
        display: block !important;
    }
}

/* User Profile Dropdown Menu */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary);
    transition: var(--transition-fast);
}

.user-dropdown-btn:hover {
    background-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.avatar-circle {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.user-name-txt {
    font-size: 0.85rem;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

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

.user-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 280px;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header-info {
    padding-bottom: 12px;
}

.user-full-name {
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.user-email-addr {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.role-admin {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--accent);
}

.role-student {
    background-color: rgba(77, 105, 200, 0.15);
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.logout-item {
    color: var(--danger) !important;
}

.logout-item:hover {
    background-color: rgba(239, 68, 68, 0.08);
}

/* ==========================================================================
   HERO SLIDER CUSTOMIZATION (Dynamic Backend Connected Slider)
   ========================================================================= */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* bottom gradient removed - banner shows full */

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(77, 105, 200, 0.4);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .prev-arrow { left: 15px; }
    .next-arrow { right: 15px; }
    .slider-dots {
        bottom: 15px;
    }
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* ==========================================================================
   CHECKOUT PAGE RESPONSIVE REDESIGN
   ========================================================================== */
.checkout-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.checkout-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.checkout-title {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-alert-free {
    padding: 18px 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    color: #065f46;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkout-alert-free i {
    color: #059669;
    font-size: 1.2rem;
    margin-top: 2px;
}

.checkout-summary-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.checkout-summary-title {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.payment-method-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 15px;
}

.payment-method-label:hover {
    border-color: var(--primary);
    background-color: rgba(79, 70, 229, 0.02);
}

.payment-method-label input[type="radio"]:checked + div {
    color: var(--primary);
}

/* Responsive Stacking for Tablet/Mobile */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .checkout-summary-card {
        position: static;
    }
}

/* Classroom Hub / Student Desk Styles */
.classroom-desk-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .classroom-desk-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

/* Homepage Courses Carousel Styles */
.courses-carousel-container {
    position: relative;
    padding: 0 50px;
    margin: 0 auto;
}

.courses-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.courses-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.courses-carousel-track .course-card {
    flex: 0 0 calc((100% - 60px) / 3);
    box-sizing: border-box;
}

@media (max-width: 1100px) {
    .courses-carousel-track .course-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .courses-carousel-container {
        padding: 0;
    }
    .courses-carousel-track .course-card {
        flex: 0 0 100%;
    }
    .courses-carousel-container .carousel-arrow {
        display: none !important;
    }
}

.courses-carousel-container .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.courses-carousel-container .carousel-arrow:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.courses-carousel-container .prev-course-arrow {
    left: -10px;
}

.courses-carousel-container .next-course-arrow {
    right: -10px;
}

.courses-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.courses-carousel-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.courses-carousel-dots .carousel-dot:hover {
    background-color: var(--primary);
    opacity: 0.7;
}

.courses-carousel-dots .carousel-dot.active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--primary);
}

/* ── Premium Light Theme Hero (Global for Sub-pages) ── */
.sgi-light-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    padding: 75px 0 95px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
.sgi-light-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: rgba(79, 70, 229, 0.03);
    border-radius: 50%;
    pointer-events: none;
}
.sgi-light-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 260px; height: 260px;
    background: rgba(255, 184, 0, 0.04);
    border-radius: 50%;
    pointer-events: none;
}
.sgi-light-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: #4F46E5;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.sgi-light-hero h1 {
    font-size: clamp(30px, 5vw, 44px) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 14px !important;
    line-height: 1.2 !important;
}
.sgi-light-hero h1 span {
    color: #4F46E5 !important;
}
.sgi-light-hero p {
    color: #475569 !important;
    font-size: 15px !important;
    max-width: 580px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}
.sgi-light-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #64748b;
    position: relative;
    z-index: 2;
}
.sgi-light-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.sgi-light-breadcrumb a:hover { color: #4F46E5; }
.sgi-light-breadcrumb .sep { font-size: 10px; color: #cbd5e1; }