/* Soft Company Template Styles */

/* =================================
   1. GENERAL STYLES
   ================================= */
body {
    background-color: #f3f4f6;
}

/* =================================
   2. HEADER STYLES
   ================================= */

/* Desktop Header Styles */
.header-custom {
    height: 120px;
    box-shadow: 10px 4px 20px rgba(50.21, 54.33, 54.71, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

/* Sticky Header */
.header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    height: 100px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-top-info {
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.header-top-info a {
    color: white;
    text-decoration: none;
}

.top-blue-bar {
    width: 70%;
    height: 60px;
    background-image: linear-gradient(to right, #292A7A, #282978);
    border-bottom-left-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2% 0 3%;
}

/* Show top info when sticky */
.header-sticky .header-top-info {
    display: block;
}

.header-sticky .social-icons-custom {
    display: none;
}

.header-sticky .top-blue-bar {
    height: 40px;
}

/* Language Button */
.lang-btn {
    width: 80px;
    height: 35px;
    background-image: linear-gradient(to top, #E7F4E9, white);
}

.header-sticky .lang-btn {
    width: 100px;
    height: 30px;
}

.lang-btn select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #6B7280;
    font-size: 14px;
}

/* Logo */
.logo-custom {
    position: absolute;
    left: 5.35%;
    top: 5px;
    width: 240px;
    height: 120px;
    object-fit: contain;
}

.header-sticky .logo-custom {
    top: 0px;
    width: 200px;
    height: 100px;
}

/* Social Icons */
.social-icons-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    width: 1.8rem;
    height: 1.8rem;
}

.header-sticky .social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.social-icon img {
    width: 1.8rem;
    height: 1.8rem;
}

.header-sticky .social-icon img {
    width: 1.3rem;
    height: 1.3rem;
}

/* Navigation */
.main-nav {
    position: absolute;
    bottom: 5px;
    right: 10%;
    width: 60%;
}

.header-sticky .main-nav {
    bottom: 5px;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.nav-link.text-custom-gray {
    color: #4B5563;
    font-size: 18px;
    padding: 10px 20px;
    font-weight: 600;
}

.header-sticky .nav-link.text-custom-gray {
    font-size: 18px;
    padding: 10px 20px;
}

/* =================================
   3. RESPONSIVE STYLES
   ================================= */

/* Mobile Styles */
@media (max-width: 768px) {
    .header-custom {
        height: 80px;
    }

    .logo-custom {
        width: 180px;
        height: 80px;
        top: 0;
    }

    .top-blue-bar {
        width: 100%;
        height: 40px;
        border-bottom-left-radius: 15px;
    }

    .main-nav {
        position: static;
        width: 100%;
        right: auto;
    }

    .nav-link.text-custom-gray {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-custom {
        height: 100px;
    }

    .logo-custom {
        width: 200px;
        height: 100px;
    }

    .top-blue-bar {
        width: 80%;
        height: 50px;
    }

    .nav-link.text-custom-gray {
        font-size: 16px;
        padding: 8px 16px;
    }
}