/* ==========================================================================
   DEVGHARKAR ACADEMY - MODERN UI DESIGN SYSTEM & DASHBOARD STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #d5211d;
    --primary-light: #e83a36;
    --primary-dark: #b21b18;
    --accent: #1e3a8a;
    --accent-light: #3b82f6;
    --accent-violet: #e11d48;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #d5211d 0%, #1e3a8a 100%);
    --grad-accent: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --grad-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    
    /* Layout & Shadow */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 25px -5px rgba(213, 33, 29, 0.1), 0 8px 16px -6px rgba(213, 33, 29, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(213, 33, 29, 0.2), 0 15px 25px -10px rgba(213, 33, 29, 0.1);
    --shadow-glow: 0 0 25px rgba(6, 182, 212, 0.3);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Font & Readability Overrides */
body, input, textarea, button, select {
    font-family: 'Inter', sans-serif !important;
}

body {
    color: var(--neutral-800) !important;
    line-height: 1.75;
}

p {
    font-size: 15.5px !important;
    line-height: 1.8 !important;
    color: #475569 !important; /* Extremely readable slate gray */
    margin-bottom: 1.25rem;
}

/* Prevent paragraph color conflicts in dark/primary backgrounds */
.bg-dark p, .bg-primary p, [class*="overlay-"] p, .dga-footer p, .dga-footer-cta p, .text-white p, .text-white-50 p {
    color: rgba(255, 255, 255, 0.85) !important;
}

h1, h2, h3, h4, h5, h6, .title, .logo-header, .site-header .nav > li > a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: var(--neutral-900) !important;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: #ffffff !important;
}

/* Base Styles & Typography */
h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
h3 { font-size: 1.75rem; font-weight: 600; line-height: 1.4; }

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-cyan {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   REDESIGNED HEADER STYLES - WITH THEME OVERRIDES
   ========================================================================== */

/* --- Hide the old header completely --- */
header.site-header.header {
    display: none !important;
}

/* --- Hide old sticky social bar --- */
.sticky-social {
    display: none !important;
}

/* --- DGA Header Container --- */
.dga-header {
    position: relative;
    width: 100%;
    z-index: 999;
}

/* --- Top Info Bar --- */
.dga-topbar {
    background: var(--neutral-900) !important;
    padding: 8px 0 !important;
    font-size: 13px !important;
    position: relative !important;
    z-index: 1001 !important;
    display: block !important;
    width: 100% !important;
}

.dga-topbar .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.dga-topbar-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.dga-topbar-left {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
}

.dga-topbar-item {
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    text-decoration: none !important;
    font-size: 13px !important;
    white-space: nowrap;
}

.dga-topbar-item:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dga-topbar-item i {
    color: #ffffff !important;
    font-size: 13px;
}

.dga-topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.dga-topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dga-social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    font-size: 14px !important;
    text-decoration: none !important;
}

.dga-social-icon:hover {
    background: #ffffff !important;
    color: var(--primary) !important;
    transform: translateY(-2px) !important;
}

.dga-social-icon.whatsapp:hover {
    background: #25d366 !important;
}

/* --- Main Navbar --- */
.dga-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    display: block !important;
    width: 100% !important;
}

.dga-navbar.dga-scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.dga-navbar .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.dga-navbar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 0 !important;
    gap: 20px !important;
}

/* Logo */
.dga-logo {
    text-decoration: none !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.dga-logo-img {
    height: 56px !important;
    width: auto !important;
    transition: var(--transition) !important;
    max-width: 200px !important;
}

.dga-scrolled .dga-logo-img {
    height: 48px !important;
}

/* ===== Desktop Nav Links (CRITICAL OVERRIDES) ===== */
ul.dga-nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    float: none !important;
}

ul.dga-nav-links > li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    float: none !important;
    display: inline-block !important;
}

ul.dga-nav-links > li > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 10px 15px !important;
    color: var(--neutral-700) !important;
    font-weight: 500 !important;
    font-size: 14.5px !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    white-space: nowrap !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
}

ul.dga-nav-links > li > a i.fa-angle-down {
    font-size: 11px !important;
    opacity: 0.5 !important;
    transition: var(--transition) !important;
    margin-left: 2px !important;
}

ul.dga-nav-links > li:hover > a i.fa-angle-down {
    transform: rotate(180deg) !important;
    opacity: 1 !important;
}

ul.dga-nav-links > li > a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 2px !important;
    left: 15px !important;
    right: 15px !important;
    height: 2.5px !important;
    background: var(--grad-primary) !important;
    border-radius: 4px !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    width: auto !important;
}

ul.dga-nav-links > li:hover > a::after,
ul.dga-nav-links > li.active > a::after {
    transform: scaleX(1) !important;
}

ul.dga-nav-links > li:hover > a,
ul.dga-nav-links > li.active > a {
    color: var(--primary) !important;
    background: rgba(220, 38, 38, 0.04) !important;
}

/* ===== Mega Dropdown (MUST HIDE BY DEFAULT) ===== */
.dga-has-dropdown {
    position: relative !important;
}

.dga-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1010 !important;
    display: block !important;
}

.dga-has-dropdown:hover > .dga-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dga-dropdown-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px !important;
    min-width: 400px !important;
    box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.18),
                0 10px 20px -10px rgba(15, 23, 42, 0.1) !important;
    list-style: none !important;
}

a.dga-dropdown-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border-radius: var(--radius-sm) !important;
    color: var(--neutral-700) !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    background: transparent !important;
    border: none !important;
}

a.dga-dropdown-item:hover {
    background: rgba(30, 58, 138, 0.05) !important;
    color: #1e3a8a !important;
    transform: translateX(3px) !important;
}

a.dga-dropdown-item > i {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(30, 58, 138, 0.08) !important;
    color: #1e3a8a !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    transition: var(--transition) !important;
}

a.dga-dropdown-item:hover > i {
    background: #1e3a8a !important;
    color: #fff !important;
}

a.dga-dropdown-item div {
    min-width: 0 !important;
}

a.dga-dropdown-item strong {
    display: block !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--neutral-900) !important;
    margin-bottom: 2px !important;
    font-family: 'Outfit', sans-serif !important;
}

a.dga-dropdown-item span {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 400 !important;
    display: block !important;
}

/* --- CTA Button (Apply Now) --- */
a.dga-nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 24px !important;
    background: var(--grad-primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px -3px rgba(220, 38, 38, 0.4) !important;
    white-space: nowrap !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    flex-shrink: 0 !important;
}

a.dga-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px -5px rgba(220, 38, 38, 0.5) !important;
    background: linear-gradient(135deg, #e11d48 0%, #1e3a8a 100%) !important;
    color: #fff !important;
}

a.dga-nav-cta svg {
    flex-shrink: 0 !important;
}

/* --- Hamburger Button --- */
.dga-hamburger {
    display: none !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 1050 !important;
}

.dga-hamburger span {
    display: block !important;
    width: 26px !important;
    height: 2.5px !important;
    background: var(--neutral-800) !important;
    border-radius: 4px !important;
    transition: var(--transition) !important;
}

.dga-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}
.dga-hamburger.is-active span:nth-child(2) {
    opacity: 0 !important;
}
.dga-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
}

/* --- Mobile Full-Screen Menu --- */
.dga-mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #fff !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15) !important;
    overflow-y: auto !important;
}

.dga-mobile-menu.open {
    right: 0 !important;
}

.dga-mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 24px !important;
    border-bottom: 1px solid var(--neutral-100) !important;
    flex-shrink: 0 !important;
}

.dga-mobile-menu-header .dga-logo-img {
    height: 44px !important;
}

.dga-mobile-close {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--neutral-100) !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    color: var(--neutral-700) !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
}

.dga-mobile-close:hover {
    background: var(--danger) !important;
    color: #fff !important;
}

.dga-mobile-nav {
    flex: 1 !important;
    padding: 16px !important;
    overflow-y: auto !important;
}

a.dga-mobile-link,
button.dga-mobile-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 16px !important;
    color: var(--neutral-700) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition) !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    cursor: pointer !important;
    text-align: left !important;
    box-shadow: none !important;
}

a.dga-mobile-link:hover,
a.dga-mobile-link.active,
button.dga-mobile-link:hover {
    background: rgba(220, 38, 38, 0.05) !important;
    color: var(--primary) !important;
}

.dga-mobile-link i:first-child,
.dga-mobile-link span i {
    margin-right: 12px !important;
    width: 20px !important;
    text-align: center !important;
    color: var(--primary) !important;
}

.dga-accordion-panel {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding-left: 20px !important;
}

.dga-accordion-panel.open {
    max-height: 300px !important;
}

.dga-accordion-panel a {
    display: block !important;
    padding: 10px 16px !important;
    color: var(--neutral-700) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition) !important;
}

.dga-accordion-panel a:hover {
    background: rgba(220, 38, 38, 0.05) !important;
    color: var(--primary) !important;
    padding-left: 22px !important;
}

.dga-acc-icon {
    font-size: 12px !important;
    transition: var(--transition) !important;
}

.dga-mobile-footer {
    padding: 20px 24px !important;
    border-top: 1px solid var(--neutral-100) !important;
    flex-shrink: 0 !important;
}

.dga-mobile-socials {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 16px !important;
}

.dga-mobile-socials a {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: var(--neutral-100) !important;
    color: var(--neutral-700) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    transition: var(--transition) !important;
    padding: 0 !important;
}

.dga-mobile-socials a:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   REDESIGNED FOOTER STYLES
   ========================================================================== */

/* Hide the OLD footer */
footer.site-footer {
    display: none !important;
}




@media (max-width: 767px) {
    .dga-topbar-left {
        display: none !important;
    }

    .dga-topbar-right {
        width: 100% !important;
        justify-content: center !important;
    }

    .dga-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .dga-footer-main {
        padding: 50px 0 40px !important;
    }

    .dga-footer-bottom-inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .dga-cta-content h3 {
        font-size: 22px !important;
    }

    .dga-cta-actions {
        flex-direction: column !important;
        width: 100% !important;
    }

    a.dga-footer-btn {
        justify-content: center !important;
    }

    .dga-mobile-menu {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    flex-wrap: nowrap;
}

.dga-topbar-item {
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    text-decoration: none !important;
    font-size: 13px !important;
}

.dga-topbar-item:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dga-topbar-item i {
    color: #ffffff !important;
    font-size: 13px;
}

.dga-topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.dga-topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dga-social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    font-size: 14px !important;
    text-decoration: none !important;
}

.dga-social-icon:hover {
    background: #ffffff;
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.dga-social-icon.whatsapp:hover {
    background: #25d366;
}

/* --- Main Navbar --- */
.dga-navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dga-navbar.dga-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.dga-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

/* Logo */
.dga-logo {
    text-decoration: none !important;
    flex-shrink: 0;
}

.dga-logo-img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

.dga-scrolled .dga-logo-img {
    height: 48px;
}

/* Desktop Nav Links */
.dga-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dga-nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px !important;
    color: var(--neutral-700) !important;
    font-weight: 500 !important;
    font-size: 14.5px !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.dga-nav-links > li > a i.fa-angle-down {
    font-size: 12px;
    opacity: 0.5;
    transition: var(--transition);
}

.dga-nav-links > li:hover > a i.fa-angle-down {
    transform: rotate(180deg);
    opacity: 1;
}

.dga-nav-links > li > a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background: var(--grad-primary);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dga-nav-links > li:hover > a::before,
.dga-nav-links > li.active > a::before {
    transform: scaleX(1);
}

.dga-nav-links > li:hover > a,
.dga-nav-links > li.active > a {
    color: var(--primary) !important;
    background: rgba(220, 38, 38, 0.04);
}

/* --- Mega Dropdown --- */
.dga-has-dropdown {
    position: relative;
}

.dga-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
}

.dga-has-dropdown:hover > .dga-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dga-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 380px;
    box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.15),
                0 10px 20px -10px rgba(15, 23, 42, 0.08);
}

.dga-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--neutral-700) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.dga-dropdown-item:hover {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary) !important;
    transform: translateX(3px);
}

.dga-dropdown-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.08);
    color: var(--primary) !important;
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.dga-dropdown-item:hover i {
    background: var(--primary);
    color: #fff !important;
}

.dga-dropdown-item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--neutral-900) !important;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif !important;
}

.dga-dropdown-item span {
    font-size: 12px;
    color: var(--neutral-300) !important;
    font-weight: 400;
}

/* --- CTA Button (Apply Now) --- */
.dga-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--grad-primary);
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px -3px rgba(220, 38, 38, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.dga-nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e11d48 0%, #1e3a8a 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.dga-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(220, 38, 38, 0.5);
}

.dga-nav-cta:hover::before {
    opacity: 1;
}

/* --- Hamburger Button --- */
.dga-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1050;
}

.dga-hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 4px;
    transition: var(--transition);
}

.dga-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.dga-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.dga-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Full-Screen Menu --- */
.dga-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.dga-mobile-menu.open {
    right: 0;
}

.dga-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--neutral-100);
}

.dga-mobile-menu-header .dga-logo-img {
    height: 44px;
}

.dga-mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--neutral-700) !important;
    cursor: pointer;
    transition: var(--transition);
}

.dga-mobile-close:hover {
    background: var(--danger);
    color: #fff !important;
}

.dga-mobile-nav {
    flex: 1;
    padding: 16px;
}

.dga-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: var(--neutral-700) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.dga-mobile-link:hover,
.dga-mobile-link.active {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary) !important;
}

.dga-mobile-link i:first-child,
.dga-mobile-link span i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: var(--primary) !important;
}

.dga-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-left: 20px;
}

.dga-accordion-panel.open {
    max-height: 300px;
}

.dga-accordion-panel a {
    display: block;
    padding: 10px 16px;
    color: var(--neutral-700) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dga-accordion-panel a:hover {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary) !important;
    padding-left: 22px;
}

.dga-acc-icon {
    font-size: 12px !important;
    transition: var(--transition);
}

.dga-mobile-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--neutral-100);
}

.dga-mobile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.dga-mobile-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--neutral-100);
    color: var(--neutral-700) !important;
    text-decoration: none !important;
    font-size: 16px;
    transition: var(--transition);
}

.dga-mobile-socials a.btn-secondary {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--neutral-900) !important;
    border: 1px solid var(--neutral-200) !important;
    box-shadow: var(--shadow-sm);
}

.dga-mobile-socials a:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-3px);
}

/* ==========================================================================
   REDESIGNED FOOTER STYLES
   ========================================================================== */

/* --- Pre-Footer CTA Band --- */
.dga-footer-cta {
    background: linear-gradient(135deg, #d5211d 0%, #e11d48 50%, #1e3a8a 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.dga-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.dga-footer-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.dga-cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.dga-cta-content h3 {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif !important;
}

.dga-cta-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px;
    margin: 0;
    max-width: 500px;
}

.dga-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.dga-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: var(--transition);
    white-space: nowrap;
}

.dga-footer-btn.primary {
    background: #fff;
    color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dga-footer-btn.primary:hover {
    background: var(--neutral-900);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dga-footer-btn.outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dga-footer-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* --- Main Footer --- */
.dga-footer-main {
    background: #0f172a !important;
    padding: 80px 0 50px !important;
    position: relative !important;
    overflow: hidden !important;
}

.dga-footer-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
}

.dga-orb-1 {
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: #d5211d;
}

.dga-orb-2 {
    bottom: -15%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: #1e3a8a;
}

.dga-footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr !important;
    gap: 40px !important;
    position: relative;
    z-index: 1;
}

/* Footer Columns Reveal Animation */
.dga-footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dga-footer-col.dga-revealed {
    opacity: 1;
    transform: translateY(0);
}

.dga-footer-col:nth-child(2) { transition-delay: 0.1s; }
.dga-footer-col:nth-child(3) { transition-delay: 0.2s; }
.dga-footer-col:nth-child(4) { transition-delay: 0.3s; }

/* --- Footer Logo: Show actual logo colors on dark bg --- */
.dga-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none !important;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.dga-footer-logo:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.dga-footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: none; /* Show actual logo colors */
    opacity: 1;
}

.dga-footer-brand-name {
    display: block;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.dga-footer-brand-tagline {
    display: block;
    color: rgba(255,255,255,0.5) !important;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.dga-footer-desc {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px !important;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Footer Social Icons */
.dga-footer-social {
    display: flex;
    gap: 10px;
}

.dga-footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    font-size: 15px;
    transition: var(--transition);
}

.dga-footer-social a:hover {
    background: #d5211d;
    color: #fff !important;
    border-color: #d5211d;
    transform: translateY(-3px);
}

/* Footer Section Titles */
.dga-footer-title {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 22px !important;
    font-family: 'Outfit', sans-serif !important;
    position: relative !important;
    padding-bottom: 12px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dga-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #d5211d, #1e3a8a);
    border-radius: 4px;
}

/* Footer Links */
.dga-footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dga-footer-links li {
    margin-bottom: 4px;
}

.dga-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 5px 0;
    transition: var(--transition);
}

.dga-footer-links a i {
    font-size: 9px;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.3) !important;
}

.dga-footer-links a:hover {
    color: #fff !important;
    padding-left: 6px;
}

.dga-footer-links a:hover i {
    color: #d5211d !important;
}

/* Branch Cards */
.dga-branch-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.dga-branch-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.dga-branch-card:hover {
    background: rgba(213, 33, 29, 0.12);
    border-color: rgba(213, 33, 29, 0.4);
    transform: translateX(4px);
}

.dga-branch-card i {
    color: #d5211d !important;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.dga-branch-card strong {
    display: block;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif !important;
}

.dga-branch-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.4;
}

.dga-footer-contact-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dga-footer-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: var(--transition);
}

.dga-footer-contact-row a i {
    color: #d5211d !important;
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.dga-footer-contact-row a:hover {
    color: #fff !important;
}

/* --- Footer Bottom Bar --- */
.dga-footer-bottom {
    background: #060d1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 20px 0 !important;
}

.dga-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dga-copyright {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    margin: 0;
}

.dga-copyright strong {
    color: rgba(255, 255, 255, 0.75) !important;
}

.dga-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dga-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: var(--transition);
}

.dga-footer-bottom-links a:hover {
    color: #d5211d !important;
}

.dga-dot {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
}

/* --- Back to Top Button --- */
.dga-scroll-top {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-900);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 9990;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.dga-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dga-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.5);
}

/* --- Hide old sticky-social sidebar --- */
.sticky-social {
    display: none !important;
}

/* ==========================================================================
   RESPONSIVE - HEADER & FOOTER
   ========================================================================== */

@media (max-width: 1199px) {
    .dga-nav-links > li > a {
        padding: 12px 12px !important;
        font-size: 13.5px !important;
    }
    .dga-dropdown-grid {
        min-width: 340px;
    }
}

@media (max-width: 991px) {
    .dga-topbar-left .dga-topbar-item:nth-child(n+4),
    .dga-topbar-divider:nth-child(n+4) {
        display: none;
    }

    .dga-nav-links,
    .dga-nav-cta {
        display: none !important;
    }

    .dga-hamburger {
        display: flex;
    }

    .dga-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .dga-cta-band {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .dga-cta-content p {
        max-width: 100%;
    }

    .dga-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .dga-topbar {
        padding: 6px 0;
    }
    
    .dga-topbar-left {
        display: none;
    }

    .dga-topbar-right {
        width: 100%;
        justify-content: center;
    }

    .dga-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dga-footer-main {
        padding: 50px 0 40px;
    }

    .dga-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .dga-cta-content h3 {
        font-size: 22px;
    }

    .dga-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .dga-footer-btn {
        justify-content: center;
    }

    .dga-mobile-menu {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .dga-logo-img {
        height: 42px;
    }
}

/* Premium Buttons */
.btn {
    background: var(--grad-primary);
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-accent);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary) !important;
    border: 1px solid var(--neutral-200) !important;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--neutral-900) !important;
    color: #fff !important;
    border-color: var(--neutral-900) !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    padding: 24px;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.hero-wrapper {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.carousel-item {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 580px;
    display: flex !important;
    align-items: center;
    padding: 100px 0 80px 0;
}

.hero-content {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    max-width: 560px;
}

@media (min-width: 992px) {
    .carousel-item {
        min-height: 620px;
        background-position: right center;
    }
}

@media (max-width: 991px) {
    .carousel-item {
        background-position: center;
        min-height: 520px;
    }
    .hero-content {
        padding: 30px;
        margin: 0 auto;
    }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.hero-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    animation: float 12s ease-in-out infinite alternate;
}

/* Courses Grid & Cards */
.course-category-badge {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

.course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}

.course-card:hover::after {
    opacity: 1;
}

.course-card-title {
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Floating Sticky Widgets (WhatsApp & Academy AI Chatbot) */
.sticky-widgets-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.sticky-widget-group {
    position: relative;
    display: flex;
    align-items: center;
}

.whatsapp-direct-btn,
.dga-chatbot-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 30px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    text-decoration: none !important;
}

.whatsapp-direct-btn {
    background-color: #25d366;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-direct-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.dga-chatbot-float-btn {
    background: var(--grad-primary);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.dga-chatbot-float-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.whatsapp-direct-btn i,
.dga-chatbot-float-btn i {
    pointer-events: none;
}

/* Pulsing effect rings around the floating buttons */
.pulse-ring {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.pulse-ring.green {
    border: 3px solid #25d366;
    animation: green-pulse 2s infinite;
}

.pulse-ring.red {
    border: 3px solid #d5211d;
    animation: red-pulse 2s infinite;
}

@keyframes green-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes red-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Widget Tooltips */
.widget-tooltip {
    position: absolute;
    right: 75px;
    background: #ffffff;
    color: #333333;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-widget-group:hover .widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments for widgets */
@media (max-width: 480px) {
    .whatsapp-direct-btn,
    .dga-chatbot-float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .sticky-widgets-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .widget-tooltip {
        display: none !important;
    }
}

/* Quick Enquiry Form Design */
.enquiry-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow-lg);
}

.enquiry-container::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.enquiry-container .form-control {
    background: #ffffff !important;
    border: 1px solid var(--neutral-300) !important;
    color: var(--neutral-900) !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 18px !important;
    transition: var(--transition) !important;
    position: relative;
    z-index: 1;
}

.enquiry-container .form-control:focus {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15) !important;
}

.enquiry-container .form-control::placeholder {
    color: var(--neutral-700) !important;
    opacity: 0.6 !important;
}

.enquiry-container label {
    color: var(--neutral-800) !important;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.enquiry-container button[type="submit"] {
    background: var(--grad-primary) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 14px 28px !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25) !important;
    transition: var(--transition) !important;
    width: 100%;
    position: relative;
    z-index: 1;
}

.enquiry-container button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35) !important;
}

.enquiry-container .select-dropdown option {
    background: #ffffff !important;
    color: var(--neutral-900) !important;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   ADMIN PORTAL / DASHBOARD STYLES (DARK/LIGHT CUSTOM STYLES)
   ========================================================================== */

.admin-login-wrapper {
    background: radial-gradient(circle at 50% 50%, #310a0a 0%, #090d16 100%) !important;
}
/* Invert logo for dark backgrounds */
.admin-login-wrapper img {
    filter: invert(1) brightness(1.5);
}
/* Ensure admin buttons are readable in dark mode */
.admin-login-wrapper .btn,
.admin-dashboard .btn {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}
.admin-login-wrapper .btn:hover,
.admin-dashboard .btn:hover {
    background: #b91c1c !important; /* darker red for hover */
    color: #ffffff !important;
}
/* Also apply to admin dashboard logo */
.admin-dashboard .logo-header img {
    filter: invert(1) brightness(1.5);
}
/* Invert logo for dark backgrounds */
.admin-login-wrapper img {
    filter: invert(1) brightness(1.5);
}
/* Also apply to admin dashboard logo */
.admin-dashboard .logo-header img {
    filter: invert(1) brightness(1.5);
}

/* Backward compatibility utility for older view classes */
.text-accent-violet {
    color: var(--accent-violet) !important;
}

/* Custom styling for the course dropdown in the enquiry form */
.select-dropdown {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    background-color: #fff;
    color: var(--neutral-800);
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--neutral-600) 50%), linear-gradient(135deg, var(--neutral-600) 50%, transparent 50%);
    background-position: calc(100% - 1.2rem) center, calc(100% - 0.7rem) center;
    background-size: 0.5rem 0.5rem;
    background-repeat: no-repeat;
    transition: var(--transition);
}
.select-dropdown:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* ==========================================================================
   CONTACT US PAGE - LIGHT THEME FORM STYLES
   ========================================================================== */

/* Card wrapper */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Label */
.contact-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151 !important;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.01em;
}

/* Input / Textarea base */
.contact-input {
    display: block;
    width: 100%;
    padding: 11px 16px;
    font-size: 14.5px;
    font-family: 'Inter', sans-serif !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-sm) !important;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.contact-input::placeholder {
    color: #94a3b8 !important;
    font-size: 14px;
}

.contact-input:focus {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

/* Textarea */
.contact-textarea {
    resize: vertical;
    min-height: 110px;
}

/* Select wrapper for custom arrow */
.contact-select-wrapper {
    position: relative;
    width: 100%;
}

.contact-select {
    cursor: pointer;
    padding-right: 42px !important;
}

.contact-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
    font-size: 12px;
    line-height: 1;
}

/* Submit button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--grad-primary) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 48px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 50px !important;
    cursor: pointer;
    transition: var(--transition) !important;
    box-shadow: 0 4px 18px -2px rgba(220, 38, 38, 0.35) !important;
    letter-spacing: 0.02em;
}

.contact-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px -4px rgba(220, 38, 38, 0.45) !important;
}

.contact-submit-btn i {
    font-size: 14px;
}


/* Icon color override for contact cards */
.glass-card i.fa {
    color: var(--primary) !important;
}

/* WhatsApp Chatbot Modal styling */
.whatsapp-chatbot-modal {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 360px;
    max-width: 90vw;
    height: 480px;
    max-height: 80vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chatbot-modal.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Header style resembling WhatsApp */
.whatsapp-chatbot-header {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.whatsapp-chatbot-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    position: relative;
}

.whatsapp-chatbot-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background-color: #25d366;
    border: 2px solid #075e54;
    border-radius: 50%;
}

.whatsapp-chatbot-info h4 {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2;
}

.whatsapp-chatbot-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
}

.whatsapp-chatbot-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0;
}

.whatsapp-chatbot-close:hover {
    opacity: 1;
}

/* Message Area with custom styling */
.whatsapp-chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #efeae2; /* Traditional WhatsApp chat background color */
    background-image: radial-gradient(rgba(0,0,0,0.04) 2px, transparent 0);
    background-size: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-time-divider {
    align-self: center;
    background: rgba(255, 255, 255, 0.8);
    color: #667781;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.chatbot-msg-row {
    display: flex;
    width: 100%;
}

.chatbot-msg-row.bot {
    justify-content: flex-start;
}

.chatbot-msg-row.user {
    justify-content: flex-end;
}

.chatbot-msg-bubble {
    max-width: 85%;
    padding: 8px 12px 6px 12px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 14px;
    line-height: 1.45;
}

.chatbot-msg-row.bot .chatbot-msg-bubble {
    background: #ffffff;
    color: #111b21;
    border-top-left-radius: 0;
}

.chatbot-msg-row.user .chatbot-msg-bubble {
    background: #d9fdd3; /* WhatsApp user chat bubble color */
    color: #111b21;
    border-top-right-radius: 0;
}

.chatbot-msg-text {
    word-break: break-word;
}

.chatbot-msg-time {
    font-size: 10px;
    color: #667781;
    text-align: right;
    margin-top: 4px;
}

/* Options/buttons styled premium inside chatbot */
.chatbot-options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    width: 100%;
}

.chatbot-opt-btn {
    background: #ffffff;
    color: #075e54 !important;
    border: 1px solid rgba(7, 94, 84, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    width: 100%;
}

.chatbot-opt-btn:hover {
    background: #e6f3f0;
    border-color: #075e54;
    transform: translateX(3px);
}

/* Typing indicator anim */
.chatbot-typing-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 10px;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    align-self: flex-start;
}

.chatbot-typing-dot {
    width: 6px;
    height: 6px;
    background: #667781;
    border-radius: 50%;
    animation: chatbot-dot-blink 1.4s infinite both;
}

.chatbot-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatbot-dot-blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

/* Chatbot Footer / Input */
.whatsapp-chatbot-footer {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f0f2f5;
    gap: 10px;
}

.whatsapp-chatbot-footer input {
    flex: 1;
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    outline: none !important;
    color: #111b21 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}

.whatsapp-chatbot-footer button {
    background: #128c7e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
    transition: all 0.2s ease !important;
}

.whatsapp-chatbot-footer button:hover {
    background: #075e54 !important;
    transform: scale(1.05);
}

.whatsapp-chatbot-footer button i {
    font-size: 14px !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .whatsapp-chatbot-modal {
        right: 15px;
        left: 15px;
        bottom: 95px;
        width: auto;
        max-width: none;
    }
}

/* --- Hero Carousel Custom Style --- */
#heroCarousel .carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: var(--primary) !important;
    border: none !important;
    margin: 0 5px !important;
    opacity: 0.4 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#heroCarousel .carousel-indicators button.active {
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 6px !important;
}

/* ==========================================================================
   RED NAVIGATION ARROWS & MOBILE REEL MOCKUP STYLES
   ========================================================================== */

/* Testimonial Carousel Navigation Red Arrows */
.client-carousel-3 .owl-nav .owl-next,
.client-carousel-3 .owl-nav .owl-prev,
.client-carousel-2 .owl-nav .owl-next,
.client-carousel-2 .owl-nav .owl-prev {
    background: var(--primary) !important;
    box-shadow: 0 4px 15px -3px rgba(220, 38, 38, 0.4) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    transition: var(--transition) !important;
}

.client-carousel-3 .owl-nav .owl-next:hover,
.client-carousel-3 .owl-nav .owl-prev:hover,
.client-carousel-2 .owl-nav .owl-next:hover,
.client-carousel-2 .owl-nav .owl-prev:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 8px 20px -5px rgba(153, 27, 27, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Mobile Reel Phone Mockup Styling */
.phone-mockup-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Glowing back-light behind the phone mockup */
.phone-glow-effect {
    position: absolute;
    width: 320px;
    height: 540px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.phone-device {
    position: relative;
    width: 290px;
    height: 520px;
    background: #090d16;
    border: 12px solid #1e293b; /* Sleek bezel */
    border-radius: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(15, 23, 42, 0.25), 
        0 0 0 4px #334155, /* Outer metallic ring */
        0 0 20px 5px rgba(220, 38, 38, 0.1);
    z-index: 2;
    overflow: hidden;
    transition: var(--transition);
}

.phone-device:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 
        0 35px 60px -15px rgba(15, 23, 42, 0.35), 
        0 0 0 4px var(--primary), /* Glow red on hover! */
        0 0 30px 10px rgba(220, 38, 38, 0.25);
}

/* Speaker/Notch at the top */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 18px;
    background: #1e293b;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-speaker {
    width: 40px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
    margin-right: 15px;
}

.phone-camera {
    width: 6px;
    height: 6px;
    background: #0f172a;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.2);
    position: relative;
}

.phone-camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 2px;
    height: 2px;
    background: #3b82f6;
    border-radius: 50%;
}

/* Home bar at the bottom */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 10;
    pointer-events: none;
}

/* The actual screen playing the video */
.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 28px;
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Social icons overlay (like a real TikTok/Instagram Reels screen!) */
.reel-social-overlay {
    position: absolute;
    right: 12px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 8;
    pointer-events: none;
}

.reel-action-btn {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 15px !important;
    cursor: pointer;
    transition: var(--transition);
}

.reel-action-btn:hover {
    background: var(--primary) !important;
    transform: scale(1.1);
    border-color: transparent;
    color: #ffffff !important;
}

.reel-action-btn span {
    font-size: 9px !important;
    font-weight: 600;
    margin-top: 2px;
    color: #ffffff !important;
}

.reel-info-overlay {
    position: absolute;
    left: 15px;
    bottom: 25px;
    right: 60px;
    z-index: 8;
    color: #ffffff !important;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.reel-user-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reel-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

.reel-user-name {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.reel-video-desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0 !important;
}

/* Responsiveness for small phone widths */
@media (max-width: 480px) {
    .phone-device {
        width: 260px;
        height: 480px;
        border-width: 8px;
        border-radius: 30px;
    }
    .phone-screen {
        border-radius: 22px;
    }
    .phone-glow-effect {
        width: 280px;
        height: 500px;
    }
}

