 
      /* @import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
      @import url('https://fonts.googleapis.com/css2?family=Alata&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');
      @import url('https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css'); */

      body{
    margin: 0;
    width: 100vw;
    height: 100vh;
    font-family: "Alata", serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

.container1{
    width: 100%;
    /* margin: 8px 0; */
    padding: 2px 0;
}

.hero{
    margin: 0;
    padding: 0;
    position: relative;
}

#image-slider{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.find-box{
    position: absolute;
    top: 55%;
    left: 30%;
    width: 400px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px;
    z-index: 1;
    border-radius: 10px;
}

.find-box div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 5px;
    margin: 8px 0;
}

.find-box div img{
    width: 30px;
    height: 30px;
}

.find-box h3{
    font-size: 1.2rem;
    margin: 0;
    text-align: left;
}

.find-box select, .find-box input{
    width: 100%;
    height: 40px;
    border: none;
    background-color: transparent;
}

.find-box select:focus, .find-box input:focus{
    outline: none;
}

.find-box input{
    width: 100%;
    height: 40px;
    border: none;
    background-color: transparent;
    margin-left:14px;
}

.find-box input::placeholder {
    font-size: 16px;
}


.find-box button{
    display: flex;          /* Enables flexbox layout */
    justify-content: center; /* Centers content horizontally */
    align-items: center;    /* Centers content vertically */
    height: 40px;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 99px;
    cursor: pointer;
}

.find-box button:hover{
    background-color: #111;
    transition: 0.5s;
}

@media (max-width: 1350px){
    .find-box{
        width: 320px;
    }

    .find-box h3{
        font-size: 1rem;
    }

    .find-box div img{
        width: 20px;
        height: 20px;
        margin: 5px;
    }

    .find-box select{
        height: 32px;
    }

    .find-box input{
        height: 30px;
    }

    .find-box button{
        height: 30px;
        padding: 10px 20px;
    }
}


@media screen and (min-width:240px) and (max-width:320px){
    .find-box{
        width:250px !important;
    }
 }

 @media screen and (min-width: 1280px) and (max-width: 1280px) and (min-height: 800px) and (max-height: 800px) {
.find-box {
width: 250px !important; /* Slightly wider for better visibility */
}

.find-box h3 {
font-size: 1rem; /* Slightly larger for readability */
}

.find-box div img {
width: 24px;  /* Adjusted for better visibility */
height: 24px;
margin: 6px;
}

.find-box select,
.find-box input {
height: 35px; /* Slightly increased for better touch accessibility */
}

.find-box button {
height: 35px;
padding: 12px 24px; /* Slightly increased for better usability */
}
}


@media (max-width: 1100px){
    .find-box{
        position: relative;
        top: 0;
        left: 50%;
        margin: 10px 0;
        margin-top: 30px;
        padding: 0;
        transform: translate(-50%, 0);
        box-sizing: border-box;
    }
}

.splide__pagination li button{
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.511) !important;
}

.splide__arrow{
    background: #000000 !important;
}

.splide__arrow svg{
    fill: #fff !important;
}

.splide__slide{
    display: flex;
    justify-content: center;
    align-items: center;
}



.card__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.card{
    width: 360px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 5px 15px;
    flex: 0 0 288px;
    transition: box-shadow 0.4s ease-in-out, transform 0.4s ease-in-out;
}


.card:hover {
    box-shadow: 0 0 20px rgba(211, 211, 211, 0.8), 
                0 0 40px rgba(192, 192, 192, 0.6), 
                0 0 60px rgba(169, 169, 169, 0.4); /* Light gray glow */
    transform: scale(1.05);
}

@media (max-width: 768px){
    .card{
        margin: 5px 10px;
    }
}

.card img{
    width: 160%;
    height: 250px;
    object-fit: fill;
    margin-bottom:5px;
}

.card__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 1px;
}

.card__content button{
    width: 270px;
    height:75px;
    background-color: #467BAB;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size:18px;
}

.card__content p{
    font-size: 1rem;
    margin: 0;
    padding: 10px;
}

@media screen and (min-width: 1880px) {
    .card__container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
        gap: 20px; /* Space between cards */
        padding: 40px; /* Space inside the container */
        margin: 20px auto; /* Space outside the container and center it */
    }

    .card {
        width: auto; /* Let the grid system control the width */
        height: 480px; /* Keep the height as before */
        flex: none; /* Remove flexbox properties */
        border: 1px solid #ccc; /* Optional: Add a border for better visuals */
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background: #fff; /* Ensure a white background */
        
    }

    .card img {
        width: 180%; /* Adjust width to fill the container */
        height: 300px; /* Keep the height of images as before */
        object-fit:cover;
    }

    .card__content {
        padding: 16px; /* Add padding inside the card content */
        text-align: center; /* Center align text and buttons */
    }

    .card__content button{
    width: 280px;
    height: 80px;
    background-color: #467BAB;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size:20px;
}

    

    .card__content p {
        font-size: 1.2rem; /* Larger paragraph font size */
        margin: 10px 0; /* Space between text and button */
    }
}



.equiments__buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin: 15px 0px;
    background-color: #FFE206;
    border-radius: 50px;
    color: #000;
    padding: 10px;
    margin-top: 30px;
    font-weight: bold;
}

@media (max-width: 768px){
    .equiments__buttons{
        font-size: 1rem;
    }
}

@media (max-width: 500px){
    .equiments__buttons{
        font-size: 0.8rem;
    }
}

.equiments__buttons svg{
    height: 25px;
}

.equiments__buttons:hover{
    background-color: #FFD700;
    transition: 0.5s;
}

.recent__container{
    background-color: #F4F4F4;
    padding-bottom: 40px;
}

.recent__card{
    width: 500px;
    height:auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 5px;
    flex: 0 1 420px;
}



.recent__card__content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0;
}

/* .recent__card img{
    height:180px;
    width:auto;
    object-fit:cover;
} */

@media (max-width: 768px){
    .recent__card{
        margin: 5px 10px;
    }

    .recent__card {
        width: 100%; /* Make cards responsive */
        height: auto; /* Adjust height dynamically for smaller screens */
    }
    .recent__card img {
        height: 250px; /* Adjust image height for smaller screens */
    }

    .recent__card__content button {
        /* width: 100%;  */
        /* Full width on smaller screens */
        /* max-width: 150px;  */
        /* Avoids taking full card width */
    }
}

@media screen and (max-width: 768px) and (max-height: 1024px) {
    .recent__card {
        width: 100%; /* Keep it responsive */
        /* height: 720px; */
         /* Set a fixed height */
        margin: 5px 10px;
        overflow: hidden; /* Prevent content overflow */
    }

    .recent__card img {
        height: 250px; /* Adjust image height for better fit */
        object-fit: cover; /* Ensure the image scales properly */
    }
}


.recent__card img{
    width: 100%;
    height: 280px;
    object-fit: fill;
}

.recent__card__content button {
    width: 200px;
    max-width: 100%;
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
    font-size: 1.2rem;
    overflow-x: hidden; /* Initially hide overflow */
    overflow-y: hidden;
    text-overflow: unset;
}

/* When user hovers, allow horizontal scrolling */
.recent__card__content button:hover {
    overflow-x: auto;
}

/* Optional: style the scrollbar nicely */
.recent__card__content button::-webkit-scrollbar {
    height: 4px;
}
.recent__card__content button::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}
.recent__card__content button::-webkit-scrollbar-track {
    background: transparent;
}

.recent__card__content button {
    -webkit-overflow-scrolling: touch; /* Important for smooth mobile scroll */
    scroll-behavior: smooth;
}


.recent__container .splide__pagination{
    bottom: -20px;
}

/* Styles for Screen Sizes 769px to 1240px */
@media screen and (min-width: 769px) and (max-width: 1240px) {
    .recent__card {
        width: 400px; /* Slightly smaller card width */
        height: auto; /* Reduced height */
        flex: 0 1 360px; /* Adjusted flex size */
    }


    .recent__card img {
        height: 280px; /* Reduced image height */
    }

    .recent__card__content {
        gap: 15px; /* Reduced gap between content */
        margin: 15px 0;
    }

    .recent__card__content button {
        height: 35px; /* Reduced button height */
        font-size: 0.9rem; /* Adjusted font size */
    }

    .recent__container .splide__pagination {
        bottom: -20px; /* Adjust pagination position */
    }
}


@media screen and (min-width: 641px) and (max-width: 1000px) {
    .recent__card {
        width: 400px; /* Reduced card width */
        height: auto; /* Reduced card height */
        flex: 0 1 350px; /* Adjusted flex size */
    }

    .recent__card img {
        height: 260px; /* Reduced image height */
    }

    .recent__card__content {
        gap: 15px; /* Reduced gap between content */
        margin: 10px 0; /* Reduced margin */
    }

    .recent__card__content button {
        height: 40px; /* Reduced button height */
        font-size: 1rem; /* Reduced font size */
        width:300px !important;
    }

    .recent__container .splide__pagination {
        bottom: -20px; /* Adjusted pagination position */
    }



    .button {
        font-size: 14px; /* Reduced font size */
        padding: 5px 30px; /* Decreased padding */
        margin-top: 8px; /* Adjusted margin */
        margin-bottom: 8px;
        border-radius: 2px; /* Slightly smaller border radius */
    }

    .details-table th{
        font-size:14px !important;
    }

    .details-table td{
        font-size: 12px !important;
    }

    .description-title{
        font-size:1.2rem;
    }

    .card-content p{
        font-size:0.8rem;
    }
}

/*for different screen sizes the card heights and width*/
@media screen and (min-width:641px) and (max-width:768px){
    .recent__card{
        width:400px;
        height:auto;
    }
}

@media screen and (min-width:769px) and (max-width:800px){
    .recent__card{
        width:400px;
        height:auto;
    }

    .details-table th{
        padding:8px;
        text-align:start;
        font-size:12px !important;
    }

    .details-table td{
        padding:8px;
        text-align:start;
        font-size:10px !important;
    }

    .description-title{
        font-size:1.2rem;
    }
}

@media screen and (min-width:801px) and (max-width:839px){
    .recent__card{
        width:400px;
        height: auto;
    }

    /* .details-table th,
    .details-table td{
        padding:8px;
        text-align:start;
        font-size:10px !important;
    } */
}

@media screen and (min-width:840px) and (max-width:950px){
    .recent__card{
        width:400px;
        height:auto;
    }
}

@media screen and (min-width:951px) and (max-width:959px){
    .recent__card{
        width:400px;
        height:auto;
    }
}

@media screen and (min-width:960px) and (max-width:1240px){
    .recent__card{
        width:400px;
        height:auto;
    }
}

@media screen and (min-width:320px) and (max-width:340px){
    .recent__card__content button{
        width:220px !important;
    }
}

@media screen and (min-width:340px) and (max-width:375px){
    .recent__card__content button{
        width:260px !important;
    }
}

@media screen and (min-width:376px) and (max-width:425px){
    .recent__card__content button{
        width:320px !important;
    }
}

@media screen and (min-width:426px) and (max-width:768px){
    .recent__card__content button{
        width:380px;
    }
}

@media screen and (min-width:769px) and (max-width:950px){
    .recent__card__content button{
        width:210px !important;
    }
}

@media screen and (min-width:951px) and (max-width:1240px){
    .recent__card__content button{
        width:280px !important;
    }
}


@media screen and (min-width:1241px) and (max-width:1300px){
    .recent__card__content button{
        width:340px !important;
    }
}

@media screen and (min-width:1301px) and (max-width:1440px){
    .recent__card__content button{
        width:400px !important;
    }
}

@media screen and (min-width:1441px) and (max-width:1500px){
    .recent__card__content button{
        width:400px !important;
    }
}

@media screen and (min-width:1501px) and (max-width:1879px){
    .recent__card__content button{
        width:430px !important;
    }
}

@media screen and (min-width:1880px){
    .recent__card__content button{
        width:450px !important;
    }
}

/* Styles for Screen Sizes 1440px and Above */
@media screen and (min-width: 1440px) {
    .recent__card {
        width: 600px; /* Increased card width */
        height: auto; /* Increased card height */
        flex: 0 1 500px; /* Adjusted flex size */
    }

    .recent__card img {
        height: 280px; /* Increased image height */
    }

    .recent__card__content {
        gap: 25px; /* Increased gap between content */
        margin: 20px 0; /* Increased margin */
    }

    .recent__card__content button {
        /* height: 50px;  */
        /* Increased button height */
        font-size: 1.5rem; /* Increased font size */
    }

    .recent__container .splide__pagination {
        bottom: -20px; /* Adjusted pagination position */
    }
}

/* Styles for Screen Sizes 2300px and Above */
@media screen and (min-width: 2300px) {
    .recent__card {
        width: 800px; /* Further increased card width */
        height: auto; /* Further increased card height */
        flex: 0 1 700px; /* Adjusted flex size */
    }

    .recent__card img {
        height: 500px; /* Further increased image height */
    }

    .recent__card__content {
        gap: 35px; /* Further increased gap between content */
        margin: 30px 0; /* Further increased margin */
    }

    .recent__card__content button {
        height: 60px; /* Further increased button height */
        font-size: 1.5rem; /* Further increased font size */
    }

    .recent__container .splide__pagination {
        bottom: -50px; /* Further adjusted pagination position */
    }
}


@media(min-width:800px) and (max-width:959px){
    .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertically centers content */
  padding:0;
}

/* .details-table th,
.details-table td {
  
  padding: 8px; 
  text-align:start; 
  font-size: 10px !important;
} */

.button{
  border: none;
  font-size: 16px;
  color: #000;
  padding: 6px 40px; /* Reduce padding for a cleaner button */
  background-color: #FFF;
  border:2px solid #000;
  border-radius: 3px;
  margin-top: 10px; /* Reduced margin */
  margin-bottom: 10px; /* Prevent extra space */
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center; /* Center button horizontally */
  text-transform:uppercase;
  font-weight: bold;
}


}

.details-table td{
    font-size:16px;
}

@media(max-width:1439px){
    .details-table th{
        font-size:18px;
    }

    .details-table td{
        font-size:16px;
    }
}
.step__outer__container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 100px);
}

.steps__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 5px solid #111;
    position: relative;
}

.step:first-child{
    margin-left: 0;
}

.step:last-child{
    margin-right: 0;
}

.step{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 250px;
    padding: 20px 0; */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 5px 35px;
    flex: 1 1 200px;
}

.step::before{
    content: var(--step-content);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    transform: translateY(-50%);
    background-color: #FFD900;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.step::after{
    content: var(--step-content);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    transform: translate(-150px, 75px);
    background-color: #FFD900;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.step img{
    height: 150px;
    object-fit: contain;
}

.step p{
    font-size: 1rem;
    margin: 0;
    padding: 10px;
    text-align: center;
}

@media (max-width: 1050px){
    .steps__container{
        border-top: none;
        flex-direction: column;
        border-left: 2px solid #111;
        width: 300px;
    }

    .step::before{
        display: none;
    }

    .step::after{
        display: flex;
    }
}

.contact__container{
    background-image: url('../img/bg/bg_cta.webp');
    background-color: #f4c06d;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-bottom: 0px;
}

.contact__main{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    /* flex-basis: 500px; */
    flex-grow: 0;
}

.contact__main h2{
    max-width: 500px;
    text-wrap: wrap;
    text-align: center;
    font-size:1.5rem;
}

.contact__main img{
    height: 100px;
    object-fit: contain;
    /* margin-top:15px; */
}

.contact__details{
    border-left: 2px solid #111;
    margin-left: 20px;
    padding-left: 20px;
    display: flex;
}

.contact__details img{
    height: 60px;
    object-fit: contain;
}

.contact__details button{
    width: 120px;
    height: 30px;
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact__img h2{
    font-size: 1rem;
    margin: 0;
}

.contact__img p{
    font-size: 0.9rem;
    margin: 2px;
}

.contact__main h2{
    margin-top:0px;
}

@media (max-width: 800px) {
    .contact__container{
        padding: 4px 20px;
    }

    .contact__details{
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        padding-right: 40px;
    }

    .contact__img{
        border-left: 4px solid #111;
        padding-left: 40px;
    }

    .contact__main h2{
        margin-top:0px !important;
    }
}

.testimonial__card{
    width: 100%;
    height:500px;
    margin: 5px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

@media(width:1024px){
    .testimonial__card{
        width: 100%;
        /* height:500px !important; */
        margin: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        padding: 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
}

.testimonial__card > img{
    width: 100px;
    padding: 20px;
    padding-top: 30px;
    padding-left: 30px;
    object-fit: cover;
    position: absolute;
    top: -26px;
    left: -26px;
    background-color: #FEC610;
    border-radius: 50%;
}

.testimonial__content{
    display: flex;
    /* flex-grow:1; */
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 10px 0 55px;
    padding-top: 35px;
    overflow: hidden;
}

.testimonial__content h2{
    font-size: 1rem;
    margin-left: 8px;
    margin-bottom: 4px;
    padding: 0;
    text-align: left;
    
    /* max-height: 2.8rem;  */
    /* Limits to 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Ensures exactly 2 lines */
    -webkit-box-orient: vertical;
}

/* .testimonial__content p {
    text-align: justify;
    line-height: 1.5;
    font-size: 0.8rem;

    display: -webkit-box;
    -webkit-line-clamp: 5; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
} */

.testimonial__description {
    text-align: justify;
    line-height: 1.5;
    font-size: 0.8rem;
    margin-top: 4px; /* Push text down below the image */
    margin-bottom: 4px;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Limits to 5 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    flex-grow: 1;
}

.testimonial__author{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.author__details{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.author__details h3{
    font-size: 1.1rem;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 1; /* Change to 2 if you want to allow two lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author__details p{
    font-size: 0.8rem;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 1; /* Allows up to 2 lines before ellipsis */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author__details p:last-child {
    font-weight: bold;
}


.author__details img{
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial__lines{
    position: absolute;
    bottom: 90px;
    left: 0;
}

.lines2{
    top: 30px;
    right: 0 !important;
}

.testimonial__lines::before{
    content: "";
    position: absolute;
    width: 5px;
    height: 30px;
    background-color: #0E0E0E;
    top: 0;
    left: 0;
    z-index: 1;
}

.testimonial__lines::after{
    content: "";
    position: absolute;
    width: 5px;
    height: 30px;
    background-color: #FEAB10;
    top: 30px;
    left: 0;
    z-index: 1;
}

.lines2::before{
    left: calc(100% - 5px);
}

.lines2::after{
    left: calc(100% - 5px);
}

.testimonial__container .splide__pagination{
    bottom: -30px;
}

@media (max-width: 430px) { /* For mobile devices */
    .testimonial__card {
        height: auto !important; /* Allow the height to adapt to content */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}
@media screen and (min-width:761px) and (max-width: 768px) { /* For mobile devices */
    .testimonial__card {
        height: 450px; 
        /* Allow the height to adapt to content */
        padding: 10px;
         /* Adjust padding for smaller screens */
    }

    .testimonial__content h2{
        padding-top: 0 40px;
        margin-left:10px;
    }
}

@media screen and (width: 768px) and (height: 1024px) {
    .testimonial__card {
        height: 500px; /* Set a fixed height */
        padding: 15px; /* Adjusted padding */
        overflow: hidden; /* Prevent overflow issues */
    }

    .testimonial__content h2 {
        padding: 0 40px; /* Fixed incorrect syntax from "padding-top: 0 40px;" */
        margin-left: 10px;
    }
}

@media screen and (min-width:431px) and (max-width:640px){
    .testimonial__card{
        /* height:400px; */
        height:auto;
    }

    .testimonial__card h2{
        font-size:1.5rem !important;
    }

    .testimonial__content p{
        font-size:1rem !important;
        -webkit-line-clamp: 10;
    }
}

@media screen and (min-width: 641px) and (max-width: 730px) {
    .testimonial__card {
        height: 490px; /* Set a fixed height */
        padding: 15px; /* Adjusted padding */
        overflow: hidden; /* Prevent overflow issues */
    }

    .testimonial__content h2{
        margin-left:0px;
    }
}


/* for smaller screens the responsiveness of testimonials */

@media screen and (min-width:769px) and (max-width:900px){
    .testimonial__card{
        height:620px;
    }
}

@media screen and (min-width:901px) and (max-width:995px){
    .testimonial__card{
        height:560px;
    }
}

@media screen and (min-width:996px) and (max-width:1024px){
    .testimonial__card{
        height:520px;
    }
}

@media screen and (min-width:1025px) and (max-width:1079px){
    .testimonial__card{
        height:650px;
    }
}

@media screen and (min-width:1080px) and (max-width:1125px){
    .testimonial__card{
        height:630px;
    }
}

@media screen and (min-width:1125px) and (max-width:1240px){
    .testimonial__card{
        height:650px;
    }
}

@media screen and (min-width:1241px) and (max-width:1281px){
    .testimonial__card{
        height:600px;
    }
}


@media (min-width: 1064px) and (max-width: 1280px) { /* For screens between 1024px and 1280px */
    /* .testimonial__card {
        height: 560px; 
        padding: 15px; 
    } */

    .testimonial__content h2 {
        padding-top: 14px; /* Increase padding to create more space */
        /* margin-left: 30px; 
        padding-left:20px; */
        font-size: 0.9rem;
    }

    .testimonial__content p{
        font-size:0.7rem;
    }
}

@media (min-width:1025px) and (max-width:1063px){
    .testimonial__content h2 {
        padding-top: 14px; /* Increase padding to create more space */
        margin-left: 30px; 
        padding-left:20px;
        font-size: 0.9rem;
    }

    .testimonial__content p{
        font-size:0.7rem;
    }
}




/* Adjustments for Surface Pro, ASUS ZenBook, and iPad Air */
@media (min-width: 800px) and (max-width: 1240px) {
  .testimonial__card {
    width: 100%;
    height: 630px; /* Increased height */
    margin: 10px; /* Slightly larger margins for better spacing */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3); /* Subtle shadow tweak */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 0 20px; /* Adjusted padding for content spacing */
  }
}

@media (min-width: 1281px) and (max-width: 1340px) {
  .testimonial__card {
    width: 100%;
    height: 540px; /* Increased height */
    margin: 10px; /* Slightly larger margins for better spacing */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3); /* Subtle shadow tweak */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 0 20px; /* Adjusted padding for content spacing */
  }
}

@media screen and (min-width:769px) and (max-width:1199px){
    .step-indicators{
        max-width:620px !important;
    }

    .steps{
        display:flex;
        justify-content:space-around;
        margin:20px auto;
        max-width:700px !important;
        gap:30px !important;
    }

    .step{
        padding:8px !important;
    }
}

@media screen and (min-width:1300px) and (max-width:1439px){
    .step-indicators{
        max-width:930px !important;
    }

    .steps{
        max-width:1100px !important;
        
    }
}

.services__container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardd{
    width: 130px;
    height: 150px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transform: rotate(var(--rotate));
}

.cardd img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #000;
}

.cardd p {
    font-size: 12px;
    margin:0;
}

.services__content{
    width: 28.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 90px;
}

.order-1 {
    order: 1;
}

.order-3 {
    order: 2;
}

.order-2 {
    order: 3;
}


.why-choose ul{
    padding: 0;
}

.why-choose ul li {
    list-style: none;
    position: relative;
    padding-left: 35px;
    margin: 5px 0;
}

.why-choose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('./assets/img/arrow-buttons_orange.png') no-repeat center center;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
}

@media (max-width: 950px){
    .services__container{
        flex-direction: column;
    }

    .services__content{
        width: 50%;
        min-width: 300px;
        gap: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cardd{
        transform: none;
        margin: 10px;
    }

    .order-1{
        order: 1;
    }

    .order-2{
        order: 2;
    }

    .order-3{
        order: 3;
    }
}

@media screen and (min-width: 1880px) {
    .services__content {
        width: 20%; /* Decrease the width */
        gap: 90px; /* Adjust the gap if needed */
    }

    .cardd {
        width: 140px; /* Optionally adjust the card size */
        height: 150px; /* Optionally adjust the card height */
    }

    .cardd img {
        width: 80px; /* Optionally adjust image size */
        height: 80px; /* Optionally adjust image size */
    }

    .flexbox-section {
    display: flex;
    border: 2px solid #ccc; /* Border around the entire flexbox */
    border-radius: 10px; /* Rounded corners for the entire flexbox */
    overflow: hidden; /* Ensures the content stays within the border radius */
    margin: 20px auto;
    width: 50%; /* Adjust width as needed */
    max-width: 3000px; /* Maximum width */
    /* height: 350px;  */
    /* Adjust the height as needed */
}
}

@media screen and (min-width:769px) and (max-width:1240px){
    .flexbox-section{
        width:60% !important;
    }
}

@media screen and (max-width: 1024px) {
  

    .cardd {
        width: 150px; /* Reduce card size for better fit */
        height: 150px; /* Adjust height to maintain proportion */
    }

    .cardd img {
        width: 75px; /* Reduce image size */
        height: 75px;
    }

    .cardd p {
        font-size: 12px; /* Adjust font size for readability */
     
    }
}

@media screen and (max-width:425px){
    .why-choose{
        padding-left:10px;
    }
}



.carousel-container2{
    padding: 0;
}

.carousel-container2 .splide__slide{
    flex-direction: column;
    height: fit-content;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-container2 .splide__pagination{
    display: none;
}

.card2{
    width: 100%;
    height: fit-content;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}



.card2 img{
    width: 100%;
    height:250px;
}



.read-more2{
    margin: 0 40px;
    border-radius: 10px;
}

.news-header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.news-header-container :is(h1, h2, h3, h4, h5, h6){
    margin: 0;
}

.view-all2{
    align-self: center;
}

.view-all2 button{
    font-size: 25px;
}

@media (max-width: 768px){

    .image-box img{
        position: relative;
        width: 50%;
    }

    
}

.follow-sub{
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: fit-content;
    border: 1px solid #000;
    border-radius: 50px;
    margin: 20px auto;
}

.social-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-right: 10px;
}

.social-links a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
}

.customer-mobile{
    border: 1px solid #000;
    border-radius: 50px;
    width: fit-content;
    padding: 5px 10px;
    margin: 0 auto;
}

.customer-mobile i{
    margin-left: 20px;
}

.modal {
    /*display: none;*/
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    /*width: 50%;*/
    padding: 25px;
    height: 100%;
    width:100%;
    overflow: hidden;
    visibility:visible;
    /*background-color: rgb(0, 0, 0);*/
    background-color: rgba(0, 0, 0, 0.4);
    /*background-color:transparent;*/
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #888;
    border-radius: 0px;
}

#modal-11 {
    max-width: 396px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    /* border-radius: 10px; */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    background-color: #ffcb00;
}

/* Ram */
#disnew {
    background-color: #ffcb00;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.menu-items {
    flex-direction: column;
}



/* profile  drop down menu*/

.profile{
   cursor:pointer;
}
.profile .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-left: 70rem;
}

.profile .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    width: 100px;
    align-items: center;
}

.profile .dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.splide__track {
    margin: 0 35px !important;
    overflow: hidden;
}

.hero .splide__track{
    margin: 0 !important;
}


/*footer starts*/
  /* General Footer Styling */
  /* .footer-section, */
  .subscription-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .lets-talk,.follow-us {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .social-icons-wrapper {
    display: flex;
    justify-content: space-evenly;
    /* Distribute social icons evenly */
  }


  .page-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
  }

  .page-footer h4 {
    color: #ffe209;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-middle {
    display: flex;
    flex-direction: row;
    /* Row layout on large screens */
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    margin-bottom: 20px;
  }

  /* Footer Row Styling */
  .footer-row {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
  }

  .footer-row-2 {
    display: flex;
    justify-content: flex-end;
    /* Align content to the right of the row */
    gap: 20px;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    width: 100%;
  }

  /* Subscription Block */
  .subscription-block {
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 6px;
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Reduced gap between elements */
    text-align: center;

  }

  .subscription-block h4 {
    margin-bottom: 5px;
    font-size: 30px;
    color: #ffe209;
  }

  .subscription-block p {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: Georgia;
  }

  .subscription-block__form-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Reduced gap between input and button */
    width: 100%;
    max-width: 250px;
    /* Reduced max width of form box */
    align-items: center;
  }



  /* Ensure lists in footer sections have white dots */
  .footer-section ul {
    list-style-type: none;
    /* Remove default list bullets */
    padding-left: 20px;
    /* Add padding to the left for proper alignment */
  }

  .footer-section ul li {
    position: relative;
    /* Allows positioning of custom dots */
    margin-bottom: 8px;
    /* Space between list items */
  }

  .footer-section ul li::before {
    content: '\2022';
    /* Unicode character for a bullet */
    color: #fff;
    /* White color for the bullet */
    font-size: 20px;
    /* Adjust bullet size */
    position: absolute;
    left: -20px;
    /* Adjust position of the bullet */
    top: 50%;
    transform: translateY(-50%);
  }


  /* Footer Sections */
  .footer-section {
    /* flex: 1;
    display: flex;
    flex-direction: column;  */
    display: block !important;
  }

  .footer-section {
    min-width: unset !important;
    max-width: unset !important;
  }

  .footer-section.newsletter {
    border: 3.5px solid #747474 !important;
    border-radius: 30px !important;
  }

  .footer-section.newsletter form {
    width: 75% !important;
    margin: 0px auto !important;
  }

  .footer-section.newsletter form .newsletter-input {
    max-width: unset !important;
  }

  .footer-section.newsletter p {
    margin: 0px;
    font-size: 18px;
    font-family: Georgia;
  }

  .footer-section.newsletter h3 {
    margin-bottom: 0px;
  }

  /* Footer Links */
  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }

  .footer-section ul li a:hover {
    text-decoration: underline;
  }

  /* Let's Talk Section */
  .lets-talk {
    display: flex;
    justify-content: flex-start;
    /* Align Let's Talk section to the left of this section */
    gap: 20px;
    align-items: flex-start;
  }

  .lets-talk-content {
    display: flex;
    justify-content: flex-start;
    /* Ensure logo and text are aligned left */
    gap: 20px;
    align-items: flex-start;
  }



  .lets-talk-info {
    display: flex;
    flex-direction: column;
    /* Stack the text and buttons vertically */
    align-items: flex-start;

    margin-left:20px;
  }

  /* Remove dots for all ULs in the footer */
  .footer-section ul,
  .lets-talk-info ul {
    list-style: none !important;
    /* Ensure no default bullets */
    padding: 0 !important;
    /* Remove padding */
    margin: 0 !important;
    /* Remove margin */
  }

  /* Ensure specific list items don't have bullets */
  .footer-section ul li,
  .lets-talk-info li {
    position: relative;
    /* Allow further customization if needed */
  }

  .footer-section ul{
    margin-left:18px !important;
  }

  .about-aueqi p,
  .explore-aueqi p,
  .useful-links-aueqi p{
    margin-top:0 !important;
    margin-bottom:1rem !important;
  }

  .about-aueqi h3,
  .explore-aueqi h3,
  .useful-links-aueqi h3{
    
    margin-bottom:0.5rem !important;
  }


  /* Style anchor tags within .lets-talk-info ul */
  .lets-talk-info ul li a {
    color: #fff !important;
    /* Override default blue color */
    text-decoration: none;
    /* Remove underline if any */
  }

  .lets-talk-info ul li a:hover {
    color: #fff !important;
    /* Ensure hover color is black too */
    text-decoration: underline;
    /* Add underline on hover */
  }



  .footer-logo {
    width: 100px;
  }

  .lets-talk h4 {
    margin: 10px 0;
  }



  /* Follow Us Section */
  .footer-follow-us {
    display: flex;
    flex-direction: column;
    margin-left: -30px;
    align-items: center;
    gap: 10px;
  }

  .follow-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff5f6d, rgb(195, 33, 216));
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    /* Automatically adjust width */
    margin-bottom: 10px;
    /* Spacing below the button-like div */
  }

  .follow-button:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    /* Deeper shadow */
  }

  .social-icons-wrapper {
    display: flex;
    justify-content: center;
    /* Center the icons in the container */
    padding: 10px;
    border: 2px solid #FFFF00;
    /* Border around the social icons container */
    border-radius: 20px;
    /* Rounded corners for the container */
    background-color: #fff;
    /* Background color for better contrast */
  }

  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social-list__link {
    color: #000;
    /* Set the color of the link (social icon) to black */
    text-decoration: none;
    /* Remove underline */
  }

  .social-list__link:hover {
    color: #000000af;
    /* Change color when hovered (or apply any hover effect) */
  }

  .social-list__item {
    color: #000;
    font-size: 20px;
    text-decoration: none;
  }

  .social-list__item:hover {
    color: #000000af;
  }

  /* Footer Bottom */
  .footer-bottom {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
    width: 100%;
    /* Set width to full viewport width */



  }

  .footer-content {
    display: flex;
    gap: 10px;
    /* Space between elements */
    align-items: center;
    background-color: #fff;
    /* White background */
    color: #000;
    /* Black text color */
    border: 2px solid #ffe209;
    /* Yellow border */
    border-radius: 20px;
    /* Rounded corners */
    padding: 5px 10px;
    /* Padding around the content */
    flex-wrap: wrap;
    /* Allow elements to wrap on smaller screens */
    justify-content: center;
    /* Center elements when wrapped */
  }

  .footer-content a {
    color: #000;
    text-decoration: none;
    /* Remove underline from links */
  }

  .footer-content a:hover {
    text-decoration: underline;
    /* Add underline on hover */
    color: #000;
  }

  .footer-bottom p {
    font-size: 14px;
    margin: 0;
    /* Remove default margin */
    padding: 0;
  }

  /* Mobile Styles */
  @media (max-width: 767px) {


    .footer-middle {
      flex-direction: column;
      /* Stack items vertically on mobile */
    }

    .footer-row,
    .footer-row-2 {
      flex-direction: column;
      /* Stack items vertically in rows */
    }

    .subscription-block,
    .footer-section {
      flex: 1 100%;
      /* Take up full width on mobile */
    }

    /* Ensure footer-content in the footer-bottom is displayed in a row on mobile */
    .footer-bottom {
      display: flex;
      justify-content: center !important;
      /* Center the content */
      align-items: center;
      /* Align items vertically */
      width: 100%;
      /* Ensure full width */
      flex-wrap: wrap;
      /* Allow content to wrap if needed */
    }

    .footer-content {
      display: flex;
      flex-direction: row;
      /* Horizontal layout */
      flex-wrap: wrap;
      /* Allow wrapping if content exceeds width */
      justify-content: center;
      /* Center horizontally */
      align-items: center;
      /* Center vertically */
      gap: 5px;
      /* Adjust space between elements */
      font-size: 12px;
      /* Adjust font size for consistency */
    }

    .footer-content a {
      font-size: 12px;
      /* Ensure link text is consistent */
      text-decoration: none;
      /* Remove underlines for cleaner look */
      color: #000;
      /* Set link color */
    }

    .footer-content span {
      white-space: nowrap;
      /* Prevent breaking onto multiple lines */
    }

    .footer-bottom p {
      font-size: 10px;
      /* Adjust for mobile readability */
      margin: 0;
    }


  }

  /* Increase font sizes for large screens (1440px and above) */
  @media (min-width: 1440px) {
    .page-footer h4 {
      font-size: 22px;
      /* Increased font size for footer headings */
    }

    .footer-middle {
      font-size: 18px;
      /* Larger font for middle section */
    }

    .footer-row {
      font-size: 18px;
      /* Increase font size for footer row */
    }

    .footer-row-2 {
      font-size: 18px;
      /* Increase font size for footer row 2 */
    }

    .subscription-block h4 {
      font-size: 40px;
      /* Increase font size of subscription heading */
    }

    .subscription-block p {
      font-size: 16px;
      /* Increase font size of subscription description */
    }

    .uk-input {
      font-size: 16px;
      /* Increase font size of input fields */
    }

    .uk-button {
      font-size: 18px;
      /* Larger font size for buttons */
    }

    .lets-talk h4 {
      font-size: 24px;
      /* Increase font size for Let's Talk section */
    }

    .follow-button {
      font-size: 20px;
      /* Increase font size for Follow Us button */
    }

    .social-list__item {
      font-size: 24px;
      /* Increase font size of social media icons */
    }

    .footer-bottom p {
      font-size: 18px;
      /* Increase font size for footer bottom text */
    }

    .footer-content {
      font-size: 18px;
      /* Increase font size for footer content */
    }

    /* Optional: Increase other elements in the footer */
    .footer-section ul li {
      font-size: 18px;
      /* Increase font size for footer links */
    }
  }

  /* Further increase font sizes for 4K screens (2160px and above) */
  @media (min-width: 2160px) {
    .page-footer h4 {
      font-size: 36px;
      /* Significantly larger font size for 4K screens */
    }

    .footer-middle {
      font-size: 28px;
    }

    .footer-row {
      font-size: 28px;
    }

    .footer-row-2 {
      font-size: 28px;
    }

    .subscription-block h4 {
      font-size: 64px;
      /* Larger subscription heading for 4K */
    }

    .subscription-block p {
      font-size: 24px;
      /* Larger font size for description */
    }

    .uk-input {
      font-size: 24px;
      /* Larger font size for inputs */
    }

    .uk-button {
      font-size: 26px;
      /* Larger button font size */
    }

    .lets-talk h4 {
      font-size: 36px;
      /* Larger font size for Let's Talk section */
    }

    .follow-button {
      font-size: 28px;
      /* Larger Follow Us button font */
    }

    .social-list__item {
      font-size: 36px;
      /* Larger social media icon text */
    }

    .footer-bottom p {
      font-size: 28px;
      /* Larger footer bottom text */
    }

    .footer-content {
      font-size: 28px;
      /* Larger footer content font */
    }

    .footer-section ul li {
      font-size: 28px;
      /* Larger font for footer links */
    }
  }

 /* Center the first svg inside the first li */
.social-list__items li:first-child a svg:nth-of-type(1) {
  display: block; /* Ensure it's a block element */
  margin: 0 auto; /* Center horizontally */
  padding: 0; /* Remove any padding */
  position: relative; /* So we can move it */
  left: 50%; /* Move it to the center */
  top: 50%; /* Move it to the center */
  transform: translate(-50%, -50%); /* Perfectly center it */
}

/* Style the first li's a tag */
.social-list__items li:first-child a {
  display: flex; /* Flexbox for centering */
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  width: 100%; /* Make the entire a tag span full width */
  height: 100%; /* Make the entire a tag span full height */
}

/* Other svg styles should remain unaffected */
.social-list__items li a svg {
  display: block; /* Ensures all SVGs take their own content size */
  margin: 0; /* Reset margin for all SVGs */
  padding: 0; /* Reset padding for all SVGs */
}


  /*footer ends*/
    
    
     

   
    
  input[name="equipmentt"]::placeholder {
    color: #000 !important;
    font-weight: 400;
  }

  #subcategory.form-control {
    font-size: 16px;
}


  /* @media (min-width: 1024px) {
    #category {
        font-size: 1rem;
    }
  } */
    /* @media (min-width: 1440px) {
    #category {
        font-size: 18px !important;
    }
} */

        table {
    
    table-layout: fixed; /* Fix the layout for more control over the columns */
}
    
        .container12{
            width:100%;
            /* margin:40px 0; */
            padding:20px 0;
        }
    
        .overlay-section {
    position: relative;
    background-image: url(./assets/img/bg/bg_stats.webp); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    /* height: 250px; */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    background-attachment: fixed;
  }


  .title::after{
    opacity: 0;
  }

    
        .steps-section :is(h1, h2, h3, h4, h5, h6, p) {
                font-size: 2rem;
                margin: 0;
            }
    
    
   

  /* Content Flex Box */
.content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
    text-align: justify;
}

/* Text Styling */
.content-box h4.highlight-title {
    color: yellow;
    font-size: 1.5rem;
    margin: 4px 0;
}

.content-box h3.highlight-content {
    color:white;
    font-size: 1.2rem;
    margin: 2px 0;
}

.content-box h3 {
    color: white;
    font-size: 1.2rem;
    margin: 10px 0;
}

.content-box p {
    color: silver;
    font-size: 0.8rem;
    margin: 2px 0;
}

  @media(min-width:820px) and (max-width:860px){
    /* Content Flex Box */
.content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: justify;
    gap:0 !important;
}
  }



        @media (width:853px) {
                .recent__card {
                    width: 400px;
                    /* Slightly smaller card width */
                    height: auto;
                    /* Reduced height */
                    flex: 0 1 360px;
                    /* Adjusted flex size */
                }
            }

            /* For screen sizes 959px to 1024px */
@media (min-width: 959px) and (max-width: 1023px) {
    .why-choose p {
        font-size: 14px; /* Smaller font for paragraphs */
    }

    .why-choose h2 {
        font-size: 20px; /* Smaller heading size */
    }

    .why-choose ul li {
        font-size: 14px; /* Smaller font for list items */
    }
}

/* For screen sizes 1024px and above */
@media (min-width: 1024px) {
    .why-choose p {
        font-size: 18px; /* Further reduced font size for paragraphs */
    }

    .why-choose h2 {
        font-size: 24px; /* Further reduced heading size */
    }

    .why-choose ul li {
        font-size: 18px; /* Further reduced size for list items */
    }
}

@media screen and (max-width: 800px) and (max-height: 1280px) {
    .content-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: justify;
        gap:0 !important;
    }
}

.logo img{
  max-height:none;
}

 
  

    
     
        .left-column img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
    /* Ensures the image fills the column */
}

@media screen and (max-width: 768px) {
    .left-column img {
      height: auto; /* Adjust image height for mobile */
      object-fit: fill; 
      /* Ensure image is resized correctly */
  }
}

@media screen and (min-width: 2560px) {
    .left-column img {
      /* object-fit: cover; */
      height: 110%; /* Ensure the image fills the column */
  }
}

@media screen and (min-width:769px) and (max-width:839px){
    .right-column h3{
        font-size:20px;
        margin-bottom:8px;
    }

    .right-column p{
        font-size:14px;
        margin-bottom:18px;
    }

    .rounded-button{
        font-size:15px;
    }
}
    
    
        /* Background Section */


/* @media (min-width:1600px) and (max-width:1879px){
  .background-section {
    width: 100%;
    height: 650px ; 
    background-image: url(./assets/img/banner2.jpg);
    background-size: 100% auto !important; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
} */
/* 
@media (min-width:1440px) and (max-width:1599px){
  .background-section {
    width: 100%;
    height: 580px !important; 
    background-image: url(./assets/img/banner2.jpg);
    background-size: 100% auto !important; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
} */
/* 
@media(max-width:1599px){
  .background-section {
    width: 100%;
    height: 600px; 
    background-image: url(./assets/img/banner2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
} */


/* .news-section {
  background-color: #DDDCDC;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  
  position: relative;
  overflow: hidden;
} */


    
/* Ensure the container uses flexbox for alignment */
#custom-form {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between elements */
    margin:0;
    padding:0;
    /* width:96%; */
}

/* Set consistent height for the image and select input */
#custom-form img {
    /* height: 30px;  */
    /* Adjust as per your requirement */
    object-fit: cover; /* Maintain aspect ratio */
    margin: 0;
    padding: 0;
}

#custom-form select {
    /* height: 40px;  */
    /* Match the height of the image */
    /*line-height: 50px; */
    /* Vertically center text */
    font-size: 16px !important; 
    /* Adjust font size */
    margin: 0;
    padding: 0;
    border: none;
    line-height: normal;
}

@media (max-width:1100px){
    #custom-form select{
        margin-left:10px;
    }
}

#custom-form .form-control {
    padding: 4px 20px; /* Adjust padding for proper spacing */
    box-sizing: border-box; /* Include padding in height calculation */
}

/* Responsive styles for 768px and below */
@media (max-width: 768px) {
    #custom-form{
        gap:0px;
    }
    #custom-form img {
        height: 20px; /* Reduce the height for smaller screens */
        margin-left:8px;
    }

    #custom-form select {
        height: 32px; /* Reduce the height for smaller screens */
        /*font-size: 14px; /* Adjust font size for readability */
    }
}

@media (min-width:769px) and (max-width: 1023px) {
    #custom-form img {
        height: 20px; /* Reduce the height for smaller screens */
    }

    #custom-form select{
        height:30px;
    }
}    



/* Center the button inside the div */
#customized div {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically align content if needed */
}

/* Style for the submit button */
#customized input[type="submit"] {
    width:60%;
    background-color: black; /* Black background */
    color: white; /* White text */
    border: none; /* Remove default border */
    border-radius: 30px; /* Rounded corners */
    padding: 8px 20px; /* Adjust padding for better alignment */
    font-size: 16px; /* Readable text size */
    line-height: 1; /* Ensure no extra line spacing */
    height: 50px; /* Consistent height for the button */
    display: flex; /* Use flexbox for internal alignment */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    cursor: pointer; /* Pointer cursor on hover */
    text-transform: uppercase; /* Optional: Make text uppercase */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    box-sizing: border-box; /* Include padding in width/height calculations */
    font-weight:bold;
}

/* Hover effect */
#customized input[type="submit"]:hover {
    background-color: gray; /* Change background color on hover */
    color: black; /* Change text color on hover */
}

/* .flexbox-section {
    display: flex;
    border: 2px solid #ccc; 
    border-radius: 10px;
    overflow: hidden; 
    margin: 20px auto;
    width: 80% !important; 
    max-width: 3000px; 
    height: 350px; 
} */

.flexbox-section {
    display: flex;
    border: 2px solid #ccc; /* Border around the entire flexbox */
    border-radius: 10px; /* Rounded corners for the entire flexbox */
    overflow: hidden; /* Ensures the content stays within the border radius */
    margin: 20px auto;
    width: 50%; /* Adjust width as needed */
    max-width: 3000px; /* Maximum width */
    /* height: 350px; */
     /* Adjust the height as needed */
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {

/* Stack the columns vertically in mobile view */
.flexbox-section {
    flex-direction: column;
    height: auto; /* Allow height to adjust for content */
    width:65% !important;
}
}

@media(width:1024px){
  #custom-form {
                display: flex;
                align-items: center;
                gap: 10px;
                /* Space between elements */
                height: 30px;
            }

            #custom-form img {
                height: 25px;
                /* Adjust as per your requirement */
                object-fit: cover;
                /* Maintain aspect ratio */
            }

            .find-box select {
                    height: 35px;
                }
        }

        @media(width:853px){
  #custom-form {
                display: flex;
                align-items: center;
                gap: 10px;
                /* Space between elements */
                height: 30px;
            }

            #custom-form img {
                height: 25px;
                /* Adjust as per your requirement */
                object-fit: cover;
                /* Maintain aspect ratio */
            }

            .find-box select {
                    height: 35px;
                }
        }
         
 
        /* section heading styles starts */

        .section__heading{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .section__heading :is(h1, h2, h3, h4, h5, h6, p){
            font-size: 2rem;
            margin: 0;
        }
        
        .section__heading p{
            font-size: 1rem;
            color: #0000006b;
        }
        
        /* Media queries for responsive font size */
        @media (max-width: 450px) {
            .section__heading :is(h1, h2, h3, h4, h5, h6, p) {
                font-size: 1.6rem; /* Decrease font size */
            }
        
            .section__heading p {
                font-size: 0.8rem; /* Adjust paragraph font size */
            }
        }
        
        @media (max-width: 385px) {
            .section__heading :is(h1, h2, h3, h4, h5, h6, p) {
                font-size: 1.4rem; /* Further decrease font size */
            }
        
            .section__heading p {
                font-size: 0.7rem;
            }
        }
        
        @media (max-width: 340px) {
            .section__heading :is(h1, h2, h3, h4, h5, h6, p) {
                font-size: 1.2rem; /* Smallest font size */
            }
        
            .section__heading p {
                font-size: 0.6rem;
            }
        }

        .form-control{
            padding:0.20rem 0.75rem !important;
        }


        .need-center {
            display: flex;
            justify-content: center;
            align-items: center;
            /* height: 100vh; */
             /* Full viewport height */
            text-align: center;
            font-size: 20px;
            font-weight: bold;
        }

        .no-results {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            width: 100%;
            min-height: 150px; /* Ensures enough space for visibility */
        }
        
        




    /*Steps section style*/
  .steps-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
  }

  .steps-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .steps-section p {
    font-size: 14px;
    color: #777;
    text-transform: capitalize;
    margin-bottom: 5px;
  }



  .steps {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    max-width: 900px;
    gap: 50px;
  }

  .step {
    flex: 1;
    text-align: center;
    /* margin: 10px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
  }

  .step img {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }

  .step h3 {
    font-size: 12px;
    margin: 10px 0;
    text-transform: uppercase;
  }



  .step-indicators {
    display: flex;
    justify-content: space-around;
    margin: 20px auto 0;
    max-width: 800px;
    position: relative;
    align-items: center;
  }

  .step-indicator {
    width: 30px;
    height: 30px;
    background-color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: black;
  }

  .step-line {
    flex: 1;
    height: 2px;
    background-color: black;
  }

  /* Mobile Responsiveness */
  @media screen and (max-width: 768px) {

    /* Step Container: Set it to be horizontally scrollable */
    .steps {
      overflow-x: scroll;
      display: flex;
      justify-content: flex-start;
      gap: 10px;
      padding: 10px;
    }

    /* Make sure each step card is appropriately sized */
    .step {
      min-width: 45%;
      /* Adjust width for mobile (2 visible cards) */
      flex: 0 0 auto;
      /* Prevent flex from stretching */
    }

    /* Ensure the indicators and step-lines are still centered */
    .step-indicators {
      flex-direction: row;
      justify-content: space-between;
    }

    /* Adjust font sizes for smaller screens */
    .steps-section h1 {
      font-size: 20px;
    }

    .steps-section p {
      font-size: 12px;
    }

    .step h3 {
      font-size: 10px;
    }
  }

  @media screen and (max-width: 480px) {

    /* Further adjust the step cards for very small screens */
    .step {
      min-width: 55%;
      /* Adjust to make cards fit better */
    }

    /* Ensure the text in the cards is legible */
    .steps-section h1 {
      font-size: 18px;
    }

    .steps-section p {
      font-size: 10px;
    }

    .step h3 {
      font-size: 9px;
    }
  }

  /* Media Query for Laptop Large Screens */
  @media screen and (min-width: 1440px) {
    .steps {
      max-width: 1180px !important;
      /* Increase the max-width for larger screens */
      gap: 40px !important;
      /* Increase the gap between steps */
    }

    .step {
      flex: 1;
      /* min-width: 200px; */
      /* Allow steps to be wider on larger screens */
    }

    .step-indicators {
      max-width: 990px !important;
      /* Increase the max-width for step indicators */

    }

    .step-indicator {
      width: 40px;
      height: 40px;
      font-size: 18px;
      /* Adjust the size for large screens */
    }
  }

  /* Media Query for 4K Screens */
  @media screen and (min-width: 1920px) {
    .steps {
      max-width: 1650px !important;
      /* Increase the max-width even more for 4K screens */
      gap: 60px !important;
      /* Increase the gap further */
    }

    .step {
      /* min-width: 350px; */
      /* Further increase the min-width of each step */
    }

    

    .steps-section h1 {
      font-size: 36px;
      /* Increase font size for heading */
    }

    .steps-section p {
      font-size: 18px;
      /* Increase font size for paragraph */
    }

    .step-indicators {
      max-width: 74% !important;
      /* Expand indicators to occupy full screen width */

    }

    .step-line {
      height: 4px;
      /* Increase thickness of connecting lines */
      background-color: black;
      /* Maintain visibility */
    }

    .step img {
      width: 150px;
      /* Increase the size of step images */
      height: 150px;
      margin-bottom: 15px;
      /* Add more spacing below the image */
    }

    .step h3 {
      font-size: 20px;
      /* Increase font size of step titles */
      margin: 15px 0;
      /* Add more spacing around step titles */
    }

    .step-indicator {
      width: 60px;
      /* Further increase size of indicators */
      height: 60px;
      font-size: 24px;
      /* Adjust font size inside the indicators */
    }
  }

 
  @media (min-width: 2000px) and (max-width:2559px){
    .step-indicators {
      max-width: 65% !important;
      /* Expand indicators to occupy full screen width */

    }
}



  @media screen and (min-width: 2560px) {

    .steps {
      max-width: 2110px !important;
      /* Increase the max-width even more for 4K screens */
      gap: 100px !important;
      /* Increase the gap further */
    }

    .step {
      /* min-width: 400px; */
      /* Further increase the min-width of each step */
    }

    .steps-section h1 {
      font-size: 38px;
      /* Increase font size for heading */
    }

    .steps-section p {
      font-size: 24px;
      /* Increase font size for paragraph */
    }

    .step-indicators {
      max-width: 70% !important;
      /* Expand indicators to occupy full screen width */

    }

    .step-line {
      height: 4px;
      /* Increase thickness of connecting lines */
      background-color: black;
      /* Maintain visibility */
    }

    .step img {
      width: 150px;
      /* Increase the size of step images */
      height: 150px;
      margin-bottom: 15px;
      /* Add more spacing below the image */
    }

    .step h3 {
      font-size: 24px;
      /* Increase font size of step titles */
      margin: 15px 0;
      /* Add more spacing around step titles */
    }

    .step-indicator {
      width: 60px;
      /* Further increase size of indicators */
      height: 60px;
      font-size: 24px;
      /* Adjust font size inside the indicators */
    }
  }


  /*steps section ends*/


  .background-section {
  width: 100%;
  /* height: 600px;  */
  /* Adjust as needed */
  background-image: url(./assets/img/banner2.webp);
  background-size: cover; /* Ensures no white space */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media(min-width:1641px){
    .background-section{
        height:600px !important;
    }
}

@media screen and (min-width: 2560px) {
  .background-section {
      height: 800px !important; /* Maintain the fixed height */
      overflow: hidden; /* Prevent content from increasing height */
  }
}

        .image-back {
    position: absolute;
    top: -180px;
    left: 80px;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    margin-right: 80px;
}

.image-front {
    position: absolute;
    top: -120px;
    left: 130px;
    z-index: 2;
    width: 100%;
    object-fit: cover;
    height:400px;
    
}

@media (max-width: 768px) {
    
    .flex-box.image-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto; /* Adjust based on content */
        padding: 0; /* Remove any padding */
        margin: 0; /* Remove extra margin */
        overflow: hidden; /* Prevent extra space */
    }

    .image-back {
        position: absolute;
        top: 40px; /* Adjust as needed */
        left: -20px;
        margin: 0;
        width: 80%;
    }

    .image-front {
        position: absolute;
        top: -70px; /* Adjust this to reduce the gap */
        left: 20px;
        margin: 0;
        width: 80%;
        z-index: 1; /* Ensure it appears above the back image */
    }

    img {
        margin: 0;
        padding: 0;
        display: block; /* Eliminate inline spacing */
        max-width: 100%;
    }
}


@media (max-width: 430px) {
    .flex-box.image-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto; /* Adjust based on content */
        padding: 0;
        margin: 0;
        overflow: hidden; /* Prevent extra space */
    }

    .image-back {
        position: absolute;
        top: 40px; /* Adjust as needed */
        left: -15px;
        margin: 0;
        width: 100%; /* Adjust width for smaller screens */
        height:auto;
    }

    .image-front {
        position: absolute;
        top: -60px; /* Adjust to reduce gap */
        left: 20px;
        margin: 0;
        width: 95%; /* Adjust width for smaller screens */
        z-index: 1;
        height:auto;
    }
}

@media (max-width: 375px) {
    .flex-box.image-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .image-back {
        position: absolute;
        top: 20px; /* Adjust for smaller screens */
        left: -10px;
        margin: 0;
        width: 95%; /* Make the back image larger */
    }

    .image-front {
        position: absolute;
        top: -40px; /* Fine-tune position */
        left: 20px;
        margin: 0;
        width: 90%; /* Scale down front image */
        z-index: 1;
    }
}

@media (max-width: 320px) {
    .flex-box.image-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .image-back {
        position: absolute;
        top: 35px; /* Adjust for very small screens */
        left: -5px;
        margin: 0;
        width: 100%; /* Make it full-width */
    }

    .image-front {
        position: absolute;
        top: -30px; /* Adjust to remove gap */
        left: 10px;
        margin: 0;
        width: 95%; /* Scale down slightly */
        z-index: 1;
    }
}

/* For 4K screens (min-width: 2560px) */
@media (min-width: 2560px) {
    .flex-box.image-box {
        height: 800px; /* Increase height to accommodate larger images */
    }

    .image-back {
        top: 50px; /* Adjust position for overlay effect */
        left: 20px; /* Center it better */
        width: 120%; /* Scale up for larger screens */
    }

    .image-front {
        top: 150px; /* Front image stays higher */
        left: 50px; /* Align properly with back image */
        width: 120%; /* Scale up proportionally */
        height: 600px; /* Increase height for better visibility */
    }
}


@media screen and (min-width: 2000px) {
    .news-section {
      width: 100%; /* Occupy full screen width */
      max-width: 2560px;
      padding: 0 25px;
  }
}

@media screen and (min-width: 2560px) {
  .news-section {
    max-width: none; /* Remove the max-width constraint */
    width: 100% !important; /* Ensure the background spans the full screen */
    padding: 0 20px; /* Optional: Add some padding if needed */
}
}

.container11{
            width:100%;
            margin:40px 0;
            padding:20px 0;
        }


        .custom-table {
            height: 80px; /* Ensures the header has a fixed height */
          }
          
          thead.custom-table .headings {
            height: 20px !important;  /* Ensures each row inside the thead has a height */
          }
          
          thead.custom-table .headings th, 
          thead.custom-table .headings td {
            line-height: 20px !important; /* Ensures text inside cells is aligned properly */
            height: 20px !important; /* Forces table to respect height */
            overflow: hidden; /* Ensures no overflow issues */
          }
          
          
          .custom-table tr{
            height:60px;
            overflow:hidden;
          }

          .description-container {
            margin: 0 10px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            height: 60px; /* Adjust height as needed */
            overflow: hidden;
        }
        
        /* .description-title {
            margin: 0;
            font-size:1.2rem;
            display: flex; 
            align-items: center; 
            gap: 5px;
        }
        
        .description-title .description-text {
            font-size: 0.8rem;
            font-weight:normal;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            white-space: normal;
        } */

        .description-title {
            margin: 0;
            font-size: 1.2rem;
            display: block; /* Ensures full width usage */
            font-weight: bold;
        }
        
        .description-wrapper {
            display: flex;
            flex-wrap: wrap; /* Allows text to wrap naturally */
            align-items: flex-start;
            gap: 5px;
        }
        
        .description-text {
            font-size: 1rem;
            font-weight: normal;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* Limits text to 2 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            /* max-width: calc(100% - 100px);  */
            /* Adjusts space dynamically */
            white-space: normal; /* Allows text wrapping */
            flex: 1; /* Ensures it grows and wraps properly */
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        
        @media (max-width: 1024px) {
            .description-container {
                height: 50px; /* Limit height for smaller screens */
                overflow: hidden;
            }
        }

        @media (max-width: 1024px) {
            /* .custom-table{
                height:50px;
            } */
            thead.custom-table .headings {
                height: 20px !important;  /* Ensures each row inside the thead has a height */
            }
        
            .custom-table tr {
                height: 30px;
                overflow: hidden;
            }
        }
        
    
    
@media (max-width: 768px) {
    .details-table th {
        font-size: 14px;
    }

    .details-table td{
        font-size:12px;
    }
}
        

@media(min-width:1025px) and (max-width:1063px){
    .testimonial__content{
        padding:0 10px;
        padding-top:15px;
    }
}


@media(min-width:1024px){
#rental-rates-th {
    font-size: 1.2rem; /* Adjust as needed */
}
}


@media(min-width:800px) and (max-width:959px){
    .details-table{
        width:97%;
    }

    .custom-table{
        height:110px;
    }

    /* #rental-rates-th {
        width: 90% !important;
    } */
}


.card-img-top{
  width:auto !important;
}

.table thead th{
  vertical-align: middle;
}


.description-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%; /* optional: ensures it spans the container */
}

.description-wrapper li {
    font-weight: bold;
    text-align: center; /* changed from center to left */
}