﻿/*==============================HEADER==============================*/
header {
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}


    header .navbar {
        display: flex;
        gap: 30px;
        font-size: 16px;
        position: relative;
        margin-top: 7px;
    }

    header .nav-item {
        position: relative;
        color: black;
        cursor: pointer;
        transition: color 0.2s ease;
        font-size: 18px;
    }

        header .nav-item::after {
            content: "";
            position: absolute;
            /*bottom: 0;*/
            bottom: -4px;
            left: 0;
            height: 2px;
            width: 0;
            background-color: #3B82F6;
            transition: width 0.2s ease;
        }

        header .nav-item:hover {
            color: #3B82F6;
        }

            header .nav-item:hover::after {
                width: 100%;
            }

    /* Products dropdown arrow */
        header .nav-item.products::before {
            font-size: 10px;
            margin-left: 5px;
            color: #ccc;
            position: absolute;
            top: 2px;
        }

/* Dropdown menu */
    header .dropdown {
        display: none;
        position: absolute;
        top: 30px;
        left: 0;
        background: white;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        border-radius: 4px;
        padding: 10px 0;
        z-index: 10;
        min-width: 150px;
    }

        header .dropdown a {
            display: block;
            padding: 8px 16px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }

        .dropdown a:hover {
            background-color: #f0f0f0;
        }

header .nav-item.products:hover .dropdown {
    display: block;
}

header .lang {
    width: 25px;
}




/*==============================FOOTER==============================*/
.card-hover {
    transition: all 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.tab-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .api-banner-main {
        display: none;
    }
    .api-banner-mobile {
        display: flex;
    }

    .api-about-main {
        display: none;
    }
    .api-about-mobile {
        display: block;
    }

    .trust-banner-main {
        display: none;
    }
    .trust-banner-mobile {
        display: block;
    }
}

@media (max-width: 600px) {
    .api-banner-main {
        display: none;
    }
    .api-banner-mobile {
        display: flex;
    }

    .api-about-main {
        display: none;
    }
    .api-about-mobile {
        display: block;
    }

    .trust-banner-main {
        display: none;
    }

    .trust-banner-mobile {
        display: block;
    }
        .trust-banner-mobile .col-lg-12 {
            padding: 0 40px;
            padding-top: 20px;
        }
        .accordion-header {
            font-size: 16px !important;
            padding: 20px !important;
        }
        .accordion-header svg{
            width: 22px;
        }
    .accordion-content {
        font-size: 13px;
        width: 100%;
    }

    .title-about-us {
        font-size: 40px !important;
        font-weight: 700 !important;
    }

    .sub-about-us {
        font-size: 16px !important;
    }
}