/* Custom styles */
body {
    font-family: "Space Grotesk", sans-serif;
}

html {
    scroll-behavior: smooth;
}

header {
    height: auto;
    overflow: hidden;
    position: relative;
}

.video-container {
    position: relative;
    height: 70vh;
}

video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.carousel-caption {
    bottom: 55%;
    left: 8%;
    max-width: 500px;
}

.carousel-caption h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: #FF6500;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
}


@media (max-width:  575.98px) {
    .carousel-caption {
        bottom: 30%;
    }
}


/* Logo settings */
/* .logo-container {
    position: absolute;
    top: 50%;
    left: 10%; 
    transform: translateY(-50%);
}

.logo {
    max-height: 40%; 
    max-width: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-size: 1rem; 
    margin-top: 10px;
    text-align: center;
} */

/* Transparent Navbar */
.navbar {
    z-index: 1000;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-brand-text {
    color: #333;
    font-weight: 600;
    font-size: 1.6rem;
}

.nav-brand-text:hover {
    color: #333;
}

.nav-link {
    color: #FF6500 !important;
    font-size: 1.2rem;
    font-weight: 600;
    /* Ensure text remains visible */
}

.nav-link:hover {
    color: #459FD5 !important;

    /* Hover color using logo color */
}

/* Responsive layout for stacking videos on smaller screens */
@media (max-width: 991.98px) {
    .video-section {
        flex-direction: column;
    }

    .video-container {
        height: 300px;
        /* Reduce video height on smaller screens */
    }

    .logo {
        max-height: 50%;
        /* Maintain the logo's max height as 50% of the reduced video height */
        max-width: 80%;
        /* Maintain the logo's max width as 80% of the video width */
    }
}

@media (max-width: 575.98px) {
    .navbar-nav {
        text-align: center;
    }
}

/* Our Services */
.our-services {
    padding: 60px 20px;
    text-align: center;
}

.our-services h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.our-services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.our-service {
    background-color: #f7f6f6;
    padding: 30px 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    clip-path: polygon(0% 0%, 79% 0, 100% 20%, 100% 100%, 0% 100%) !important;
    margin: 10px 10px;
}

.our-services-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 1000px;
    margin: 10px auto;
}

.our-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #FF6500;
    color: #f8f9fa;
}

.our-service-icon {
    font-size: 50px;
    margin-bottom: 10px; /* Adjust margin below the icon */
    color: #FF6500; /* Set a color for the icon */
    transition: transform 0.6s ease;
}

.our-service:hover .our-service-icon {
    transform: rotateY(360deg); 
    color: #f8f9fa;
}

.our-service:hover .our-service-btn {
    color: #FF6500;
    background-color: #f8f9fa;
}

.our-service-content {
    text-align: center; /* Center text below the icon */
}

.our-service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.our-service-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.our-service-btn {
    background-color: #FF6500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.our-service-btn:hover {
    background-color: #459FD5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-services-container {
        flex-direction: column;
        align-items: center;
    }

    .our-service {
        width: 100%;
        max-width: 300px;
    }
}



.fab {
    position: fixed;
    top: 110px;
    /* Adjust based on navbar height */
    right: 25px;
    /* Distance from right */
    background-color: #FF6500;
    /* Button color matching logo */
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    /* Rounded corners */
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    display: flex;
    /* Allows positioning of icon and text */
    align-items: center;
    transition: width 0.3s ease;
    /* Smooth transition effect */
    z-index: 1000;
    overflow: hidden;
    /* Hide overflowing text */
    white-space: nowrap;
    /* Prevent text wrapping */
    width: 50px;
    /* Initial width for icon-only state */
}

.fab i {
    margin-right: 0;
    transition: margin-right 0.3s ease;
    /* Smooth icon margin transition */
}

.fab .fab-text {
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Smooth text fade-in */
}

.fab:hover {
    background-color: #459FD5;
    /* Hover color */
    width: 150px;
    /* Expand button on hover to fit text */
    color: white;
}

.fab:hover i {
    margin-right: 10px;
    /* Space for the text when hovered */
}

.fab:hover .fab-text {
    opacity: 1;
    /* Show text on hover */
}

footer {
    background-color: #459FD5;
    /* Use logo color */
    color: white;
}

footer p {
    margin: auto;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Cleaning Section */

.cleaning-section-grey {
    background-color: #f8f9fa;
}

.cleaning-section-red {
    background-color: #ECECEC;
}

.text-section h2 {
    font-weight: bold;
    font-family: 'Helvetica', sans-serif;
}

.text-section h6 {
    font-size: 14px;
}

.text-section p {
    font-size: 16px;
    line-height: 1.6;

}

.text-section .btn {
    margin-top: 20px;
}

.cleaning-section img {
    max-width: 100%;
    /* Ensure responsiveness */
    height: auto;
}

.rounded-img {
    width: 100%;
    /* Ensures the image is responsive */
    max-width: 400px;
    /* Set the maximum width */
    height: auto;
    max-height: 80vh;
    /* Maintain aspect ratio */
    border-radius: 15px;
    /* Rounded corners */
    object-fit: cover;
    /* Ensures the image fits within the set dimensions */
}

@media (max-width: 768px) {
    .cleaning-section {
        text-align: center;
    }

    .text-section {
        text-align: left !important;
    }
}

/* Styling for Our Services title */
.services-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.color-orange {
    color: #FF6500;
}

/* Unique styles for the service cards */
.service-card {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
    /* Fixed card height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid #FF6500;
}

.card-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title displayed at bottom before hover */
.card-title-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black background */
    color: white;
    padding: 10px;
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.card-title-bottom h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Hover effect: Show overlay with title and text centered */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-hover-overlay .card-hover-text {
    text-align: center;
    padding: 20px;
}

.card-hover-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-hover-overlay p {
    font-size: 14px;
}

/* Show both title and text on hover */
.service-card:hover .card-hover-overlay {
    opacity: 1;
}

.service-card:hover .card-title-bottom {
    opacity: 0;
    /* Hide the bottom title when hovering */
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .service-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 200px;
    }
}


/* Custom card section */
.custom-card-section {
    padding: 50px 0;
}

.custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
}

.custom-card-img {
    width: 100%;
    height: 200px;
}

.custom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-card-body {
    padding: 15px;
    text-align: center;
}

.custom-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-card-text {
    font-size: 1rem;
}

/* Hover effect */
.custom-card:hover {
    transform: scale(1.1);
}

/* Responsive card sizes */
@media (max-width: 768px) {
    .custom-card {
        max-width: 250px;
    }

    .custom-card-img {
        height: 175px;
    }
}

@media (max-width: 576px) {
    .custom-card {
        max-width: 200px;
    }

    .custom-card-img {
        height: 150px;
    }
}

/* Partner Section */
.partner-section {
    padding: 50px 0;
}

/* Flexbox layout for the heading and icon */
.partners-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.partners-heading h3 {
    margin-right: 15px;
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Styling for the image next to the heading */
.partner-icon {
    max-width: 70px;
    height: auto;
}

/* Container for each partner logo */
.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Ensure logos are resized to fit within the container */
.partner-logo-container img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* Slight hover zoom effect */
.partner-logo-container:hover {
    transform: scale(1.05);
    border: 1px solid #FF6500;
}

/* Responsive grid */
.partner-grid .col-md-3,
.partner-grid .col-lg-2 {
    margin-bottom: 30px;
}

/* Media Queries for smaller screen sizes */
@media (max-width: 768px) {
    .partner-logo-container {
        height: 120px;
    }

    .partner-logo-container img {
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .partner-logo-container {
        height: 100px;
    }

    .partner-logo-container img {
        max-height: 60px;
    }
}

/* Testimonials
/* Card adjustments */

.google-logo {
    width: 60px !important;
    align-self: center;
}

.testimonial-card {
    width: 200px;
    font-size: 14px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;     
    overflow: hidden;            /* Hide the overflowing text */
    text-overflow: ellipsis;
    height: 430px;
}

.testimonial-card:hover {
    transform: scale(1.05);
    border: 1px solid #FF6500;
}

/* Flexbox alignment */
.testimonial-card-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card .user {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #585656;
    color: white;
    display: flex; 
    justify-content: center; 
    align-items: center;
     font-size: 24px; 
     font-weight: bold;
     margin-bottom: 10px;
}

.testimonial-card h6 {
    font-weight: bold;
    font-size: 1em;
}

.testimonial-card p {
    font-size: 12px;
}

.google-logo {
    width: 60px !important;
    align-self: center;
}

/* Owl carousel adjustments */
.owl-carousel {
    width: 80%;
    margin-bottom: 15px;
}

.testimonial-carousel {  
    width: 100%;
    max-width: 1200px;
}

.owl-carousel .owl-stage-outer {
    padding: 40px 10px;
    height: 500px;
    align-items: center;
}

/* Align carousel navigation buttons */
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 30px;
    z-index: 999;
}

.owl-prev {
    position: absolute;
    left: -20px;
    /* Adjust this value based on how far left you want */
    top: 50%;
    transform: translateY(-50%);
    /* Center the button vertically */
    background-color: transparent;
    /* Make the background transparent */
    border: none;
    /* Remove any border if present */
    font-size: 30px;
    /* Adjust the size of the arrow icon */
}

/* Position the next button to the right */
.owl-next {
    position: absolute;
    right: -20px;
    /* Adjust this value based on how far right you want */
    top: 50%;
    transform: translateY(-50%);
    /* Center the button vertically */
    background-color: transparent;
    border: none;
    font-size: 30px;
}

/* Adjust z-index to ensure buttons appear on top of the carousel */
.owl-prev,
.owl-next {
    z-index: 999;
    /* Higher than other elements */
}

.owl-theme .owl-nav [class*='owl-'] {
    background: inherit !important;
    color: #bbb !important
}

.owl-theme .owl-nav [class*='owl-']:hover {
    color: #FF6500 !important
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 20px;
    }
}

@media (max-width: 576px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .owl-carousel .owl-stage-outer {
        padding: 20px 5px;
    }
}


/* Contact US */

#contact .contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-details a {
    text-decoration: none;
    color: var(--bs-body-color);
}

.contact-details a:hover {
    color: #FF6500;
}

#contact .contact-details p {
    font-size: 1.2rem;
}

#contact .contact-details i {
    color: #FF6500;
    /* Adjust color to match your design */
    margin-right: 8px;
}

#contact .form-group {
    margin-bottom: 1.5rem;
}

#contact .btn-primary {
    background-color: #FF6500;
    border-color: #FF6500;
}

#contact .btn-primary:hover {
    background-color: #357bb3;
    border-color: #357bb3;
}

.embed-map {
    height: 100%;
}

@media (max-width: 768px) {
    .embed-map {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .embed-map {
        height: 300px;
    }
}

/* New Services Section */
.services-section {
    padding: 20px;
}

.services-section-title {
    max-width: 1400px;
    width: 100%;
    padding: 10px;
}

.services-section-title h1 {
    margin: 0.67em 0;
    font-size: 55px;
    line-height: 75px;
    margin-bottom: 25px !important;
    font-weight: 700;
    max-width: 50%;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
    min-height: 600px;
}

.services-list {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
}

.service-btn {
    display: flex;
    /* Use flex to align items inline */
    justify-content: flex-start;
    /* Align items to the start */
    align-items: center;
    /* Center align items vertically */
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #797979;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #797979;
}

.service-btn .arrow {
    display: none;
    margin-left: auto;
}

.service-btn:hover {
    background-color: #FF6500;
    color: #fff;
}

.service-btn:hover .arrow {
    display: inline;
}

.service-btn.active {
    background-color: #FF6500;
    color: #fff;
}

.service-btn.active .arrow {
    display: inline;
}

.service-btn h3 {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline;
    margin: 0;
}

.service-content {
    flex-basis: 70%;
    padding-left: 20px;
}

.service-item {
    display: none;
    /* Hide all service content initially */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.service-item.active {
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.service-left {
    text-align: center;
    width: 100%;
    height: 600px;
    clip-path: polygon(0% 0%, 79% 0, 100% 20%, 100% 100%, 0% 100%) !important;
}

.service-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-right {
    padding: 10px;
    text-align: justify;
}

.read-more-btn {
    margin-top: 15px;
    background-color: #ffc107;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #ff9800;
}

/* Accordion Button Style */
.btn-link {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    text-align: left;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-link:hover,
.btn-link:focus {
    background-color: #ffc107;
    /* Match with active button style */
    color: #fff;
}

.accordion-body img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin: 10px 0;
}

.accordion-body h3 {
    margin: 10px 0;
}

.accordion-button:not(.collapsed) {
    color: #ECECEC;
    background-color: #FF6500;
}

.accordion-button:hover {
    color: #ECECEC;
    background-color: #FF6500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .services-list {
        width: 100%;
    }

    .service-btn {
        width: 100%;
        text-align: left;
    }

    .service-content {
        flex-basis: 100%;
        padding: 10px 0;
    }

    .service-item {
        padding: 15px 0;
        /* Padding for mobile */
    }

    .service-left img {
        max-height: 250px;
        /* Adjust height for smaller screens */
    }

    .service-right {
        padding-left: 0;
        /* Remove left padding for smaller screens */
    }

    .services-section-title h1 {
        margin: 0.67em auto;
        font-size: 30px;
        margin-bottom: 25px !important;
        font-weight: 600;
        line-height: 1.3;
        width: 100%;
    }

    .services-section-title {
        max-width: 1200px;
        width: 100%;
        align-items: center;
    }

    .service-btn h3 {
        font-size: 1rem;
        font-weight: 400;
        display: inline;
        margin: 0;
    }

}

.custom-cursor {
    position: absolute;
    width: 40px;   /* Size of the circle */
    height: 40px;
    border-radius: 50%;  /* Makes it a circle */
    border: 1px solid #585656; /* Thin border around the circle */
    background-color: rgba(255, 255, 255, 0); /* Transparent fill */
    pointer-events: none;  /* Ensure it doesn't block clicks */
    transition: transform 0.1s ease-out; /* Smooth movement */
    transform: translate(-50%, -50%); /* Centers the circle on the cursor */
    z-index: 1000; /* Ensures it stays above other content */
}