﻿.top-bar {
    background-color: #003459;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
        margin-left: 10px;
    }

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 5px;
}
/* Normal dropdown hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

/* Submenu styling */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        top: 0;
        left: 100%;
        margin-left: 0.1rem;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease-in-out;
    }

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.navbar {
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #f66401;
}

.logo-subtext {
    font-size: 12px;
    color: #000;
}

footer {
    background-color: #003459;
}

    footer .footer-link {
        color: #ffffff;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }

        footer .footer-link:hover {
            color: #FFD700; /* Golden hover */
            padding-left: 5px;
        }

    footer .social-icons a {
        display: inline-block;
        margin-right: 10px;
        font-size: 18px;
        color: #ffffff;
        transition: all 0.3s ease;
    }

        footer .social-icons a:hover {
            color: #FFD700;
            transform: scale(1.2);
        }

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* About Section */
.about-section {
    
    padding: 60px 0;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-btn {
    display: inline-block;
    background: #fff;
    color: #1A2980;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .about-btn:hover {
        background: #26D0CE;
        color: #fff;
        transform: translateY(-3px);
    }

/* Vision Mission Values Section */
.vmv-section {
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.section-title p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Card */
.vmv-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

    .vmv-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0, 180, 216, 0.5);
    }

/* Icons */
.vmv-icon {
    font-size: 3rem;
    color: #00E0FF;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vmv-card:hover .vmv-icon {
    color: #FFD166;
    transform: rotate(10deg) scale(1.1);
}

.vmv-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.vmv-card p,
.vmv-card ul {
    font-size: 1rem;
    line-height: 1.7;
}

.vmv-card ul {
    padding-left: 0;
    list-style: none;
}

    .vmv-card ul li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }

        .vmv-card ul li::before {
            content: "✔";
            color: #00E0FF;
            position: absolute;
            left: 0;
            font-size: 0.9rem;
        }


/* Section Common */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003459;
}

.section-title p {
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    line-height: 1.7;
}

/* What We Do */
.what-section {
    background: #f5faff;
    padding: 80px 0;
}

    .what-section .intro-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 15px;
        color: #333;
    }

/* Our Projects */
.projects-section {
    background: linear-gradient(135deg, #003459, #00b4d8);
    padding: 80px 0;
    color: #fff;
}

.project-card {
    background: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

    .project-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0, 180, 216, 0.6);
        background: rgba(255,255,255,0.15);
    }

.project-icon {
    font-size: 3rem;
    color: #00E0FF;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    color: #FFD166;
    transform: scale(1.2);
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.project-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: 50px;
    background: #fff;
    color: #003459;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .project-btn:hover {
        background: #FFD166;
        color: #003459;
    }
.contact-section {
    position: relative;
}

    .contact-section h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #FFD166;
    }

    .contact-section p {
        font-size: 1rem;
        line-height: 1.7;
        color: #f0f0f0;
    }

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #fff;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
}

    .contact-form .form-control::placeholder {
        color: rgba(255,255,255,0.7);
    }

.contact-form .btn {
    background: #FFD166;
    border: none;
    color: #003459;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .contact-form .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

.education-section {
    padding: 60px 0;
}

.education-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003459;
    background-color: white;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

    .education-heading::after {
        content: "";
        width: 80px;
        height: 4px;
        display: block;
        margin: 12px auto 0;
        border-radius: 2px;
    }

.education-box {
    border-radius: 12px;
    padding: 30px;
    background-color: #003459;
    margin-bottom: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}

    .education-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.education-values li {
    margin-bottom: 10px;
    font-weight: 500;
}

.education-objectives li {
    margin-bottom: 8px;
    line-height: 1.6;
}