/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Updated font-family imports and base */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap'); /* Add font imports */

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #333; /* Default text color */
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 5px 10px;
    box-shadow: none;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.sticky {
    padding: 15px 10px;
    background: #172b4d; /* Warna biru tua saat sticky */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.navbar .max-width {
    display: flex;
    align-items: center;
    margin: auto;
    padding: 0 30px;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    margin-right: 10px;
}

.navbar .logo span {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.navbar.sticky .logo span {
    color: #fff;
}

.navbar .menu {
    display: flex;
    list-style: none;
    margin-right: auto;
}

.navbar .menu li {
    padding: 20px 30px;
}

.navbar .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.sticky .menu li a {
    color: #fff;
}
.navbar .menu li a:hover {
    color: #efff10; /* Menggunakan kuning sebagai warna hover */
}
/* Home Section */
.home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/banner.jpg') no-repeat center center/cover;
    background-position: center 30%;
    color: #fff;
    position: relative;
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home .max-width {
    z-index: 2;
}

.home .home-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.home .home-content .text-1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.home .home-content .text-2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #efff10;
}

.home .home-content .text-3 {
    font-size: 35px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #4b0082;
}

.home .home-content .text-3 .typing {
    color: #efff10;
    font-weight: 700;
}

/* Global Section Styling */
section {
    padding: 100px 20px;
    background-color: #f4f4f4;
}

section .title {
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

section .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4b0082;
}

/* About Section */
.about {
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.about-content .column {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.about-content .column p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.about-content .column.left img { /* Added specific targeting for left column image */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 20px auto; /* Add top margin to separate from text */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content .column h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.about-content .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-content .column ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.5;
}

.about-content .column ul li::before {
    content: "✓";
    color: #4b0082;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* New styles for toggle functionality */
.toggle-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px; /* Added horizontal padding */
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee; /* Added top border for better separation */
    margin-top: 15px; /* Reduced top margin slightly */
    margin-bottom: 0;
    border-radius: 5px; /* Slightly rounded corners for headers */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow for headers */
    font-weight: 600; /* Make header text bolder */
}

.toggle-header:hover {
    color: #4b0082;
    background-color: #f0f0f0; /* Slight change on hover */
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-icon.rotate {
    transform: rotate(180deg);
}

.toggle-content {
    display: none;
    padding: 10px 15px 15px 15px; /* Adjusted padding */
    margin-bottom: 15px;
    border: 1px solid #eee; /* Add border around content */
    border-top: none; /* No top border as header has one */
    background-color: #ffffff; /* White background for content */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.toggle-content p {
    margin-bottom: 0;
}

.toggle-content ul {
    margin-top: 10px;
    list-style: disc; /* Use disc for lists */
    padding-left: 20px; /* Indent list items */
}

.toggle-content ul li {
    margin-bottom: 5px; /* Reduce space between list items */
    padding-left: 0; /* Remove extra padding from global li rule */
}

.toggle-content ul li::before {
    content: none; /* Remove checkmark from list items inside toggled content */
}

/* Services Section */
.services {
    text-align: center;
    background-color: #f9f9f9;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.services-wrapper .column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 450px;
    text-decoration: none;
    color: inherit;
}

.service-card .service-title {
    color: #333;
}

.service-card .service-desc {
    color: #555;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.service-icon {
    font-size: 3.0rem;
    margin-right: 1.5rem;
    color: #4b0082;
    flex-shrink: 0;
}
.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
    color: #333;
}
.service-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
}

/* Service Detail Page Styles */
.service-detail {
    padding: 120px 20px 60px 20px;
    background-color: #ffffff;
}

.service-detail .title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.service-detail .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4b0082;
}

/* Modified flexbox styles for service-detail-content */
.service-detail-content {
    display: flex;
    flex-direction: column; /* Stack content blocks vertically */
    gap: 60px; /* Space between each service content block */
}

.service-detail-content .content-block {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    align-items: flex-start; /* Align items to the top */
    gap: 30px; /* Jarak antar kolom dalam satu blok layanan (diperbarui) */
    margin-bottom: 20px; /* Add some space below each content block */
}

/* General column styling */
.service-detail-content .column {
    flex: 1; /* Allow columns to grow and shrink */
    min-width: 300px; /* Minimum width before wrapping */
}

/* Specific column styles for clarity and control */
.service-detail-content .text-column {
    flex: 1;
    /* No default order, will be set by specific content-block rules */
}

.service-detail-content .image-stack-container {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack images vertically */
    gap: 15px; /* Jarak antar gambar yang bertumpuk (diperbarui) */
}

/* Order for AC Section (Text Left, Images Stacked Right) */
.service-detail-content .content-block:nth-child(1) .text-column {
    order: 1;
}
.service-detail-content .content-block:nth-child(1) .image-stack-container {
    order: 2;
}

/* Order for Lift/Eskalator Section (Images Stacked Left, Text Right) */
.service-detail-content .content-block:nth-child(2) .image-stack-container {
    order: 1;
}
.service-detail-content .content-block:nth-child(2) .text-column {
    order: 2;
}


.service-detail-content .column img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 0 auto; /* Center images that are block level */
}

.service-detail-content .column p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.service-detail-content .column h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content .column ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content .column ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}

.service-detail-content .column ul li::before {
    content: "✓";
    color: #4b0082;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery Section */
.gallery {
    background-color: #f4f4f4;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.interactive-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.interactive-carousel-container .carousel.owl-carousel {
    flex-grow: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 15px;
}

.gallery-nav-button {
    background-color: rgba(75, 0, 130, 0.6);
    color: white;
    border: none;
    padding: 10px 5px;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-nav-button:hover {
    background-color: rgba(75, 0, 130, 0.9);
}

@media (max-width: 1024px) {
    .interactive-carousel-container {
        max-width: 95%;
    }
    .interactive-carousel-container .carousel.owl-carousel {
        margin: 0 10px;
    }
    .gallery-nav-button {
        padding: 15px 8px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .interactive-carousel-container {
        max-width: 100%;
    }
    .interactive-carousel-container .carousel.owl-carousel {
        margin: 0 5px;
    }
    .gallery-nav-button {
        font-size: 18px;
        padding: 12px 6px;
    }
}

@media (max-width: 480px) {
    .gallery-nav-button {
        font-size: 16px;
        padding: 10px 5px;
    }
    .interactive-carousel-container .carousel.owl-carousel {
         max-width: calc(100% - 60px);
    }
}

.carousel {
    width: 100%;
    max-width: 900px;
}

.carousel .item {
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Video Container */
.video-container {
    margin-top: 20px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.video-container h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.video-container video {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Partners and Clients Sections */
.partners, .clients {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.partners .title, .clients .title {
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}
.partners .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4b0082;
}
.clients .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4b0082;
}

/* General carousel styling - used for partners/clients, extended for new carousel */
.carousel {
    width: 80%;
    margin: 0 auto;
}

.carousel .item {
    text-align: center;
    padding: 10px;
}

.partners .carousel img,
.clients .carousel img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .carousel {
        width: 95%;
    }
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #4b0082;
    color: white;
    font-size: 0.9em;
}

/* Contact Section Styling */
.contact {
    background-color: #f4f4f4;
    padding-top: 120px;
}

.contact-main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.contact-column {
    flex: 1;
    min-width: 300px;
}

.map-column {
    flex-basis: 60%;
    min-width: 400px;
}

.cards-column {
    flex-basis: 35%;
    min-width: 300px;
}

.map__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map__card iframe {
    flex-grow: 1;
    min-height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.map__data {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact__container.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    height: 100%;
    align-content: start;
    padding-top: 20px;
}

.contact__card {
    background-color: #fff;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact__card-icon {
    display: block;
    font-size: 2.8rem;
    color: #4b0082;
    margin-bottom: 0.4rem;
}

.contact__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.contact__card-data {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.contact__button {
    color: #4b0082;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.25rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

.contact__button:hover {
    color: #efff10;
}

.contact__button-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact__button:hover .contact__button-icon {
    transform: translateX(0.25rem);
}

/* Floating Action Button (FAB) for Contact */
.contact-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4b0082;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-fab:hover {
    background-color: #5a009e;
    transform: scale(1.05);
}

/* Contact Pop-up Styles */
.contact-popup {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: fadeInScale 0.3s ease-out forwards;
}

.contact-popup.show {
    display: flex;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-popup-header {
    background-color: #4b0082;
    color: white;
    padding: 15px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.contact-popup-header .close-popup {
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.contact-popup-header .close-popup:hover {
    color: #efff10;
}

.contact-popup-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-item i {
    font-size: 22px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Specific colors for contact items */
.contact-item.whatsapp i {
    color: #25D366;
}
.contact-item.messenger i {
    color: #0078FF;
}
.contact-item.email i {
    color: #D44638;
}
.contact-item.instagram i {
    color: #C13584;
}
.contact-item.tiktok i {
    color: #000;
}

.contact-item:hover {
    background-color: #f0f0f0;
    color: #4b0082;
}
.contact-item:hover i {
    color: #4b0082;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .navbar .menu {
        flex-direction: column;
    }
    .services-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .services-wrapper .column {
        width: 100%;
        max-width: 500px;
    }
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-content .column {
        width: 100%;
        max-width: 500px;
    }
    /* Contact Section - Adjust for stacking on smaller screens */
    .contact-main-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .map-column, .cards-column {
        flex-basis: 100%;
        min-width: unset;
        max-width: 600px;
    }
    .contact__container.grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        margin-left: 0;
    }
    .navbar .menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 10px;
        background: #172b4d;
        width: 60%;
        border-radius: 5px;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .home-content {
        padding: 20px;
    }
    .home .home-content .text-1 {
        font-size: 24px;
    }
    .home .home-content .text-2 {
        font-size: 20px;
    }
    .home .home-content .text-3 {
        font-size: 28px;
    }
    section .title {
        font-size: 30px;
    }
    .service-card {
        padding: 1rem;
    }
    .service-icon {
        font-size: 2.5rem;
        margin-right: 1rem;
    }
    .service-title {
        font-size: 1.1rem;
    }
    .service-desc {
        font-size: 0.9rem;
    }
    .about-content .column h3 {
        font-size: 20px;
    }
    .about-content .column p, .about-content .column ul li {
        font-size: 0.9em;
    }
    .contact__card {
        padding: 1rem;
    }
    .contact__card-icon {
        font-size: 2.2rem;
    }
    .contact__card-title {
        font-size: 1rem;
    }
    .contact__card-data {
        font-size: 0.8rem;
    }
    .contact__button {
        font-size: 0.85rem;
    }
    /* Specific adjustment for map height on smaller screens */
    .map__card iframe {
        min-height: 300px;
    }

    /* Responsive adjustments for service-detail-content columns */
    .service-detail-content .content-block {
        flex-direction: column; /* Stack columns vertically on smaller screens */
        align-items: center; /* Center items when stacked */
    }

    .service-detail-content .column {
        width: 100%; /* Full width when stacked */
        min-width: unset; /* Remove min-width when stacked */
        text-align: center; /* Center text if needed */
    }

    .service-detail-content .column.left p,
    .service-detail-content .column.left h3,
    .service-detail-content .column.left ul,
    .service-detail-content .column.right p,
    .service-detail-content .column.right h3,
    .service-detail-content .column.right ul {
        text-align: left; /* Keep text left-aligned within its column */
    }
}

@media (max-width: 500px) {
    .navbar .menu li {
        padding: 10px;
    }
    .home .home-content .text-1,
    .home .home-content .text-2 {
        font-size: 18px;
    }
    .home .home-content .text-3 {
        font-size: 22px;
    }
    .about-content .column {
        flex: 100%;
        padding: 10px;
    }
    .about-content .column.left, .about-content .column.right {
        margin-bottom: 20px;
    }
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    /* Contact Section cards on very small screens */
    .contact__container.grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-fab {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .contact-popup {
        bottom: 75px;
        right: 20px;
        width: calc(100% - 40px);
        max-width: 280px;
    }

    .contact-popup-header h3 {
        font-size: 1.1rem;
    }

    .contact-popup-header .close-popup {
        font-size: 1.6rem;
    }

    .contact-item {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .contact-item i {
        font-size: 20px;
        margin-right: 12px;
    }
}
/* Styling for hidden and visible sections (for fade-in/fade-out animation) */
.hidden-section {
    opacity: 0;
    transform: translateY(20px); /* Optional: add a slight slide-up effect */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */
}

.visible-section {
    opacity: 1;
    transform: translateY(0);
}

/* Specific styling for cleaning service gallery carousel */
.cleaning-service-gallery {
    padding: 60px 20px; /* Adjust padding as needed */
    background-color: #f9f9f9;
    text-align: center;
}

.cleaning-service-gallery .title {
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.cleaning-service-gallery .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4b0082;
}

.cleaning-service-gallery .interactive-carousel-container {
    max-width: 1000px; /* Adjust max-width for this specific carousel if needed */
    margin-left: auto;
    margin-right: auto;
}

.cleaning-service-carousel .item img {
    height: 300px; /* Set a specific height for carousel images */
    object-fit: cover;
}

/* Ensure the `image-stack-container` in service-detail correctly stacks two images */
.service-detail-content .image-stack-container img:nth-child(n+2) {
    margin-top: 15px; /* Add margin between stacked images */
}