body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    color: #333;
    scroll-behavior: smooth;
}


/* Hero Section */
#hero-section {
    width: 100%;
    max-width: none;
}

.hero-content {
    background-image: url(../img/banner1.jfif);
    /* Default image */
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

    padding: 40px 0 10px;
    text-align: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content p {
    font-size: 24px;
    font-weight: 400;
    width: 800px;
    justify-self: center;
    margin-bottom: 30px;
    color: #fff;
}

.cta-button {
    background: linear-gradient(120deg, #65a0ff 0%, #77d4ff 100%);
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #e68900;
}

#video-section {
    text-align: center;
    width: 100vw;
    max-width: none;
    padding: 40px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#video-section h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
}

#video-section iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Section Animations */
section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
    margin-bottom: 20px;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h2,
h3 {
    text-align: center;
    color: #333;
    font-weight: 700;
    /* Bold headers */
    margin-top: 15px;
    margin-bottom: 20px;
    height: 40px;
    font-size: 32px;
    /* Larger font size */
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.value-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    /* White background for the box */
    border: 1px solid #ddd;
    /* Light border around the box */
    padding: 30px;
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow effect */
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Enhanced shadow on hover */
}

.value-item img {
    height: 120px;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #555;
    font-weight: 400;
}

section:has(.stat-item) {
    max-width: 1500px;
    justify-content: center;
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s ease;
}

.stat-item p {
    font-size: 20px;
    color: #666;
}

.stat-item h3 {
    font-size: 48px;
    color: #ff9900;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Timeline Section */
.timeline-event {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ff9900;
    transition: transform 0.3s ease;
}

.timeline-event:nth-child(even) {
    background-color: #f4f4f4;
}

.timeline-event:hover {
    transform: translateX(10px);
}

.timeline-event h4 {
    font-size: 26px;
    color: #333;
}

.timeline-event p {
    font-size: 18px;
    color: #666;
}

/* Contact Section */
#contact {
    background-color: white;
    color: #333;
    padding: 50px 0;
    text-align: center;
}

#contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

#contact p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Mission & Vision Section */
#mission-vision .split {
    display: flex;
    justify-content: space-between;
    /* Align the columns side by side */
    max-width: 1200px;
    /* Same width as "Who We Are" section */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Add padding for spacing */
}

#mission-vision .column {
    width: 48%;
    /* Each column takes up nearly half of the available width */
}

#mission-vision h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

#mission-vision p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 768px) {

    .hero-content {
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 18px;
        width: 100%;
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 8px;
        width: 80%;
        margin: 0;
    }

    .cta-button {
        padding: 10px;
        font-size: 12px;
        border-radius: 5px;
    }

    #video-section {
        padding: 30px 10px;
    }

    #video-section h2 {
        font-size: 30px;
        margin: 10px;
    }

    #video-section iframe {
        width: 100%;
        height: 250px;
        border: none;
    }

    #who-we-are p {
        font-size: 15px;
        text-align: justify;
        line-height: 24px;
    }

    #mission-vision .split {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    #mission-vision .column {
        width: 100%;
        text-align: justify;
    }

    #mission-vision .column h3 {
        font-size: 20px;
        height: 20px;
    }

    #mission-vision .column p {
        font-size: 15px;
    }

    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-item img {
        height: 80px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 16px;
    }

    
    /* Section Animations */
    section {
        padding: 30px 20px 0;
        max-width: 1200px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s, transform 1s;
        margin-bottom: 20px;
    }

    section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}