.divrow{
    /* background-image: linear-gradient(white, skyblue, white); */
    padding: 7%;
}
.divicon{
    /* background-image: linear-gradient(skyblue, white, skyblue); */
    text-align: center;
    padding: 3%;
    border-radius: 20px;
    margin-top: 20px;
    border: 1px solid skyblue;
}
.divicon i{
    font-size: 50px;
    color: black;
    /* border: 2px solid white; */
    border-radius: 50%;
    padding: 5%;
    font-weight: bold;
}
.diviconmiddle{
    /* background-image: linear-gradient(white,black, white); */
    text-align: center;
    padding: 3%;
    border-radius: 20px;
    margin-top: 20px;
    border: 1px solid skyblue;
}
.diviconmiddle i{
    font-size: 50px;
    color: black;
    /* border: 2px solid white; */
    border-radius: 50%;
    padding: 5%;
    font-weight: bold;
}
.wedo{
    /* background-image: linear-gradient(white, skyblue,white); */
    padding: 7%;
}
.wedo h1{
    color: black;
    font-size: 60px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

/* Default image size (larger screens) */
.custom-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 0px 30px gray;
}

/* Smaller image size on small screens */
@media (max-width: 767px) {
    .custom-img {
        width: 50%;
        height: auto;
    }
    
}
@media (max-width: 767px) {
    .slideCarousel-img {
        width: 30%;
        height: auto;
    }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black; /* Add color for visibility */
}
/* .love{
    background-image: linear-gradient(white,black);
} */
.love p{
    color: black;
    line-height: 2.5;
}
marquee img{
    border-radius: 40%;
}

.testimonial-card {
    /* background: linear-gradient(skyblue, white); */
    border-radius: 20px;
    transition: transform 0.3s ease;
}

/* .testimonial-card:hover {
    transform: translateY(-5px);
} */

.quote-icon {
    font-size: 4rem;
    color: #6366f1;
    opacity: 0.2;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    /* background-color: #6366f1; */
    /* border-radius: 50%; */
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    /* border-radius: 50%; */
    background-color: #6366f1;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

.footerContainer {
    position: relative; /* To position the overlay correctly */
    padding: 8%;
    background-image: url('/image/7378401_31958.jpg');
    /* height: 100%; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* border-radius: 25px; */
}
.footerContainer::before {
    content: ''; /* Creates a pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);   /*Black overlay with 50% opacity */
    z-index: 0; /* Ensure the overlay stays behind the content */
    /* border-radius: 25px; */
}

.footerContainer h2{
    position: relative;
    z-index: 1; /* Ensure the text stays above the overlay */
    color: black; /*Set text color for readability*/
    justify-content: center;
    font-weight: bold;
    font-size: 50px;
}


/* Overlay stays on top */
.tea-price-overlay {
    position: absolute;
    top: 50px;
    left: 100px;
    z-index: 3;
    text-align: left;
}


.hello {
    width: 200px;
    height: 200px;
    background-color: rgb(214, 239, 255);
    -webkit-animation: squareToCircle 2s 1s infinite alternate;
  }
  
  @-webkit-keyframes squareToCircle {
      0% {
        border-radius: 0 0 0 0;
        background: rgb(214, 239, 255);
        transform: rotate(0deg);
      }
      25% {
        border-radius: 50% 0 0 0;
        background: rgb(214, 239, 255);
        transform: rotate(45deg);
      }
      50% {
        border-radius: 50% 50% 0 0;
        background: rgb(99, 195, 255);
        transform: rotate(90deg);
      }
      75% {
        border-radius: 50% 50% 50% 0;
        background: rgb(214, 239, 255);
        transform: rotate(135deg);
      }
      100% {
        border-radius: 50% 50% 50% 50%;
        background: rgb(145, 213, 255);
        transform: rotate(180deg);
      }
  }