body {
    font-family: 'Poppins', sans-serif;
    font-weight:400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.timeline-line {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #1e40af);
}

.process-step {
    position: relative;
    padding: 20px 0;
}

@media (max-width: 991px) {
    .timeline-line {
        display: none;
    }
}

/* Custom styles to match the original design */
.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-item:hover {
    background-color: #f0f9ff;
    color: #3b82f6;
}

.nav-link {
    font-weight: 500;
}

    .nav-link:hover {
        color: #3b82f6 !important;
    }

/* Custom styles to match the original design */
.hover-shadow:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.hover-white:hover {
    background-color: white;
    color: var(--bs-primary) !important;
}
/* Adjust spacing */
@media (min-width: 576px) {
    .gap-3 {
        gap: 1rem !important;
    }
}

.hover-white:hover {
    color: white !important;
}
/* Social media hover colors */
.bg-secondary:hover {
    background-color: #3b5998 !important; /* Facebook */
}

    .bg-secondary:hover:nth-child(2) {
        background-color: #1DA1F2 !important; /* Twitter */
    }

    .bg-secondary:hover:nth-child(3) {
        background-color: #FF0000 !important; /* YouTube */
    }

    .bg-secondary:hover:nth-child(4) {
        background-color: #0077B5 !important; /* LinkedIn */
    }

    .bg-secondary:hover:nth-child(5) {
        background-color: #E4405F !important; /* Instagram */
    }

.transition-all {
    transition: all 0.3s ease;
}

.service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Adjust spacing for smaller screens */
@media (max-width: 992px) {
    #process .d-flex.flex-column {
        gap: 3rem !important;
    }
}


/* Blur Screen*/
.blurred-wrapper {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

.login-overlay {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
}

#sidebar.collapsed {
    width: 70px !important;
}

    #sidebar.collapsed .sidebar-text {
        display: none !important;
    }

    #sidebar.collapsed .nav-link {
        justify-content: center;
    }

/* Text and Flags*/
.euro-container {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.flags-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.flag {
    width: 40px;
    height: 28px;
    background-size: cover;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .flag.visible {
        opacity: 1;
        transform: scale(1);
    }

/*About Custom CSS*/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    color: var(--bs-primary);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--bs-danger);
    }

.value-card {
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

.value-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.stats-item {
    background-color: var(--bs-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

    .stats-item:hover {
        background-color: var(--bs-primary);
        color: white;
        transform: translateY(-5px);
    }

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.stats-item:hover .stats-number {
    color: white;
}
