* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
}

/* ========================= HEADINGS & PARAGRAPHS ========================= */
h1,
h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #222;
}

h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ========================= MAIN NAVBAR ========================= */
#mainNavbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    height: 90px;
    background: transparent;
    transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

/* ========================= LOGO ========================= */
.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
}

.navbar-brand img {
    max-height: 60px;
    transition: all 0.3s ease;
}

/* ========================= NAV LINKS ========================= */
.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ========================= DROPDOWN MENU ========================= */
.navbar-nav .nav-item.dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    border: none;
    padding: 10px 0;
    min-width: 220px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.navbar-nav .nav-item.dropdown:hover>.dropdown-menu,
.navbar-nav .nav-item.dropdown.show>.dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #fff;
    font-size: 15px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #ffd700;
    background: transparent;
}

.navbar-nav .dropdown-menu .dropdown-item::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover::after {
    width: calc(100% - 40px);
}

/* ========================= DESKTOP NAV ========================= */
@media (min-width: 1201px) {
    #mainNavbar .container-fluid {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .navbar-nav.left-nav {
        display: flex;
        flex-direction: row;
        gap: 40px;
        list-style: none;
        position: absolute;
        right: 40%;
        transform: translateX(-110%);
    }

    .navbar-nav.right-nav {
        display: flex;
        flex-direction: row;
        gap: 40px;
        list-style: none;
        position: absolute;
        left: 40%;
        transform: translateX(110%);
    }

    .navbar-nav.left-nav li,
    .navbar-nav.right-nav li {
        display: inline-flex;
        align-items: center;
    }

    .navbar-toggler,
    .offcanvas-menu {
        display: none !important;
    }
}

/* ========================= MID-DESKTOP (992px - 1200px) ========================= */
@media (min-width: 992px) and (max-width: 1200px) {

    .navbar-nav.left-nav,
    .navbar-nav.right-nav,
    .navbar-nav.d-lg-flex {
        display: none !important;
    }

    .navbar-toggler {
        display: flex !important;
    }
}

/* ========================= MOBILE & TABLET TOGGLER ========================= */
.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.navbar-toggler span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

#mainNavbar.scrolled .navbar-toggler span {
    background: #000;
}

/* ========================= OFFCANVAS MENU ========================= */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #111;
    padding: 80px 20px;
    transition: left 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-menu .nav-link {
    display: block;
    color: #fff !important;
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.offcanvas-menu .nav-link:hover {
    color: #ffd700;
}

/* ========================= MOBILE SUBMENU ========================= */
.mobile-dropdown .submenu {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height 0.3s ease;
}

.mobile-dropdown .submenu.active {
    max-height: 500px;
}

.mobile-dropdown .submenu .dropdown-item {
    color: #fff;
    padding: 12px 20px;
}

.mobile-dropdown .submenu .dropdown-item:hover {
    color: #ffd700;
}

.mobile-dropdown i.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* ========================= CLOSE BUTTON & OVERLAY ========================= */
.offcanvas-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    z-index: 1100;
    transition: transform 0.3s ease;
}

.offcanvas-close:hover {
    transform: scale(1.1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
}

.menu-overlay.active {
    display: block;
}

/* ========================= SCROLL EFFECT ========================= */
#mainNavbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
    height: 80px;
}

#mainNavbar.scrolled .nav-link {
    color: #000 !important;
}

#mainNavbar.scrolled .nav-link::after {
    background: #ffd700;
}

#mainNavbar.scrolled .navbar-brand img {
    filter: brightness(0) invert(0);
}

/* ========================= TABLET STYLES (768px - 991px) ========================= */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand {
        left: -8px;
        /* move logo slightly closer to toggle */
    }
}

/* ========================= MOBILE & TABLET RESPONSIVE (<=991px) ========================= */
@media (max-width: 991px) {
    #mainNavbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        /* vertically center logo & toggle */
        padding: 12px 20px;
        height: 60px;
    }

    .navbar-brand {
        position: relative;
        left: -45px;
        transform: none;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        max-height: 42px;
    }

    .navbar-toggler {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
    }

    .navbar-nav.d-lg-flex {
        display: none !important;
    }
}

/* Remove underline for dropdown parent links */
.nav-item.dropdown>.nav-link::after {
    display: none !important;
}
/* Fix mobile toggle button position on scroll for <400px screens */
@media (max-width: 400px) {
    #mainNavbar.scrolled {
        padding: 12px 16px;
        /* smaller side padding */
        height: 60px;
        /* consistent mobile navbar height */
        justify-content: space-between;
        /* keep toggle left, logo centered */
    }

    .navbar-toggler {
        position: relative;
        left: -8px;
        /* move toggle slightly left */
        width: 32px;
        /* easier to touch */
        height: 24px;
    }

    .navbar-toggler span {
        height: 4px;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* ========================= SECTION TITLES ========================= */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.section-title::before,
.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: gold;
    border-radius: 2px;
    margin: 0 15px;
}

.section-subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    

    .section-title::before,
    .section-title::after {
        width: 30px;
        margin: 0 10px;
    }
}

/* ========================= CAROUSEL ========================= */
#mainCarousel .carousel-caption .headline {
    color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 800px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 15px;
}

.carousel-caption .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.carousel-caption p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.carousel-caption .btn {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 10px 25px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 30px;
    cursor: pointer;
}

.carousel-caption .btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-item img {
        height: 410px;
        object-fit: cover;
    }

    .carousel-caption {
        top: 58%;
    }

    #mainCarousel .carousel-caption .headline {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .carousel-caption .btn {
        padding: 9px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .carousel-caption {
        top: 55%;
    }

    #mainCarousel .carousel-caption .headline {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    .carousel-caption .btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}

/* ========================= ABOUT SECTION ========================= */
.about-section {
    background: #f8f8f8;
    padding: 80px 20px;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-img {
    width: 100%;
    max-width: 550px;
    height: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    flex: 1 1 45%;
}

.about-text {
    max-width: 600px;
    flex: 1 1 45%;
    text-align: left;
    color: #444;
    line-height: 1.8;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.about-text em {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #111;
    display: block;
    margin: 20px 0;
}


/* Responsive About */
@media (max-width: 992px) {
    .about-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        width: 90%;
        height: 400px;
    }

    .about-text {
        max-width: 90%;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

}
/* =========================
   SWIPER SECTION WITH PREMIUM GRAY RINGS + WAVES
========================= */
.swiper-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background: #fff; /* White base background */
}

/* Large gray ring - top left */
.swiper-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: -250px;
    left: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120,120,120,0.25) 0%, rgba(120,120,120,0) 70%);
    z-index: 0;
}

/* Medium gray ring - bottom right */
.swiper-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100,100,100,0.2) 0%, rgba(100,100,100,0) 70%);
    z-index: 0;
}

/* Wave layers for premium effect */
.swiper-section .wave-layer1,
.swiper-section .wave-layer2,
.swiper-section .wave-layer3 {
    position: absolute;
    width: 200%;
    height: 500px;
    left: -50%;
    border-radius: 50% 50% 0 0;
    pointer-events: none;
    z-index: 0;
}

/* Wave gradient layers */
.swiper-section .wave-layer1 {
    top: -100px;
    background: linear-gradient(120deg, rgba(120,120,120,0.12) 0%, rgba(255,255,255,0) 70%);
}

.swiper-section .wave-layer2 {
    top: -50px;
    background: linear-gradient(100deg, rgba(100,100,100,0.08) 0%, rgba(255,255,255,0) 70%);
}

.swiper-section .wave-layer3 {
    top: 0;
    background: linear-gradient(80deg, rgba(80,80,80,0.05) 0%, rgba(255,255,255,0) 70%);
}

/* Ensure Swiper content is above rings and waves */
.swiper-section .swiper,
.swiper-section h2 {
    position: relative;
    z-index: 1;
}

/* ========================= Swiper Slides ========================= */
.swiper {
    width: 100%;
    padding: 40px 0;
}

.swiper-slide {
    width: 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ========================= Slide Button ========================= */
.slide-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    text-decoration: none;
    color: #222;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: rgba(120, 120, 120, 0.2);
    color: #000;
}
/* ========================= Swiper Pagination Dots ========================= */
.swiper-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a0a0a0, #e0e0e0) !important;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-section .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #666666, #cccccc) !important;
    opacity: 1;
    transform: scale(1.2);
}


/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px; /* touch-friendly size */
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Image inside button */
.whatsapp-button img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.whatsapp-button:hover {
    background-color: #075e54;
    transform: scale(1.1);
}

.whatsapp-button:hover img {
    transform: scale(1.2);
}

/* =========================
   RESPONSIVE / MOBILE ADJUSTMENTS
========================= */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-button img {
        width: 20px;
        height: 20px;
    }
}

/* ========================= TESTIMONIAL SECTION ========================= */
.testimonials-section {
    padding: 80px 0;
    background: transparent; /* Removed background color */
    text-align: center;
}

/* Section heading */
.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #222;
}

/* ========================= SWIPER SLIDER CARDS ========================= */
.swiper-slide {
    display: flex;
    justify-content: center; /* Center card in slide */
}

.testimonial-card {
    background: transparent; /* Removed card background */
    border: 2px solid rgba(96, 96, 96, 0.401); /* Gold border */
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0 auto; /* Centering for responsive */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ========================= TESTIMONIAL IMAGE ========================= */
.testimonial-card img {
    width: 180px;      /* Rectangle width */
    height: 150px;      /* Rectangle height */
    border-radius: 10px; /* Slightly rounded rectangle */
    margin-bottom: 20px;
    object-fit: cover; /* Ensures image fills rectangle */
    border: 3px solid rgba(255, 255, 255, 0); /* Gold border around image */
    transition: transform 0.3s ease;
}

.testimonial-card img:hover {
    transform: scale(1.05);
}

/* ========================= TESTIMONIAL TEXT ========================= */
.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* ========================= CLIENT NAME ========================= */
.testimonial-card h5 {
    font-size: 17px;
    color: linear-gradient(135deg, #666666, #cccccc) !important;
    font-weight: 600;
    margin-top: auto;
}

/* ========================= RATING ========================= */
.testimonial-card .rating {
    font-size: 16px;
    margin-top: 10px;
}

/* ========================= SWIPER PAGINATION ========================= */
.swiper-pagination-bullet {
    background:linear-gradient(135deg, #a0a0a0, #e0e0e0) !important;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background:linear-gradient(135deg, #666666, #cccccc) !important;
}

/* ========================= RESPONSIVE LAYOUT ========================= */
@media (max-width: 1200px) {
    .testimonials-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Center vertically */
        text-align: center;
    }

    .testimonial-card img {
        width: 150px;  /* Adjusted rectangle size */
        height: 180px;
        margin: 15px auto; /* Center horizontally */
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .testimonial-card h5 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonial-card img {
        width: 150px;  /* Adjusted rectangle size for mobile */
        height: 180px;
        margin: 15px auto;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .testimonial-card h5 {
        font-size: 14px;
    }
}

/* =========================
   SERVICE SECTION
========================= */
.service-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e02e);
}

/* Section Heading with Gold Lines */
.section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

/* =========================
   SERVICE BLOCKS
========================= */
.service-block {
    margin-bottom: 80px;
}

/* Subtitle with golden line */
.service-subtitle {
    font-size: 16px;
    color: #555;
    position: relative;
    display: inline-block;
}

.service-subtitle::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #f9b233;
    /* golden line */
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

/* Titles and text */
.service-title {
    font-size: 32px;
    font-weight: 600;
    margin: 15px 0;
    color: #222;
    text-align: left;
    /* keep left aligned */
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
    text-align: left;
    /* keep left aligned */
}

/* =========================
   BUTTON STYLES (Transparent with Black Border)
========================= */
.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0);
    /* fully transparent */
    color: #000;
    /* black text */
    border: 2px solid #0000007a;
    /* solid black border */
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    /* pill style */
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: rgba(0, 0, 0, 0);
    color: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.089);
}

/* =========================
   PREMIUM GRID IMAGE LAYOUT
========================= */
.service-img-wrapper-grid {
    display: grid;
    grid-template-areas:
        "main sub1"
        "main sub2";
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.main-img {
    grid-area: main;
}

.sub-img:nth-child(2) {
    grid-area: sub1;
}

.sub-img:nth-child(3) {
    grid-area: sub2;
}

.service-img-wrapper-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #f5e8a6;
    /* subtle gold border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-img-wrapper-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   RESPONSIVENESS
========================= */
@media (max-width: 992px) {
    .services-title {
        font-size: 32px;
    }

    .services-title::before,
    .services-title::after {
        width: 45px;
    }

    .service-text {
        margin-bottom: 20px;
    }

    .btn-service {
        margin-top: 8px;
        margin-bottom: 20px;
        padding: 10px 26px;
        font-size: 15px;
    }

    .service-block {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .service-img-wrapper-grid {
        display: grid;
        grid-template-areas:
            "main sub1"
            "main sub2";
        grid-template-columns: 1.2fr 0.8fr;
        gap: 12px;
        align-items: center;

        background: transparent;
        /* transparent container */
        border: none;
        box-shadow: none;
    }

    /* Remove gold border for all images in mobile */
    .service-img-wrapper-grid img {
        border: none !important;
        /* ✅ no gold border */
        box-shadow: none !important;
        /* ✅ no shadow */
        background: transparent;
    }

    /* Main Image */
    .service-img-wrapper-grid .main-img img {
        grid-area: main;
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: contain;
        border-radius: 10px;
    }

    /* Sub Images */
    .service-img-wrapper-grid .sub-img:nth-child(2) img,
    .service-img-wrapper-grid .sub-img:nth-child(3) img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        border-radius: 10px;
    }
        .services-title {
            font-size: 20px;
            /* smaller */
        }
    
        /* Each service title */
        .service-title {
            font-size: 18px;
            /* was 20px, reduced */
            margin-bottom: 8px;
            text-align: left;
        }
    
        /* Service description text */
        .service-text {
            font-size: 15px;
            /* was 14px, reduced */
            line-height: 1.5;
            /* tighter spacing */
            margin-bottom: 10px;
            text-align: left;
        }
    
        /* Buttons */
        .btn-service {
            font-size: 12px;
            /* smaller button text */
            padding: 8px 18px;
            border-radius: 40px;
        }
}

/* =========================
   HERO BANNER SECTION
========================= */
.hero-banner {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* scroll effect */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay */
.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* semi-transparent for readability */
    z-index: 1;
}

/* Banner Content Flex Layout */
.banner-content.hero-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: 90%;
    padding: 20px;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* HERO TEXT (LEFT) */
.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #9e9e9e;
}

/* HERO BUTTON (RIGHT) */
.hero-button .btn-book {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0);
    /* fully transparent */
    color: #fff;
    /* white text */
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    /* white border */
    border-radius: 0px;
    transition: all 0.3s ease;
    /* smooth hover */
}

.hero-button .btn-book:hover {
    background: rgba(255, 255, 255, 0.1);
    /* slight transparent white on hover */
    cursor: pointer;
}

/* =========================
   FADE-IN ANIMATIONS
========================= */

/* Initial state */
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Left fade-in: from left */
.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* Right fade-in: from right */
.fade-in-right {
    transform: translateX(40px);
}

.fade-in-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.delay-1.show {
    transition-delay: 0.2s;
}

.delay-2.show {
    transition-delay: 0.6s;
}

.delay-3.show {
    transition-delay: 1s;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
    .banner-content.hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-button {
        margin-top: 20px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-button .btn-book {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-button .btn-book {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}