* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    margin-top: -12px;
    margin-bottom: -10px;
    padding: 0px 6px;
    height: 96px;
}

#logo {
    width: 315px;
    height: auto;
}

/* Nav Item Styles */
.nav-item .nav-link {
    font-size: 15px;
    font-weight: 600 !important;
    color: rgb(66, 93, 116) !important;
    padding: 8px 15px;
    transition: color 0.2s ease;
}

.nav-item .nav-link:hover {
    color: green !important;
}

.nav-item.active .nav-link {
    color: green !important;
}

.select-dropdown {
    margin-right: 9px;
}

.select-dropdown .btn-custom-dropdown {
    padding: 0;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: transparent;
    box-shadow: none !important;
}

.lang-text {
    background-color: rgb(94, 100, 100);
    color: white;
    padding: 8px 16px;
    font-size: 18px;
}

.lang-arrow {
    background-color: #343a40;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.select-dropdown .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #343a40;
    margin-top: 5px;
    padding: 0;
    min-height: auto;
    width: 70px;
}

.select-dropdown .dropdown-item {
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    width: 100%;
    clear: both;
    background-color: transparent;
}

.select-dropdown .dropdown-item:hover,
.select-dropdown .dropdown-item:focus,
.select-dropdown .dropdown-item:active,
.select-dropdown .dropdown-item.active {
    background-color: #495057 !important;
    color: white !important;
}

.google {
    border: 0.9px solid rgb(180, 174, 174);
    border-radius: 5px;
    width: 170px;
    height: 38px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.google:hover {
    background-color: rgb(222, 233, 240);
    color: rgb(43, 41, 41);
    transition: all 0.3s ease;
    cursor: pointer;
}

.google img {
    height: 26px;
    margin-right: 10px;
}

.google .h {
    font-weight: bold;
    font-size: 13px;
    font-family: sans-serif;
    margin: 0;
}

/* About Section Styles */
.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: #2f91d7;
    /* Assuming a blue theme color based on logo/other pages */
    margin: 0 auto;
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

/* Tadbeer Centers Section Styles */
.tadbeer-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    margin-top: 24px;
}

.tadbeer-text {
    color: #555;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    max-width: 92%;
}
.tadbeer-text-bold{
    font-size: 20px;
    font-family: inherit;
}
.tadbeer-list {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
    margin-left: 22px;
}

.tadbeer-list li {
    color: #555;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer-section {
    background-color: #fff;
    /* border-top: 1px solid #eee; */
}

.footer-section h5 {
    color: #333;
}

.footer-section .text-muted {
    color: #292b2d !important;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ebebef;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

.social-icon-link:hover {
    background-color: #dcdcdc;
}

.social-icon-link img {
    width: 30px;
    height: 30px;
}

/* User Profile Dropdown Styles */
#userProfileDropdown {
    transition: transform 0.2s ease;
}

#userProfileDropdown:hover {
    transform: scale(1.05);
}

#userProfileDropdown img {
    transition: border-color 0.2s ease;
}

#userProfileDropdown:hover img {
    border-color: #6fbf52;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

/* Footer Term Styles */
.term {
    display: flex;
    margin-left: 485px;
}

.term h1 {
    font-size: 16px;
    color: gray;
    margin-left: 32px;
}