@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(/section-css/cta.css);
/* hero section css */

html{
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #007e76;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b4a6;
}

body{
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Changa One', cursive;
    background-color: #e5e7eb;
    overflow-x: hidden ;
}

#home{
    height: 100%;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.home-page{
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
}

header{
    margin: 0;
    position: relative;
    height: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

header::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/assets/headerBG.webp') no-repeat center center/cover;
    filter: brightness(30%);
    background-attachment: fixed;
    z-index: -1;
    width: inherit;
}

.home-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: auto;
    min-height: 100vh;
    width: 100%;
}

.home-content h2{
    color: #e5e7eb;
    font-size: 4.5rem;
    text-shadow: 10px 10px 20px #131313;
    margin: 0;
    max-width: 70%;
    min-width: 10%;
    font-family: "Poppins", sans-serif;
    line-height: 5rem;
}   

.home-content p{
    font-family: "Poppins", sans-serif;
    color: #e5e7eb;
    font-size: 1.2rem;
    text-shadow: 10px 10px 20px #131313;
    max-width: 50%;
    min-width: 10%;
    text-align: center;
    letter-spacing: 1.2px;
    line-height: 2rem;
}   

.home-content h2>span{
    color: #007e76;
    font-size: 4.5rem;
    text-shadow: 10px 10px 20px #131313;
}  

.home-content button{
    padding: 15px 30px;
    font-size: 1.15rem;
    border: none;
    border-radius: 5px;
    background: #007e76;
    color: #e5e7eb;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease-in-out;
    max-width: 30%;
}

.home-content button>span{
    color: #e5e7eb;
}

.home-content button:hover{
    background: #0f172a;
    transition: 0.3s;
    box-shadow: 0 8px 40px 0px #4a4a4a9e;
    color:#007e76;
    transform: scale(1.05);
}

.scroll-button {
    position: fixed;
    bottom: 5%;
    right: 3%;
    background-color: #007e76;
    color: #e5e7eb;
    border: 2px dashed #131313;
    border-radius: 50%;
    width: 4%;
    height: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    font-size: 1.75rem;
    display: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.scroll-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 575px) {

    .home-content {
        gap: 15px;
        padding: 20px;
    }

    .home-content h2 {
        font-size: 2rem;
        max-width: 100%;
        letter-spacing: 0.5px;
        line-height: 2.5rem;
        padding: 0 20px;
        word-break: break-word;
    }

    .home-content h2 > span {
        font-size: 2rem;
    }

    .home-content p {
        font-size: 0.9rem;
        max-width: 90%;
        line-height: 1.25rem;
    }

    .home-content button {
        padding: 10px 15px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    .scroll-button {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    bottom: 15px;
    right: 15px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {

    .home-content h2 {
        font-size: 3rem;
        line-height: 3.5rem;
        max-width: 85%;
        word-break: break-word;
    }

    .home-content h2 > span {
        font-size: 3rem;
    }

    .home-content p {
        font-size: 1rem;
        max-width: 75%;
        line-height: 1.6rem;
    }

    .home-content button {
        width: auto;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .scroll-button {
    width: 7%;
    height: 6%;
    font-size: 1.2rem;
    bottom: 15px;
    right: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .home-content h2 {
        font-size: 3.5rem;
        line-height: 4rem;
        word-break: break-word;
    }

    .home-content p {
        max-width: 60%;
    }
     .scroll-button {
    width: 7%;
    height: 6%;
    font-size: 1.2rem;
    bottom: 15px;
    right: 15px;
    }
}

/* about section css */


#about{
  background-color: #e5e7eb;
  padding: 30px 0px;
  margin: 0;
  height: 100%;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  row-gap: 30px;
  box-sizing: border-box;
}

#about h2{
  color: #007e76;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 3rem;
}

#desc{
  color: #383535;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 1.2rem;
  max-width: 55%;
  z-index: 1;
  line-height: 2rem;
  margin: 0;
}   

#desc span{
  color: #007e76;
  font-weight: bold;
}

#about .about-content{
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

#about .about-content::before{
  content: '';
  position: absolute;
  top: 66%;
  left: 0;
  width: 100%;
  height: 45vh;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,0 L0,0 Z" fill="%2319212b"/></svg>'), linear-gradient(#19212b, #19212b);
  background-repeat: repeat-x, no-repeat;
  background-position: bottom center, left bottom;
  background-size: 600px 60px, cover;
  z-index: 0;
}

.card{
  max-width: 30%;
  height: auto;
  background-color: #e6e6e6ae;
  border-radius: 5px;
  box-shadow: 0px 10px 20px 0px #17161633;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  z-index: 0;
  border: #e5e7eb 1px solid;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: 
    backdrop-filter 0.5s ease-in-out, 
    transform 0.3s ease;
  box-sizing: border-box;
}

.card img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  max-height: 300px;
  display: block;
}

#about .img-container{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

}

#about .card-content{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

#about .card h2{
  color: #007e76;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 2rem;
}

#about .card p{
  color: #383535;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 1rem;
  width: 85%;
}

.card:hover{
  transform: translateY(-10px);
  background-color: #0f172ac9;
}

#about .card:hover p{
  color: #e5e7eb;
}



@media (max-width: 575px) {
    #about {
        height: auto;
        row-gap: 20px;
    }

    #about h2 {
        font-size: 2rem;
        margin: 20px 0 10px 0;
    }

    #desc {
        font-size: 0.95rem;
        max-width: 90%;
        line-height: 1.5rem;
    }

    #about .about-content {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        column-gap: 0;
        row-gap: 15px;
        padding: 20px 10px;
    }

    #about .about-content::before {
        display: none;
    }

    .card {
        max-width: 85%;
        min-width: 70%;
        height: auto;
    }

    .card img {
        max-width: 100%;
    }

    #about .card h2 {
        font-size: 1.3rem;
    }

    #about .card p {
        font-size: 0.85rem;
        width: 95%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {

    #desc {
        max-width: 75%;
        font-size: 1rem;
    }

    #about .about-content {
        justify-content: center;
        row-gap: 20px;
    }

    .card {
        max-width: 30%;
    }

    .card h2{
      margin: 0;
    }

    #about .about-content::before {
        height: 30vh;
        top: 70%;
    }
    .card img{
       width: 100%;
      height: 220px; /* optional but recommended */
     object-fit: cover;
     display: block; /* 🔥 removes inline gap */
    }
}

/* services section css */

.goal{
  max-width: 40%;
  min-width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.goal h3{
  color: #e5e7eb;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  margin: 10px;
       text-shadow: 10px 10px 20px #131313;
}

.goal p{
  color: #e5e7eb;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5rem;
  text-shadow: 10px 10px 20px #131313;
}

#services{
    max-width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 35px;
}

#services::before{
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: brightness(30%);
    position: absolute;
   background-image: url('/assets/headerBG.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;    
}

.services-header{
    text-align: center;
    color: #007e76;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
     text-shadow: 0px 1px 10px #e5e7eb1b;
}

.services-content{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex-direction: column;
    gap: 10px;
}

.services-row{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
}

.services-card{
    background: #e6e6e68a;    
    -webkit-backdrop-filter: blur(40px);   
     backdrop-filter: blur(40px);  
    border: #e5e7eb 1px solid;
    font-family: "Poppins", sans-serif;
    width: 100%;
    text-align: center;
    height: auto;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.services-card h4{
    color: #e5e7eb;
    font-family: "Poppins", sans-serif;
    font-size: 1.75rem;
}

.services-card p{
    color: #131313;
    line-height: 1.65rem;
    font-family: "Poppins", sans-serif;
    font-size: .95rem;
}

#services button{
    padding: 10px 30px;
    font-size: 1.15rem;
    border: none;
   border-radius: 5px;
    background: #007e76;
    color: #e5e7eb;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease-in-out;
    max-width: 30%;
    margin-bottom: 20px;
}

#services button:hover{
     background: #0f172a;
    transition: 0.3s;
    box-shadow: 0 8px 40px 0px #4a4a4a9e;
    color:#007e76;
    transform: scale(1.05);
}

@media (max-width: 575px) {
    .goal {
        max-width: 100%;
        min-width: 30%;
        height: auto;
        padding: 10px 15px;
        margin: 0;
    }

    .goal h3 {
        font-size: .92rem;
        margin: 0;
    }

    .goal p {
        font-size: 0.95rem;
        line-height: 1.5rem;
        margin: 0;
    }

    .services-header h2{
        font-size: 2rem;
        margin: 0;
    }

    .services-content{
        height: auto;
        gap: 10px;
    }

    .services-row{
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    #services{
        height: auto;
        padding: 20px 0;
    }

    #services button{
        max-width: 100%;
        min-width: 50%;
    }
    
    .services-card h4{
        font-size: 1.55rem;
    }

    .services-card p{
        font-size: 0.85rem;
    }

    .services-card{
        max-width: 80%;
        min-width: 80%;
    }
}

@media (min-width: 576px) and (max-width: 991px){

    .services-row{
        gap: 20px;
        flex-direction: row;
    }

    .services-card{
        max-width: 30%;
        min-width: 30%;
    }

    .goal{
        max-width: 70%;
    }

    #services button{
        min-width: 200px;
    }
}

/* testimonials section css */


#testimonials {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    color: #007e76;
    text-align: center;
    margin-bottom: 0;
}

.testimonials-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

#testimonials .img-container {
    width: 40%;
    align-items: center;
    justify-content: center;
    display: flex;
}

#chooseus {
    width: 100%;
    object-fit: contain;
    height: 450px;
}

/* ---- Why Choose Us ---- */

.content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0 40px;
    gap: 20px;
}

.choose-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    row-gap: 40px;
    border-left: 2px dashed #007e76;
    padding: 0 40px;
}

.choose-row2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    row-gap: 40px;
}

.choose-card {
    width: 100%;
    height: auto;
    box-shadow: 0px 12px 20px #15141413;
    padding: 15px;
}

.choose-card strong {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: #007e76;
}

.choose-card p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #383535;
}

/* ---- Feedback / Carousel Section ---- */

.content2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #19212b;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
}

.content2 h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    color: #007e76;
    padding-bottom: 20px;
    text-align: center;
    text-shadow: 0px 1px 10px #e5e7eb1b;
}

.feedback-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.feedback-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ---- Carousel ---- */

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
    padding: 1rem 0;
    touch-action: pan-y;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-card {
    flex: 0 0 calc(50% - 0.75rem);
    background: #05f3c308;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 2px solid #007e76;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: grab;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s ease;
}

.carousel-card .profile {
    width: 7rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(56, 53, 53, 0.25);
    margin-bottom: 1rem;
}

.carousel-card .stars img {
    width: 1.8rem;
    margin: 0 0.2rem 1rem;
}

.carousel-card .feedback p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin: 0 0 1.2rem;
    font-family: "Poppins", sans-serif;
}

.carousel-card .feedback strong {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: #007e76;
    font-size: 2.2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    z-index: 10;
}

.carousel-button.prev { left: 0.5rem; }
.carousel-button.next { right: 0.5rem; }

.carousel-button:hover {
    background: #007e76;
    color: white;
    transform: translateY(-50%) scale(1.08);
}

.border-bottom {
    width: 100%;
    height: 6rem;
}

.carousel-card img,
.carousel-card .stars img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}


/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* ---------- Mobile: up to 575px ---------- */
@media (max-width: 575px) {

    .testimonials-header h2 {
        font-size: 2rem;
        padding: 0 16px;
    }

    .content1 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 16px;
        gap: 16px;
    }

    #chooseus {
        display: none;
    }

    #testimonials .img-container {
        display: none;
    }

    .choose-row,
    .choose-row2 {
           width: 100%;
        max-width: 100%;
        border: none;
        padding: 0;
        row-gap: 16px;
        box-sizing: border-box;
    }

    .choose-card {
        width: 100%;
        box-sizing: border-box;
    }

    .choose-card strong {
        font-size: 1.05rem;
    }

    .choose-card p {
        font-size: 0.9rem;
    }

    .content2 {
         width: 100vw;
        max-width: 100vw;
        padding: 24px 0 24px 0;
        margin: 0;
        overflow: hidden;
    }

    .content2 h2 {
        font-size: 1.8rem;
        text-align: center;
        padding-bottom: 16px;
    }

    .feedback-row {
            width: 100%;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .testimonials-carousel {
          width: 100%;
        max-width: 100%;
        padding: 0 !important;
        margin: 0;
        overflow: hidden !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .carousel-track {
            display: flex;
        gap: 0 !important;
        padding: 0.75rem 0 !important;
        margin: 0;
        width: 100%;
        transition: transform 0.5s ease-in-out;
            touch-action: pan-y;
    }

    .carousel-card {
         flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 0 !important;         /* override any min-width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem 1.5rem !important;
        margin: 0 !important;
        min-height: auto !important;     /* remove fixed height causing blank space below */
        height: auto !important;
        border-left: none !important;    /* FIX: left border can cause 2px overflow */
        border-right: none !important;
        border-radius: 5px !important;
              box-shadow: inset 0 0 0 2px #007e76, 0 4px 20px rgba(0,0,0,0.08);
                  touch-action: pan-y;
    }

     .carousel-track::after {
        content: none;
    }

    .carousel-card .profile {
        width: 5rem;
        height: 5rem;
    }

    .carousel-card .feedback p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .carousel-card .stars img {
        width: 1.4rem;
    }

    .carousel-button {
        display: none; /* swipe only on mobile */
    }
    .border-bottom {
        height: 3rem;
    }
     #testimonials {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }
}


/* ---------- Tablet: 576px – 991px ---------- */
@media (min-width: 576px) and (max-width: 991px) {

    .testimonials-header h2 {
        font-size: 2.4rem;
    }

    .content1 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    #testimonials .img-container {
        width: 60%;
        max-width: 360px;
    }

    #chooseus {
        width: 100%;
        height: 340px;
    }

    .choose-row,
    .choose-row2 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 700px;
        border: none;
        padding: 0;
        row-gap: 16px;
        gap: 16px;
    }

    .choose-card {
        width: calc(50% - 8px);
        box-sizing: border-box;
        max-height: none;
    }

    .content2 {
        padding: 40px 24px;
    }

    .content2 h2 {
        font-size: 2.2rem;
    }

    .feedback-row {
        width: 100%;
    }

    .testimonials-carousel {
        padding: 0 3rem;
    }

    .carousel-card {
        flex: 0 0 calc(100% - 1.5rem);
        max-width: 560px;
        margin: 0 auto;
    }
    .carousel-button {
        display: none; /* swipe only on mobile */
    }
}


/* ---------- Small Desktop: 992px – 1199px ---------- */
@media (min-width: 992px) and (max-width: 1199px) {

    .testimonials-header h2 {
        font-size: 2.6rem;
    }

    .content1 {
        gap: 16px;
        padding: 0 24px;
    }

    #testimonials .img-container {
        width: 35%;
    }

    #chooseus {
        height: 380px;
    }

    .choose-row,
    .choose-row2 {
        width: 32%;
        row-gap: 28px;
    }

    .choose-row {
        padding: 0 24px;
    }

    .choose-card strong {
        font-size: 1.1rem;
    }

    .choose-card p {
        font-size: 0.95rem;
    }

    .content2 {
        padding: 40px 32px;
    }

    .content2 h2 {
        font-size: 2.6rem;
    }

    .testimonials-carousel {
        padding: 0 3rem;
    }

    .carousel-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-height: 300px;
    }

    .carousel-card .profile {
        width: 6rem;
        height: 6rem;
    }
    
}


/* ---------- Large Desktop: 1200px+ ---------- */
@media (min-width: 1200px) {

    .content1 {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .testimonials-carousel {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3.5rem;
    }

    .carousel-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: 600px;
    }

    .content2 {
        padding: 60px 40px;
    }
}

/* CTA section css */


