* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    margin-top: -12px;
    margin-bottom: -10px;
    padding: 0px 6px;
    height: 96px;
}

.logo-text img {
    width: 100%;
}

#logo {
    height: 82px;
    width: 100%;
}

/* 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;
}

/* Services Section Styles */
.services-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: #2f91d7;
    margin: 0 auto;
    border-radius: 2px;
}

.services-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 50%;
    padding: 10px;
}

.service-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.service-list li::before {
    content: "•";
    color: #2f91d7;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer Term Styles */
.term {
    display: flex;
    margin-left: 485px;
}

.term h1 {
    font-size: 16px;
    color: gray;
    margin-left: 32px;
}

/* 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;
}