 /* bubbles */
      body {
        font-family: "Comfortaa", Arial, "Helvetica Neue", Helvetica, sans-serif;
      }


/* nav css */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .fullscreen-menu.show {
    display: flex;
  }

  .fullscreen-menu a {
    font-size: 2rem;
    margin: 10px 0;
    text-decoration: none;
    color: #333;
   
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: #aaa;
  }

  .dot-icon {
    font-size: 26px;
    line-height: 1;
    background: none;
    border: none;
    color: #333;
    letter-spacing: 5px;
  }

  .header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 
  }

  .logo img {
    height: 80px;
  }

  /* hero section css */
  .hero {
    padding: 60px 20px 80px;
    height: 100vh;
  }

  .hero h1 {
    font-size: 5rem;
    font-weight: 600;
   
    background: linear-gradient(315deg, #070a0e 50%, #30ade2 100%);
    -webkit-background-clip: text;
    color: transparent;
}



  .hero p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 20px;
  }

  .read-more {
    display: inline-block;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    text-decoration: none;
    position: relative;
  }

  .read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: #0077b6;
    border-radius: 2px;
    z-index: -1;
  }

  /* third section */
  .heading-title {
    font-size: 50px;
}



.service-card img {
  width: 30%;
  margin: 0px auto;
}

.service-card {
  border-radius: 10px;
  padding: 0px 30px;
}

.service-card h5 {
  padding: 20px 0px 0px;
  font-size: 18px;
  font-weight: 800;
  color: #19516a;
}

.gap-40 {
  margin: 40px 0px 0px;
}
  
/* bubble css  */
.bubble-bg {
 position: fixed;
 top: 0;
 left: 0;
 height: 100vh;
 width: 100vw;
 overflow: hidden;
 z-index: 0;
 pointer-events: none;
}

.bubble-bg span {
 position: absolute;
 display: block;
 width: 20px;
 height: 20px;
 background: rgb(4 89 136);
 border-radius: 50%;
 bottom: -50px;
 animation: bubbleUp 20s linear infinite;
}

.bubble-bg span:nth-child(1) {
 left: 10%;
 width: 25px;
 height: 25px;
 animation-duration: 18s;
}

.bubble-bg span:nth-child(2) {
 left: 20%;
 width: 15px;
 height: 15px;
 animation-duration: 22s;
 animation-delay: 2s;
}

.bubble-bg span:nth-child(3) {
 left: 35%;
 width: 30px;
 height: 30px;
 animation-duration: 25s;
 animation-delay: 4s;
}

.bubble-bg span:nth-child(4) {
 left: 50%;
 width: 20px;
 height: 20px;
 animation-duration: 17s;
}

.bubble-bg span:nth-child(5) {
 left: 65%;
 width: 10px;
 height: 10px;
 animation-duration: 26s;
 animation-delay: 3s;
}

.bubble-bg span:nth-child(6) {
 left: 75%;
 width: 22px;
 height: 22px;
 animation-duration: 19s;
}

.bubble-bg span:nth-child(7) {
 left: 80%;
 width: 28px;
 height: 28px;
 animation-duration: 24s;
 animation-delay: 1s;
}

.bubble-bg span:nth-child(8) {
 left: 90%;
 width: 18px;
 height: 18px;
 animation-duration: 21s;
 animation-delay: 2s;
}

.bubble-bg span:nth-child(9) {
 left: 5%;
 width: 12px;
 height: 12px;
 animation-duration: 20s;
}

.bubble-bg span:nth-child(10) {
 left: 40%;
 width: 26px;
 height: 26px;
 animation-duration: 23s;
}

@keyframes bubbleUp {
 0% {
   transform: translateY(0) scale(1);
   opacity: 0;
 }
 50% {
   opacity: 0.5;
 }
 100% {
   transform: translateY(-120vh) scale(1.2);
   opacity: 0;
 }
}

/* owl crausal */
.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-carousel {
  display: block !important;
}
.client-slider .item {
  padding: 15px;
  text-align: center;
}

.client-slider .item img {
  max-width: 120px;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
  filter: grayscale(100%);
}
.client-slider .item img:hover {
  filter: grayscale(0);
}

.service-card:hover,.step-box:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1.05);
}

/* contact us  */
.gap-20{padding: 20px 0px 0px;}

/* footer */
footer {
 border-top: 1px solid #eee;
}
footer a:hover {
  color: #045887;
  transition: all 0.3s ease-in-out;
}
.border-success {
  border-color: #045887 !important;
}

.hero-about {
  background-image: url('./image/about us.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.blockquote {padding: 0px 100px;}



/* change */
.rotating-btn {
  width: 120px;
  height: 120px;
  background-color:#247da3;
}

.rotating-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: rotateText 10s linear infinite;
  border-radius: 50%;
  font-size: 14px;
  white-space: nowrap;
}

.rotate-arrow {
  transform: rotate(-45deg);
}

@keyframes rotateText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#backToTop {
  opacity: 0.7;
  transition: all 0.3s ease;
}

#backToTop:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* 28-04-2025 start */
.circle-container {
  position: relative;
  width: 100px;
  height: 100px;
  cursor: pointer;
 
}
  .circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
    color: #fff;
    font-family: sans-serif;
    font-size: 16px;
    text-align: center;
  }

  .circle-text span {
    position: absolute;
    transform-origin: center;
    top: 50%;
    left: 50%;
  }

  @keyframes rotateText {
    100% {
      transform: rotate(360deg);
    }
  }

  .center-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 40px;
    color: #fff;
  }
       .gradient-bg {
       background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
       }
       #background-video {
       object-fit: cover;
       }

       .uniq-button
       { background: #045887;
        position: absolute;
        right: 167px;}


        /* 28-04-2025 */
      
.small-card:hover .hover-text {
  opacity: 1;
}
.small-card img {
  transition: 0.5s;
}
.small-card:hover img {
  filter: brightness(50%);
}
.small-card {
  border-radius: 20px;
}

/*****************timeline about us start****************/
 .timeline-container {
      display: flex;
      justify-content: center;
      overflow-x: auto;
      gap: 1rem;
      padding: 2rem 1rem;
      scroll-snap-type: x mandatory;
    
    }

    .timeline-item {
      flex: 0 0 auto;
      border: 2px solid #ccc;
      border-radius: 50px;
      padding: 0.5rem 2.2rem;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 500;
      scroll-snap-align: center;
    }

    .timeline-item.active {
         background: linear-gradient(315deg, #070a0e 50%, #30ade2 100%);
      color: white;
      border-color:#045887;
    }

    .arrow {
      font-size: 1.5rem;
      color: #ccc;
      cursor: default;
      user-select: none;
    }

    .content-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      flex-wrap: wrap;
    }

    .content-image {
      flex: 1 1 40%;
      padding: 1rem;
    }

    .content-image img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
    }

    .content-text {
      flex: 1 1 50%;
      padding: 1rem;
    }

    .content-text h4 {
         background: linear-gradient(315deg, #070a0e 50%, #30ade2 100%);
      margin: 0 0 10px;-webkit-background-clip: text;
    color: transparent;
    }

    .content-text h2 {
      margin: 0 0 1rem;
      font-size: 2rem;
    }

    .content-text p {
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .content-section {
        flex-direction: column;
        padding: 1rem;
      }
      .content-image, .content-text {
        flex: 1 1 100%;
      }

      .timeline-container {
        padding: 1rem 0.5rem;
        gap: 0.5rem;
      }

      .timeline-item {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
      }
    }


/**********media query *************/
@media (max-width: 768px) {
    .hero h1 {font-size: 4rem;}
    div#enquiryModal h4 {font-size: 18px; margin-top: 60px;}.p-5 {
    padding: 10px !important;
}
.blockquote {
    padding: 0px 10px;
}
}


@media (max-width: 480px) {
      .hero h1 { font-size: 2rem;} 
      .logo img {height: 65px;}
      .heading-title {font-size: 32px;}
      .uniq-button { right: 103px;}
    
}

@media (max-width: 375px) {
    .logo img {height: 52px;}
    
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 32px;
        padding: 41px 0px 0px;
        text-align: center;
    }.hero p {font-size: 16px;}
        .uniq-button { display: none;}
        .read-more{margin-top: 0px;}
     .heading-title {font-size: 27px;margin-top: 33px;}
}

/****************process css start*****************************/
  .process-container {
      padding: 20px 0;
    }

    .scroll-wrapper {
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
    }

    .step-box {
      min-width: 250px;
      margin: 10px;
      background: linear-gradient(135deg, #ffffff, #ffffff);
      color: white;
      border-radius: 40px;
      padding: 30px 20px;
      text-align: center;
      position: relative;
      box-shadow: 0 10px 25px rgb(0 0 0 / 12%);
      flex: 0 0 auto;
    }

    .step-box i {
      font-size: 30px;
      margin-bottom: 10px;
      display: block;
    }

    .step-box h5 {
      font-size: 18px;
      margin-top:20px;
      color:#000;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .step-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .step-box ul li {
        color:#000;
      font-size: 14px;
      margin-bottom: 5px;
    }

    @media (min-width: 768px) {
      .scroll-wrapper {
        overflow-x: hidden;
      }

      .step-box {
        flex: 1 1 18%;
        min-width: auto;
      }
    }
