*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}
body{
  background-color: #fff;
}

.banner-img{
    width: 100%;
    height: auto;
    display: block;
}
.banner{
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  .banner-content {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -45%); 
    text-align: center;
    color: white; 
    z-index: 2; 
    font-family: "Poppins", serif;
}
.banner-text {
    font-size: 22px; 
    font-weight: 300;
    margin-bottom: 15px;
    color: #D5A021;
}
.banner-main-text {
    font-family: "Rosarivo", serif !important;
    font-size: 65px; 
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 75px;
}
.banner-button {
    background-color: #ffffff00;
    color: rgb(255, 255, 255);
    border: solid 2px;
    font-size: 20px;
    font-weight: 400;
    width: 190px;
    height: 55px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: background-color 0.3s; 
}
.banner-button:hover {
    background-color: #20856B;
    color: #ffffff;
    border: solid 2px #ffffff;
}

.Title-text-section{
    text-align: center;
    max-width: 80%;
    position: relative;
    margin: 80px auto;
}
.banner-content h1{
  font-family: "Rosarivo", serif !important;
  display: inline-block;
}
.banner-content h1 span{
  font-family: "Rosarivo", serif !important;
}


.wavy {
  animation-name: wavy;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  position: relative;
  top: 0;
  left: 0;
}

@keyframes wavy {
  0% { top: 0px; }
  50% { top: -12px; }
  100% { top: 0px; }
}
.Title-text-section span{
  color: hsla(0, 16%, 11%, 0.2);
  background-clip: text;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-image: linear-gradient(90deg, black, black);
  animation: Title-text-section linear forwards;
  animation-timeline: view(y);
}
.Title-text-section h1 span{
  font-family: "Rosarivo", serif;
  animation-range-start: cover 23vh;
  animation-range-end: cover 30vh;
}
.Title-text-section p span{
  animation-range-start: cover 22.3vh;
  animation-range-end: cover 40vh;
}


@keyframes Title-text-section{
  to {
    background-size: 100% 100%;
  }
}
.Title-text-section h1{
    font-family: "Rosarivo", serif;
    font-size: 40px;
    margin-bottom: 25px;
}

.Title-text-section p{
    font-size: 22px;
    margin-bottom: 20px;
    color: #484847;
}

.bg-container{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #EDF6F4;
}
  .container {
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    background-color: #EDF6F4;
  }

  .image-row {
    display: flex;
    gap: 50px;
  }

  .image-row img {
    width: 100%;
    height: auto;
  }

  .image {
    margin-top: 50px;
    flex: 0.7;
    position: relative;
  }
  .image-2{
    flex: 1.5;
    position: relative;
    height: auto;
  }

  .caption {
    margin-top: 15px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
  }
  .center-text{
    margin: 40px 80px;
    font-size: 22px;
    text-align: center;
    color: #484847;
  }


  .bg-room-conatiner{
    background-color: #fff;
  }

  .room-container {
    padding: 20px;
    margin: 60px auto;
    text-align: left;
    max-width: 85%;
    
  }

  .room-container h1 {
    font-family: "Rosarivo", serif;
    font-size: 40px;
    margin-bottom: 50px;
    text-align: left;
  }

  .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .room-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
  }

  .room-card:hover {
    transform: translateY(-5px);
  }

  .room-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .room-content {
    padding: 15px;
    display: flex;
    flex-direction: column; 
  }

  .room-title {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 30px;
  }

  .room-description {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .room-button {
    align-self: center;
    display: inline-block;
    padding: 10px 40px;
    font-size: 16px;
    color: #20856B;
    text-decoration: none;
    border: 2px solid #20856B;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .room-button:hover {
    background-color: #20856B;
    color: #fff;
  }
  .bg-container{
    padding-bottom: 30px;
  }
  .tour-container {
    padding: 20px;
    padding-bottom: 0px;
    margin: 60px auto 0px;
    text-align: center;
    max-width: 85%; 
  }
  .tour-container h1 {
    font-family: "Rosarivo", serif;
    font-size: 40px;
    margin-bottom: 50px;
  }
  .tour-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    padding-bottom: 0px;
  }
  .room-card:hover {
    transform: translateY(-5px);
  }
  .tour-title{
    font-size: 30px;
    font-weight: 500;
    margin: 10px 0 30px;
  }
  .tour-content {
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
  }
  .tour-description {
    text-align: center;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 85%; 
  }
  .tour-image{
  position: relative; 
  overflow: hidden;
  }
  .tour-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease; 
  }
  .tour-image img:hover{
    filter: blur(5px);
    transform: scale(1.05);
    cursor: pointer;
  }
  .tour-hover-text:hover{
    color: #D5A021;
    cursor: pointer;
  }
  .tour-hover-text {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    color: #20856B;
    font-size: 45px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0; 
    transition: opacity 0.3s ease; 
  }
  .tour-image:hover .tour-hover-text {
    opacity: 1; 
  }
  .tour-button{
    align-self: center;
    display: inline-block;
    padding: 10px 40px;
    width: 500px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    border: 2px solid #20856B;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .tour-button:hover{
    background-color: #20856B;
    color: #fff;
  }
  .testimonial-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
    height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-0%, -50%);
    z-index: 2;
    width: 35%;
    max-height: 50%;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.carousel-bg {
    position: relative; 
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center;
    width: 100%;
}
.carousel-bg img {
    width: 100%;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-text {
    font-size: 22px;
    color: #484847;
    font-style: italic;
    font-weight: 300;
    margin: 30px 30px 20px;
    line-height: 32px;
}

.testimonial-author {
    font-size: 40px;
    font-weight: 600;
    color: #20856B;
}

.testimonial-location {
    font-size: 22px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 10px;
}

.testimonial-stars {
    font-size: 35px;
    letter-spacing: 10px;
    color: #D5A021;
}

.fa-quote-left {
    color: #D5A021;
    font-size: 65px;
}
@media(max-width: 1630px){
  .room-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .room-button {
    padding: 10px 40px;
    font-size: 16px;
  }
  .tour-container {
    padding: 20px;
    padding-bottom: 0px;
    margin: 60px auto 0px;
    max-width: 85%; 
  }
  .tour-container h1 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .tour-card {
    padding-bottom: 0px;
  }
  .tour-title{
    font-size: 26px;
    margin: 10px 0 30px;
  }
  .tour-content {
    padding: 15px;
  }
  .tour-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 85%; 
  }


  .testimonial-carousel {
    width: 100%;
    min-height: 400px;
    height: 90vh;
}
/* Content Section */
.carousel-content {
    top: 50%;
    left: 50%;
    transform: translate(-0%, -50%);
    z-index: 2;
    width: 35%;
    max-height: 55%;
    padding: 20px 20px;
}
.testimonial-text {
    font-size: 18px;
    font-weight: 300;
    margin: 30px 30px 20px;
    line-height: 30px;
}
}

@media(max-width: 1440px){
  .banner-content {
    top: 57%;
    left: 50%;
}
  .banner-text {
    font-size: 19px; 
    margin-bottom: 10px;
}
.banner-main-text {
    font-size: 45px; 
    margin-bottom: 25px;
    line-height:65px;
}
.banner-button {
    font-size: 18px;
    width: 175px;
    height: 50px;
}
.Title-text-section{
  max-width: 80%;
  margin: 80px auto;
}
.Title-text-section h1{
  font-size: 36px;
  margin-bottom: 25px;
}

.Title-text-section p{
  font-size: 20px;
  margin-bottom: 20px;
}
.center-text{
  margin: 25px 40px;
  font-size: 18px;
}
.room-container h1 {
  font-size: 36px;
  margin-bottom: 45px;
}
.room-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.room-button {
  padding: 8px 35px;
  font-size: 16px;
}
.room-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0 20px;
}
.tour-container {
  padding: 20px;
  padding-bottom: 0px;
  margin: 60px auto 0px;
  max-width: 85%; 
}
.tour-container h1 {
  font-size: 36px;
  margin-bottom: 45px;
}
.tour-card {
  padding-bottom: 0px;
}
.tour-title{
  font-size: 23px;
  margin: 10px 0 30px;
}
.tour-content {
  padding: 15px;
}
.tour-description {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 92%; 
}
.tour-button{
  padding: 10px 40px;
  width: 450px;
  margin-bottom: 30px;
  font-size: 18px;
  border: 2px solid #20856B;
}
/* teestimonial Section */
.testimonial-carousel {
  width: 100%;
  min-height: 400px;
  height: 75vh;
}
.carousel-content {
  top: 50%;
  left: 50%;
  transform: translate(-0%, -50%);
  z-index: 2;
  width: 40%;
  max-height: 50%;
  padding: 20px 20px;
}
.testimonial-text {
  font-size: 17px;
  font-weight: 300;
  margin: 5px 20px 20px;
  line-height: 25px;
}
.testimonial-author {
  font-size: 30px;
  font-weight: 600;
}
.testimonial-location {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 5px;
}
.testimonial-stars {
  font-size: 30px;
  letter-spacing: 7px;
}
.fa-quote-left {
  font-size: 65px;
}
}

@media(max-width: 1250px){
  .banner-content {
    top: 60%;
    left: 50%;
}
  .banner-text {
    font-size: 17px; 
    margin-bottom: 10px;
}
.banner-main-text {
    font-size: 37px; 
    margin-bottom: 20px;
    line-height:50px;
}
.banner-button {
    font-size: 16px;
    width: 165px;
    height: 45px;
}
.Title-text-section h1 span{
  font-family: "Rosarivo", serif;
  animation-range-start: cover 30vh;
  animation-range-end: cover 40vh;
}
.Title-text-section p span{
  animation-range-start: cover 22.3vh;
  animation-range-end: cover 40vh;
}
.Title-text-section{
  max-width: 80%;
  margin: 70px auto;
}
.Title-text-section h1{
  font-size: 33px;
  margin-bottom: 25px;
}
.Title-text-section p{
  font-size: 17px;
  margin-bottom: 20px;
}
.center-text{
  margin: 25px 25px;
  font-size: 16px;
  line-height: 20px;
}
.room-container h1 {
  font-size: 34px;
  margin-bottom: 45px;
}
.room-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.room-button {
  padding: 8px 35px;
  font-size: 16px;
}
.room-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0 20px;
}
.tour-container {
  padding: 20px;
  padding-bottom: 0px;
  margin: 60px auto 0px;
  max-width: 85%; 
}
.tour-container h1 {
  font-size: 34px;
  margin-bottom: 45px;
}
.tour-card {
  padding-bottom: 0px;
}
.tour-title{
  font-size: 23px;
  margin: 10px 0 30px;
}
.tour-content {
  padding: 15px;
}
.tour-description {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 92%; 
}
.tour-button{
  padding: 10px 40px;
  width: 450px;
  margin-bottom: 30px;
  font-size: 18px;
  border: 2px solid #20856B;
}
/* .room-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; 
}

.tour-card:nth-child(3) {
  grid-column: span 2; 
  justify-self: center; 
} */

 /* teestimonial Section */
.testimonial-carousel {
  width: 100%;
  min-height: 400px;
  height: 60vh;
}
.carousel-content {
  top: 50%;
  left: 50%;
  transform: translate(-0%, -50%);
  z-index: 2;
  width: 40%;
  max-height: 51%;
  padding: 20px 20px;
}
.testimonial-text {
  font-size: 14px;
  font-weight: 300;
  margin: 5px 20px 5px;
  line-height: 20px;
}
.testimonial-author {
  font-size: 25px;
  font-weight: 600;
}
.testimonial-location {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}
.testimonial-stars {
  font-size: 26px;
  letter-spacing: 5px;
}
.fa-quote-left {
  font-size: 45px;
}
}

@media(max-width: 1024px){
  .banner-content {
    top: 55%;
    left: 50%;
}
  .banner-text {
    font-size: 15px; 
    margin-bottom: 6px;
}
.banner-main-text {
    font-size: 28px; 
    margin-bottom: 20px;
    line-height:40px;
}
.banner-button {
    font-size: 13px;
    width: 140px;
    height: 40px;
}
.Title-text-section h1 span{
  font-family: "Rosarivo", serif;
  animation-range-start: cover 40vh;
  animation-range-end: cover 50vh;
}
.Title-text-section p span{
  animation-range-start: cover 45vh;
  animation-range-end: cover 50vh;
}
.Title-text-section{
  max-width: 85%;
  margin: 60px auto;
}
.Title-text-section h1{
  font-size: 28px;
  margin-bottom: 25px;
}
.Title-text-section p{
  font-size: 14px;
  margin-bottom: 20px;
}
.center-text{
  margin: 15px 15px;
  font-size: 12px;
  line-height: 18px;
}
.image-row {
  gap: 30px;
}
.room-container h1 {
  font-size: 30px;
  margin-bottom: 45px;
}
.room-description {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.room-button {
  padding: 8px 35px;
  font-size: 16px;
}
.room-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0px 0 15px;
}
.tour-container {
  padding: 20px;
  padding-bottom: 0px;
  margin: 0px auto 0px;
  max-width: 85%; 
}
.tour-container h1 {
  font-size: 30px;
  margin-bottom: 40px;
}
.tour-card {
  padding-bottom: 0px;
}
.tour-title{
  font-size: 22px;
  margin: 5px 0 20px;
}
.tour-content {
  padding: 15px;
}
.tour-description {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 92%; 
}
.tour-button{
  padding: 10px 40px;
  width: 400px;
  margin-bottom: 30px;
  font-size: 17px;
  border: 1px solid #20856B;
}
/* teestimonial Section */
.testimonial-carousel {
  width: 100%;
  min-height: 500px;
  height: 50vh;
}
.carousel-content {
  top: 50%;
  left: 50%;
  transform: translate(-0%, -50%);
  z-index: 2;
  width: 40%;
  max-height: 52%;
  padding: 15px 20px;
}
.testimonial-text {
  font-size: 10px;
  font-weight: 300;
  margin: 0px 10px 0px;
  line-height: 15px;
}
.testimonial-author {
  font-size: 18px;
  font-weight: 500;
}
.testimonial-location {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 0px;
}
.testimonial-stars {
  font-size: 20px;
  letter-spacing: 4px;
}
.fa-quote-left {
  font-size: 38px;
}
}

@media(max-width: 768px){
  .banner-content {
    top: 55%;
    left: 50%;
    width: 300px;
}
.banner .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); 
  z-index: 1;
}
  .banner-text {
    font-size: 12px; 
    margin-bottom: 6px;
}
.banner-main-text {
    font-size: 20px; 
    margin-bottom: 10px;
    line-height:25px;
}
.banner-button {
  border: solid 1px;
    font-size: 9px;
    width: 110px;
    height: 25px;
    letter-spacing: 1px;
}
.Title-text-section span{
  color: hsla(0, 0%, 1%, 10);
  background-clip: text;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-image: linear-gradient(90deg, black, black);
  animation: Title-text-section linear forwards;
  animation-timeline: view(y);
}
.Title-text-section{
  max-width: 85%;
  margin: 35px auto;
}
.Title-text-section h1{
  font-size: 20px;
  margin-bottom: 20px;
}
.Title-text-section p{
  font-size: 11px;
  margin-bottom: 15px;
}
.center-text{
  margin: 10px 10px;
  font-size: 9px;
  line-height: 14px;
}
.image-row {
  gap: 20px;
}
.room-container {
  padding: 20px;
  margin: 60px auto;
  max-width: 70%;
}
.room-container h1 {
  font-size: 25px;
  margin-bottom: 30px;
}
.room-description {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.room-button {
  padding: 5px 28px;
  font-size: 13px;
  border: solid 1px;
}
.room-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0px 0 15px;
}
.tour-container {
  padding: 10px;
  padding-bottom: 0px;
  margin: 0px auto 0px;
  max-width: 70%; 
}
.tour-container h1 {
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.tour-card {
  padding-bottom: 0px;
}
.tour-title{
  font-size: 20px;
  margin: 5px 0 20px;
}
.tour-content {
  padding: 15px;
}
.tour-description {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 92%; 
}
.tour-button{
  padding: 7px 30px;
  width: 250px;
  margin-bottom: 30px;
  font-size: 13px;
}
/* teestimonial Section */
.testimonial-carousel {
  width: 100%;
  min-height: 300px;
  height: 0vh;
}
.carousel-content {
  top: 50%;
  left: 50%;
  transform: translate(-0%, -50%);
  z-index: 2;
  width: 40%;
  height: 50%;
  max-height: 50%;
  padding: 10px 15px;
}
.testimonial-text {
  font-size: 7px;
  font-weight: 300;
  margin: 0px 5px 0px;
  line-height: 10px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 500;
}
.testimonial-location {
  font-size: 8px;
  font-weight: 300;
  margin-bottom: 0px;
}
.testimonial-stars {
  font-size: 15px;
  letter-spacing: 3px;
}
.fa-quote-left {
  font-size: 25px;
}
}

@media(max-width: 500px){
  .banner-content {
    top: 55%;
    left: 50%;
    width: 300px;
}
.banner-img{
  width: 120%;
  height: auto;
}
  .banner-text {
    font-size: 12px; 
    margin-bottom: 5px;
}
.banner-main-text {
    font-size: 20px; 
    margin-bottom: 5px;
    line-height:23px;
}

.banner-button {
  border: solid 1px;
    font-size: 9px;
    width: 85px;
    height: 22px;
}
.Title-text-section{
  max-width: 85%;
  margin: 25px auto;
}
.Title-text-section h1{
  font-size: 14px;
  margin-bottom: 15px;
}

.Title-text-section p{
  font-size: 7px;
  margin-bottom: 10px;
}
.tour-container h1 {
  font-size: 20px;
  margin-bottom: 50px;
}
.tour-button{
  align-self: center;
  display: inline-block;
  padding: 10px 20px;
  width: 200px;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 500;
  border: 2px solid #20856B;
}
.center-text{
  margin: 10px 10px;
  font-size: 7px;
  line-height: 10px;
}
.image-row {
  gap: 20px;
}
.container {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
.bg-container{
  margin-top: 20px;
}
.room-container {
  padding: 0px;
  margin: 0px auto;
  max-width: 80%;
}
.room-container h1 {
  font-size: 20px;
  margin-bottom: 25px;
  margin-top: 15px;
}
.room-description {
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.room-button {
  padding: 4px 24px;
  font-size: 11px;
  border: solid 1px;
}
.room-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0px 0 15px;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.tour-container {
  padding: 10px;
  padding-bottom: 0px;
  margin: 0px auto 0px;
  max-width: 75%; 
}
.tour-container h1 {
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.tour-card {
  padding-bottom: 0px;
}
.tour-title{
  font-size: 20px;
  margin: 5px 0 20px;
}
.tour-content {
  padding: 5px;
}
.tour-description {
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 15px;
  max-width: 100%; 
}
.tour-button{
  padding: 6px 20px;
  width: 220px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 11px;
}
/* teestimonial Section */
.testimonial-carousel {
  width: 100%;
  min-height: 350px;
  height: 0vh;
}
.carousel-content {
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  z-index: 2;
  width: 50%;
  height: 45%;
  max-height: 58%;
  padding: 10px 10px;
}
.testimonial-text {
  font-size: 8px;
  font-weight: 300;
  margin: 5px 10px;
  margin-bottom: 5px;
  line-height: 10px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 500;
}
.testimonial-location {
  font-size: 8px;
  font-weight: 300;
  margin-bottom: 0px;
}
.testimonial-stars {
  font-size: 14px;
  letter-spacing: 3px;
}
.fa-quote-left {
  font-size: 25px;
}
.carousel-bg img {
  width: 140%;
}
@keyframes wavy {
  0% { top: 0px; }
  50% { top: -5px; }
  100% { top: 0px; }
}
}
@media(max-width: 400px){
  /* teestimonial Section */
.testimonial-carousel {
  width: 100%;
  min-height: 300px;
  height: 100%;
}
.carousel-content {
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  z-index: 2;
  width: 45%;
  height: 45%;
  max-height: 65%;
  padding: 10px 10px;
}
.testimonial-text {
  font-size: 7px;
  font-weight: 300;
  margin:0px 5px 5px;
  line-height: 8px;
}
.testimonial-author {
  font-size: 10px;
  font-weight: 500;
}
.testimonial-location {
  font-size: 6px;
  font-weight: 300;
  margin-bottom: 0px;
}
.testimonial-stars {
  font-size: 11px;
  letter-spacing: 3px;
}
.fa-quote-left {
  font-size: 23px;
}
.carousel-bg {
  position: relative; 
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center;
  width: 150%;
}
.carousel-bg img {
  width: 140%;
}
@keyframes wavy {
  0% { top: 0px; }
  50% { top: -5px; }
  100% { top: 0px; }
}
}
  
