   .top-bar {
            background-color: #0057D8; /* Blue color */
            color: #fff;
            padding: 6px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: #fff;
            margin-left: 10px;
            text-decoration: none;
        }

        .social-icons i {
            margin-left: 12px;
            font-size: 16px;
        }
        /* Default menu style */
.menu-items .nav-link {
    color: #000;          /* Black */
    font-size: 14px; 
    font-weight: 500;
    margin-left: 10px;
    position: relative;
}

/* Hover effect */
.menu-items .nav-link:hover {
    color: #0057D8;       /* Blue */
}

/* Active state: blue + underline */
.menu-items .nav-link.active {
    color: #0057D8;       /* Blue */
    font-weight: 600;
}

.menu-items .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;        /* space below text */
    width: 100%;
    height: 2px;
    background-color: #0057D8;
    border-radius: 2px;
}
.login-btn {
    border: 2px solid #0057D8;
    color: #0057D8 !important;
    padding: 6px 18px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 500;
}

/* On hover: solid blue */
.login-btn:hover {
    background-color: #0057D8;
    color: #fff !important;
}
/* ===== HERO SECTION ===== */
.hero-section {
    width: 100%;
    height: 420px;
    background-image: url('https://cdn.pixabay.com/photo/2016/01/19/15/05/computer-1149148_1280.jpg'); /* replace with your banner */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* dark overlay */
    padding: 40px 0;
    position: relative;
}

/* Text on banner */
.hero-text {
    position: absolute;
    top: 40px;
    left: 40px;
    color: white;
    max-width: 500px;
    color:#330066;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
}

/* Feature Boxes */
.feature-box-container {
    position: absolute;
    bottom: -70px; /* half overlaps outside banner */
    left: 0;
    right: 0;
}

.feature-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    min-height: 260px;     /* key change */
}

.feature-box p {
    font-size: 15px;       /* better readability */
    line-height: 1.6;
    color: #555;
}

.feature-box .icon {
    font-size: 36px;
    color: #0057D8;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
}

 

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 28px; }
    .hero-section { height: 500px; }
    .feature-box-container { bottom: -120px; }
}
/* ===== ABOUT SECTION ===== */

.about-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Title + paragraph */
.about-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002d5c;
}

.about-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Feature items */
.about-features .feature-item {
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 28px;
    color: #0057D8;
    margin-bottom: 5px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}



/* Responsive */
@media (max-width: 768px) {
    .about-title { font-size: 24px; }
    .feature-icon { font-size: 24px; }
}

/* Feature items horizontal layout */
.about-features .feature-item {
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    color: #0057D8;
    margin-right: 15px;
    margin-top: 2px; /* aligns with title */
}

/* Title */
.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Description */
.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
/* ===== STATS SECTION ===== */
.stats-section {
    background: #e8f2ff; /* light blue background */
}

.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.stat-icon {
    font-size: 40px;
    color: #0057D8;
    margin-bottom: 10px;
}

.stat-count {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #002d5c;
}

.stat-title {
    font-size: 15px;
    color: #555;
}
/* ===== TESTIMONIAL SECTION ===== */

.testimonial-section {
    background: #f7faff;
}

.testimonial-title {
    font-size: 30px;
    font-weight: 700;
    color: #002d5c;
}

.testimonial-subtitle {
    font-size: 15px;
    color: #777;
}

/* Testimonial Box */
.testimonial-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* ===== NEWS & EVENTS SECTION ===== */
.news-section {
    background: #eef5ff; /* light blue background */
}

.news-title {
    font-size: 34px;
    font-weight: 800;
    color: #002d5c;
}

.news-subtitle {
    font-size: 15px;
    color: #666;
    margin-top: 5px;
}

/* News Boxes */
.news-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.news-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.news-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-heading {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 15px 8px 15px;
}

.news-desc {
    font-size: 14px;
    color: #555;
    padding: 0 15px 20px 15px;
}
/* ===== CONTACT SECTION ===== */

.contact-section {
    background: #f7fbff;
}

.contact-title {
    font-size: 34px;
    font-weight: 800;
    color: #002d5c;
}

.contact-subtitle {
    color: #666;
    margin-top: 5px;
    font-size: 15px;
}

/* Map styling */
.map-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Contact form */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.contact-input {
    padding: 12px;
    border-radius: 8px;
}

.contact-btn {
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
}
/* Fullwidth map section */
.map-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-fullwidth iframe {
    width: 100%;
    display: block;
}
/* ===== FOOTER SECTION ===== */

.footer-section {
    background: #0d1b2a;
    color: #fff;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    color: #d2d9e5;
    font-size: 14px;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d2d9e5;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #d2d9e5;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    background: #0a1622;
    padding: 12px 0;
    color: #c8d0dc;
    font-size: 14px;
}
.about-image {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================================
   MOBILE RESPONSIVE FIXES (CSS ONLY)
   KEEP ORIGINAL HTML AS-IS
========================================= */

@media (max-width: 768px) {

    /* ===== HERO SECTION ===== */
    .hero-section {
        height: auto;                /* allow content to define height */
    }

    .hero-overlay {
        padding: 40px 0 20px;
    }

    .hero-text {
        position: relative;          /* remove absolute on mobile */
        top: auto;
        left: auto;
        padding: 20px;
        text-align: center;
        color: #fff;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* ===== FEATURE BOX OVERLAP FIX ===== */
    .feature-box-container {
        position: static;            /* 🔥 stop overlapping */
        margin-top: 25px;
    }

    .feature-box {
        min-height: auto;            /* allow natural height */
        padding: 20px;
    }

    /* ===== ABOUT SECTION ===== */
    .about-image {
        margin-bottom: 25px;
    }

    .about-title {
        font-size: 24px;
    }

    /* ===== FEATURE ITEMS ===== */
    .about-features .feature-item {
        flex-direction: row;
    }

    /* ===== STATS SECTION ===== */
    .stat-box {
        margin-bottom: 15px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-box {
        margin-bottom: 20px;
    }

    /* ===== NEWS ===== */
    .news-box {
        margin-bottom: 20px;
    }

    /* ===== CONTACT ===== */
    .contact-form-box {
        padding: 20px;
    }
}


/* =========================================
   DESKTOP-ONLY ENHANCEMENTS (UNCHANGED LOOK)
========================================= */

@media (min-width: 992px) {

    /* Restore hero text positioning */
    .hero-text {
        position: absolute;
        top: 40px;
        left: 40px;
        text-align: left;
    }

    /* Restore feature box overlap */
    .feature-box-container {
        position: absolute;
        bottom: -70px;
    }
}
.member-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #e8f2ff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.member-img:hover {
    transform: scale(1.05);
}

.member-name {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #002d5c;
}

.member-role {
    font-size: 13px;
    color: #666;
    margin: 0;
}
