@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
padding: 0 !important;
margin: 0 !important;
    overflow-x: hidden;
    font-family: "Poppins", serif !important;
}
h1, h2, h3{
font-weight: 500;
font-size: 2.5rem;
font-family: "Poppins", serif !important;
text-transform: uppercase;
line-height: 1.3;
letter-spacing: 1.2px;
}

a {

    text-decoration: none; 

}


a:hover {
    
    text-decoration: none; 
}

.site-header{
    display: none;
}

html{
    padding: 0;
    margin: 0;
    margin-top: 0 !important;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
 
 
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #0f172a;
}

.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: pulse 2s infinite;
}

.slogan-container {
    height: 40px;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.loader-slogan {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.loader-slogan.active {
    opacity: 1;
    transform: translateY(0);
}

.loader-progress {
    width: 250px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3c6bdd, #4169E1);
    transition: width 2s linear;
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.visible {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .loader-logo {
        width: 120px;
    }
    
    .loader-slogan {
        font-size: 1.25rem;
    }
    
    .loader-progress {
        width: 200px;
    }
}

.footer {
    background: linear-gradient(180deg, #1a1f2c 0%, #131722 100%);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(15, 117, 187, 0.3) 50%, 
        transparent 100%
    );
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0F75BB;
    transition: width 0.3s ease;
}

.footer__column:hover .footer__title::after {
    width: 50px;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer__link {
    color: #0F75BB;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0F75BB;
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: #4169E1;
}

.footer__link:hover::after {
    width: 100%;
}

.footer__contact-item, 
.footer__branch-name,
.footer__branch-address,
.footer__branch-postal {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer__branch {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer__branch:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer__social-icon {
    fill: #fff;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: #0F75BB;
    transform: translateY(-2px);
}

.footer__social-link:hover .footer__social-icon {
    fill: #fff;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer__grid {
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}