
        /* Import header styles from header.php to ensure consistency */
        .top_head {
            background: linear-gradient(135deg, #1e2b4f 0%, #2a3b6e 100%);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .cont_area a {
            color: #ffffff;
            font-size: 14px;
            margin-right: 25px;
            text-decoration: none;
            transition: color 0.3s ease;
            opacity: 0.9;
        }
        .cont_area a:hover {
            color: #ffd700;
            opacity: 1;
        }
        .cont_area i {
            margin-right: 8px;
            font-size: 14px;
        }
        .login_area ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .cart-item {
            position: relative;
            margin-right: 15px;
        }
        .cart-icon-link {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cart-icon-link:hover {
            background: #ffd700;
            color: #1e2b4f;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .cart-icon-link i {
            font-size: 18px;
        }
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 11px;
            font-weight: 600;
            min-width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(220,53,69,0.3);
            border: 2px solid #1e2b4f;
        }
        .user-menu .user-link {
            display: flex;
            align-items: center;
            color: #ffffff !important;
            padding: 8px 15px !important;
            background: rgba(255,255,255,0.1);
            border-radius: 40px;
            transition: all 0.3s ease;
        }
        .user-menu .user-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .user-menu .user-link i {
            font-size: 18px;
            margin-right: 8px;
        }
        .user-menu .user-link .user-name {
            font-size: 14px;
            font-weight: 500;
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .login-link {
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #2a7fb9, #2f6bb3);
            color: #ffffff !important;
            padding: 8px 18px !important;
            border-radius: 50px;
        }
        .login-link:hover {
            background: #edea26;
            color: #1e2b4f !important;
        }
        .login-link i {
            margin-right: 8px;
            font-size: 14px;
        }
        .dropdown-menu {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 10px 0;
            margin-top: 10px;
            min-width: 240px;
            animation: fadeInDown 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .dropdown-menu-end {
            right: 0;
            left: auto;
        }
        .dropdown-item {
            padding: 10px 20px;
            font-size: 14px;
            color: #333;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        .dropdown-item i {
            width: 20px;
            font-size: 14px;
            color: #1e2b4f;
            transition: all 0.2s ease;
        }
        .dropdown-item:hover {
            background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
            color: #1e2b4f;
            padding-left: 25px;
        }
        .dropdown-item:hover i {
            color: #ffd700;
        }
        .dropdown-item.text-danger {
            color: #dc3545 !important;
        }
        .dropdown-item.text-danger:hover {
            background: #fff5f5;
        }
        .dropdown-divider {
            margin: 8px 0;
            border-top: 1px solid #eaeef2;
        }
        .mega_menu {
            position: static !important;
        }
        .mega-menu {
            width: 100% !important;
            padding: 30px 25px !important;
            margin-top: 0 !important;
            border-radius: 0 0 20px 20px;
            background: white;
            border: none;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-top: 3px solid #1e2b4f;
        }
        .mega-menu .container {
            max-width: 1200px;
            padding: 0;
        }
        .mega-menu .row {
            margin: 0;
        }
        .mega-menu .col-md-6 {
            padding: 5px 10px;
        }
        .mega-menu .dropdown-item {
            padding: 12px 18px;
            border-radius: 10px;
            margin-bottom: 5px;
            background: #f8faff;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .mega-menu .dropdown-item i {
            font-size: 14px;
            color: #1e2b4f;
            transition: all 0.3s ease;
        }
        .mega-menu .dropdown-item:hover {
            background: linear-gradient(135deg, #1e2b4f 0%, #2a3b6e 100%);
            color: white !important;
            padding-left: 25px;
            border-left: 3px solid #ffd700;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(30,43,79,0.2);
        }
        .mega-menu .dropdown-item:hover i {
            color: #ffd700;
            transform: translateX(3px);
        }
        .head_nav {
            background: #ffffff;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: relative;
            z-index: 1000;
        }
        .navbar {
            padding: 15px 0;
        }
        .navbar-brand img {
            max-height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        .navbar-nav .nav-link {
            color: #333 !important;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px !important;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 6px;
        }
        .navbar-nav .nav-link:hover {
            color: #1e2b4f !important;
            background: rgba(30,43,79,0.05);
        }
        .navbar-nav .nav-link::after {
            display: none;
        }
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 8px;
            vertical-align: middle;
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            border: none;
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        .dropdown.show .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        /* Hover-based dropdown for desktop - FIXED VERSION */
        @media (min-width: 992px) {
            .dropdown {
                position: relative;
            }
            
            .dropdown:hover > .dropdown-menu,
            .dropdown-menu:hover {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                margin-top: 0 !important;
            }
            
            .mega_menu {
                position: static !important;
                padding-bottom: 15px !important;
                margin-bottom: -15px !important;
            }
            
            .mega_menu .dropdown-menu {
                margin-top: 0 !important;
                top: 100%;
                left: 0 !important;
                right: 0 !important;
            }
            
            .mega_menu::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 0;
                width: 100%;
                height: 30px;
                background: transparent;
                pointer-events: none;
                z-index: 1001;
            }
            
            .mega_menu:hover::after {
                pointer-events: all;
            }
            
            .mega-menu {
                position: absolute !important;
                left: 0 !important;
                right: 0 !important;
                top: 100% !important;
                z-index: 1050 !important;
                margin-top: 0 !important;
                border-radius: 0 0 20px 20px !important;
                border-top: 3px solid #1e2b4f !important;
            }
            
            .dropdown-menu {
                transition: none !important;
                display: none;
            }
            
            .dropdown:hover > .dropdown-menu {
                display: block !important;
            }
            
            .navbar-nav .nav-link {
                position: relative;
                overflow: hidden;
            }
            
            .navbar-nav .nav-link::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background: linear-gradient(135deg, #1e2b4f, #2a3b6e);
                transition: width 0.3s ease;
            }
            
            .navbar-nav .nav-link:hover::before {
                width: 80%;
            }
        }

        @media (min-width: 992px) {
            .mega_menu:hover .mega-menu,
            .mega-menu:hover {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
            
            .dropdown-menu {
                margin-top: 0 !important;
            }
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 12px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                max-height: 80vh;
                overflow-y: auto;
            }
           
            .navbar-nav .nav-link {
                padding: 12px 15px !important;
                border-radius: 8px;
            }
           
            .mega-menu {
                padding: 15px !important;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                position: static !important;
                width: 100% !important;
                border: none;
                box-shadow: none;
                background: #f8f9fa;
            }
           
            .mega-menu .col-md-6 {
                margin-bottom: 10px;
            }
           
            .mega-menu .dropdown-item {
                padding: 10px 15px;
                background: white;
            }
            
            .dropdown:hover > .dropdown-menu {
                display: none;
            }
            
            .dropdown-menu.show {
                display: block !important;
            }
        }
        @media (max-width: 768px) {
            .top_head {
                text-align: center;
            }
           
            .cont_area a {
                display: block;
                margin: 5px 0;
            }
           
            .login_area {
                text-align: center;
                margin-top: 10px;
            }
           
            .user-menu .user-link {
                padding: 6px 12px !important;
            }
           
            .user-menu .user-link .user-name {
                max-width: 100px;
            }
           
            .cart-icon-link {
                width: 36px;
                height: 36px;
            }
        }
        #sticky-header {
            position: sticky;
            top: 0;
            z-index: 999;
            transition: all 0.3s ease;
        }
        #sticky-header.sticky {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            animation: slideDown 0.3s ease;
        }
        #sticky-header.sticky .navbar {
            padding: 10px 0;
        }
        #sticky-header.sticky .navbar-brand img {
            max-height: 40px;
        }
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        .nav-item .badge {
            position: absolute;
            top: 0;
            right: 5px;
            background: #ffd700;
            color: #1e2b4f;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 10px;
            font-weight: 600;
        }
        .mega-menu .dropdown-item {
            animation: slideIn 0.3s ease forwards;
            opacity: 0;
            transform: translateX(-10px);
        }
        .mega-menu .dropdown-item:nth-child(1) { animation-delay: 0.05s; }
        .mega-menu .dropdown-item:nth-child(2) { animation-delay: 0.1s; }
        .mega-menu .dropdown-item:nth-child(3) { animation-delay: 0.15s; }
        .mega-menu .dropdown-item:nth-child(4) { animation-delay: 0.2s; }
        .mega-menu .dropdown-item:nth-child(5) { animation-delay: 0.25s; }
        .mega-menu .dropdown-item:nth-child(6) { animation-delay: 0.3s; }
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ========================================
           Global Styles & Variables 
        ======================================== */
        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #7209b7;
            --accent: #f72585;
            --warning: #f9c74f;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #4361ee, #7209b7);
            --gradient-2: linear-gradient(135deg, #f72585, #f9c74f);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
            --border-radius: 20px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--gray);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--dark);
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }
        .section-title p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray);
        }
        .btn-primary {
            background: var(--gradient-1);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
            color: white;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-3px);
        }
        /* ========================================
           Hero Section
        ======================================== */
        .hero-section {
            background: var(--gradient-1);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }
        .hero-title span {
            color: var(--warning);
        }
        .hero-description {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .hero-image {
            position: relative;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        /* ========================================
           Features Section
        ======================================== */
        .features-section {
            padding: 80px 0;
            background: var(--light);
        }
        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
            box-shadow: var(--shadow-sm);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .feature-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 36px;
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        .feature-card p {
            color: var(--gray);
            margin-bottom: 0;
        }
        /* ========================================
           Stats Section
        ======================================== */
        .stats-section {
            background: var(--gradient-1);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 35px 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
        }
        .stat-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            transition: var(--transition);
        }
        .stat-card:hover .stat-icon {
            background: white;
            color: var(--primary);
            transform: scale(1.1);
        }
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
            color: var(--warning);
        }
        .stat-label {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* ========================================
           Services Section
        ======================================== */
        .services-section {
            padding: 80px 0;
            background: var(--light);
        }
        .service-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .service-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        .service-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            pointer-events: none;
        }
        .service-tag {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
        }
        .service-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .service-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .service-content p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 15px;
            flex: 1;
        }
        .service-price {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .original-price {
            font-size: 16px;
            color: #94a3b8;
            text-decoration: line-through;
        }
        .discount-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: gap 0.3s;
        }
        .service-link:hover {
            gap: 12px;
            color: var(--primary-dark);
        }
        /* ========================================
           CTA Section
        ======================================== */
        .cta-section {
            background: var(--gradient-2);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .cta-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        .cta-description {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-buttons .btn-primary {
            background: white;
            color: var(--dark);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .cta-buttons .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .cta-buttons .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }
        /* ========================================
           Responsive
        ======================================== */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 42px;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            .section-title h2 {
                font-size: 30px;
            }
            .stat-number {
                font-size: 36px;
            }
            .cta-title {
                font-size: 30px;
            }
        }
        .education-promo {
            padding: 60px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            text-align: center;
        }
        .education-promo .logo-container {
            margin-bottom: 30px;
        }
        .education-promo img {
            max-width: 220px;
            height: auto;
        }
        .education-promo h2 {
            color: #1e40af;
            font-size: 2.1rem;
            margin-bottom: 1.2rem;
        }
        .education-promo p {
            max-width: 780px;
            margin: 0 auto 1.8rem;
            color: #334155;
        }
        .education-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .education-features li {
            background: white;
            padding: 12px 28px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            font-weight: 500;
            color: #1e293b;
        }
        @media (max-width: 768px) {
            .education-promo {
                padding: 50px 15px;
            }
            .education-promo h2 {
                font-size: 1.8rem;
            }
        }

/* --------------------------------------------------------------
   Legacy page embed (Startup option pages)
   Keep Laravel header/footer theme, show legacy content safely.
   -------------------------------------------------------------- */
.lt-legacy-embed {
    padding: 28px 0 48px;
    background: #ffffff;
}

.lt-legacy-embed-frame {
    width: 100%;
    height: 86vh;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(18, 46, 72, 0.12);
    background: #fff;
}