
/* ... Previous styles remain the same ... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
}

.header {
    background: linear-gradient(135deg, #e02c08 0%, #f97b58 100%);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.nav-links a:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: auto; /* Adjust height to fit content */
        width: 250px;
        background: rgba(227, 6, 6, 0.8); /* Changed background color */
        color: white; /* Changed font color */
        backdrop-filter: blur(2.5px);
        flex-direction: column;
        padding: 80px 20px;
        gap: 1.5rem;
        transition: 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        display: flex; /* Show by default */
        visibility: hidden; /* Hide by default */
    }

    .nav-links.active {
        right: 0;
        visibility: visible; /* Show when active */
        z-index: 1001; /* Ensure it is above other content */
    }

    .nav-links.active {
        right: 0;
        display: flex; /* Show when active */
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
@media (max-width: 480px) {
    .nav-links {
        width: 200px;
        padding: 60px 15px;
        gap: 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }

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

    .about-text {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-content {
        font-size: 0.9rem;
    }

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

    .development-subtitle {
        font-size: 1rem;
    }

    .aspect-title {
        font-size: 1rem;
    }

    .aspect-description {
        font-size: 0.8rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-links h3 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

.hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background-color: #fcfeff;
}

.hero-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* New Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}

/* ... Rest of the previous styles ... */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.about-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    padding: 2rem;
}

.about-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #ff6b6b;
}

.about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
}
.features-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #ff6b6b;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #ff6b6b;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .feature-content {
            color: #666;
            line-height: 1.6;
            flex-grow: 1;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .feature-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-list li::before {
            content: "•";
            color: #ff6b6b;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}.features-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ff6b6b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-content {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .nav-links {
        display: none;
    }
}
  /* Development Section Styles */
     /* Development Section Styles */
     .development-section {
        background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
        padding: 6rem 0;
        margin: 4rem 0;
    }

    .development-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .development-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .development-title {
        font-size: 3rem;
        color: #333;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

    .development-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -15px;
        width: 100px;
        height: 3px;
        background: #ff6b6b;
        transform: translateX(-50%);
    }

    .development-subtitle {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.8;
        margin-top: 2rem;
    }

    .development-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        align-items: center;
        margin-top: 4rem;
    }

    .development-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .aspect-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

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

    .aspect-icon {
        font-size: 2.5rem;
        color: #ff6b6b;
        margin-bottom: 0.5rem;
    }

    .aspect-title {
        font-size: 1.4rem;
        color: #333;
        font-weight: bold;
    }

    .aspect-description {
        color: #666;
        line-height: 1.6;
    }

    .development-image {
        position: relative;
        height: 100%;
        min-height: 400px;
        border-radius: 15px;
        overflow: hidden;
    }

    .development-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .highlight-box {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 300px;
        text-align: center;
    }

    .highlight-number {
        font-size: 3rem;
        color: #ff6b6b;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .highlight-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.4;
    }

    @media (max-width: 1200px) {
        .development-grid {
            grid-template-columns: 1 fr;
            gap: 3rem;
        }

        .highlight-box {
            position: static;
            margin-top: 2rem;
            width: 100%;
        }
    }

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

        .development-title {
            font-size: 2.5rem;
        }

        .development-image {
            min-height: 400px;
        }
    }


.aspect-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.aspect-icon {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.aspect-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.aspect-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: #2d3436;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2 fr 1 fr 1 fr;
    gap: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-contact {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ddd;
}

.contact-icon {
    margin-right: 1rem;
    color: #ff6b6b;
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
}

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

    .development-aspects {
        grid-template-columns: 1 fr;
    }

    .footer-content {
        grid-template-columns: 1 fr;
        gap: 2rem;
    }
}
/* styles to Index Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}
.modal-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.close-modal:hover {
    color: #ff6b6b;
}

.modal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8585 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-body {
    padding: 30px;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1 fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
}

.enrollment-cta {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.enrollment-cta h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.enrollment-cta p {
    color: #666;
    margin-bottom: 20px;
}

.enroll-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8585 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.enroll-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        position: absolute;
        overflow-x: hidden;
            overflow-y: auto;
    }
.modal-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
    .feature-highlights {
        grid-template-columns: 1 fr;
        gap: 15px;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .highlight-item {
        padding: 10px;
    }
}
@media (max-width: 600px) {
    .modal-content {
        margin: 5% auto;
        width: 60%;
        position: absolute;
    }
    .modal-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

    .feature-highlights {
        grid-template-columns: 1 fr;
        gap: 7px;
    }

    .modal-header h2 {
        font-size: 1rem;
    }

    .highlight-item {
        padding: 5px;
    }
}
