.header-logo {
    display: none;
}

.contact-banner-area-galary {
    height: 380px;
    background: url("../img/banner/galary.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

@media (min-width: 600px) {
    .contact-banner-area-galary {
        height: 500px;
    }
}

@media (min-width: 1000px) {
    .contact-banner-area-galary {
        height: 625px;
    }
}

.contact-banner-area-galary .contact-banner {
    position: absolute;
    top: 58%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.contact-banner-area-galary::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 2, 11, 0.7);
    z-index: -1;
}

/* galary end */

.contact-banner-area-contact {
    height: 380px;
    background: url("../img/banner/contact.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

@media (min-width: 600px) {
    .contact-banner-area-contact {
        height: 500px;
    }
}

@media (min-width: 1000px) {
    .contact-banner-area-contact {
        height: 625px;
    }
}

.contact-banner-area-contact .contact-banner {
    position: absolute;
    top: 58%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.contact-banner-area-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 2, 11, 0.7);
    z-index: -1;
}

/* contact end */

@media screen and (max-width: 1000px) {
    .header-top {
        display: none !important;
    }

    .header-icon {
        display: none;
    }

    .header-logo {
        display: block;
    }
}

/* Quick link styling  */
.list-unstyled a {
    text-decoration: none;
    color: inherit;
}

.list-unstyled a:hover, .list-unstyled a:focus {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation Styling */
.header_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.main_menu {
    padding: 0;
    margin: 0;
}

.main_menu .navbar {
    padding: 0;
    margin: 0;
    min-height: auto;
}

.main_menu .navbar-collapse {
    padding: 0;
}

.main_menu .nav-link {
    padding: 10px 15px;
    margin: 0;
    color: #333;
    transition: color 0.3s ease;
}

.main_menu .nav-link:hover {
    color: #007bff;
}

/* Remove default navbar padding and margin */
.navbar-nav {
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    margin: 0;
    padding: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 1000px) {
    .main_menu .navbar-collapse {
        background-color: white;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .main_menu .nav-link {
        padding: 10px 15px;
        border-bottom: 1px solid #f1f1f1;
    }
}

/* Ensure smooth scrolling and no unexpected padding */
body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.site-main {
    margin-top: 80px;
    padding-bottom: 40px;
}

@media screen and (max-width: 1000px) {
    .site-main {
        margin-top: 60px;
    }
}

/* Responsive Header Adjustments */
@media screen and (max-width: 1000px) {
    .header-top {
        display: none !important;
    }
    
    .header-icon {
        display: none;
    }
    
    .header-logo {
        display: block;
        text-align: center;
        padding: 10px 0;
    }
    
    .header-logo img {
        max-height: 50px;
        width: auto;
    }
}

/* Main Content Area */
.site-main {
    margin-top: 80px;
    padding-bottom: 40px;
    overflow: auto;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .site-main {
        margin-top: 60px;
    }
}

/* Navigation Menu */
.main_menu .navbar {
    padding: 0;
    min-height: 60px;
}

.main_menu .nav-link {
    padding: 0.5rem 1rem;
}

/* Content Section Styling */
.content-section {
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    max-width: 1200px;
    box-sizing: border-box;
}

.content-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
}

.content-section p, .content-section ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.content-section ul {
    margin-left: 20px;
}

.content-section ul li {
    margin-bottom: 8px;
}

/* Footer Styles */
footer {
    padding: 30px 0;
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #5e7089;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .col-lg-3,
    footer .col-lg-4,
    footer .col-lg-2 {
        margin-bottom: 15px;
        text-align: center;
    }
    
    footer .btn-floating {
        margin: 0 5px;
    }
}

/* Logo Responsiveness */
#logo img {
    max-height: 50px;
    width: auto;
}