/* ================== Global Reset ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ================== Navbar & Header ================== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    height: 80px;
}

/* Logo */
.navbar .logo img {
    height: 60px;
    transition: transform 0.3s ease-in-out;
}

.navbar .logo img:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: rgb(10, 15, 112);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #031257;
    text-decoration: underline;
}

/* Contact Info */
.contact-info a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: #031257;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.contact-info a:hover {
    background: #002147;
}

/* ================== Mobile Navigation (Responsive) ================== */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(10, 15, 112);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        display: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 10px;
    }

    nav ul.active {
        display: flex;
    }

    .contact-info {
        margin-top: 10px;
    }

    .contact-info a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }

    .navbar .logo img {
        height: 50px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .contact-info a {
        font-size: 14px;
        padding: 8px 15px;
    }
}


/* ================== About Us Section ================== */
.about-us {
    padding: 80px 5%;
    text-align: center;
    background: #ffffff;
    margin: 120px auto 40px;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    max-width: 1200px;
}

.about-us h1 {
    font-size: 42px;
    font-weight: bold;
    color: #180670;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

/* ================== Content Section ================== */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 40px;
    border-radius: 15px;
}

/* Left Content */
.left-content {
    flex: 1;
    text-align: left;
    max-width: 50%;
}

.left-content h2 {
    font-size: 34px;
    color: #0056b3;
    font-weight: bolder;
    line-height: 50px;
    margin-bottom: 15px;
}

.left-content h5 {
    font-size: 18px;
    color: #061745;
    font-weight: bold;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Right Content - Image */
.right-content {
    flex: 1;
    text-align: center;
    max-width: 50%;
}

.right-content img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.right-content img:hover {
    transform: scale(1.05);
}

/* ================== Why Choose Us Section ================== */
.right-content1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 5%;
    text-align: left;
}

.right-content1 img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.right-content1 img:hover {
    transform: scale(1.05);
}

.right-content1 div {
    flex: 1;
    padding: 20px;
}

.right-content1 h2 {
    font-size: 30px;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 15px;
}

.right-content1 p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* ================== Mission & Vision Section ================== */
.mission-vision {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 80px 5%;
    text-align: center;
    border-radius: 15px;
    animation: slideUp 1s ease-in-out;
}

.mission, .vision {
    flex: 1;
    padding: 40px;
    color: #0032a5;
    background-color: #f2f3fc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    max-width: 500px;
}

.mission:hover, .vision:hover {
    transform: scale(1.05);
}

/* ================== Stats Section ================== */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 5%;
    background: #f9f9fa;
    text-align: center;
}

.stat-item {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
    flex: 1;
    min-width: 200px;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 40px;
    color: #0032a5;
}

.stat-item p {
    font-size: 18px;
    color: #0032a5;
}

.stat-item i {
    font-size: 40px;
    color: #0032a5;
    margin-bottom: 10px;
}

/* ================== Footer Section ================== */
footer {
    background: #060548;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

/* ================== Animations ================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ================== Responsive Design ================== */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .left-content, .right-content {
        max-width: 100%;
    }

    .left-content {
        padding: 0;
    }

    .right-content img {
        max-width: 100%;
    }

    .right-content1 {
        flex-direction: column;
        text-align: center;
    }

    .right-content1 img {
        margin-bottom: 20px;
    }

    .mission-vision {
        flex-direction: column;
        text-align: center;
    }

    .mission, .vision {
        max-width: 100%;
    }

    .stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 5%;
    }

    .about-us h1 {
        font-size: 32px;
    }

    .left-content h2 {
        font-size: 28px;
    }

    .right-content img {
        max-width: 100%;
    }

    .right-content1 h2 {
        font-size: 24px;
    }

    .right-content1 p {
        font-size: 14px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 16px;
    }
}
/* ================== Footer ================== */
footer {
    background: #060548;
    color: white;
    padding: 40px 5%;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
}

.footer-bottom {
    font-size: 14px;
    color: #e0e0e0;
}

/* ================== Animations ================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ================== Responsive Adjustments ================== */
@media (max-width: 1024px) {
    .content, .right-content1 {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
    }

    .footer {
        padding: 30px;
    }
}
