
    /* Navbar Logo */
.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo a{
    display:flex;
    align-items:center;
}

.logo img{
    display:block;
    width:230px;       /* Desktop */
    max-width:100%;
    height:70px;       /* Fixed height */
    object-fit:contain;
    object-position:left center;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.03);
}

/* Laptop */
@media (max-width:1200px){
    .logo img{
        width:210px;
        height:65px;
    }
}

/* Tablet */
@media (max-width:992px){
    .logo img{
        width:190px;
        height:60px;
    }
}

/* Mobile */
@media (max-width:768px){
    .logo img{
        width:165px;
        height:55px;
    }
}

/* Small Mobile */
@media (max-width:576px){
    .logo img{
        width:145px;
        height:48px;
    }
}

    .about-hero{
    padding:90px 8%;
    background:#f8fbff;
    margin-top: 50px;
}

.about-container{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.about-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eaf3ff;
    color:#0a4da3;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h1{
    font-size:52px;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}

.about-content h1 span{
    color:#0a4da3;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.about-btns{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.primary-btn{
    background:#0a4da3;
    color:#fff;
    padding:15px 34px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:#083d84;
}

.secondary-btn{
    border:2px solid #0a4da3;
    color:#0a4da3;
    padding:15px 34px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.secondary-btn:hover{
    background:#0a4da3;
    color:#fff;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:#dcecff;
    border-radius:50%;
    top:-30px;
    left:-30px;
    z-index:0;
}

.about-image img{
    position:relative;
    z-index:2;
    width:100%;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

@media(max-width:992px){

.about-container{
    grid-template-columns:1fr;
    gap:50px;
}

.about-content{
    order:2;
}

.about-image{
    order:1;
}

.about-content h1{
    font-size:36px;
}

.about-btns{
    flex-wrap:wrap;
}

.about-image::before{
    width:180px;
    height:180px;
}

}
