body{
    font-family:Segoe UI;
}

.navbar-brand img{
    width:200px;
    height: 60px;
}
/* .navbar-brand{
    background-color: rgb(205, 235, 255);
} */
 /* Navbar */
.navbar {
    background-color: #fff !important;
}

.navbar .nav-link {
    color: var(--bs-primary) !important;
    font-weight: 700;
    margin-left: 15px;
    transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #0d4a86 !important;
}

.navbar-brand {
    color: var(--bs-primary) !important;
    font-weight: 700;
}

.navbar-toggler {
    border-color: var(--bs-primary);
}

.navbar-toggler-icon {
    filter: invert(24%) sepia(98%) saturate(2200%) hue-rotate(205deg);
}

.hero-img{
    height:350px;
    object-fit:cover;
}


.corporate-card{
    border:0;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.3s;
}
.title-underline{
    width:100px;
    height:4px;
    margin:10px auto 0;
    border-radius:50px;
    background:linear-gradient(90deg,#dc3545,#ff7b7b);
}
.corporate-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.corporate-card img{
    width:100%;
    height:240px;      
    object-fit:cover;  
}

.corporate-card .card-body{
    padding:15px;
}

.corporate-card h5{
    color:#0d6efd;
    font-weight:600;
    margin:0;
}

.partner-section{
    background:#fff;;
    padding:80px 0;
    overflow:hidden;
}

.title-line{
    width:100px;
    height:4px;
    background:#dc3545;
    margin:12px auto 0;
    border-radius:50px;
}

/* Tablet */
@media (max-width:768px){
    .title-line{
        width:80px;
        height:3px;
    }
}

/* Mobile */
@media (max-width:576px){
    .title-line{
        width:60px;
        height:3px;
    }

    h3{
        font-size:1.8rem;
    }
}

.partner-card{
    min-width:180px;
    /* background:#1269c0; */
    background:#1377fa;
    color:white;
    text-align:center;
    padding:25px;
    border-radius:10px;
    font-weight:bold;
}

/* Contact Us */

.contact-card{
    border:1px solid #dee2e6;
    border-radius:18px;
    padding:20px;
    margin-bottom:22px;
    transition:.3s;
    background:#fff;
}

.contact-card:hover{
    box-shadow:0 .5rem 1rem rgba(0,0,0,.08);
}

.icon-box{
    width:48px;
    height:48px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}

.icon-location{
    background:#eafaf4;
    color:#ff1346;
}

.icon-phone{
    background:#eafaf4;
    color:#ff1346;
}

.icon-email{
    background:#f5ebff;
    color:#ff1346;
}

.contact-title{
    font-size:24px;
    font-weight:700;
    color:#0b1c39;
    margin-bottom:8px;
}

.contact-text{
    font-size:18px;
    color:#334155;
    line-height:1.8;
}

@media(max-width:768px){

.contact-title{
    font-size:20px;
}

.contact-text{
    font-size:16px;
}

}



@keyframes moveLeft{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }

}
 /* about code */
.about-box{
    border:3px solid transparent;
    border-radius:20px;
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg,#dc3545,#0d6efd) border-box;
    padding:50px 30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.footer{
    background:#0261dd;
    color:white;
    padding:50px 0;
}

.footer a{
    color:white;
    text-decoration:none;
}

.footer ul{
    list-style:none;
    padding:0;
}
