body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #0a66c2;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar i {
    color: #ffb703;
    margin-right: 6px;
}

/* ================= HEADER ================= */
.site-header {
   background: #fff;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    
}

.logo {
    height: 60px;
}

/* ================= NAVIGATION ================= */
.site-header nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    gap: 25px;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline hover animation */
.site-header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.site-header nav a:hover {
    color: #ffb703;
}

.site-header nav a:hover::after {
    width: 100%;
}

/* ================= PRIMARY BUTTON ================= */
.btn-primary {
   background: #ff0303;
    color: #fcfcfc !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .top-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .site-header .container {
        flex-direction: column;
        gap: 18px;
    }

    .site-header nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================= CAROUSEL ================= */
.carousel {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 12px;
    width: 12px;
    background: white;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* PROPERTY GRID */
.section-title {
    text-align: center;
    margin: 40px 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.property-card {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-info {
    padding: 15px;
}

.price {
    color: #d62828;
    font-weight: bold;
}




/* ================= FEATURED TOP BAR ================= */

.featured-header {
    background: #f5f5f5;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.featured-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.featured-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blue-line {
    width: 5px;
    height: 28px;
    background: #1e5bb8;
}

.featured-left h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
}

/* RIGHT SIDE */
.featured-right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.featured-right a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.featured-right a:hover {
    color: #1e5bb8;
}

/* MOBILE */
@media (max-width: 768px) {
    .featured-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}



/* ================= PROPERTY SECTION ================= */

.property-section {
    padding: 60px 0;
    background: #f5f7fa;
}

/* ================================
   PROPERTY CARD
================================ */

.property-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ================================
   IMAGE SECTION
================================ */

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

/* Badge */

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgb(255, 30, 0);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* ================================
   CONTENT SECTION
================================ */

.property-content {
    padding: 18px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

/* Buy Button */

.buy-btn {
    background: rgb(255, 30, 0);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #ff9900;
}

/* Title */

.property-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

/* Details */

.property-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-details li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 992px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-image {
        height: 200px;
    }
}


/* ================================
   MANAGEMENT
================================ */
.management-section {
    background: #f7f7f7;
    padding: 70px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 span {
    width: 4px;
    height: 18px;
    background: #1e5bb8;
    display: inline-block;
}

.tag-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 4px;
    cursor: default;
}

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* TEAM CARD */
.team-card {
    background: #fff;
    padding: 35px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center; /* ✅ fixes hidden faces */
    border-radius: 50%;  /* slight rounded corners */
    background: #e0e0e0;
    margin-bottom: 18px;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    object-position: center 15%;
}

.team-card h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.team-card .name {
    font-size: 13px;
    color: #1e5bb8;
    font-weight: 600;
}

/* TEAM DESCRIPTION */
.team-card .desc {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
}


/* SPACING */
.mt-60 {
    margin-top: 60px;
}


/* ================= SITE VISIT FORM ================= */

.site-visit {
    padding: 60px 0;
    background: #fff;
}

.visit-title {
    color: #1006a5;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.visit-form {
    max-width: 600px;
}

.visit-form input,
.visit-form select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #1006a5;
    margin-bottom: 18px;
    font-size: 14px;
    outline: none;
}

.visit-form input::placeholder {
    color: #1006a5;
}

.visit-row {
    display: flex;
    gap: 15px;
}

.visit-row select {
    flex: 1;
}

.btn-submit {
    background: #1006a5;
    color: #fff;
    padding: 14px 35px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-submit:hover {
    background: #f59607;
}

/* MOBILE */
@media (max-width: 600px) {
    .visit-row {
        flex-direction: column;
    }
}


/* ================================
   FOOTER HOVER EFFECTS
================================ */

.footer-bottom a {
    position: relative;
    transition: color 0.3s ease;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: orange;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom a:hover::after {
    width: 100%;
}


/* ================= FOOTER HOVER EFFECTS ================= */
footer {
    background: #37038b;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Footer links */
.footer-content a {
    display: block;
    padding: 2px;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-content a:hover {
    color: #ffb703;
    transform: translateX(6px);
}

/* Footer sections lift on hover */
.footer-content > div {
    transition: transform 0.3s ease;
}

.footer-content > div:hover {
    transform: translateY(-6px);
}

/* Social icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* Footer bottom link */
.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffb703;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    transform: translateY(-6px);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* ================= TESTIMONIALS ================= */

.testimonials {
    padding: 70px 0;
    background: #fff;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.blue-bar {
    width: 4px;
    height: 22px;
    background: #0a66c2;
    margin-right: 10px;
}

.section-header h3 {
    flex: 1;
    margin-left: 12px;
}

.testimonial-nav button {
    background: #f3f3f3;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 6px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 15px;
}

.testimonial-user span {
    font-size: 13px;
    color: #0a66c2;
}

.stars {
    color: #f4b400;
    font-size: 13px;
}


/* ================= OUR CLIENTS ================= */

.clients-section {
    background: #f8f8f8;
    padding: 60px 0;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.clients-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0a66c2;
    display: block;
    margin: 10px auto 0;
}

/* Slider */

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scrollLeft 25s linear infinite;
}

.clients-track img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    padding: 8px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clients-track img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Animation */

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-track {
        gap: 30px;
    }

    .clients-track img {
        height: 50px;
    }
}



/* ================= FIXED PROPERTIES DROPDOWN ================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.dropdown {
    position: relative;
}

.dropbtn {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 10px 0;
    display: none;
    z-index: 9999;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-content a:hover {
    background: #f3f3f3;
    color: #ff0303;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* Header Layout */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Book Site Visit Button */
.btn-visit {
    background: #ff0303;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-visit:hover {
    background: #ff9900;
}


/* ================= ABOUT US PAGE ================= */

.page-hero {
    background: #05289b;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-vision {
    background: #f4f6f9;
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.why-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.about-cta {
    background: #203fb1;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}


/* ================= COMPANY STATS ================= */
.company-stats {
    background: #fa6603;
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-box h2 {
    font-size: 48px;
    color: #f6f6f7;
}


/* ================= FAQS ================= */

/* ================= FAQ ================= */
.faq-section {
    padding: 80px 0;
    background: #f4f6f9;
}

.faq-search {
    text-align: center;
    margin-bottom: 30px;
}

.faq-search input {
    width: 60%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 18px 0;
}

/* ================= MESSAGE FORM ================= */
.message-section {
    padding: 80px 0;
    background: #f4f6f9;
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #0d1b2a;
}

.form-container p {
    margin-bottom: 30px;
    color: #555;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.message-form textarea {
    height: 150px;
    resize: none;
}

.message-form .btn-primary {
    padding: 15px 30px;
    background: #0738a1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.message-form .btn-primary:hover {
    background: #f31f03;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.whatsapp-float i {
    margin-right: 8px;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .whatsapp-float i {
        font-size: 18px;
        margin-right: 6px;
    }

    .faq-search input {
        width: 90%;
    }
}


/* ================= Back To Top Button ================= */
#backToTop {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 999;
    font-size: 22px;
    background: #0d6efd;
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #084298;
    transform: translateY(-3px);
}

/* ================= CONTACT US================= */

.contact-page {
    padding: 60px 0;
    background: #f4f6f9;
}

.card {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-title-card {
    text-align: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card span {
    font-size: 14px;
    color: #777;
}

.form-card h2,
.map-card h2,
.faq-card h2 {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-submit {
    background: #0d6efd;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #084298;
}

.faq-item {
    margin-bottom: 15px;
}

/* ================= SERVICES SECTION ================= */
/* ===== GLOBAL CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #f9fbff;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a2a66;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}


/* Card Style */
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Icon */
.service-card i {
    font-size: 40px;
    color: #ff0303;
    margin-bottom: 18px;
}

/* Title */
.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0a2a66;
}

/* Description */
.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }
}

/* ================= REGIONS SECTION ================= */
.coverage {
    padding: 60px 0;
    background: #f5f5f5;
}

.coverage h2 {
    text-align: center;
    margin-bottom: 10px;
}

.coverage .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: calc(33.33% - 14px);
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
}

.coverage-prev { left: 10px; }
.coverage-next { right: 10px; }

.dots {
    text-align: center;
    margin-top: 20px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .slide {
        min-width: 100%;
    }
}