/* 🔹 Top Bar */
body {
    font-family: "Raleway", sans-serif;
}

.top-bar {
    background: url(/assets/image/logo/logo-bg.png);
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
    ;
}

.top-bar .languages span {
    margin-left: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.top-bar .languages span:hover {
    color: #f5cb42;
}

/* 🔹 Hero Section (Background + Logo) */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1590080875831-25d93f6342ce?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 150px;
    display: flex;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url(/assets/image/logo/logo-bg.png);
    /* opacity: 0.4; */
    /* add transparency */
    z-index: 1;
    /* behind the image */
    pointer-events: none;
    /* ensures no blocking */
}

.hero img {
    width: 400px;
    height: 150px;
    position: relative;
    z-index: 2;
    /* above the overlay */
    /* margin-left: 1%; */
}

/* 🔹 Navigation */
.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 15px;
    position: relative;
}

.main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s;
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

/* 🔹 Center Banner (Heading over Background) */
.center-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.center-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.center-banner h1 {
    position: relative;
    font-size: 2.5rem;
    z-index: 2;
    font-weight: bold;
}

/* 🔹 Image-Text-Image Section */
.image-text-section {
    padding: 60px 0;
}

.image-text-section img {
    width: 100%;
    border-radius: 10px;
}

.content-center {
    text-align: center;
    padding: 0 20px;
}

/* 🔹 Footer */
footer {
    color: #000000;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}


.swf-container {
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
}

.mt-11 {
    margin-top: 11%;
}