@font-face {
  font-family: 'poppins';
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: 'domine';
  src: url(../fonts/Domine-Regular.ttf);
}
@font-face {
  font-family: 'acme';
  src: url(../fonts/Acme-Regular.ttf);
}
body {
  overflow-x: hidden;
  font-family: 'poppins';
}
.logo{
        width: 150px;
    mix-blend-mode: multiply;

}

.star-rating {
      color: gold;
      font-size: 1.2rem;
    }


.f3{
    font-size: 3rem;
}


.py-7{
    padding-top: 5.5rem;
    padding-bottom: 8.5rem;
}

.sec-2 img{
    margin-top: -8rem;
}

/* #gmb-services{
    overflow-x: hidden;
}*/

[data-aos] {
  /* overflow-x: hidden; */
  will-change: transform, opacity;
}

[data-aos="fade-right"],
[data-aos="fade-left"] {
  transform: translateX(0) !important;
} 



    .gmb-section {
      background: #083653;
      padding: 60px 20px;
      color: white;
    }

    .gmb-section h2 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .gmb-section p {
      font-size: 18px;
      margin-bottom: 40px;
    }

    .gmb-section ul {
      padding-left: 20px;
    }

    .gmb-section li {
      margin-bottom: 15px;
      font-size: 16px;
      list-style: none;
    }

    .circle-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
  }
  .feature-title {
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
  }


   .footer {
    background-color: #0d1c33;
    color: #ffffff;
    padding: 40px 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
  }

  .footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

  .footer a:hover {
    color: #1da1f2;
  }

  .footer-logo {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0d1c33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
  }

  .footer-divider {
    height: 1px;
    background-color: #1a2a47;
    margin: 10px 0;
  }

  .banner-title span{
    font-size: 4.5rem;
  }

  .trusted_by{
    font-size: 20px;
  }

  a{
    text-decoration: none;
  }

  .contact-icons{
    background: #0d1c33;
    padding: 10px;
    color: white;
    border-radius: 25px;
  }

  .text-highlight {
    color: #ffffff;
    background: linear-gradient(to right, #ff4b2b, #ff416c);
    /* background: linear-gradient(to right, #026be2, #ff416c); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInText 1.2s ease-in;
  }

  .banner-title {
    font-size: 2.8rem;
    line-height: 1.3;
    animation: fadeInUp 1s ease-in-out;
        font-family: cursive;
  }

  .animated-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .animated-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeInText {
    0% { opacity: 0; transform: translateX(-10px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  .text-highlight-2{
    color: #ffdf70;
    font-size: 2.8rem!important;
  }


  /* animatio 1 */
  /* .animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px; 
  left: 0;
  bottom: 0;
  background-color: #ffdf70; 
  border-radius: 2px;
  transform-origin: left;
  animation: underline-move 2.5s infinite;
}

@keyframes underline-move {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
} */

/* animation 2 */
/* .animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #ffdf70;
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  animation: underline-once 0.6s forwards;
}

@keyframes underline-once {
  to {
    transform: scaleX(1);
  }
} */

/* animation 3 */
.animated-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px; /* space for underline */
  border-bottom: 3px solid transparent;
  border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="6" viewBox="0 0 100 6"><path fill="none" stroke="%23ffdf70" stroke-width="3" d="M0 3 Q10 0 20 3 T40 3 T60 3 T80 3 T100 3"/></svg>') 30 repeat;
  border-image-slice: 30;
  animation: wave-underline 0.7s forwards;
  background-repeat: no-repeat;
}

@keyframes wave-underline {
  from {
    border-image-width: 0;
  }
  to {
    border-image-width: 3;
  }
}
.banner-img{
  border-radius: 100px 100px 0px;
}


.banner-title{
  font-family: 'acme';
}
/* 
.banner-description{
  font-family: 'acme';
} */