/* ========================================
           CSS VARIABLES & ROOT STYLES
        ======================================== */
        :root {
            --primary-purple: #7c3aed;
            --primary-blue: #3b82f6;
            --primary-indigo: #6366f1;
            --neon-purple: #a855f7;
            --neon-blue: #22d3ee;
            --neon-pink: #ec4899;
            --dark-bg: #0f0a1f;
            --darker-bg: #080510;
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
            --gradient-1: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
            --gradient-2: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
            --gradient-3: linear-gradient(180deg, #0f0a1f 0%, #1a0f2e 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
            --primary:#30266d;
    --secondary:#f9669d;
        }

        /* ========================================
           RESET & BASE STYLES
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .pd-0{padding: 0 !important;}

        .nav-links a.active {
            color: #ffffff;
            position: relative;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(135deg, #7c3aed, #3b82f6);
        }

        .nav-links a.active {
            text-shadow: 0 0 15px rgba(168,85,247,0.8);
        }

        /* ========================================
           ANIMATED BACKGROUND
        ======================================== */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: var(--gradient-3);
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-purple);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            background: var(--primary-blue);
            top: 50%;
            right: -150px;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 300px;
            height: 300px;
            background: var(--neon-pink);
            bottom: -50px;
            left: 30%;
            animation-delay: -10s;
        }

        .shape-4 {
            width: 350px;
            height: 350px;
            background: var(--neon-blue);
            top: 30%;
            left: 20%;
            animation-delay: -15s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, 50px) rotate(90deg); }
            50% { transform: translate(0, 100px) rotate(180deg); }
            75% { transform: translate(-50px, 50px) rotate(270deg); }
        }

        /* ========================================
           NAVIGATION
        ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar span img{height: 80px;}

        .navbar.scrolled {
            background: rgba(15, 10, 31, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            font-weight: 500;
            color: #fff;
            transition: color 0.3s ease;
            position: relative;
            font-size: 17px;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
        }

        .btn-outline:hover {
            background: var(--glass-bg);
            border-color: var(--neon-purple);
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
        }

        .btn-large {
            padding: 16px 40px;
            font-size: 1.1rem;
            border-radius: 16px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0;
            position: relative;
        }

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

        .hero-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--neon-blue);
            margin-bottom: 25px;
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--neon-blue);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: 2.5rem;
            line-height: 1.15;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #c4b5fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 520px;
            line-height: 1.8;
            color: #ffffffcc;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid var(--glass-border);
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1rem;
            color: #ffffffcc;
            margin-top: 5px;
        }

        /* Hero Illustration */
        .hero-illustration {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .illustration-container {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ai-brain {
            width: 200px;
            height: 200px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            animation: breathe 4s ease-in-out infinite;
            box-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
        }

        .ai-brain::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            animation: rotate 20s linear infinite;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .floating-element {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatElement 6s ease-in-out infinite;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .floating-element .icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .floating-element span {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .float-pdf {
            top: 50px;
            left: 0;
            animation-delay: 0s;
        }

        .float-pdf .icon {
            background: linear-gradient(135deg, #ef4444, #f97316);
        }

        .float-mcq {
            top: 120px;
            right: 0;
            animation-delay: -2s;
        }

        .float-mcq .icon {
            background: linear-gradient(135deg, #22c55e, #10b981);
        }

        .float-question {
            bottom: 120px;
            left: 30px;
            animation-delay: -4s;
        }

        .float-question .icon {
            background: linear-gradient(135deg, #3b82f6, #6366f1);
        }

        .float-ai {
            bottom: 50px;
            right: 30px;
            animation-delay: -3s;
        }

        .float-ai .icon {
            background: linear-gradient(135deg, #a855f7, #ec4899);
        }

        @keyframes floatElement {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           SECTION STYLES
        ======================================== */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 20px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--neon-purple);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 55px;
        }

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

        /* ========================================
           FEATURES SECTION
        ======================================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-purple);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            position: relative;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: inherit;
            filter: blur(20px);
            opacity: 0.5;
            z-index: -1;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .feature-list {
            margin-top: 15px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        /* ========================================
           HOW IT WORKS SECTION
        ======================================== */
        .how-it-works {
            background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 15%;
            width: 70%;
            height: 3px;
            background: var(--gradient-1);
            opacity: 0.3;
        }

        .step-card {
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .step-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
        }

        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

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

        /* ========================================
           USE CASES SECTION
        ======================================== */
        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }

        .use-case-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.9);
        }

        .use-case-card.visible {
            opacity: 1;
            transform: scale(1);
        }

        .use-case-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
        }

        .use-case-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .use-case-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .use-case-card p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* ========================================
           ADVANTAGES SECTION
        ======================================== */
        .advantages {
            background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }

        .advantages-content {
            opacity: 0;
            transform: translateX(-30px);
        }

        .advantages-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .advantage-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            border-color: var(--neon-purple);
            transform: translateX(10px);
        }

        .advantage-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .advantage-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .advantage-text p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .advantages-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(30px);
        }

        .advantages-visual.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .stats-circle {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: var(--gradient-2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 0 80px rgba(168, 85, 247, 0.4);
        }

        .stats-circle::before {
            content: '';
            position: absolute;
            width: calc(100% + 40px);
            height: calc(100% + 40px);
            border-radius: 50%;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            animation: rotate 30s linear infinite;
        }

        .stats-circle .big-number {
            font-size: 4rem;
            font-weight: 800;
        }

        .stats-circle .label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* ========================================
           LIVE PREVIEW SECTION
        ======================================== */
        .preview-section {
            padding: 100px 0;
        }

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

        .preview-content {
            opacity: 0;
            transform: translateX(-30px);
        }

        .preview-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .preview-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .preview-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .mcq-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 35px;
            opacity: 0;
            transform: translateX(30px);
        }

        .mcq-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

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

        .mcq-badge {
            padding: 6px 14px;
            background: linear-gradient(135deg, #22c55e, #10b981);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .mcq-difficulty {
            padding: 6px 14px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--neon-blue);
        }

        .mcq-question {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .mcq-options {
            margin-bottom: 25px;
        }

        .mcq-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mcq-option:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--neon-purple);
        }

        .mcq-option.correct {
            background: rgba(34, 197, 94, 0.2);
            border-color: #22c55e;
        }

        .mcq-option .option-letter {
            width: 35px;
            height: 35px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .mcq-option.correct .option-letter {
            background: #22c55e;
            border-color: #22c55e;
        }

        .show-answer-btn {
            width: 100%;
            padding: 15px 15px;
            background: var(--gradient-1);
            border: none;
            border-radius: 12px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .show-answer-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }

        .explanation-box {
            margin-top: 20px;
            padding: 20px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 12px;
            display: none;
        }

        .explanation-box.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .explanation-box h4 {
            color: var(--neon-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .explanation-box p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

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

        /* ========================================
           CTA SECTION
        ======================================== */
        .cta-section {
            padding: 120px 0;
        }

        .cta-container {
            background: var(--gradient-1);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: rotateBg 20s linear infinite;
        }

        @keyframes rotateBg {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            background: white;
            color: var(--primary-purple);
            font-weight: 700;
            padding: 18px 50px;
            font-size: 1.1rem;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        /* ========================================
           FOOTER
        ======================================== */
        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 60px 0 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--neon-purple);
            padding-left: 5px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gradient-1);
            border-color: transparent;
            transform: translateY(-3px);
        }

        /* ========================================
           MOBILE MENU
        ======================================== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(15, 10, 31, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding: 100px 30px;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu .nav-links {
            flex-direction: column;
            gap: 25px;
        }

        .mobile-menu .nav-links a {
            font-size: 1.2rem;
        }

        .mobile-menu .nav-cta {
            flex-direction: column;
            margin-top: 40px;
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-primary);
        }

        .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    z-index: 99999;   /* IMPORTANT */
    transition: 0.4s ease;
}

.navbar {
    z-index: 9999;
    position: relative;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 0;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
} 

        @media (max-width: 767px){
        .mainnav{display: none;}
        }

        /* ========================================
           RESPONSIVE STYLES
        ======================================== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
            }

            .hero-illustration {
                order: 0;
            }

            .hero-description {
                margin: 0 auto 40px;
            }

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

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

            .illustration-container {
                height: 350px;
            }

            .ai-brain {
                width: 150px;
                height: 150px;
                font-size: 60px;
            }

            .floating-element {
                padding: 10px 15px;
            }

            .floating-element .icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .floating-element span {
                font-size: 0.8rem;
            }

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

            .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .steps-container::before {
                display: none;
            }

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

            .advantages-grid,
            .preview-container {
                grid-template-columns: 1fr;
            }

            .advantages-visual {
                order: -1;
            }

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

        @media (max-width: 768px) {

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

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

            .steps-container {
                grid-template-columns: 1fr;
            }

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

            .cta-container {
                padding: 50px 30px;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }

            .stats-circle {
                width: 280px;
                height: 280px;
            }

            .stats-circle .big-number {
                font-size: 3rem;
            }

            .preview-container {
                gap: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .use-cases-grid {
                grid-template-columns: 1fr;
            }

            .btn-large {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .floating-element span {
                display: none;
            }

            .floating-element {
                padding: 10px;
            }
        }

        /* Scroll Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

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

        .reveal-left {
            transform: translateX(-30px);
        }

        .reveal-right {
            transform: translateX(30px);
        }

        .reveal-left.visible,
        .reveal-right.visible {
            transform: translateX(0);
        }


.benefits-block{padding: 0;}


.custom-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #150d26;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
    width: 50px;
    height: 50px;
}

.slider-btn:hover {
    background: #0595DF;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
    text-align: center;
    margin-top: 15px;
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active-dot {
    background: #930002;
}


.benefits-pic{margin-bottom: 4rem;}
.benefits-pic img{width: 100%; height: auto; margin: 2rem 0;}


/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Benefits Card */
.benefits-card {
    padding: 0 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.benefits-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Flex Layout */
.featlist {
    display: flex;
    gap: 20px;
}

/* Left Side Fixed Width */
.featlist-left {
    width: 100px;
    flex-shrink: 0;   /* Prevent shrinking */
}

/* Image Full Fit */
.featlist-left img {
    width: 100%;
    height: auto;
    display: block;
}


.featlist-right h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.featlist-right p {
    font-size: 15px;
    line-height: 1.6;
    color: #e7e7e7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {

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

    .featlist {
        flex-direction: column;
        align-items: flex-start;
    }

    .featlist-left img {
        width: 50px;
        height: 50px;
    }
}


.stat-icon i {
    font-size: 30px;
}

.generateive-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.page-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #120b245c;
}

/* Overlay Opacity */
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.breadcrumb{
    display: inline-flex;
    gap: 8px;
    font-size: 15px;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb a{
    color: #ffffff;
    text-decoration: none;
    opacity: .9;
    transition: .3s;
}

.breadcrumb a:hover{
    color: #930002; /* your brand color */
}

.breadcrumb span{
    opacity: .8;
}
.common-space{
    padding: 120px 0;
}



/* ================= GETTING PRICE PAGE ================= */
.getting-price-page {
    padding: 120px 0;
}

.getting-price-page .gp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.getting-price-page .gp-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 14px;
    color: #22d3ee;
    margin-bottom: 20px;
}

.getting-price-page h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.getting-price-page p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.getting-price-page .gp-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.getting-price-page .gp-highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
}

.getting-price-page .gp-highlight-box:hover {
    transform: translateX(10px);
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168,85,247,0.4);
}

.getting-price-page .gp-highlight-box i {
    font-size: 22px;
    color: #a855f7;
}

.getting-price-page .gp-form-box {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.4s;
}

.getting-price-page .gp-form-box:hover {
    box-shadow: 0 0 40px rgba(124,58,237,0.3);
}

.getting-price-page .gp-input-group {
    margin-bottom: 20px;
}

.getting-price-page input,
.getting-price-page textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.getting-price-page input:focus,
.getting-price-page textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168,85,247,0.5);
}

.getting-price-page .gp-submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
    font-size: 17px;
}

.getting-price-page .gp-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.4);
}

@media (max-width: 992px) {
    .getting-price-page .gp-wrapper {
        grid-template-columns: 1fr;
    }
}







/* ================= EXAMS TYPES PAGE ================= */
.exam-types-page .exam-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.exam-types-page .exam-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 50px 20px;
    text-align: center;
    transition: 0.4s ease;
    cursor: pointer;
}

.exam-types-page .exam-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(124,58,237,0.5);
}

.exam-types-page .exam-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.exam-types-page .exam-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    line-height: 1.4;
}

.exam-types-page .exam-card:hover {
    transform: translateY(-12px);
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(124,58,237,0.4);
}

.exam-types-page .exam-card:hover img {
    transform: scale(1.05);
}

.exam-types-page .exam-card:hover .exam-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(168,85,247,0.7);
}

.exam-types-page .exam-card:hover h3 {
    color: #22d3ee;
}

@media (max-width: 1200px) {
    .exam-types-page .exam-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .exam-types-page .exam-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .exam-types-page .exam-types-grid {
        grid-template-columns: 1fr;
    }
}







/* ================= Support PAGE ================= */
.support-center-page {
    padding: 120px 0;
}

.support-center-page .support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.support-center-page .support-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    transition: 0.4s;
}

.support-center-page .support-card:hover {
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(124,58,237,0.4);
}

.support-center-page .support-card h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.support-center-page .support-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.support-center-page .support-info i {
    font-size: 20px;
    color: #22d3ee;
}

.support-center-page .support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-center-page .support-form input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
}

.support-center-page .support-form textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    height: 120px;
    transition: 0.3s;
    font-size: 15px;
}

.support-center-page .support-form input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168,85,247,0.5);
}

.support-center-page .support-form button {
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    font-size: 17px;
}

.support-center-page .support-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.4);
}

.support-center-page .download-section {
    margin-top: 100px;
    text-align: center;
}

.support-center-page .download-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.support-center-page .download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.support-center-page .download-card {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    transition: 0.4s;
    display: block;
    background-color: #fff;
}

.support-center-page .download-card img {
    width: 100%;
}

.support-center-page .download-card:hover {
    transform: translateY(-10px);
    border-color: #22d3ee;
    box-shadow: 0 20px 50px rgba(34,211,238,0.4);
}

@media (max-width: 992px) {
    .support-center-page .support-grid {
        grid-template-columns: 1fr;
    }

    .support-center-page .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .support-center-page .download-grid {
        grid-template-columns: 1fr;
    }
}





/* ================= Contact us PAGE ================= */
.contact-us-page {
    padding: 120px 0;
}

.contact-us-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-us-page .contact-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    transition: 0.4s;
}

.contact-us-page .contact-card:hover {
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(124,58,237,0.4);
}

.contact-us-page .contact-card h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.contact-us-page .contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-us-page .contact-info i {
    font-size: 20px;
    color: #22d3ee;
}

.contact-us-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-page .contact-form input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: 0.3s;
}

.contact-us-page .contact-form textarea {
    padding: 14px 18px;
    border-radius: 12px;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: 0.3s;
}

.contact-us-page .contact-form input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168,85,247,0.5);
}

.contact-us-page .contact-form button {
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    font-size: 17px;
}

.contact-us-page .contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.4);
}

.contact-us-page .map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .contact-us-page .contact-grid {
        grid-template-columns: 1fr;
    }
}






/* ================= Pricing ================= */
.pricing-page {
  padding: 40px 0;
}

.pricing-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-page .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 15px;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.pricing-page .pricing-card:hover {
  transform: translateY(-15px);
  border-color: #a855f7;
  box-shadow: 0 20px 50px rgba(124,58,237,0.4);
}

.pricing-page .price {
  font-size: 32px;
  font-weight: 700;
  margin: 15px 0;
}

.pricing-page .price span {
  font-size: 14px;
  opacity: 0.7;
}

.pricing-page .price del {
  font-size: 16px;
  opacity: 0.5;
  margin-right: 6px;
}

.pricing-page .students {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.pricing-page ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pricing-page ul li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.pricing-page .pricing-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg,#7c3aed,#3b82f6);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.pricing-page .pricing-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(124,58,237,0.4);
}

.pricing-page .popular {
  border: 1px solid #22d3ee;
  box-shadow: 0 0 30px rgba(34,211,238,0.4);
}

.pricing-page .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22d3ee;
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

.pricing-card ul li .fa-check-circle{color: #28A745;}
.pricing-card ul li .fa-times {
    color: #DC3545;
    font-weight: bold;
    font-size: 17px;
}

@media (max-width:1200px){
  .pricing-page .pricing-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px){
  .pricing-page .pricing-grid{
    grid-template-columns: 1fr;
  }
}







/* ===============================
   CLASS 10 COURSE PAGE
================================= */

.class10-hero{
    padding:120px 20px 80px;
    text-align:center;
    background: linear-gradient(135deg,#30266d,#f9669d);
}

.class10-hero h1{
    font-size:38px;
    margin-bottom:15px;
}

.class10-hero p{
    color:#ffffffcc;
}

.class10-courses{
    padding:120px 0;
}

.class10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: 30px;
    justify-content: center;
}

.class10-card{
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border:1px solid var(--glass-border);
    border-radius:24px;
    overflow:hidden;
    transition:0.4s;
}

.class10-card:hover{
    transform:translateY(-12px);
    border-color:var(--neon-purple);
    box-shadow:0 20px 50px rgba(124,58,237,0.4);
}

.class10-img img{
    width:100%;
    height:315px;
    object-fit:cover;
}

.class10-content{
    padding:25px 0;
    text-align:center;
}

.class10-content h3{
    font-size:16px;
    margin-bottom:15px;
}

.class10-price{
    margin-bottom:18px;
}

.old-price{
    text-decoration:line-through;
    opacity:0.6;
    margin-right:8px;
}

.offer-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.class10-buttons{
    display:flex;
    justify-content:center;
    gap:10px;
}

.sample-btn{
    padding:8px 16px;
    border-radius:30px;
    background: rgba(255,255,255,0.1);
    border:1px solid var(--glass-border);
    font-size:14px;
    color:#fff;
    transition:0.3s;
}

.sample-btn:hover{
    border-color:var(--neon-blue);
}

.buy-btn{
    padding:8px 18px;
    border-radius:30px;
    background: linear-gradient(135deg,#30266d,#f9669d);
    color:#fff;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;
}

.buy-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(249,102,157,0.5);
}

.course-area{padding-top: 0;}

.course-content h5 {
    color: #a0dbf7;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 600;
}
.course-content h6 {
    color: #a0dbf7;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 600;
}


.course-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: normal;
    text-align: justify;
}

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

@media(max-width:768px){
    .class10-grid{
        grid-template-columns:1fr;
    }
}







/* ===============================
   Career Page
================================= */
.career-section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
}

.section-title p{
    opacity:.8;
    margin-top:10px;
}

.job-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:30px;
    border-radius:20px;
    transition:.4s;
    height:100%;
}

.job-card:hover{
    transform:translateY(-10px);
    border-color:#f9669d;
}

.job-card span{
    font-size:14px;
    color:#f9669d;
    font-weight:500;
}

.job-card h3{
    font-size:22px;
    margin:10px 0;
}

.job-card p{
    opacity:.85;
}

.apply-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 22px;
    border-radius:30px;
    background:#930002;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.apply-btn:hover{
    background:#f9669d;
    color:#fff;
}

.culture-section{
    padding:100px 0;
}

.culture-box{
    text-align:center;
    padding:30px;
}

.culture-box i{
    font-size:40px;
    color:#f9669d;
    margin-bottom:15px;
}

.apply-section{
    padding:100px 0;
    text-align:center;
    background:linear-gradient(135deg,#30266d,#f9669d);
    border-radius:30px;
    margin-top:80px;
}

.apply-section a{
    display:inline-block;
    margin-top:20px;
    padding:14px 40px;
    border-radius:40px;
    background:#930002;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}






/* ===============================
   Privacy Policy
================================= */
.glass-content{
    max-width:900px;
    margin:0 auto;
}

.privacy-block{
    background:var(--glass-bg);
    border:1px solid var(--glass-border);
    border-radius:20px;
    padding:30px;
    margin-bottom:30px;
    backdrop-filter:blur(20px);
    transition:0.3s;
}

.privacy-block:hover{
    border-color:var(--neon-purple);
    box-shadow:0 20px 50px rgba(124,58,237,0.3);
}

.privacy-block h3{
    margin-bottom:15px;
    font-size:20px;
}

.privacy-block p,
.privacy-block li{
    color:var(--text-secondary);
    font-size:15px;
    line-height:1.8;
}

.privacy-block ul{
    padding-left:20px;
    list-style:disc;
}




/* ===============================
   Site Map
================================= */
.sitemap-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.sitemap-card{
    background:var(--glass-bg);
    border:1px solid var(--glass-border);
    border-radius:24px;
    padding:35px;
    backdrop-filter:blur(20px);
    transition:0.4s;
}

.sitemap-card:hover{
    border-color:var(--neon-purple);
    box-shadow:0 20px 50px rgba(124,58,237,0.3);
}

.sitemap-card h3{
    margin-bottom:20px;
    font-size:18px;
}

.sitemap-card ul li{
    margin-bottom:12px;
}

.sitemap-card ul li a{
    color:var(--text-secondary);
    font-size:15px;
    transition:0.3s;
}

.sitemap-card ul li a:hover{
    color:var(--neon-blue);
    padding-left:5px;
}

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

@media(max-width:768px){
    .sitemap-grid{
        grid-template-columns:1fr;
    }
}






/* ===============================
   Service single page
================================= */
.page-section{
    padding:80px 0;
}

.page-grid{
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:50px;
}

.page-title-single{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--secondary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #dedee9;
    text-align: justify;
}

.section-title{
    font-size:32px;
    margin-top:40px;
    margin-bottom:15px;
    font-weight:700;
}

.feature-list{
    gap:15px;
}

.feature-box{
    background:rgba(255,255,255,0.05);
    padding:15px;
    border-radius:10px;
    font-size:14px;
    backdrop-filter:blur(10px);
}

.side-card{
    position:sticky;
    top:100px;
}

.product-img{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.badge{
    background:var(--secondary);
    padding:6px 15px;
    border-radius:30px;
    font-size:12px;
    display:inline-block;
    margin-bottom:10px;
}

.side-card h2{
    font-size:22px;
    margin:10px 0;
}

.price{
    font-size:24px;
    font-weight:700;
    color:#f9ff00;
    margin:15px 0;
}

.btn{
    display:block;
    width:100%;
    padding:12px;
    border-radius:30px;
    background:linear-gradient(90deg,var(--secondary),#ff3cac);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    margin-top:10px;
}

.btn-outline{
    display:block;
    width:100%;
    padding:10px;
    border-radius:30px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    margin-top:10px;
    font-size:14px;
}

.page-content h5 {
    font-size: 20px;
    font-weight: normal;
}

.banner-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    text-align: center;
    position: sticky;
    top: 100px;
}

.contact-form input, textarea{width: 100%;}

input::placeholder{color: #999;}
textarea::placeholder{color: #999; font-size: 16px !important;}



@media(max-width:991px){
    .page-grid{
        grid-template-columns:1fr;
    }
    .side-card{
        position:relative;
        top:0;
        margin-top:40px;
    }
}



@media (max-width: 767px) {
.navbar span img{height: 60px;}    
.hero{padding: 50px 0 0 0;}
input::placeholder{color: #ddd;}
textarea::placeholder{color: #ddd;}
}



@media (min-width: 1200px) {
.hero{min-height: 80vh;}
}