/* === GENERAL & BODY STYLES === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

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

h1, h2, h3 {
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #d4a32b;
}

img {
    max-width: 100%;
    height: auto;
}

/* === HEADER === */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 16px;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #d4a32b;
}

.lang-switcher a {
    text-decoration: none;
    color: #555;
    margin-left: 10px;
    font-weight: bold;
}

.lang-switcher a.active {
    color: #d4a32b;
    text-decoration: underline;
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* === MAIN SLIDER (HOME PAGE) === */
.main-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.slider-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 80%;
}

.slider-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.slider-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    background: #d4a32b;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #b88a1e;
}

.main-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
}

.main-slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.main-slider-dots .dot.active {
    background: #fff;
}

/* === CARDS SECTION (HOME PAGE) === */
.cards-section {
    padding: 60px 0;
    background: #fff;
}

.cards-section .container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    border: 1px solid #f0f0f0;
}

.card img {
    height: 60px;
    margin-bottom: 20px;
}

/* === LOGO SLIDERS (PARTNERS & CLIENTS) === */
.logo-slider-section {
    padding: 60px 0;
    text-align: center;
}

.logo-slider-section:nth-of-type(even) {
    background: #f9f9f9;
}

.logo-slider-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.logo-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 30px auto 0;
    overflow: hidden; /* Fixes the overflow issue */
}

.logo-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: calc(100% / 6);
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s;
}

.slide img:hover {
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 25px;
}
.slider-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}

.slider-dots {
    text-align: center;
    padding-top: 20px;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #d4a32b;
}


/* === FOOTER === */
footer {
    background: #222;
    color: #ccc;
    padding-top: 50px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.footer-col .footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .slider-arrow.prev {
        left: 10px;
    }
    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
        position: absolute;
        top: 81px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    header nav.active {
        display: block;
    }
    header nav ul {
        flex-direction: column;
        width: 100%;
    }
    header nav ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    header nav ul li a {
        display: block;
        padding: 15px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .slider-content h1 {
        font-size: 2em;
    }

    .cards-section .container {
        flex-direction: column;
    }

    .slide {
        min-width: calc(100% / 3);
    }

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

@media (max-width: 576px) {
    .slide {
        min-width: calc(100% / 2);
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        line-height: 15px;
    }
}