.gallery-style-2 .swiper-slide {
    height: 100% !important;
}

/* SECTION BACKGROUND */
.custom-hero-slider {
    background: #E9E5DF;
    padding: 60px 0;
}

/* SLIDE */
.custom-hero-slider .single-slider {
    position: relative;
}

/* BOXED IMAGE */
.custom-hero-slider .slider-inner {
    position: relative;
    height: 75vh;
    border-radius: 12px;
    overflow: hidden;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ❌ REMOVE OVERLAY COMPLETELY */
.custom-hero-slider .slider-overlay {
    display: none !important;
}

/* ALSO REMOVE ANY ::before OVERLAY */
.custom-hero-slider .slider-inner::before {
    display: none !important;
}

/* CONTENT */
.custom-hero-slider .slider-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: center;
}

/* TEXT COLOR (adjust for visibility) */
.custom-hero-slider .title {
    font-size: 48px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #ffffff; /* change if bg light */
}

.custom-hero-slider .sub-title {
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.custom-hero-slider p {
    color: #ffffff;
    font-size: 15px;
}

/* BUTTON */
.custom-hero-slider .btn {
    padding: 12px 28px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    background: transparent;
}

.custom-hero-slider .btn:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .custom-hero-slider .slider-inner {
        height: 400px;
    }

    .custom-hero-slider .title {
        font-size: 30px;
    }
}

/* SECTION */
.gallery-style-2 {
    padding: 60px 0;
    background: #E9E5DF;
}

/* HEADER */
.gallery-style-2 .gallery-header {
    margin-bottom: 30px;
}

.gallery-style-2 .gallery-title {
    font-size: 32px;
    font-weight: 700;
}

/* SWIPER */
.gallery-style-2 .swiper {
    width: 92%;
    margin: auto;
    padding-bottom: 50px;
}


/* ITEM */
.gallery-style-2 .gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.gallery-style-2 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* HOVER */
.gallery-style-2 .gallery-item:hover img {
    transform: scale(1.08);
}

/* ARROWS */
.gallery-style-2 .swiper-button-next,
.gallery-style-2 .swiper-button-prev {
    color: #000;
    width: 45px;
    height: 45px;
}

/* DOTS */
.gallery-style-2 .swiper-pagination-bullet {
    background: #000;
    opacity: 0.4;
}

.gallery-style-2 .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1024px) {
    .gallery-style-2 .swiper-slide {
        height: 360px;
    }

    .gallery-style-2 .swiper {
        width: 94%;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {
    .gallery-style-2 .swiper-slide {
        height: 260px;
    }

    .gallery-style-2 .swiper {
        width: 95%;
    }

    .gallery-style-2 .gallery-item {
        border-radius: 12px;
    }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {
    .gallery-style-2 .swiper-slide {
        height: 220px;
    }

    .gallery-style-2 .swiper {
        width: 96%;
    }
}

/* SECTION */
.custom-hero-section {
    background: #e9e5df;
    padding: 80px 0;
}

/* CONTAINER */
.custom-hero-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

/* HEADER */
.custom-hero-header {
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.custom-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* DESCRIPTION */
.custom-hero-desc p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* SUBTITLE */
.custom-hero-subtitle {
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #000;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .custom-hero-title {
        font-size: 28px;
    }

    .custom-hero-desc p {
        font-size: 15px;
    }
}