* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #333;
    overflow-x: hidden;
}

/* COMMON */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* STICKY HEADER */
.header {
    background: #ADD8E6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    color: white;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li {
    position: relative;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 8px;
}

/* MEGA MENU */
.mega-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 500px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mega-menu ul {
    list-style: none;
}

.mega-menu a {
    color: #333;
    display: block;
    padding: 8px 0;
}

.dropdown:hover .mega-menu {
    display: block;
}

/* ========================= */
/* SLIDER (UPDATED & FIXED) */
/* ========================= */

.slider {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slider text */
.slider-text {
    position: absolute;
    bottom: 80px;
    left: 50px;
    color: white;
    font-size: 32px;
    max-width: 80%;
    line-height: 1.2;
}

/* ========================= */
/* RESPONSIVE SLIDER FIX */
/* ========================= */

@media (max-width: 768px) {
    .slider {
        height: 280px;
    }

    .slider-text {
        font-size: 20px;
        left: 20px;
        bottom: 40px;
    }
}

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

    .slider-text {
        font-size: 16px;
        left: 15px;
        bottom: 20px;
    }
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.light {
    background: #f4f6f8;
}

/* COUNTERS */
.counters {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.counter {
    font-size: 36px;
    color: #0a2c52;
}

/* FOOTER */
.footer {
    background: #0a2c52;
    color: white;
    text-align: center;
    padding: 15px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: red;
    font-size: 24px;
    font-weight: 600;
}

.logo img {
    height: 60px;
    width: 100px;
}

