html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fa;
    padding-top: 76px;
}
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}

.hero-slider {
    scroll-margin-top: 0;
}

/* Container */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: auto;
    width: auto;
    max-height: 48px;
    max-width: 150px;
    object-fit: contain;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
    color: #6a0dad;
}

nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 76px);
    overflow: hidden;
    background: #000;
    z-index: 1;
    scroll-margin-top: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.slide-content {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
    padding: 20px;
    box-sizing: border-box;
}

.slide-content h1 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: none;
    font-size: 28px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}
/* About Section */
.about {
    padding: 100px 20px;
    text-align: center;
    background: white;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 80px;
}

.about p {
    max-width: 700px;
    margin: 10px auto;
    line-height: 1.6;
    color: #333;
}

/* Vision Section */
.vision {
    padding: 80px 20px;
    background: #f9f9f9;
}

.vision-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 32px;
    color: #6a0dad;
    margin-bottom: 10px;
}

.vision-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.vision-points {
    list-style: none;
    padding: 0;
}

.vision-points li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.vision-image {
    flex: 1;
    text-align: center;
}

.vision-image img {
    width: 100%;
    max-width: 400px;
}
/* IEP Section */
.iep {
    padding: 80px 20px;
    background: #ffffff;
}

.iep-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.iep-intro-image {
    flex: 1;
    text-align: center;
}

.iep-intro-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
}

.iep-intro-text {
    flex: 1;
}

.iep-intro-text h2 {
    font-size: 32px;
    color: #6a0dad;
    margin-bottom: 10px;
}

.iep-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.iep-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* IEP Grid */
.iep-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.iep-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.iep-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.iep-card p,
.iep-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.iep-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.iep-card li {
    margin-bottom: 10px;
}

.iep-table {
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.iep-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.iep-table-row div {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 15px;
    line-height: 1.5;
}

.iep-table-row div:last-child {
    border-right: none;
}

.iep-table-row:last-child div {
    border-bottom: none;
}

.iep-table-head {
    background: #6a0dad;
    color: #fff;
    font-weight: bold;
}

.iep-table-head div {
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .iep-intro {
        flex-direction: column;
        text-align: center;
    }

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

    .iep-intro-image img {
        max-width: 100%;
    }

    .iep-table-row {
        grid-template-columns: 1fr;
    }

    .iep-table-row div {
        border-right: none;
    }
}
/* AEI Section */
.aei {
    padding: 80px 20px;
    background: #f9f9f9;
}

.aei-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.aei-intro-text {
    flex: 1;
}

.aei-intro-text h2 {
    font-size: 32px;
    color: #6a0dad;
    margin-bottom: 10px;
}

.aei-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.aei-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.aei-intro-image {
    flex: 1;
    text-align: center;
}

.aei-intro-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
}

/* AEI Grid */
.aei-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.aei-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.aei-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.aei-card p,
.aei-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.aei-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.aei-card li {
    margin-bottom: 10px;
}

.full-width {
    grid-column: 1 / -1;
}

.highlight-card {
    background: linear-gradient(135deg, #f4ebff, #eef4ff);
    border: 1px solid #e2d4ff;
}

/* AEI Table */
.aei-table {
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.aei-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.aei-table-row div {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 15px;
    line-height: 1.5;
}

.aei-table-row div:last-child {
    border-right: none;
}

.aei-table-row:last-child div {
    border-bottom: none;
}

.aei-table-head {
    background: #6a0dad;
    color: #fff;
    font-weight: bold;
}

.aei-table-head div {
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .aei-intro {
        flex-direction: column;
        text-align: center;
    }

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

    .full-width {
        grid-column: auto;
    }

    .aei-intro-image img {
        max-width: 100%;
    }

    .aei-table-row {
        grid-template-columns: 1fr;
    }

    .aei-table-row div {
        border-right: none;
    }
}
/* Smart World Section */
.smart-world {
    padding: 80px 20px;
    background: #ffffff;
}

.smart-world h2 {
    color: #6a0dad;
    margin-bottom: 20px;
}
/* Services Section */
.services {
    padding: 80px 20px;
    background: #f4f8fb;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    color: #6a0dad;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Grid */
.services-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Cards */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.service-card ul {
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
}
/* Creator Section */
.creator-services {
    padding: 80px 20px;
    background: #f8f9fc;
}

.creator-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.creator-text {
    flex: 1;
}

.creator-text h2 {
    font-size: 32px;
    color: #6a0dad;
    margin-bottom: 15px;
}

.creator-text p,
.creator-text li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.creator-text ul {
    padding-left: 20px;
    margin-top: 12px;
}

.creator-text li {
    margin-bottom: 10px;
}

.creator-image {
    flex: 1;
    text-align: center;
}

.creator-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 768px) {
    .creator-layout {
        flex-direction: column;
        text-align: center;
    }

    .creator-image img {
        max-width: 100%;
    }

    .creator-text ul {
        text-align: left;
    }

    /* Navbar */
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .logo {
        width: 100%;
        justify-content: flex-start;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
        width: 100%;
    }

    nav a {
        margin-left: 0;
        font-size: 16px;
    }

    /* Slider */
    .hero-slider {
        height: 55vh;
    }

    .slide img {
        object-fit: cover;
        object-position: center;
    }

    .slide-content {
        left: 50%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 90%;
        text-align: center;
        padding: 10px;
    }

    .slide-content h1 {
        font-size: 28px;
        line-height: 1.25;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    /* Section layouts */
    .vision-container,
    .split-container,
    .footer-container,
    .services-grid {
        flex-direction: column;
    }

    .vision-text,
    .vision-image,
    .creator-box,
    .services-box,
    .service-card {
        width: 100%;
        min-width: 100%;
    }

    .vision-image img,
    .service-card {
        width: 100%;
    }

    .about,
    .services,
    .creator-services,
    .iep,
    .aei,
    .smart-world,
    .vision {
        padding: 50px 15px;
    }

    .about h2,
    .vision h2,
    .iep h2,
    .aei h2,
    .smart-world h2,
    .services h2,
    .creator-box h2,
    .services-box h2 {
        font-size: 26px;
    }

    .about p,
    .vision-text p,
    .vision-text li,
    .service-card li,
    .creator-box li,
    .services-box li {
        font-size: 16px;
        line-height: 1.6;
    }
}
/* Footer */
.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background: #09161c;
    font-size: 14px;
}

/* 👇 ADD MOBILE CODE HERE (LAST PART OF FILE) */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 22px;
    }

    .slide-content {
        bottom: 8%;
    }
}
/* Fix creator full width after removing services */
.creator-box {
    width: 100%;
}
/* Smart World Redesign */
.smart-world {
    padding: 80px 20px;
    background: #ffffff;
}

.smart-world-header {
    text-align: center;
    margin-bottom: 40px;
}

.smart-world-header h2 {
    font-size: 36px;
    color: #6a0dad;
    margin-bottom: 10px;
}

.smart-world-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.smart-world-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 35px;
}

.smart-world-intro-text,
.smart-card {
    background: #f8f9fc;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.smart-world-intro-text h3,
.smart-card h3 {
    color: #222;
    margin-bottom: 15px;
    font-size: 24px;
}

.smart-world-intro-text p,
.smart-card p,
.smart-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.smart-world-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.smart-world-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.smart-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.smart-card li {
    margin-bottom: 10px;
}

.full-width {
    grid-column: 1 / -1;
}

.highlight-card {
    background: linear-gradient(135deg, #f4ebff, #eef4ff);
    border: 1px solid #e2d4ff;
}

.smart-table {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.smart-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.smart-table-row div {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 15px;
    line-height: 1.5;
}

.smart-table-row div:last-child {
    border-right: none;
}

.smart-table-row:last-child div {
    border-bottom: none;
}

.smart-table-head {
    background: #6a0dad;
    color: #fff;
    font-weight: bold;
}

.smart-table-head div {
    color: #fff;
}

@media (max-width: 992px) {
    .smart-world-intro,
    .smart-world-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .smart-world {
        padding: 50px 15px;
    }

    .smart-world-header h2 {
        font-size: 28px;
    }

    .smart-world-subtitle {
        font-size: 16px;
    }

    .smart-world-intro-text h3,
    .smart-card h3 {
        font-size: 22px;
    }

    .smart-table-row {
        grid-template-columns: 1fr;
    }

    .smart-table-row div {
        border-right: none;
    }
}
/* AEI Redesign */
.aei {
    padding: 80px 20px;
    background: #f8fbff;
}

.aei-header {
    text-align: center;
    margin-bottom: 40px;
}

.aei-header h2 {
    font-size: 36px;
    color: #6a0dad;
    margin-bottom: 10px;
}

.aei-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.aei-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 35px;
}

.aei-intro-text,
.aei-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.aei-intro-text h3,
.aei-card h3 {
    color: #222;
    margin-bottom: 15px;
    font-size: 24px;
}

.aei-intro-text p,
.aei-card p,
.aei-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.aei-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.aei-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.aei-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.aei-card li {
    margin-bottom: 10px;
}

.full-width {
    grid-column: 1 / -1;
}

.aei-table {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.aei-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.aei-table-row div {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 15px;
    line-height: 1.5;
}

.aei-table-row div:last-child {
    border-right: none;
}

.aei-table-row:last-child div {
    border-bottom: none;
}

.aei-table-head {
    background: #6a0dad;
    color: #fff;
    font-weight: bold;
}

.aei-table-head div {
    color: #fff;
}

@media (max-width: 992px) {
    .aei-intro,
    .aei-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .aei {
        padding: 50px 15px;
    }

    .aei-header h2 {
        font-size: 28px;
    }

    .aei-subtitle {
        font-size: 16px;
    }

    .aei-intro-text h3,
    .aei-card h3 {
        font-size: 22px;
    }

    .aei-table-row {
        grid-template-columns: 1fr;
    }

    .aei-table-row div {
        border-right: none;
    }
}
/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f8f9fc;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #6a0dad;
}

.contact p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.contact-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}
/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #f8f9fc;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #6a0dad;
}

.contact p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

.contact-info,
.contact-form {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #222;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info a {
    color: #6a0dad;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9d9e3;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6a0dad;
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.08);
}

.contact-btn {
    display: inline-block;
    background: #6a0dad;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-btn:hover {
    background: #58108f;
}

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

    .contact {
        padding: 50px 15px;
    }

    .contact h2 {
        font-size: 28px;
    }
}
/* Vision Section */
.vision {
    padding: 80px 20px;
    background: #f9f9f9;
}

/* ... all your vision CSS ... */


/* ✅ ADD THIS AT THE END */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-image img {
        max-width: 100%;
    }
}
/* ===== NEW HERO TEXT (LEFT STYLE) ===== */
.hero-content.left {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    text-align: left;
    z-index: 2;
}

.hero-content.left h1 {
    font-size: 36px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
}

.hero-content.left h1 span {
    color: #00d4ff;
}

.hero-content.left p {
    margin-top: 15px;
    font-size: 18px;
    color: #ddd;
}

.hero-author {
    margin-top: 15px;
    font-size: 14px;
    color: #bbb;
}
.quote-section h5 {
    margin-top: 5px;
    font-size: 13px;
    color: #999;
    font-weight: 400;
}
