*{
    margin:0;
    padding:0;
}

.navbar{
    background:white;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;
}

.logo img{
    height:90px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:45px;
}

.nav-links a{
    text-decoration:none;
    color:black;
    font-size:18px;
    font-weight:bold;
    font-family:Arial, sans-serif;
}

.nav-links a.active{
    color:black;
}

.nav-links a:hover{
    color:black;
}

.Content {
    background-image: url("Contact2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 600px;
    position: relative;
}

.contact-box {
    width: 24%;
    background: rgba(255,255,255,0.9);

    padding: 25px;
    border-radius: 0;
    box-shadow: 0 4px 5px rgba(0,0,0,0.2);

    position: absolute;
    left: 60px;
    bottom: 80px;
}

.content {
    font-size: 25px;
    color: red;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;

    margin: 0;
    padding: 0;
}

.content1 {
    font-size: 15px;
    color: brown;
    font-family: Arial, sans-serif;
    line-height: 1.6;

    margin-top: 20px;
    padding: 0;
}

.branches {
    font-size : 30px;
    padding-top: 80px;
    text-align: center;
    color: #002053;
}

body{
    margin:0;
    padding:0px;
    background:#f5f5f5;
    font-family:Georgia, serif;
}

.details{
    width:90%;
    margin:auto;
}

.city{
    text-align:center;
    color:black;
    font-size:38px;
    margin-top:50px;
    margin-bottom:40px;
}

.office-row{
    display:flex;
    justify-content:space-between;
    gap:30px;
    margin-bottom:50px;
}

.office-card{
    width:48%;
    background:#efe5d2;
    border-radius:15px;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0px 5px 15px rgba(0,0,0,0.15);
}

.office-info{
    width:58%;
}

.office-info h2{
    color:#a52a2a;
    margin-bottom:20px;
    font-size:22px;
    padding-top: 5px;
}

.office-info p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.office-info a{
    color:#002053;
    text-decoration:none;
    font-weight:bold;
}

.office-info a:hover{
    color:#B22222;
}

.office-map{
    width:38%;
}

.office-map img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
}

.office-map img:hover{
    transform:scale(1.03);
}

.single{
    display:flex;
    justify-content:center;
    margin-bottom:50px;
}

.single .office-card{
    width:60%;
}

@media(max-width:768px){

    .office-row{
        flex-direction:column;
    }

    .office-card{
        width:100%;
        flex-direction:column;
    }

    .office-info{
        width:100%;
    }

    .office-map{
        width:100%;
        margin-top:20px;
    }

    .office-map img{
        height:250px;
    }

    .single .office-card{
        width:100%;
    }
}

.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content li a{
    display: block;
    padding: 15px 22px;
    text-decoration: none;
    color: #002053;
    font-size: 17px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dropdown-content li a:hover{
    background: #002053;
    color: white;
    padding-left: 30px;
}

.dropdown:hover .dropdown-content{
    display: block;
}