.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease;
    border: 1px solid #000000;
    vertical-align: middle;
}

.nav-link:hover .flag-icon {
    transform: scale(1.2);
}

.lang-link {
    padding: 8px !important;
    display: flex;
    align-items: center;
}

body .navbar {
    background-color: rgb(29, 2, 99);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

body {
    min-height: 100vh;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 70px;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 35px;
    background-color: #4361ee;
    z-index: 990;
}

body::before {
    left: 0;
}

body::after {
    right: 0;
}

.navbar .navbar-nav .nav-link {
    color: white !important;
}

.navbar .navbar-nav .nav-link:hover {
    color: aliceblue !important;
}

.navbar .navbar-nav .nav-link.active {
    color: white !important;
    text-decoration: underline;
}

.text-primary {
    color: #0A0121 !important;
}

.bg-primary {
    background-color: #408bba !important;
}

.btn-primary {
    background-color: #0A0121 !important;
    border-color: #0A0121 !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #1a0235 !important;
    border-color: #1a0235 !important;
}

.btn-outline-primary {
    color: #0A0121 !important;
    border-color: #0A0121 !important;
}

.btn-outline-primary:hover {
    background-color: #0A0121 !important;
    color: white !important;
}

a {
    color: #4361ee;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #3f37c9;
    text-decoration: underline;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #27067a !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border-top-color: #4361ee !important;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 1, 33, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #0A0121;
    font-size: 1.5rem;
}

.feature-oval {
    border: 2px solid #0A0121;
    border-radius: 50px;
    padding: 2rem 1rem;
    height: 100%;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-oval:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #4361ee;
}

.hero-bg {
    background: linear-gradient(rgba(10, 1, 33, 0.85), rgba(10, 1, 33, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white !important;
}

.hero-bg h1,
.hero-bg p {
    color: white !important;
}

.quote-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-dark {
    background-color: #0a2290 !important;

}

.text-info {
    color: #fff !important;
}

.services-bg {
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('../img/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}