
        /* For Schools Page Styles */
        .schools-hero {
            padding: 200px 0 120px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--darker) 0%, #121a2d 100%);
        }

        .schools-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .schools-hero-text h1 {
            font-size: 64px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light) 0%, var(--brain-cyan) 40%, var(--botsfuture-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .schools-hero-text .subtitle {
            font-size: 24px;
            color: var(--light);
            margin-bottom: 30px;
            font-weight: 600;
            line-height: 1.4;
        }

        .schools-description {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .transition-statement {
            background: rgba(0, 227, 248, 0.1);
            border-left: 4px solid var(--brain-cyan);
            padding: 25px 30px;
            border-radius: 0 12px 12px 0;
            margin: 40px 0;
        }

        .transition-statement p {
            font-size: 20px;
            color: var(--light);
            font-weight: 500;
            line-height: 1.6;
            margin: 0;
        }

        .transition-statement strong {
            color: var(--brain-cyan);
            font-weight: 700;
        }

        .hero-visual {
            position: relative;
            height: 500px;
        }

        .education-transition {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--darker), #121a2d);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 227, 248, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .transition-timeline {
            width: 80%;
            height: 80%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .timeline-node {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .timeline-node:nth-child(odd) {
            flex-direction: row-reverse;
            text-align: right;
        }

        .node-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--gradient-primary);
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .node-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(0, 227, 248, 0.1);
            flex: 1;
            transition: all 0.3s ease;
        }

        .node-content:hover {
            background: rgba(0, 227, 248, 0.1);
            border-color: var(--brain-cyan);
            transform: translateY(-5px);
        }

        .node-content h3 {
            color: var(--light);
            font-size: 18px;
            margin-bottom: 8px;
        }

        .node-content p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.5;
        }



        .offerings-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .offerings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .offering-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(0, 227, 248, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .offering-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .offering-card:hover {
            transform: translateY(-15px);
            border-color: var(--brain-cyan);
            box-shadow: var(--shadow-neuro);
        }

        .offering-header {
            padding: 40px 30px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .audience-badge {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--darker);
            font-size: 20px;
            font-weight: 700;
        }

        .offering-title {
            font-size: 28px;
            color: var(--light);
            line-height: 1.3;
        }

        .offering-description {
            padding: 0 30px 30px;
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .offering-features {
            padding: 0 30px;
            list-style: none;
        }

        .offering-features li {
            padding: 12px 0;
            color: var(--gray);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding-left: 30px;
            font-size: 15px;
        }

        .offering-features li:last-child {
            border-bottom: none;
        }

        .offering-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--brain-cyan);
            font-weight: bold;
        }

        .offering-footer {
            padding: 30px;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .benefits-section {
            padding: 120px 0;
            background: var(--gradient-dark);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 35px 25px;
            border: 1px solid rgba(0, 227, 248, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--brain-cyan);
            box-shadow: var(--shadow-neuro);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(0, 227, 248, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: var(--brain-cyan);
            transition: all 0.5s ease;
        }

        .benefit-card:hover .benefit-icon {
            background: var(--gradient-primary);
            color: var(--darker);
            transform: rotateY(180deg);
        }

        .benefit-card h3 {
            font-size: 22px;
            color: var(--light);
            margin-bottom: 15px;
        }

        .benefit-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .benefit-stats {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 28px;
            color: var(--brain-cyan);
            font-weight: 800;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray);
            margin-top: 5px;
        }

        .steam-camps-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .steam-camps-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .steam-camps-visual {
            position: relative;
            height: 500px;
        }

    .steam-camps-visual img{
        border-radius:20px;
    }
        .camp-features {
            list-style: none;
        }

        .camp-features li {
            padding: 20px 0;
            color: var(--gray);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding-left: 60px;
            font-size: 16px;
        }

        .camp-features li:last-child {
            border-bottom: none;
        }

        .camp-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20px;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--darker);
            font-size: 18px;
        }

        .camp-features li:nth-child(1)::before {
            content: '🎯';
        }

        .camp-features li:nth-child(2)::before {
            content: '📚';
        }

        .camp-features li:nth-child(3)::before {
            content: '🏆';
        }

        .camp-features li:nth-child(4)::before {
            content: '💻';
        }

        .camp-features strong {
            color: var(--light);
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .diy-kits-section {
            padding: 120px 0;
            background: var(--gradient-dark);
        }

        .diy-kits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .kits-visual {
            position: relative;
            height: 500px;
        }

        .kits-display {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--darker), #121a2d);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 227, 248, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .kit-grid {
            width: 80%;
            height: 80%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 15px;
        }

        .kit-item {
            background: rgba(0, 227, 248, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(0, 227, 248, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .kit-item:hover {
            background: rgba(0, 227, 248, 0.2);
            transform: translateY(-10px) scale(1.05);
            border-color: var(--brain-cyan);
        }

        .kit-icon {
            font-size: 24px;
            color: var(--brain-cyan);
            margin-bottom: 10px;
        }

        .kit-label {
            font-size: 12px;
            color: var(--gray);
            text-align: center;
            padding: 0 5px;
        }

        .diy-features {
            list-style: none;
        }

        .diy-features li {
            padding: 20px 0;
            color: var(--gray);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding-left: 60px;
            font-size: 16px;
        }

        .diy-features li:last-child {
            border-bottom: none;
        }

        .diy-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20px;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(0, 227, 248, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brain-cyan);
            font-size: 18px;
        }

        .diy-features li:nth-child(1)::before {
            content: '18+';
            font-weight: 800;
            font-size: 16px;
        }

        .diy-features li:nth-child(2)::before {
            content: '🎮';
        }

        .diy-features li:nth-child(3)::before {
            content: '🔧';
        }

        .diy-features li:nth-child(4)::before {
            content: '🧠';
        }

        .diy-features strong {
            color: var(--light);
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .impact-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .impact-stat {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(0, 227, 248, 0.1);
            transition: all 0.3s ease;
        }

        .impact-stat:hover {
            border-color: var(--brain-cyan);
            transform: translateY(-10px);
            box-shadow: var(--shadow-neuro);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: var(--darker);
        }

        .stat-number {
            font-size: 48px;
            color: var(--brain-cyan);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.4;
        }

        .implementation-section {
            padding: 120px 0;
            background: var(--gradient-dark);
        }

        .implementation-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .implementation-step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(0, 227, 248, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .implementation-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .implementation-step:hover {
            transform: translateY(-10px);
            border-color: var(--brain-cyan);
            box-shadow: var(--shadow-neuro);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 24px;
            color: var(--darker);
            font-weight: 800;
        }

        .implementation-step h3 {
            font-size: 22px;
            color: var(--light);
            margin-bottom: 15px;
        }

        .implementation-step p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }

        .cta-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--darker) 0%, #121a2d 100%);
        }

        .consultation-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: var(--dark);
            border-radius: 24px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            border: 1px solid rgba(0, 227, 248, 0.2);
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--brain-cyan);
            color: var(--darker);
            transform: rotate(90deg);
        }

        .modal-success {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .modal-success i {
            font-size: 64px;
            color: var(--brain-cyan);
            margin-bottom: 20px;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .schools-hero-content {
                gap: 60px;
            }
            
            .schools-hero-text h1 {
                font-size: 52px;
            }
            
            .steam-camps-content,
            .diy-kits-content {
                gap: 60px;
            }
        }
/* === MODAL BACKDROP === */
.consultation-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* === MODAL BOX === */
.modal-content {
    background: #1c1c1c;
    border-radius: 18px;
    width: 100%;
    max-width: 640px;

    /* IMPORTANT FIX */
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* === SCROLLABLE CONTENT === */
#modalForm {
    padding: 35px 30px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Custom scrollbar (optional) */
#modalForm::-webkit-scrollbar {
    width: 6px;
}
#modalForm::-webkit-scrollbar-thumb {
    background: #00e3f8;
    border-radius: 10px;
}

/* === CLOSE BUTTON === */
.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

/* === FORM INPUTS === */
.consultation-form .form-group {
    margin-bottom: 18px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #2b2b2b;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
}

.consultation-form textarea {
    min-height: 90px;
    resize: vertical;
}

/* === BUTTON === */
.consultation-form button {
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
}

        @media (max-width: 992px) {
            .schools-hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }
            
            .hero-visual {
                height: 400px;
            }
            
            .steam-camps-content,
            .diy-kits-content {
                grid-template-columns: 1fr;
            }
            
            .steam-camps-visual,
            .kits-visual {
                height: 400px;
            }
            
            .transition-statement {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .schools-hero-text h1 {
                font-size: 42px;
            }
            
            .schools-hero-text .subtitle {
                font-size: 20px;
            }
            
            .offering-title {
                font-size: 24px;
            }
            
            .camp-features li,
            .diy-features li {
                padding-left: 50px;
            }
            
            .camp-features li::before,
            .diy-features li::before {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .schools-hero-text h1 {
                font-size: 36px;
            }
            
            .hero-visual {
                height: 400px;
            }
            
            .offerings-grid {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .impact-stats {
                grid-template-columns: 1fr;
            }
            
            .implementation-steps {
                grid-template-columns: 1fr;
            }
            
            .steam-camps-visual,
            .kits-visual {
                height: 300px;
            }
        }
  