/*
Theme Name: MyCustomTheme
Theme URI: https://example.com
Author: Biswajit Dhar
Author URI: https://example.com
Description: A custom WordPress theme by Biswajit Dhar
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mycustomtheme
*/

.custom-logo {
    height: auto; /* This ensures the logo's aspect ratio is maintained */
}


body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
    text-decoration: underline;
}

.site-logo img {
    max-width: 100%;
    height: auto;
}

/* Default Top Bar Styles */
.top-bar {
    padding: 10px 0;
}
@media (max-width: 768px) {
    .top-bar .col-md-6 {
        margin-bottom: 10px; /* Add some spacing between sections */
    }
    .top-bar .social-icon {
        margin-right: 10px; /* Adjust gap between social icons */
    }
}
.top-bar i {
    font-size: inherit;
}    

/* Hide submenus by default */
.primary-navbar .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff; /* Optional */
    z-index: 1000;
    border: 1px solid #ddd; /* Optional */
}

/* Style submenu items */
.primary-navbar .sub-menu li {
    list-style: none;
}

.primary-navbar .sub-menu a {
    padding: 10px;
    display: block;
    text-decoration: none;
    color: #000;
}

/* Optional: Hover state for submenu links */
.primary-navbar .sub-menu a:hover {
    background-color: #f0f0f0;
    color: #007bff;
}