.whatsappicon {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background-color: green;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
}

.contant-number {
  position: fixed;
  bottom: 80px;
  right: 10px;
  background-color: #1e1e1e;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: grid;
  place-items: center;
}

.whatsappicon i,
.contant-number i {
  font-size: 25px;
  color: #fff;
}


.pulsating-play-btn::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, #fff, transparent 30%);
  top: 0;
  left: 0;
  background: rgba(198, 16, 0, 0);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/* hero section start */

/* .herosection {
  padding: 15px;
} */

.imgbox {
  position: relative;
}

.imgbox img {
  width: 100%;
  /* border-radius: 20px; */
  height: auto;
}

.carousel-z-index {
  z-index: -1;
  height: 100%;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item img{
  width: 100%;
  height: auto;
}



.imgbox .overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0%), rgba(0, 0, 0, 90%));
  /* border-radius: 0px 0px 20px 20px; */
  /* z-index: 3; */
}

.index-clients-logo {
  position: absolute;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 0px;
  display: flex;
  justify-content: space-evenly;
  padding: 10px 30px;
  width: 85%;
  border-radius: 50px;
  box-shadow: 0px 24.56px 32.74px -14.73px #95959540;
  overflow: hidden;
}

.index-clients-logo img {
  width: 110px;
  height: auto;
}

.index-hero-content-box {
  position: absolute;
  top: 30%;
  left: 10%;
  color: #fff;
}

.index-hero-content-box text {
  font-family: "Manrope-SemiBold";
}

.index-hero-content-box h1 {
  width: 80%;
  margin: 20px 0px;
  font-family: "Manrope-SemiBold";
}

.index-hero-content-box p {
  width: 80%;
  margin-bottom: 30px;
  font-family: "Manrope-Regular";
  font-size: 14px;
}

.index-hero-content-box button {
  padding: 7px 25px;
  background-color: #eb6e65;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "Manrope-SemiBold";
}



/* .hero-waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.hero-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 3px); 
  height: 100%;
}

.hero-waves .wave1 use {
  animation: move-wave 10s linear infinite;
  fill: rgba(238, 154, 148,0.6);
}

.hero-waves .wave2 use {
  animation: move-wave 15s linear infinite;
  animation-delay: -5s;
  fill: rgba(238, 154, 148,0.4);
}

.hero-waves .wave3 use {
  animation: move-wave 20s linear infinite;
  animation-delay: -10s;
  fill: rgba(238, 154, 148, 0.2);
} */

/* Keyframes for smooth horizontal movement */
/* @keyframes move-wave {
  0% {
    transform: translate(85px,0%);
  }
  100% {
    transform: translate(-90px,0%);
  }
} */

/* hero section End */

/* About Us section start */

.index-common-title {
  text-align: left;
  color: #1e1e1e;
}

.index-common-title text {
  font-family: "Manrope-Regular";
  font-size: 20px;
}

.index-common-title h3:nth-child(1){
  font-family: "Manrope-Regular" !important;
}

.index-common-title h3 {
  font-family: "Manrope-SemiBold";
  margin-top: 10px;
  
}

.index-common-title span {
  color: #eb6e65;
}

.index-Aboutus-section {
  margin-top: 70px;
}

.aboutus-main-box {
  margin-top: 50px;
}

.aboutus-splice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  padding:10px 0px ;
}

.aboutus-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: auto;
}

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

.side-img-1 {
  border-radius: 20px;
  overflow: hidden;
}

.aboutus-contentbox h3 {
  font-family: "Manrope-SemiBold";
}

.aboutus-contentbox h3 span {
  color: #eb6e65;
}

.aboutus-contentbox p {
  font-family: "Manrope-Regular";
  font-size: 13px;
  line-height: 2;
  margin-top: 15px;
}

.aboutus-contentbox text {
  font-family: "Manrope-SemiBold";
  display: flex;
  align-items: center;
}

.learn-more {
  display: flex;
  gap: 10px;
  align-items: center;
}

.learn-more i {
  color: #eb6e65;
}

/* About Us section End */

/* Service section starts */

.Services-section {
  margin-top: 100px;
  background-color: #f3f4f4;
  padding-top: 50px;
}

.services-splices-img-position {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 70px;
}

.services-img-box-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.services-img-box-2 {
  grid-area: 1 / 2 / 2 / 4;
}

.services-img-box-3 {
  grid-area: 2 / 1 / 3 / 2;
}

.services-img-box-4 {
  grid-area: 2 / 2 / 3 / 3;
}

.services-img-box-5 {
  grid-area: 2 / 3 / 4 / 4;
}

.services-img-box-6 {
  grid-area: 3 / 1 / 4 / 3;
}

.services-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s;
}

.services-img-box {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.overlay-services {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0%), rgba(0, 0, 0, 70%));
  z-index: 1;
}

.services-img-content {
  position: absolute;
  width: 100%;
  content: "";
  bottom: 20px;
  transition: 0.5s;
  padding: 30px 20px 20px 30px;
  overflow: hidden;
  height: 57px;
  z-index: 2;
}

.services-img-content h3 {
  color: #fff;
  font-family: "Manrope-SemiBold";
  font-size: 16px;
}

.services-img-content p {
  color: #cecccc;
  font-size: 16px;
  font-family: "Manrope-Regular";
}

.services-img-box-1:hover .services-img-content-1 {
  height: 230px;
}

.services-img-box-2:hover .services-img-content-2 {
  height: 160px;
}

.services-img-box-3:hover .services-img-content-3 {
  height: 230px;
}

.services-img-box-4:hover .services-img-content-4 {
  height: 250px;
}

.services-img-box-5:hover .services-img-content-5 {
  height: 230px;
}

.services-img-box-6:hover .services-img-content-6 {
  height: 140px;
}



.counts-services {
  margin-top: 100px;
  background-image: url(../images/homepage-imgs/services-img/home-page-our-cities-leads-customers-events-count-background-imageNew.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: grid;
  place-items: center;
}

.counts-splices {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}

.count-box-content {
  display: grid;
  place-items: center;
  color: #fff;
  row-gap: 15px;
}

.count-box-content h1 {
  font-family: "Manrope-SemiBold";
}

.count-box-content text {
  font-family: "Manrope-Regular";
}

.splited-numbers {
  display: flex;
}

.count-box-content {
  text-align: center;
  margin: 10px;
}

/* Flip animation styles */
.flip-animation {
  animation: flip 0.5s ease-in-out;
  /* Faster animation (0.5s) */
}

@keyframes flip {
  0% {
    transform: rotateX(0);
  }

  50% {
    transform: rotateX(90deg);
  }

  100% {
    transform: rotateX(0);
  }
}

/* Service section End */

/* Our Reach section start */

.Our-Reach-section {
  margin-top: 140px;
}

.Branches-splice {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 70px;
}

.branch-content-box-1 {
  grid-area: 1 / 1 / 3 / 3;
}

.branch-content-box-2 {
  grid-area: 1 / 3 / 2 / 4;
}

.branch-content-box-3 {
  grid-area: 1 / 4 / 2 / 5;
}

.branch-content-box-4 {
  grid-area: 2 / 3 / 3 / 5;
}

.branch-content-box-5 {
  grid-area: 3 / 1 / 4 / 3;
}

.branch-content-box-6 {
  grid-area: 3 / 3 / 5 / 5;
}

.branch-content-box-7 {
  grid-area: 4 / 1 / 5 / 2;
}

.branch-content-box-8 {
  grid-area: 4 / 2 / 5 / 3;
}

.branch-content-box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: 0.5s;
}

.branch-content-box:hover .branch-img {
  transform: scale(1.1);
  cursor: pointer;
}

.branch-content-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.location-name-box {
  position: absolute;
  content: "";
  width: 100%;
  padding: 20px;
  bottom: 0px;
}

.btn-location {
  padding: 3px 18px;
  padding-right: 8px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btn-location text {
  font-family: "Manrope-SemiBold";
  font-size: 14px;
  z-index: 2;
  transition: 0.5s;
}

.branch-content-box:hover .btn-location text {
  color: #fff;
}

.btn-location i {
  color: #eb6e65;
  font-size: 20px;
  z-index: 2;
  transition: 0.5s;
}

.branch-content-box:hover .btn-location i {
  color: #fff;
}

.btn-location::after {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #eb6e65;
  transform: skewX(45deg);
  z-index: 1;
  transition: width 1000ms;
}

.branch-content-box:hover .btn-location::after {
  width: 250%;
}

/* Our Reach section End */

/* Testimonials section start */

.Testimonials-section {
  margin-top: 100px;
  background-color: #eb6e65;
  height: 800px;
  background-image: url(../images/homepage-imgs/reviews-contents-part-background-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.Testimonials-splice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.Testimonials-title {
  text-align: center;
  background-color: #fff;
  margin: 41px 0px;
  padding: 70px 40px;
  border-radius: 10px;
  width: 80%;
  position: relative;
}

.Testimonials-title ::after {
  position: absolute;
  content: "";
  top: 30px;
  right: 30px;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/homepage-imgs/right\ 2.png") no-repeat center center;
  background-size: cover;
}

.Testimonials-title ::before {
  position: absolute;
  content: "";
  bottom: 30px;
  left: 30px;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/homepage-imgs/right\ 2.png") no-repeat center center;
  background-size: cover;
  transform: rotate(180deg);
}

.Testimonials-content-box-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  overflow: hidden;
}

.Testimonials-content-box-2 {
  height: 800px;
 
}

.Testimonials-scoll-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  height: 322px;
  display: flex;
  flex-direction: column;
}

.name-box-testimonials-img {
  width: 40px;
  position: relative;
  border-radius: 50%;
 
}


@keyframes glow {
  0% {
    transform: rotate(0deg);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

.name-box-testimonials-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);
  animation: glow 2s linear infinite;
  border-radius: 50%;
  z-index: 1000;
  z-index: 1;
  filter: blur(30px);
}



.name-box-testimonials-img img {
  width: 100%;
  height: auto;
}

.name-box-testimonials {
  display: flex;
  gap: 15px;
  line-height: 18px;
  align-items: center;
}

.name-box-testimonials h5 {
  font-family: "Manrope-SemiBold";
  font-size: 15px;
  margin: 0px;
}

.name-box-testimonials text {
  font-family: "Manrope-Regular";
  font-size: 12px;
}

.Testimonials-scoll-box p {
  margin-top: 20px;
  font-family: "Manrope-Regular";
  font-size: 13px;
  /* line-height: 2; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
  max-height: calc(2em * 7);
}

.star-icon-testimonials {
  display: flex;
  gap: 10px;
}

.star-icon-testimonials i {
  font-size: 12px;
  color: #f3c758;
}

/* Testimonials section END */

/* Our happy Clinets section start */

.Our_happy_Clients_section {
  margin-top: 100px;
}

.client-logo-splices {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.client-logo-img {
  padding: 10px;
  width: 100px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 70% / 20%;
  transition: 0.5s;
}

.client-logo-img img {
  width: 100%;
  height : auto;
}

.client-logo-img:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0px 5px 25px 0px rgba(235, 110, 101, 0.3);
}

.client-aliment {
  display: flex;
  justify-content: center;
}

/* Our happy Clinets section End */

/* blog-section start */

.blog-section {
  background-color: #f3f4f4;
  padding: 100px 0px;
}

.Blog-content-Splice {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  margin-top: 70px;
}

.img-blog img {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  object-fit: cover;
  height: 100%;
}

.blog-img-content-1 {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.blog-img-content-1::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 300px;
  bottom:0%;
  left: 0%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.0),black);
  z-index: 1;
}

.background-curve {
  position: absolute;
  content: "";
  height: 100px;
  width: 100px;
  background-image: url(../images/homepage-imgs/shape.png);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  top: 0px;
  right: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  padding: 9px;
}

.background-curve-white {
  position: absolute;
  content: "";
  height: 135px;
  width: 135px;
  background-color: #f3f4f4;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  top: -1px;
  right: -1px;
}

.background-curve i {
  color: #f3f4f4;
  font-size: 50px;
  transform: rotate(220deg);
  display: flex;
}

.content-img-blog {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 20px 30px;
  z-index: 2;
}

.content-img-blog h3 {
  font-family: "Manrope-SemiBold";
  font-size: 17px;
}

.content-img-blog p {
  font-family: "Manrope-Regular";
  color: #cecccc;
  font-size: 13px;
}

.block-2 {
  position: relative;
  overflow: hidden;
}
.block-2 video{
  width: 100%;
  border-radius: 30px;
}
.block-2::after{
  position: absolute;
  background-image: linear-gradient(rgba(255, 255, 255,0.0), rgba(0, 0, 0,0.9));
  width: 100%;
  height: 200px;
  content: "";
  bottom: 0%;
  left: 0%;
  border-radius: 0px 0px 30px 30px;
}
.i-icon {
  position: absolute;
  content: "";
  top: 3px;
  right: 11px;
  color: #eb6e65;
  font-size: 30px;
}

/* blog-section End */

.mobile-clinets {
  display: none;
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  .index-Aboutus-section{
    margin-top: 30px;
  }

  /* hero-section start */
  .index-hero-content-box {
    top: 20% !important;
  }

  .index-hero-content-box h1 {
    font-size: 18px;
  }

  .index-hero-content-box p {
    font-size: 11px !important;
  }

  .index-clients-logo {
    display: none;
  }

  .mobile-clinets {
    display: flex;
  }

  .index-clients-logo img {
    width: 70px;
  }

  /* hero-section end */

  /* Aboutus part section start */
  .aboutus-img img {
    border-radius: 20px;
  }

  .aboutus-img {
    margin-top: 15px;
  }

  .aboutus-splice {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }

  .aboutus-splice .aboutus-contentbox:nth-child(2) {
    margin-top: 20px;
  }

  /* Aboutus part section end */

  /* services-section start */

  .services-splices-img-position {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .services-img-box-1,
  .services-img-box-2,
  .services-img-box-3,
  .services-img-box-4,
  .services-img-box-5,
  .services-img-box-6 {
    grid-area: auto;
  }

  .services-img-content {
    position: absolute;
    width: 100%;
    content: "";
    bottom: 25px;
    transition: 0.5s;
    padding: 30px 20px 0px 30px;
    overflow: hidden;
    height: 65px;
  }

  .services-img-content h3 {
    font-size: 14px;
  }

  .services-img-content p {
    display: none;
  }

  .services-img-box-1:hover .services-img-content-1 {
    height: 65px;
  }

  .services-img-box-2:hover .services-img-content-2 {
    height: 65px;
  }

  .services-img-box-3:hover .services-img-content-3 {
    height: 65px;
  }

  .services-img-box-4:hover .services-img-content-4 {
    height: 65px;
  }

  .services-img-box-5:hover .services-img-content-5 {
    height: 65px;
  }

  .services-img-box-6:hover .services-img-content-6 {
    height: 65px;
  }

  .counts-splices {
    grid-template-columns: 1fr;
    /* Single column */
    grid-template-rows: auto;
    /* Automatically adjust rows */
    grid-column-gap: 0px;
    /* No column gap since it's one column */
    grid-row-gap: 15px;
    /* Add vertical spacing between items */
  }

  .counts-services {
    height: 700px;
  }

  .count-box-content {
    margin-top: 20px;
  }

  /* Services section End  */

  /* Our Reach section start */
  .Branches-splice {
    grid-template-columns: repeat(2, 1fr);
    /* Two-column layout */
    grid-template-rows: auto;
    /* Adjust rows dynamically */
    grid-column-gap: 15px;
    /* Smaller column gap for mobile */
    grid-row-gap: 15px;
    /* Add vertical spacing */
    margin-top: 30px;
    /* Adjust margin for smaller screens */
  }

  /* Reset grid-area for boxes to flow naturally */
  .branch-content-box-1,
  .branch-content-box-2,
  .branch-content-box-3,
  .branch-content-box-4,
  .branch-content-box-5,
  .branch-content-box-6,
  .branch-content-box-7,
  .branch-content-box-8 {
    grid-area: auto;
    /* Reset grid placement */
  }

  .location-name-box {
    padding: 10px !important;
  }

  .location-name-box text {
    font-size: 11px;
  }

  .btn-location {
    padding: 1px 18px;
    padding-right: 8px;
  }

  .btn-location i {
    font-size: 15px;
  }

  /* Our Reach section end */

  /* Testimonials section start */
  .Testimonials-splice {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 15px;
  }

  .myMarquee {
    display: none;
  }

  .Testimonials-content-box {
    display: grid;
    place-items: center;
  }

  .Testimonials-content-box-2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: 20px;
  }



  /* Testimonials section End */

  /* Blog section start */

  .Blog-content-Splice {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    margin-top: 70px;
  }

  .block-2 {
    margin-top: 20px;
  }

  .background-curve {
    height: 50px;
    width: 50px;
    padding: 5px;
  }

  .background-curve-white {
    height: 75px;
    width: 75px;
    top: -1px;
    right: -1px;
  }

  .background-curve i {
    font-size: 25px;
    transform: rotate(220deg);
    display: flex;
  }

}


/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

  /* testimonials section start */

  .Testimonials-splice {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}


/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

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

  /* CSS */
  .Testimonials-splice {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 13px;

  }

  .Testimonials-content-box-1 {
    display: grid;
    place-items: center;
  }

  .content-box-section-splice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 0px;
    margin-top: 75px;
  }

  .contact-serach-btn {
    margin-right: 10px;
  }

}

