.footer-row2 .navbar-brand img{
    height:50px !important;
    width: 200px;
}

/* =========================
   Top Header Styling
========================= */
.top-header {
    background-color: #0d2c6c;
    color: white;
    padding: 4px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.top-header a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #25d366;
}

.top-header .top-left {
    text-align: left;
    padding-left: 150px;
}

.top-header .top-right {
    text-align: right;
    padding-right: 250px;
}

.top-header .divider {
    margin: 0 15px;
    color: rgba(255,255,255,0.5);
}

.top-header i {
    margin-right: 5px;
}

/* Social icons spacing */
.top-header .top-right a {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-header .top-right a:hover {
    background-color: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    transform: scale(1.1);
}

.top-header .top-right a i {
    margin-right: 0;
    font-size: 16px;
}

/* Adjust main header to account for top header */
.main-header.fixed-top {
    top: 42px !important; /* Push down main header */
}

/* Adjust body padding to account for both headers */
body {
    padding-top: 42px; /* Space for top header */
}
/* =========================
   MOBILE TOP HEADER FIX
========================= */
@media (max-width: 768px) {
    
    /* Top header container */
    .top-header {
        height: auto !important;
        min-height: 40px !important;
        padding: 4px 6px !important;
        background-color: #0d2c6c !important;
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
    }
    
    /* Container and row */
    .top-header .container-fluid {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .top-header .row {
        margin: 0 !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Both columns full width */
    .top-header .col-md-6,
    .top-header .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 4px !important;
    }
    
    /* Contact info section */
    .top-header .top-left {
        display: block !important;
        text-align: center !important;
        padding: 0 !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    }
    
    .top-header .top-left a {
        display: inline-block !important;
        color: white !important;
        font-size: 9px !important;
        text-decoration: none !important;
        margin: 0 4px !important;
        padding: 1px 4px !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,0.1) !important;
    }
    
    .top-header .top-left a i {
        font-size: 9px !important;
        margin-right: 2px !important;
        color: white !important;
    }
    
    .top-header .divider {
        display: inline-block !important;
        margin: 0 4px !important;
        color: rgba(255,255,255,0.6) !important;
        font-size: 9px !important;
    }
    
    /* Social icons section - FORCE DISPLAY */
    .top-header .top-right {
        display: block !important;
        text-align: center !important;
        padding: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .top-header .top-right a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 24px !important;
        height: 24px !important;
        border-radius: 50% !important;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        margin: 0 4px !important;
        text-decoration: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
    }
    
    .top-header .top-right a i {
        font-size: 10px !important;
        color: white !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .top-header .top-right a:hover {
        background-color: rgba(37, 211, 102, 0.3) !important;
        border-color: #25d366 !important;
        transform: scale(1.1) !important;
    }
    
    /* Adjust main header position */
    .main-header.fixed-top {
        top: 40px !important;
    }
    
    body {
        padding-top: 85px !important;
    }
    
    /* Reduce main header height for mobile */
    .main-header {
        min-height: 60px !important;
        padding: 8px 0 !important;
    }
    
    .main-header .menu-header {
        min-height: 50px !important;
        height: 50px !important;
    }
    
    .main-header .dsk-logo img {
        max-height: 45px !important;
    }
}

.text-justify{
    text-align: justify;
}
.main-header{
    background-color: #fff;
    height: auto !important;
    min-height: 100px !important;
    padding: 15px 0 !important;
}

.main-header .menu-header {
    height: auto !important;
    min-height: 80px !important;
}

.main-header .dsk-logo img {
    max-height: 100px !important;
    height: auto !important;
}
.nav-bg-b .custom-nav .nav-list li a.menu-links{
    color:#050748
}

.ptb-30{
    padding : 30px 0;
}

.ptb-60{
    padding : 60px 0;
}
/* =========================
   Footer Logo Fix
========================= */
.footer-logo {
    max-width: 250px;   /* controls logo size */
    width: auto;
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    margin-bottom: 15px;
}

/* Footer navbar-brand logo styling */
.footer-row2 .navbar-brand img {
    height: 100px !important;
    width: 280px !important;
    max-width: 100%;
    object-fit: contain;
    margin: -20px 0 -10px 0;
   
}

.footer-row2 .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    display: block !important;
    position: relative;
    top: -10px;
}

/* Center on mobile */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 200px;
        margin: 0 auto 15px;
        display: block;
    }
    
    .footer-row2 .navbar-brand img {
        height: 60px !important;
        width: 200px !important;
        margin: -15px 0 -5px 0;
        display: block;
    }
    
    .footer-row2 .navbar-brand {
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
        display: block !important;
        position: relative;
        top: -10px;
    }
}
