* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f4f5f7;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

.btn-theme-primary {
    background-color: #0071c2;
    color: #fff;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.bg-theme { background-color: #0071c2; }
.text-theme-primary { color: #0071c2; }

.text-dark { color: #333; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 60px 0; }
.bg-light { background-color: #ffffff; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #0071c2;
    font-weight: 700;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top:0;
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #0071c2;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
    padding-top: 5%;
}

.nav-links a {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: #0071c2;}

.lang-switch {
    font-weight: 700;
    color: #888;
}

.lang-switch .active { color: #0071c2; }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0071c2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
}

.slide-content {
    z-index: 2;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 113, 194, 0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-btn:hover { background: #0071c2; }
.prev { left: 15px; }
.next { right: 15px; }

.stock-ticker {
    background-color: #0071c2;
    color: #fff;
    padding: 15px 0;
    font-size: 0.9rem;
}

.ticker-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ticker-title { font-weight: 700; letter-spacing: 1px; }

.ticker-data span {
    font-weight: bold;
    color: #0071c2;
    margin: 0 5px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card img {
    width: 100%;
    object-fit: cover;
}

.solution-card h3 {
    padding: 20px 20px 10px;
    color: #0071c2;
    font-size: 1.2rem;
}

.solution-card p {
    padding: 0 20px 25px;
    color: #666;
    font-size: 0.95rem;
}

.news-content { padding: 25px; }

.badge {
    display: inline-block;
    background: #f1f3f5;
    color: #495057;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.news-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #212529;
    line-height: 1.4;
}

.read-more {
    color: #0071c2;
    font-weight: 700;
    font-size: 0.9rem;
}

.read-more:hover { color: #0071c2; }

footer {
    background-color: #0071c2;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.footer-col p {
    font-size: 0.95rem;
    color: #f8f8f8;
    margin-bottom: 10px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
    color: #f8f8f8;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col ul a:hover { color: #f8f8f8; }

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgb(41, 41, 41);
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #0071c2;
    color: #0071c2;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #f8f8f8;
}


@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: #fff;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .grid-3, .footer-grid { grid-template-columns: 1fr; }
    .ticker-flex { flex-direction: column; gap: 10px; text-align: center; }
    .slide-content h2 { font-size: 2.5rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 0 50px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .prev { left: 5px; }
    .next { right: 5px; }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 220px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .slider-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

.mg-p-t-3 { margin-top: 3%; }
.mg-p-t-5 { margin-top: 5%; }
.mg-p-t-10 { margin-top: 10%; }
.mg-p-t-15 { margin-top: 15%; }
.mg-p-t-20 { margin-top: 20%; }
.mg-p-t-25 { margin-top: 25%; }
.mg-p-t-30 { margin-top: 30%; }
.mg-p-t-35 { margin-top: 35%; }
.mg-p-t-40 { margin-top: 40%; }
.mg-p-t-50 { margin-top: 50%; }
.mg-p-t-60 { margin-top: 60%; }

.btn-pink {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, #ff1493 0%, #c71585 50%, #ff69b4 100%);
}

.btn-pink:active {
    transform: translateY(0);
}

.btn-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

