body{
font-family:'Segoe UI',sans-serif;
background:#f8f9fb;
margin:0;
padding-top:60px;
}



/* HEADER */

.logo-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:white;
text-align:center;
padding:15px 0 10px;
}

.logo-header img{
height:50px;
}

/* MENU ICON */

.menu-icon{
position:absolute;
left:20px;
top:22px;
cursor:pointer;
color:#001d4c;
}

/* SIDEBAR */

.sidebar{
height:100%;
width:0;
position:fixed;
top:0;
left:0;
background:#001d4c;
overflow-x:hidden;
transition:0.35s;
padding-top:60px;
z-index:2000;
transition:width 0.35s ease;  
}

/* SIDEBAR LINKS */

.sidebar a{
display:flex;
align-items:center;
gap:10px;
padding:12px 25px;
color:white;
text-decoration:none;
font-size:16px;
}

.sidebar a:hover{
background:rgba(255,255,255,0.1);
}

.sidebar a.active{
background:#ffffff22;
}

/* CATEGORY */

.menu-category{
display:flex;
justify-content:space-between;
align-items:center;
color:#cbd5ff;
padding:15px 25px;
font-size:13px;
text-transform:uppercase;
cursor:pointer;
}

/* ARROW ICON */

.menu-category .arrow{
transition:transform 0.3s ease;
}

/* ROTATE WHEN OPEN */

.menu-category.active .arrow{
transform:rotate(180deg);
}

.submenu{
max-height:0;
overflow:hidden;
transition:max-height 0.35s ease;
}

/* SHOW WHEN ACTIVE */

.menu-category.active + .submenu{
max-height:500px; /* enough for items */
}

/* SEARCH */

.sidebar-search{
padding:15px 20px 25px 20px;
display:flex;
justify-content:center;
}

.sidebar-search input{
width:90%;
padding:10px;
border-radius:6px;
border:none;
}

/* CLOSE */

.closebtn{
position:absolute;
top:10px;
right:20px;
font-size:28px;
cursor:pointer;
}


/* SOCIAL ICONS */

.social-icons{
display:flex;
justify-content:center;
  width:fit-content; /* CRITICAL FIX */
}

.social-icons a{
color:white;
}

/* FOOTER */

.sidebar-footer{
text-align:center;
margin-top:15px;
font-size:13px;
color:#cbd5ff;
}

.sidebardown-footer{
text-align:center;
margin-top:15px;
font-size:13px;
color:#001d4c;
}

/* OVERLAY */

#overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
z-index:1500;
backdrop-filter:blur(4px);  
}

/* GRID LAYOUT */

.contact-details-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
background:#f8f9fb;
padding:25px;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

/* BOX */

.contact-box h3{
color:#001d4c;
margin-bottom:10px;
}

.contact-box p{
margin:8px 0;
line-height:1.6;
color:#333;
}

/* MOBILE */

@media(max-width:768px){
.contact-details-grid{
grid-template-columns:1fr;
}
}




@media (max-width:768px){

.logo-header img{
height:50px;
}

.menu-icon{
top:18px;
}

body{
font-family:'Segoe UI',sans-serif;
background:#f8f9fb;
margin:0;
padding-top:50px;
}
  

}

