/* Banner Section Styling */
.banner {
    width: 100%;
    background: #E6E7E9;
    border-radius: 15px;
    padding: 5rem 0;
    position: relative;
    color: #fff;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.banner .row {
    position: relative;
    z-index: 2;
}

.welcomtext {
    color: #ff6800;
    font-weight: 800;
    font-size: 50px;
}

.big-heading {
    color: #ff6800;
    font-size: 89px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: system-ui;
}
.headerp {
    color: #ff6800;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.marquee-container {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    margin-top: 20px;
    border-radius: 5px;
}

.marquee-content {
    color: #fff;
    font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .banner {
        padding: 3rem 0;
    }
    
    .welcomtext {
        font-size: 2rem;
    }
    
    .big-heading {
        font-size: 2.5rem;
    }
    
    .headerp {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .banner {
        padding: 2rem 0;
    }
    
    .welcomtext {
        font-size: 1.8rem;
    }
    
    .big-heading {
        font-size: 2.2rem;
    }
}


 .about-hero {
        background-color: #ff6900;
        border-radius: 15px;
        padding: 60px 0;
        margin-bottom: 50px;
    }
    .about-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        color: white;
        font-family: cursive;
    }
    .about-hero p {
        color: white;
        font-size: 1.2rem;
    }
    .about-section {
        margin-bottom: 60px;
    }
    .about-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    .about-image img {
        width: 100%;
        height: auto;
    }
    .team-member {
        text-align: center;
        margin-bottom: 30px;
    }
    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 5px solid #f8f9fa;
    }
    .team-member h4 {
        margin-bottom: 5px;
    }
    .team-member p {
        color: #6c757d;
    }
    .stats-box {
        text-align: center;
        padding: 30px 15px;
        border-radius: 10px;
        background-color: #f8f9fa;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    .stats-box:hover {
        transform: translateY(-10px);
    }
    .stats-box i {
        font-size: 2.5rem;
        color: #ff6900;
        margin-bottom: 15px;
    }
    .stats-box h3 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: #ff6900;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }
    .timeline-container {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    .timeline-container::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        right: -13px;
        background-color: white;
        border: 4px solid #ff6900;
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    .left {
        left: 0;
    }
    .right {
        left: 50%;
    }
    .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid #f8f9fa;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent #f8f9fa;
    }
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid #f8f9fa;
        border-width: 10px 10px 10px 0;
        border-color: transparent #f8f9fa transparent transparent;
    }
    .right::after {
        left: -12px;
    }
    .timeline-content {
        padding: 20px 30px;
        background-color: #f8f9fa;
        position: relative;
        border-radius: 6px;
    }
    @media screen and (max-width: 768px) {
        .timeline::after {
            left: 31px;
        }
        .timeline-container {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        .timeline-container::before {
            left: 60px;
            border: medium solid #f8f9fa;
            border-width: 10px 10px 10px 0;
            border-color: transparent #f8f9fa transparent transparent;
        }
        .left::after, .right::after {
            left: 18px;
        }
        .right {
            left: 0%;
        }
    }
