.hero-banner {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    /* Replace URL with your actual background image path */
    /* background: linear-gradient(rgba(0, 51, 153, 0.8), rgba(0, 51, 153, 0.8)), url('world-map-bg.jpg'); */
    background: linear-gradient(rgb(24 24 24), rgb(225 11 11)), url(world-map-bg.jpg);
    background-size: cover;
    /* background-position: center; */
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}


/* stats section */
/* Section Background */
.stats-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Arial', sans-serif;
}

/* The White Floating Card */
.stats-card {
    background: #ffffff;
    display: flex;
    width: 100%;
    max-width: 1100px;
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
}

/* Individual Stat Columns */
.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #eeeeee; /* Vertical dividers */
    padding: 10px 20px;
}

/* Remove border from the last item */
.stat-item.no-border {
    border-right: none;
}

/* Typography */
.stat-number {
    color: #e10b0b; /* The primary blue color */
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.stat-label {
    color: #777777;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 768px) {
    .stats-card {
        flex-direction: column;
        padding: 20px 0;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding: 30px 0;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}



/* about section */
.about-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Left Side Styling --- */
.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-accent-box {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #ffcece; /* Light blue box shown in image */
    border-radius: 15px;
    left: 0;
    z-index: 1;
}

.image-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Right Side Styling --- */
.about-text-content {
    flex: 1.2;
}

.sub-heading {
    color: #cc0000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.description strong {
    color: #333;
}

/* --- The Quote Box --- */
.quote-box {
    border-left: 4px solid #e10b0b; /* Blue vertical line */
    background-color: #f8faff;
    padding: 20px 25px;
    margin-top: 30px;
}

.quote-box p {
    font-style: italic;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: left;
    }
    
    .red-accent-box {
        width: 150px;
        height: 150px;
    }
}



/* journey seciotn */
.journey-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.container-j {
    max-width: 1100px;
    margin: 0 auto;
}

/* Typography */
.sub-heading {
    color: #cc0000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
}

/* Timeline Layout */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

/* The horizontal grey line */
.timeline-line {
    position: absolute;
    top: 55px; /* Aligns with the center of the dots */
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.timeline-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-item {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Blue Circle Markers */
.dot {
    width: 30px;
    height: 30px;
    background-color: #e10b0b;
    border: 4px solid #fff; /* White ring effect */
    border-radius: 50%;
    box-shadow: 0 0 0 2px #e10b0b; /* Outer blue glow */
    margin-bottom: 25px;
}

.year {
    color: #e10b0b;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 200px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .timeline-line {
        display: none; /* Hide horizontal line on mobile */
    }
    .timeline-grid {
        flex-direction: column;
        gap: 40px;
    }
    .timeline-item {
        max-width: 100%;
    }
    .description {
        max-width: 100%;
    }
}



/* values section  */
.values-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px; /* Space between the two columns */
}

/* --- Left Column Styling --- */
.mission-details {
    flex: 1.2;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 25px;
}

.body-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Right Column: The Card --- */
.values-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #cc0000; /* Distinctive Red Left Border */
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.card-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.values-list li:last-child {
    margin-bottom: 0;
}

/* The Red Star Bullets */
.star {
    color: #cc0000;
    font-size: 1.4rem;
    margin-right: 15px;
}

/* Responsive Handling */
@media (max-width: 992px) {
    .values-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .values-card {
        width: 100%;
        padding: 40px 30px;
    }
}



/* leadership-section */

/* Section Styling */
.leadership-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
}

/* Grid Layout */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.leader-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.leader-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Circular Icons */
.profile-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.bg-red { background-color: #cc0000; }
.bg-black { background-color: #000000; }
.bg-grey { background-color: #666666; }

/* Text Elements */
.leader-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.leader-role {
    color: #cc0000;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: block;
}

.leader-bio {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}




/* why webby acad */
/* Section Background & Layout */
.why-webbyacad {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content Side */
.content-side {
    flex: 1;
}

.top-label {
    color: #cc0000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.description {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Red CTA Button */
.cta-button {
    display: inline-block;
    background-color: #cc0000;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #a30000;
    color: white;
}

/* Right Stats Grid */
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #111111; /* Slightly lighter than pure black */
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.stat-value {
    color: #cc0000;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
        text-align: center;
    }
    .description {
        margin-left: auto;
        margin-right: auto;
    }
    .stats-grid {
        width: 100%;
    }
}