﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.top-bar {
    background: #004700;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
}

.top-contact i {
    margin-right: 6px;
}

.top-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: .3s;
}

    .top-social a:hover {
        color: white;
    }

/* Mobile */
@media (max-width:768px) {
    .top-bar .d-flex {
        justify-content: center !important;
        text-align: center;
        gap: 8px;
    }

    .top-social {
        width: 100%;
    }

        .top-social a {
            margin: 0 8px;
        }
}

.custom-navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
    padding: 12px 0;
}

.logo{
    height:100px;
    width:auto;
    object-fit:contain;
}
.navbar-brand {
    color:#023020 !important; /* Orange */
    font-size: 28px;
    font-weight: 700;
    padding:0;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    transition: .3s;
}

    .nav-link:hover,
    .nav-link.active {
        color: #0A3D62 !important; /* Navy Blue */
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        left: 0;
        bottom: -5px;
        background: #004700; /* Orange underline */
        transition: .3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

.btn-success {
    background: linear-gradient(to right,#FF6F00,#FF9800);
    border: none;
    font-weight: 600;
    color: #fff;
}

    .btn-success:hover {
        transform: translateY(-2px);
    }

.navbar-toggler {
    border: none;
    font-size: 28px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.contact-banner {
    background: linear-gradient( rgba(0,48,101,.75), rgba(0,48,101,.75) ), url('img/banner.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    height: 400px;
}

    .contact-banner h1 {
        font-size: 48px;
        font-weight: 700;
    }

    .contact-banner p {
        font-size: 18px;
    }

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    height: 100%;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

    .info-box i {
        font-size: 24px;
        color: #FF8C00;
        margin-right: 15px;
    }

.form-control {
    height: 50px;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
}

.contact-btn {
    background: #F28705;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
}

    .contact-btn:hover {
        color: #fff;
    }

@media (max-width:768px) {

    .contact-banner {
        padding: 80px 0;
    }

        .contact-banner h1 {
            font-size: 32px;
        }

        .contact-banner p {
            font-size: 15px;
        }

    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

.footer-section {
    background: #003065;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 30px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FF8C00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #FF8C00;
            padding-left: 5px;
        }

.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        background: #FF8C00;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 8px;
        text-decoration: none;
        transition: .3s;
    }

        .social-icons a:hover {
            transform: translateY(-3px);
        }

.footer-section hr {
    border-color: rgba(255,255,255,.2);
    margin: 25px 0;
}

.copyright {
    font-size: 14px;
}

/* Mobile */

@media (max-width:768px) {

    .footer-section {
        text-align: center;
        padding: 40px 0 15px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-heading {
        margin-top: 10px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.about-banner {
    background: linear-gradient( rgba(0,48,101,.75), rgba(0,48,101,.75)), url('img/banner.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
}

    .about-banner h1 {
        font-size: 50px;
        font-weight: 700;
    }

.section-title {
    color: #003065;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-points div {
    margin-bottom: 12px;
    font-weight: 500;
}

.about-points i {
    color:#004700;
    margin-right: 10px;
}

.mission-section {
    background: #f8f9fa;
}

.mission-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    height: 100%;
}

    .mission-box i {
        font-size: 45px;
        color: #004700;
        margin-bottom: 15px;
    }

.why-box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .why-box:hover {
        transform: translateY(-5px);
    }

    .why-box i {
        font-size: 40px;
        color: #004700;
        margin-bottom: 15px;
    }

@media (max-width:768px) {
    .about-banner

{
    padding: 80px 0;
}

.about-banner h1 {
    font-size: 32px;
}

.section-title {
    text-align: center;
}

.about-section {
    text-align: center;
}

.about-points {
    text-align: left;
    margin-top: 20px;
}

.mission-box,
.why-box {
    padding: 20px;
}
}
.carousel-item img{
    height: 100%;
    max-height:480px;
    object-fit: cover;
}

@media (max-width:768px){
    .carousel-item img{
        height: 250px;
    }
}
.navbar{
    background:#fff;
    padding:10px 0;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo img{
    height:80px;
}

.navbar-nav .nav-link{
    font-weight:600;
    color:#333;
}

.register-btn{
    background:#2E7D32;
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
}
.brand-text h5{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#2c3e50;
    white-space:nowrap;
}

@media (max-width:768px){
    .brand-text h5{
        font-size:16px;
    }
}

@media (max-width:480px){
    .brand-text h5{
        display:none;
    }
}