/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.section-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-image: url('./landing_page_banner_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    /* Set width to 80% */
    margin-left: auto;
    /* Centering the section */
    margin-right: auto;
    /* Centering the section */
    min-height: 100vh;
    margin: 0 auto;
    /* Ensure the section is centered */
    border-radius: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.section-container>* {
    position: relative;
    z-index: 2;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;


    padding: 10px;
    width: 78%;
    height: 100%;
    margin: 0 auto;
}

.content-container,
.form-container {
    flex: 1;
    /* Ensures both containers take equal width */
    padding: 8px;
    max-width: 50%;
    /* Set maximum width to 50% of the container */
    box-sizing: border-box;
    /* Ensure padding does not cause overflow */
}

.content-container {
    background-color: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.form-container {
    background-color: transparent;
    padding: 10px;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: -25px;
}

.product-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* Adjust the gap between fields */
}

.form-grid>div {
    flex: 1 1 calc(50% - 15px);
    /* Ensures two fields per row */
    display: flex;
    flex-direction: column;
}

.form-grid input,
.form-grid select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    margin-bottom: 15px;
}

.form-container input[type="submit"] {
    background-color: #e74c3c;
    color: #fff;
    cursor: pointer;
    width: 100%;
    padding: 20px;
    /* Increased padding for bigger button */
    font-size: 1.2rem;
    /* Slightly bigger font size */
    border-radius: 10px;
    /* Added rounded corners */
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-container input[type="submit"]:hover {
    background-color: #c0392b;
    transform: scale(1.05);
    /* Slight scaling effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        padding: 20px;
        width: 100%;
        /* Ensure full width on smaller screens */
    }

    .content-container,
    .form-container {
        width: 100%;
        margin-bottom: 20px;
        max-width: 100%;
        /* Ensure they take full width on mobile */
    }

    .cta-button {
        width: 100%;
        /* Make button full width on small screens */
    }

    .form-grid>div {
        flex: 1 1 100%;
        /* Ensure single column on mobile */
    }
}

.black-div {
    background-color: black;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.black-div img {
    width: 100px;
    height: auto;
}


.why-choose-us-section {
    background-color: #f7f7f7;
    padding: 50px 20px;
    font-size:36px !important;
    text-align:left;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.column {
    flex-basis: 50%;
    padding: 20px;
}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-right .image-wrap img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
}

.heading-large {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-in-out;
}

.heading-medium {
    font-size: 1.75rem;
    color: #555;
    margin-bottom: 15px;
    animation: fadeInLeft 1s ease-in-out;
}

.description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: fadeInLeft 1.5s ease-in-out;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #cc5200;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .column {
        flex-basis: 100%;
        padding: 10px;
    }

    .heading-large {
        font-size: 2rem;
    }

    .heading-medium {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.2rem;
        text-align:left;
    }

    .column-right .image-wrap img {
        max-width: 100%;
    }
}

.elevate-guest-section {
    background-color: #ffffff;
    padding: 50px 20px;
}

.container {
    display: flex;
    justify-content: center;
}

.full-column {
    width: 100%;
}

.heading-large {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-in-out;
}

.divider-pattern {
    width: 60px;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 20 16' fill='none' stroke='black' stroke-width='1' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cg transform='translate(-12.000000, 0)'%3E%3Cpath d='M28,0L10,18'/%3E%3Cpath d='M18,0L0,18'/%3E%3Cpath d='M48,0L30,18'/%3E%3Cpath d='M38,0L20,18'/%3E%3C/g%3E%3C/svg%3E");
    margin: 0 auto 30px;
}

.inner-section {
    display: flex;
    justify-content: center;
    
}

.container-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column {
    padding: 20px;
}

.column-33 {
    flex: 1 1 33%;
}

.column-66 {
    flex: 1 1 66%;
    margin-left: 7px;
}

.text-wrap {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.highlight-text {
    font-weight: bold !important;
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.highlight-text1 {

    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.spacer {
    height: 40px;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .inner-section {
        flex-direction: column;
    }

    .column-33,
    .column-66 {
        flex: 1 1 100%;
    }

    .heading-large {
        font-size: 2rem;
    }

    .text-wrap {
        font-size: 0.9rem;
    }

    .divider-pattern {
        width: 50px;
        height: 2px;
    }
}

.vertical-line {
    width: 5px;
    /* Width of the vertical line */
    height: 400px;
    /* Height of the vertical line */
    background-color: #ccc;
    /* Line color */
    border: none;
    /* Remove default border */
    margin: 0;
    /* Optional: Remove default margin */

}

.custom-section {
    width: 100%;
    background-color: #0E0B0B;
    /* Add background color as needed */
    padding: 20px;

}

.custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-column {
    padding: 10px;
}

.custom-column-66 {
    width: 66.66%;
}

.custom-column-33 {
    width: 33.33%;
    text-align: center;
}

.custom-heading {
    font-size: 36px;
    color: white;
    margin: 0;
}

.custom-button-wrapper {
    display: inline-block;
}

.custom-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #C0392B;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #005bb5;
}

@media (max-width: 768px) {
    .custom-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-column-66,
    .custom-column-33 {
        width: 100%;
    }

    .custom-heading {
        font-size: 20px;
    }

    .custom-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}


.custom-section1 {
    width: 100%;
    background-color: #F6F6F6; /* Adjust background color as needed */
    padding: 40px 0;
}

.custom-container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.custom-column1 {
    width: 100%;
}

.custom-spacer1 {
    height: 40px; /* Adjust spacing as needed */
}

.custom-heading1 {
    font-size: 48px;
   
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-in-out;
    color: #000000;
    font-family: "Poppins";
    text-transform: capitalize;
}

.custom-text1 {
    font-size: 20px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .custom-heading1 {
        font-size: 24px;
    }

    .custom-text1 {
        font-size: 14px;
    }

    .custom-spacer1 {
        height: 20px;
    }
}


.service-steps-section {
    width: 100%;
    padding: 40px 0;
    background-color: #f9f9f9; /* Adjust background color as needed */
}

.service-steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-step-column {
    width: 25%;
    text-align: center;
    padding: 10px;
}

.service-spacer {
    height: 30px;
}

.service-icon-wrapper i {
    font-size: 48px;
    color: #F04D30;
    margin-bottom: 20px;
}

.service-heading {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.service-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-step-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .service-icon-wrapper i {
        font-size: 30px;
    }

    .service-heading {
        font-size: 16px;
    }

    .service-text {
        font-size: 14px;
    }
}


.vacation-waste {
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-color: #333; /* Fallback color */
    z-index: 1; /* Ensure content is above the background */
}

.vacation-waste::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./home-image-1.jpg') center center/cover no-repeat;
    opacity: 0.5; /* Adjust this value for more or less opacity */
    z-index: -1; /* Ensure the background is behind the content */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* You can combine this with the image for a darker overlay */
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2; /* Ensure the content is above the image */
}


.background-overlay {
    position: absolute;
   
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust overlay transparency as needed */
    z-index: 1;
}



.column-full {
    width: 100%;
    text-align: center;
}

.widget-wrap {
    padding: 20px 0;
}

.inner-section {
    padding: 10px 0;
}

.animated-heading h3 {
    font-size: 32px;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-in-out;
}

.text-editor p {
    font-size: 16px;
    line-height: 1.8;
}

.text-white {
    color: #fff;
}

.center-text {
    text-align: center;
}

.animated-text-delay {
    font-size: 14px;
    margin-top: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.button-wrapper {
    margin-top: 30px;
}

.button1 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F04D30;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #F04D30;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .animated-heading h3 {
        font-size: 24px;
    }

    .text-editor p {
        font-size: 14px;
    }

    .button {
        font-size: 12px;
    }
}

.trusted-logo-section{
    background: white;
}

/* General container for Swiper */
.swiper-container {
    width: 100%;
    max-width: 1200px; /* Set a maximum width */
    margin: 0 auto; /* Center the entire carousel */
    padding-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center; /* Center the Swiper container */
    overflow: hidden; /* Hide overflowed slides */
}

/* Wrapper for all swiper slides */
.swiper-wrapper {
    display: flex;
    align-items: center; /* Vertically align slides */
    transition: transform 0.5s ease-in-out;
}

/* Individual slide styling */

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: calc(20% - 20px); /* Adjust width to fit 5 slides with space between them */
    margin-right: 5px; /* Space between slides */
    box-sizing: border-box;
}

/* Last slide should have no margin-right to avoid extra spacing */
.swiper-slide:last-child {
    margin-right: 0;
}

/* Image inside each slide */
.swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

/* Swiper button for navigation */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

/* Positioning the navigation buttons */
.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Mobile and tablet responsiveness */
@media (max-width: 768px) {
    .swiper-slide {
        width: calc(50% - 15px); /* Adjust for 2 slides per view on tablets */
        margin-right: 15px; /* Reduced space between slides for smaller screens */
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 100%; /* Full width for mobile */
        margin-right: 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

.section-boxed{
    background: #ffffff; 
}

.heading h3{
    background: #ffffff;
    font-size: 48px;
    text-align: center;
}

.text-editor{
    text-align:center;
    font-size:42px;
    margin-bottom: 30px;
}

/* Background image for the section */
.section-boxed123 {
    background: url('./grayscale-1.jpg'); /* Ensure the correct path to the image */
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    min-height: 100vh; /* Ensures the background covers the entire viewport height */
    width: 100%; /* Ensures the background covers the full width of the section */
    position: relative; /* Relative positioning to keep it in normal document flow */
    z-index: -1; /* Keep it behind the content */
}

.section-boxed123 .container{
 background: transparent;
}


.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    flex: 1;
    float: left;
}

.column.col-33 {
    width: 30%;
    padding: 10px;
    box-sizing: border-box;
}

.widget-wrap {
    padding: 20px;
}

/* Image styling */
.image-wrapper {
    margin-bottom: 20px;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Counter styling */
.counter-number-wrapper {
    display: flex;
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.counter-number-suffix {
    flex-grow: 1;
    white-space: pre-wrap;
    text-align: left;
}

/* Heading styling */
.heading h3 {
    font-size: 24px;
    margin-top: 10px;
    font-weight: bold;
}

/* Ensure elements don't overlap */
.counter, .heading {
    margin-bottom: 20px;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .column.col-33 {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* General Footer Styles */
.site-footer {
    background-color: #eeeeee;
    color: black;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-left:0;
}

.footer-column h4 {
    color: black;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p, .footer-column ul, .footer-column li {
    font-size: 14px;
    line-height: 1.8;
}

.footer-column ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f9f9f9;
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    background-color: #3b5998; /* Change this depending on the platform */
    color: black;
    text-align: center;
    padding: 10px;
    margin-right: 5px;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Service Areas */
.footer-column ul ul {
    padding-left: 20px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #eeeeee;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 0px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: black;
}


/* General Section Styling */
.custom-section {
    background-color: #f9f9f9 !important;
    padding: 60px 0;
}

/* Header Styling */
.custom-heading {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.custom-lead {
    color: #717171;
    font-size: 18px;
}

/* Subheadings */
.custom-subheading {
    font-size: 30px;
    color: #717171;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Image Styling */
.custom-image-wrapper {
    max-width: 195px;
    margin: 0 auto;
}

.custom-image {
    max-width: 100%;
    height: auto;
}

/* Text Styling */
.custom-text {
    font-size: 15px;
    color: #717171;
    font-weight: 400;
    line-height: 1.6;
}


/* Background and Overlay */
.custom-pricing-section {
    background-image: url('https://www.canmonkey.com/wp-content/uploads/2018/01/stock-photo-old-green-plastic-garbage-bin-634961921-crop.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
    color: #fff;
}

.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.81);
    z-index: 1;
}

.custom-pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Text Styles */
.custom-heading {
    font-size: 36px;
    color: #ffffff;
    font-weight: bold;
}

.custom-lead {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    margin-top: 20px;
}

.custom-subheading {
    font-size: 28px;
    color: #ffffff;
    margin-top: 40px;
    text-transform: capitalize;
}

.cities-list {
    font-size: 18px;
    line-height: 2rem;
    color: #ffffff;
    text-align: center;
}

.custom-cta-text {
    font-size: 18px;
    color: #ffffff;
}

.custom-link {
    color: #fd9727;
    text-decoration: underline;
}

.custom-link:hover {
    color: #fff;
}

/* Button Styles */
.custom-btn {
    color: #fd9727 !important;
    background-color: #e8e8e8 !important;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover {
    color: #ffffff !important;
    background-color: #fd9727 !important;
}
/* Increase the opacity of the background overlay */
.custom-overlay {
    background-color: rgba(0, 0, 0, 0.9); /* Darken the overlay more */
}

/* Add more spacing between the header and cities list */
.custom-subheading {
    margin-bottom: 30px; /* Increased margin to add space */
}

/* Ensure consistent spacing between city items */
.cities-list {
    column-count: 3; /* Divide into 3 columns */
    column-gap: 40px; /* Add more gap between columns */
    text-align: left; /* Align text to the left for better readability */
}

/* Increase spacing between the cities */
.cities-list li {
    margin-bottom: 10px; /* Space between list items */
}

/* Improve button spacing */
.custom-btn {
    margin-top: 20px; /* Increase the space above the button */
}


.container-fluid{
    width: 80% !important;
    margin: 0 auto !important;
}




/* Responsive design for mobile view */
@media (max-width: 768px) {
   .content-container,.section-container, .container,.container-fluid {
        width: 100% !important; /* Change width to 100% on mobile */
        padding:10px !important;
    }
}