        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f8f9fa;
        }
        header {
            background-color: #007bff;
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /*.logo {*/
        /*    font-size: 24px;*/
        /*    font-weight: bold;*/
        /*}*/
        nav ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #ffd700;
        }
.hero {
    position: relative;
    width: 100%;
    height: 700px;
    /*padding: 150px 20px 100px;*/
    text-align: center;
    color: white;

    background:
        linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.75),
            rgba(118, 75, 162, 0.75)
        ),
        url('/assets/images/school-dashboard.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

        .hero h1 {
            font-size: 5em;
            margin-bottom: 20px;
            text-align:center;
        }
        .hero p {
            font-size: 2em;
            margin-bottom: 30px;
        }
        .btn {
            background-color: #ffd700;
            color: #333;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #ffed4e;
        }
        .features {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        .feature-section {
            margin-bottom: 60px;
        }
        .feature-section h2 {
            text-align: center;
            color: #007bff;
            margin-bottom: 40px;
            font-size: 2.5em;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .feature-card i {
            font-size: 3em;
            color: #007bff;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            margin-bottom: 15px;
            color: #333;
        }
        .feature-card ul {
            list-style: none;
            padding: 0;
        }
        .feature-card ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .feature-card ul li:before {
            content: '✓';
            color: #28a745;
            position: absolute;
            left: 0;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f5f7fb;
    color: #333;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    background: #007bff;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}
.logo a{
    color: #ffffff!important;
    font-size: 25px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.btn {
    background: #ffd700;
    color: #000;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}


.hero-content {
    color: #fff;
    /*max-width: 700px;*/
    padding: 150px 50px;
    margin: 105px 50px;
 
    
}

/* APPS */
.apps-section {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.apps-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    gap: 40px;
    max-width: 1200px;
    margin: 40px;
}

.app-card {
    background: #f9fbff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-card img {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 15px;
    background: #f7f9fc;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* IMAGE SIDE */
.contact-image {
    background: url('/assets/images/school-dashboard.png') center/contain no-repeat;
    min-height: 800px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.01);
}

/* FORM SIDE */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* FULL WIDTH */
.form-full {
    grid-column: span 2;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* LABELS */
.contact-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #556cd6;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Tablet */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 300px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .contact-form {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: span 1;
    }

    .contact-form h2 {
        font-size: 22px;
    }

    .contact-form p {
        font-size: 14px;
    }
}
/* MOBILE APPS SECTION */
.apps-section {
    padding: 50px 20px;
    background: #f7f9fc;
}

.apps-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* TITLES */
.apps-title {
    text-align: center;
            color: #007bff;
            margin-bottom: 40px;
            font-size: 2.5em;
}

.apps-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* GRID: 6 / 6 */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 6/6 */
    gap: 40px;
}

/* CARD */
.apps-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apps-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.apps-card img {
    max-width: 100%;
    width: 1080px;
    margin-bottom: 25px;
}

/* TEXT */
.apps-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.apps-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

    .apps-grid {
        grid-template-columns: 1fr; /* 12/12 */
    }

    .apps-card {
        padding: 20px 20px;
    }

    .apps-title {
        font-size: 26px;
    }

    .apps-card img {
        max-width: 100%;
        width:500px;
    }
}

