* {
    box-sizing: border-box;
    padding: 0 ;
    margin: 0 ;
}


/* header style starts */
header{
   width: 100%;
  position:sticky;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  .navbar{
    background-color: white;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  }
    .navy {
        padding: 17px;
        background-color: white;
        position: relative;
        li.nav-item {
          margin: 0 15px;
          a:hover {
              color: #b421ec;
              &::after {
                transform: rotate(180deg);
                margin-top: 0;
              }
          }
          a.show{
            &::after {
              transform: rotate(180deg);
              margin-top: 0;
            }
          }
          .dropdown-toggle {
            display: flex;
            align-items: center;
            &::after {
                border: none;
                content: "\f107";
                line-height: 8px;
                font-weight: 700;
                font-size: 13px;
                font-family: 'Font Awesome 6 Free';
                margin-top: 4px;
                transition: all 0.3s 
                ease;
              }
          }
      }
    }
    .hgfft{
      position: absolute;
      top: -48px;
      width: 100%;
      margin: auto;
      left: 0;
      padding: 0 70px;
      .lefty{
        position: relative;
        &:before {
            position: absolute;
            content: '';
            left: -39px;
            bottom: 0px;
            width: 80px;
            height: 34px;
            background: url(../images/shape-1.png);
           }
           &:after {
              position: absolute;
              content: '';
              right: -47px;
              bottom: 0px;
              width: 80px;
              height: 46px;
              z-index: -1;
              background: url(../images/shape-2.png);
          }
          ul{
            background: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
            color: white;
            border: 3px solid white;
            padding: 10px;
            border-radius: 60px;
            position: relative;
            li{
              list-style: none;
              padding: 0px 10px;  
              a{
                color: white;
                text-decoration: none;
                font-weight: 600;
              }
            }
          }
        }
        .righty{
          &:before {
            left: -42px;
            bottom: -5px;
          }
          &:after {
            right: -51px;
            bottom: -5px;
          }
          ul{
            background: white;
            border:1px solid #bdbdbd;
            outline: 4px solid white;
            padding: 0px;
            li{
              height: 40px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 50%;
              width: 40px !important;
              &:hover{
                background-color: black;
                a{
                  color: white;
                }
              }

              a{
                color: black;
              }
            }
          }
        }
    }
    .nav-link {
      color: black;
      font-weight: 500;
  }
    .hamburger {
      width: 30px;
        height: 38px;
      display: flex;
      padding: 12px 4px;
      align-self: center;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      transition:all 500ms ease;
      background-color: white;
        span {
            height: 2px;
            width: 83.33333333%;
            background: #000dff;
            transition: all 400ms ease-in-out;
            transition:all 500ms ease;
          }
          &:hover span{
            background-color: black;
            width: 100%;
          }
          .second {
            width: 100%;
            transition: all 200ms ease-in-out;
          }
          .third {
            width: 58.33333333%;
            transition: all 100ms ease-in-out;
          }
    }
    .ogf-img {
        img{
            display: inline-block;
            max-width: 100%;
            height: auto;
        }
    }
    .ogf-cont{
        position: relative;
        padding: 30px 50px;
        h3{
            margin-bottom: 15px;
            line-height: 42px;
            font-size: 30px;
            position: relative;
            background: none;
            font-weight: 700;
            color:black;
            font-family: "Outfit", serif;
        }
        p{
        line-height: 28px;
        margin-top: 15px;
        margin-bottom: 30px;
        color:grey;
        font-size: 16px;
        }
        ul{
            font-family: 'Manrope', sans-serif;
            list-style: none;
            padding: 0px;
            margin: 0px;
            li{
                position: relative;
                font-weight: 500;
                font-size: 16px;
                padding-left: 30px;
                padding: 0;
                margin: 0;
                margin-bottom: 20px;
                color:black;
                text-transform: capitalize;
            }
        }
    } 
    .ogf-link{
    position: relative;
    margin-left: 50px;
    margin-bottom: 35px;
    a{
        margin-right: 15px;
        font-size: 18px;
        color: black;
    }
    a:hover{
        color: rgb(0,13,255);
    }
    }
}

.header.scrolled {
  background-color: white;
  .navy{
    margin-top: 0px;
  }
  .hgfft{
    display: none !important;
  }
}

html:not(.body-menu-opened) .hamburger{
    .first {
      -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
      }
      .second {
      -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
      }
      .third {
      -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
      }
  }
  
  @-webkit-keyframes burger-hover {
	0% {
	  width: 100%;
	}
	50% {
	  width: 50%;
	}
	100% {
	  width: 100%;
	}
  }
  
  @keyframes burger-hover {
	0% {
	  width: 100%;
	}
	50% {
	  width: 50%;
	}
	100% {
	  width: 100%;
	}
  }
  

/* From Uiverse.io by shah1345 */ 
.getbtn {
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
  text-decoration: none;
  font-weight: 600; 
}

.getbtn:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.getbtn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.getbtn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1)  0%, rgba(0, 13, 255, 1) 100%);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.getbtn:hover {
  color: #ffffff;
}

.getbtn:hover:before {
  top: -35%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1) 0%, rgba(0, 13, 255, 1) 100%);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.getbtn:hover:after {
  top: -45%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1)  0%, rgba(0, 13, 255, 1) 100%);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.banner-img{
  height: 580px;
  object-fit: cover;
}
.slider-one_heading{
  font-weight: 700;
  color: white;
  
    text-shadow: 4px 2px 2px black;
  text-transform: capitalize;
  font-size: 62px;
  margin-bottom: 0;
  line-height: 90px;
  span{
    font-size: 62px;
  }
}

.slider-one_heading span{
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgb(255, 255, 255);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "Raleway", sans-serif;
}
.carousel-caption {
  bottom: 11.25rem !important;
  left: 11% !important;
  text-align: left !important;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 280px;
  }
  .dropdown-item {
      padding: 10px !important;
  }
  /* Hover par dropdown show kare */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* optional: better alignment */
  }
@media screen and (max-width: 768px) {
  header {
    background-color: white;
    .navy {
        padding: 10px;
        border-radius: 0px;
        background-color: white;
        margin-top: 0;
    }
  }
  /* .banner-sec-s{
    margin-top: 63px;
     
  } */
  .banner-img {

    height: 420px !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: -483px;
}
.carousel-caption {
  bottom: 153px !important;
  left: 5% !important;
  width: 100% !important;
}
.slider-one_heading {
  font-size: 39px;
  margin-bottom: 0;
  line-height: inherit;
  span{
    font-size: 29px;
  }
}
/* Navbar collapse ko right se slide karne ke liye */
.navbar-collapse {
    position: fixed; /* screen ke upar fixed */
    top: 0;
    left: -300px; /* initially hide right side */
    height: 100vh;
    width: 290px; /* apni width */
    background-color: #fff; /* background color */
    transition: left 0.2s ease-in-out;
    z-index: 1050; /* Bootstrap navbar ke upar */
    padding-top: 60px; /* thoda space upar */
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  }
  
  /* jab collapse open ho jaye */
  .navbar-collapse.show {
    left: 0;
  }
  
  /* optional: backdrop effect */
  .navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
  }
  .navbar-backdrop.show {
    display: block;
  }
   /* Cross (×) icon button */
   .close-menu {
    position: absolute;
    top: -3px;
    right: 12px;
    background: none;
    border: none;
    font-size: 61px;
    line-height: 1;
    color: #000;
    font-weight: 100;
  }

  /* Optional - make dropdowns full width inside */
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .nav-link {
    font-size: 25px !important;
}
.dropdown-item {
    font-size: 19px;
}
}

/* aboutus section starts */

 .technology-txt{
            P{
                font-size: 52px;
                line-height: 64px;
                font-weight: 700;
                color: black;
            }
       } 
       .year-img{
         position: relative;
         margin-top: 60px;
         margin-left: 45px;
       }
       .it-txt{
            p{
                font-size: 20px;
            line-height: 34px;
            color: #666666;
            max-width: 500px;
            margin-top: 40px;
            span{
                color: black ;
                font-weight: 600 ;
            }
            }
       }
       .coding-img{
        width: auto;
        text-align: right;
        overflow: hidden;
        img{
            border-radius: 20px ;
        }
       }
    .quote-img{
        width: auto ;
    }
    .owl-carousel .owl-item img{
        width: auto !important;
    }
    .rating{
        font-size: 32px ;
        font-weight: 500 ;
        color: #000dff ;
    }
    .founder-name{
            padding:5px 5px 5px 30px;
            margin-left: 30px ;
            border-left: 2px solid #fff;
        .julian{
            font-weight: 700;
            font-size: 24px;
            line-height: 32px;
        }
        .specialist{
            font-size: 16px ;
        }
    }
    .pattern1{
        z-index: -2 ;
        top: 0 ;
        right: 0px ;
    }
      .pattern2{
        z-index: -1 ;
        top: 0 ;
        right: 0px ;
    }
    .slide-main{
        width: 300px ;
    }
    .right-sec-main{
        display: flex;
        flex-direction: column ;
        justify-content: end ;
        align-items: end;
    }
    .right-sec-inner{
        gap: 20px ;
        display: flex;
    }
    .girlimg{
        margin-top: -75px ;
        min-width: 330px ;
        max-width: 400px ;
        img{
            width: 100% ;
        }
    }
    .pattern3{
        z-index: -1;
        img{
            animation: pattern3 10s infinite;
        }
    }
    @keyframes pattern3{
        0%{
            transform: translateY(0);
        }
         25%{
            transform: translateY(50px);
        }
         50%{
            transform: translateY(0);
        }
         75%{
            transform: translateY(50px);
        }
         100%{
            transform: translateY(0);
        }
    }
    .coding-img{
        width: 450px ;
        img{
            width: 100% ;
        }
    }



@media screen and (max-width:768px) {
    .year-img {
        margin-top: 0px;
        margin-left: 0px;
    }
    .technology-txt{
        p{
            font-size: 30px ;
            line-height: 35px ;
        }
    }
    .it-txt {
    p {
        font-size: 15px;
        line-height: 25px;
        max-width: 100%;
        margin-bottom: 20px !important;
    }
}
.coding-img{
    width: 100% ;
}
.girlimg{
    display: none ;
}
.slide-main{
    width: 100% ;
}
.pattern3{
    width: 100% ;
    img{
        width: 100% ;
    }
}
.year-img{
    img{
        width: 100% ;
    }
}
.right-sec-inner{
    display: none !important;
}
}




/* counter-section-start */
.achievement{
    padding-left: 50px ;
}
.achieve-heading{
    line-height: 60px;
    font-size: 50px;
    color: white ;
    position: relative;
    z-index: 5;
    font-weight: 700;
    margin-bottom: 37px;
}
.counter-sec-inner{
    background: url(../images/tgsbg.webp);
    background-repeat: no-repeat ;
    background-size: cover;
    width: 100% ;
    padding: 40px 0;
    border-radius: 30px ;
}

.counter-box-main{
    width: 100% ;
    display: flex ;
    justify-content: flex-start ;
    align-items: flex-start ;
    flex-wrap: wrap;
    position: relative ;
    z-index: 5 ;
   
    .counter-box{
        width: 20% ;
        padding: 30px ;
        display: flex ;
        justify-content: flex-start ;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid #ffffff8c;
         position: relative ;
        &::before{
        position: absolute;
        content: '';
        left: 0px;
        right: 0px;
        top: 0px;
        opacity: 0;
        height: 0%;
        transition: all 500ms;
        z-index: 4 
        ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms 
        ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        background-color: rgba(0, 13, 255, 1);
        background-image: linear-gradient(180deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
        }
        &:hover:before{
        opacity: 1;
        height: 100% ;
        }
        h2{
           font-size: 70px ;
           font-weight: 700 ;
           color: white ;
           position: relative ;
           z-index: 5 ;
        }
        p{
            font-size: 16px ;
            font-weight: 700 ;
            color: white ; 
            margin-bottom: 0 ;
            min-height: 50px ;
            position: relative ;
            z-index: 5 ;
        }
    }
}

@media screen and (max-width:768px) {
    .achievement{
        padding: 0 ;
    }
    .achieve-heading{
        font-size: 30px ;
        line-height: 40px ;
    }
    .counter-box-main {
        width: 100% ;
    .counter-box {
        width: 100%;
        align-items: center ;
        h2{
    font-size: 50px ;
   }
   }
   
}
.counter-sec-inner{
    padding: 20px 0;
}
}





/* business-sec-start */
.business-sec{
    overflow: hidden;
    padding: 40px 0;
    background-image: url(../images/busionessbg.webp);
    background-repeat: no-repeat ;
    background-size: cover ;
}
.certified-sec{
padding-left: 70px ;
}
.smart{
    font-size: 60px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: "Outfit", serif;
}
.smart-txt{
    P{
       font-size: 15px;
        color: white;
        margin-bottom: 30px;
    }
}
.certified-list{
    li{
        font-size: 15px;
        color: white;
        margin-bottom: 15px;
        list-style: none;
    }
}
.start-btn button{
       position: relative;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    padding: 20px 50px;
    color: white ;
    text-transform: capitalize;
    background-color: black ;
    border: none ;
    span{
        position: relative;
        z-index: 10;
    }
    &:before{
        -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-color: rgba(0, 13, 255, 1);
    background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
    }
}
.start-btn button:hover:before{
top:-40%;
}
.round-shapeimg{
    width: 100% ;
    img{
        width: 90% ;
    }
}
.vector-main{
   position: absolute;
    bottom: 53px;
    left: 2%;
    width: 52%;
    z-index: 2;
    transform: rotate(339deg);
    img{
        width: 70% ;
    }
}
.vector2{
   position: absolute;
   bottom: 53px;
   right: 55px;
   width: 300px;
   z-index: 2;
   rotate: 37deg;
   opacity: 0.7;
    img{
        width: 100% ;
    }
}
 .vector2{
        img{
            animation: vector2 5s infinite;
        }
    }
 @keyframes vector2{
        0%{
            transform: translateY(0);
        }
         25%{
            transform: translateY(50px);
        }
         50%{
            transform: translateY(0);
        }
         75%{
            transform: translateY(50px);
        }
         100%{
            transform: translateY(0);
        }
    }

@media screen and (max-width:768px) {
    .certified-sec{
        padding-left: 0px ;
    }
    .smart{
        font-size: 30px ;
    }
    .smart-txt{
        p{
            font-size: 12px ;
        }
    }
    .certified-list {
        padding: 15px ;
        li {
            font-size: 11px;
            color: white;
            margin-bottom: 10px;
            list-style: none;
        }
    }
}
/* fiveslide section starts */
.tri-main{
    position: relative;
    /* .tri-bg{
    background-image: url(../images/trii_bg.png);
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-repeat: no-repeat;
    } */
    .tri-head{
    position: relative;
    z-index: 2;
    text-align: center;
        .hed-cont{
        position: relative;
        font-weight: 700;
        font-size: 18px;
        display: flex;
        justify-content: center;
        gap: 15px;
        align-items: center;
        color:#000dff;
        text-transform: uppercase;
        font-family: 'Manrope', sans-serif;
        .con-dots{
            position: relative;
         }
        }
    }
}
.con-dots span{
    position: relative;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    border-radius: 50px;
    display: inline-block;
    animation: pop 3s infinite;
    opacity: 0;
    background-color: rgba(0, 13, 255, 0);
    background-image: linear-gradient(0deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}
.con-dots span:nth-child(1) {
    animation-delay: 0s;
}
.con-dots span:nth-child(2) {
    animation-delay: 0.5s;
}
.con-dots span:nth-child(3) {
    animation-delay: 1s;
}
@keyframes pop {
    0% {
    transform: scale(0);
    opacity: 0;
    }
    20% {
        transform: scale(1.2);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    80% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.main-hsd{
    margin-top: 15px;
    color:#000;
    text-transform: capitalize;
    line-height: 64px;
    font-size: 54px;
    position: relative;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.bg-str{
    gap: 8px;
}
.main-st{
    position: relative;
    width: 30%;
    padding: 0px 10px;
    display: inline-block;
}
.inner-con{
    position: relative;
    padding: 10px 10px;
    border-radius: 30px;
    border: 3px solid rgb(193 21 236);
    background-color: #fff;
        background-color: #f4c7ff42;

}

.inner-con:hover {
    .icn-serv1{
        display: none;
    }
    .icn-serv1h{
     display: block;
    }

}

.inner-con:hover .text-gt{
    color: #0f0f0f;
}
.ytr-mage{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    .icn-serv1h{
          display: none;
    }
    .icn-serv1{
        display:block;
    }
}
.ytr-mage img {
    position: relative;
    width: 100%;
    display: block;
}
.contt-str{
    position: relative;
    padding: 25px 10px 20px;
}
.title-gt{
        margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 32px;
    font-size: 25px;
    font-family: "Outfit", serif;
    color: #000;
}
.text-gt{
    position: relative;
    font-size: 15px;
    line-height: 26px;
    color: #000;
    font-family: 'Manrope', sans-serif;
}
.main-st:nth-child(1),
.main-st:nth-child(2),
.main-st:nth-child(3),
.main-st:nth-child(4) {
    transform: translateY(2px);
}
/* .main-st:nth-child(3) {
    transform: translateY(140px);
} */
.lo-tst{
    position: relative;
    margin-top: 44px;
}
.tst-text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color:#000;
    font-family: 'Manrope', sans-serif;
}
.button-tst {
    position: relative;
    margin-top: 111px;
}
.tsty-btn{
    position: relative;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    padding: 16px 34px;
    display: inline-block;
    color: white;
    text-transform: capitalize;
    font-family: 'Manrope', sans-serif;
    background-color: rgba(0, 13, 255, 1);
    background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}
.tsty-btn:before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-image: linear-gradient(90deg, rgba(193, 21, 236, 1) 0%, rgba(0, 13, 255, 1) 100%);
}
.btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}
.tsty-one {
    position: relative;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.tsty-two{
    position: absolute;
    top: 100%;
    display: block;
    color: #fff;
    -webkit-transition: all 0.3s 
ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s 
ease;
}
.tsty-btn:hover:before {
    top: -40%;
}
.tsty-btn:hover .tsty-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}
.tsty-btn:hover .tsty-two {
       top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.tsty-btn:hover .tsty-two {
    color: #fff;
}
@media (min-width: 1200px) {
    .container-str{
        max-width: 1500px;
    }
}
@media only screen and (max-width: 599px) {
    .main-hsd {
        line-height: 30px;
        font-size: 26px;
    }
    .main-st {
        width: 100%;
        margin-bottom: 30px;
    }
    .tri-head{
        margin-bottom: 40px;
    }
    .main-st:nth-child(1),
    .main-st:nth-child(2),
    .main-st:nth-child(3),
     .main-st:nth-child(4) {
        transform: translateY(0px);
    }
    .lo-tst{
        margin-top: 0px;
    }
}

/* fiveslide section ends */

/* footer section starts */
.foo-st{
    position: relative;
    padding-bottom: 12px;
    margin-left: 20px;
    margin-right: 20px;
}
.foo-main{
    bottom: 30px;
    border-radius: 50px;
        background-color: rgba(13, 25, 67, 1);
    background-image: linear-gradient(180deg, rgba(8, 10, 49, 1) 0%, rgba(130, 0, 176, 1) 100%);
}

.container-foo{
    position: static;
    max-width: 1500px;
    padding: 0px 15px;
    margin: 0 auto;
}
.wii-stn{
    position: relative;
    padding: 67px 0px 17px;
}
.des-foo {
    position: relative;
    margin-bottom: 30px;
}
.foo-mnimg {
    position: relative;
    margin-bottom: 18px;
    img{
    display: inline-block;
    max-width: 100%;
    height: auto;
    }
}
.wht-lo{
    width: 200px;
}
.foo-txt{
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 50px;
    color:white;
}
.loca-foo{
    font-family: "Outfit", serif;
    font-size: 28px;
    font-weight: 600;
    color:white;
}
.loca-txt{
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color:white;
}
.ftle{
    font-family: "Outfit", serif;
    font-weight: 600;
    margin-bottom: 30px;
    color:white;
    font-size: 32px;
}
.list-fer{
    position: relative;
    margin-top: 25px;
    list-style: none !important;
    margin: 0%;
    padding: 0;
    li{
        list-style: none !important;
        margin-bottom: 18px;
        font-family: 'Manrope', sans-serif;
        a {
            position: relative;
            font-size: 20px;
            color:#fff;
            text-decoration: none;
            outline: none !important;
        }
        a:hover {
                color: #15C1EC;
            }
    }
}
.fbtitle{

    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #15C1EC;
    font-family: "Outfit", serif;
}
.sercbo{
    margin-top: 30px;
    margin-bottom: 50px;
}
.form-grp {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
    input{
            position: relative;
            line-height: 43px;
            border: none;
            display: block;
            height: 75px;
            width: 100%;
            border-radius: 50px;
            font-size: 21px;
            padding: 10px 30px;
            color: #fff;
            background:rgb(255 255 255 / 5%);
        }
        input::placeholder {
            color: white;
            opacity: 1; 
        }
        input:focus {
            border: none;       
            outline: none;       
        }
        button {
            position: absolute;
            right: 22px;
            top: 5px;
            bottom: 5px;
            font-weight: 500;
            padding:0px 20px;
            text-align: center;
            display: inline-block;
            font-size: 20px;
            background-color: #6011897d;
            color:#fff;
            border: none;
        }
}
.social-tri a {
    font-family: 'Manrope', sans-serif;
    position: relative;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: #fff;
    width: 34px;
    font-size: 20px;
}
 .social-tri a:hover {
    background-color: rgba(0, 13, 255, 1);
    background-image: linear-gradient(180deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}
.foocopy {
    position: relative;
    font-size: 20px;
    padding: 9px 180px 0 180px;
    display: inline-block;
    color: rgb(255, 255, 255);
    border-top: 1px solid rgb(255 255 255 / 20%);
}
.fo-donat{
       background-image: url(../images/donat.png);
}
.fo-dotop{
       background-image: url(../images/foe_1.png);
}
.fo-dobtm{
       background-image: url(../images/foe_2.png);
}
.fo-tgt{
        background-image: url(../images/foe_3.png);
}
.fo-donat{
    position: absolute;
    left: 29%;
    top: 15%;
    width: 366px;
    height: 355px;
    background-repeat: no-repeat;
}
.fo-dotop{
    position: absolute;
    left: 0px;
    top: -2px;
    right: -2px;
    height: 126px;
    background-position: right top;
    background-repeat: no-repeat;
}
.fo-dobtm{
    position: absolute;
    left: -2px;
    bottom: 10px;
    right: 0px;
    height: 82px;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.fo-tgt{
    position: absolute;
    right: -2px;
    bottom: 10px;
    left: 0px;
    height: 82px;
    background-position: right bottom;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 599px) {
.ftle {
    margin-bottom: 15px;
    font-size: 22px;
}
.wii-stn {
    position: relative;
    padding: 20px 0px 20px;
}
.foo-txt {
    margin-bottom: 20px;
}
.sercbo {
    margin-top: 0px;
    margin-bottom: 20px;
}
.foo-txt {
    font-size: 17px;
    line-height: 26px;
}
.fbtitle {
    font-size: 16px;
}
.loca-txt {
    font-size: 17px;
}
.list-fer {
    li {
    margin-bottom: 10px;
        a {
            font-size: 17px;
        }
    }
}
.foo-st {
    padding-bottom: 0px; 
    margin-left: 0px; 
    margin-right: 0px;
}
.foo-main {
    border-radius: 0px;
}
.foocopy {
    font-size: 16px;
    padding: 10px 0 ;
}
.wht-lo {
    width: 150px;
}
}
/* footer section ends */


/* Slide section starts */
/* .seco-bg{
    background-image: url(../images/seco2_bg.png);
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-position: right center;
    background-repeat: no-repeat;
} */
.rep-tot{
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}
.hed-cornt {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content:start;
    gap: 15px;
    align-items: center;
    color: #000dff;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.hed-corntdf {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content:start;
    gap: 15px;
    align-items: center;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    .con-dots span{
    position: relative;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    border-radius: 50px;
    display: inline-block;
    animation: pop 3s infinite;
    opacity: 0;
    background-color: rgba(0, 13, 255, 0);
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
.con-dots span:nth-child(1) {
    animation-delay: 0s;
}
.con-dots span:nth-child(2) {
    animation-delay: 0.5s;
}
.con-dots span:nth-child(3) {
    animation-delay: 1s;
}
}
.arr-bl{
    background-image: url(../images/arrow.png); 
    position: absolute;
    right: 123px;
    top: -35px;
    width: 181px;
    height: 122px;
    animation: arrow 0.8s ease-out infinite;  
}
@keyframes arrow {
    0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}

.tsty-btn2{
    position: relative;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    padding: 16px 34px;
    display: inline-block;
    color: white;
    text-transform: capitalize;
    font-family: 'Manrope', sans-serif;
    background-color: rgb(0, 0, 0);
}
.tsty-btn2:before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-image: linear-gradient(90deg, rgba(193, 21, 236, 1) 0%, rgba(0, 13, 255, 1) 100%);
}
.tsty-btn2{
    background-color: rgb(0 0 0);
}
.tsty-btn2:hover:before {
    top: -40%;
}
.tsty-btn2:hover .tsty-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}
.tsty-btn2:hover .tsty-two {
       top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.tsty-btn2:hover .tsty-two {
    color: #fff;
}
.wera{
    color: #000;
    text-transform: capitalize;
    line-height: 70px;
    font-size: 56px;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.weraaa{
    color: #000;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 40px;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.ghtyq{
    width: 500px;
}
.updn-ani{
    position: relative;
    display: inline-block;
    translate: none;
    rotate: none;
    scale: none;
    font-size: 32px;
    gap: 25px;
    font-weight: 500;
    transform-origin: 50% 100%;
    transform: translate3d(0px, 0px, 0px) scale(1, 0.9991);
    color: rgb(193, 21, 236);

}
.ghy-po{
    font-size: 16px;
    color: #666666;
}
.side-pat{
    position: relative;
    border-radius: 30px;
    padding: 35px 50px 50px;
    background-color: #FBEDFF;
}
.pointt{
    position: relative;
    font-size: 100px;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
    color: var(--black-color);
    font-family: "Outfit", serif;
}
.img-sed{
    position: relative;
    display: flex;
    gap: 20px;
    margin-top: 25px;
    align-items: center;
    ul {
    position: relative;
    display: flex;
    margin-left: 20px;
    list-style: none;
    margin-bottom: 0;
        li {
            position: relative;
            width: 54px;
            height: 54px;
            margin-left: -20px;
            border-radius: 50px;
            display: inline-block;
            border: 3px solid #fff;
            img {
                display: inline-block;
                max-width: 100%;
                height: auto;
            }
        }
    }
}
.rate-re{
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: "Outfit", serif;

}
.tele{
    position: relative;
    text-align: center;
    margin-top: 82px;
    color: #000;
    font-weight: 700;
    font-family: "Outfit", serif;
    line-height: 34px;
    font-size: 26px;
}
.ktgf{
    background: linear-gradient(90deg, rgb(175 209 231 / 46%) 0%, rgb(251 237 255 / 46%) 100%);        
    position: relative;
    border-radius: 30px;
    padding: 40px 50px 0px;
    background-color: #F5F5F5;
    background-position: center top;
    background-repeat: repeat-x;
    height: 100%;
}
.ktgf:before {
    position: absolute;
    content: '';
    left: 49%;
    top: 40px;
    bottom: 0px;
    width: 12px;
    height: 317px;
    background: url(../images/divide.png) no-repeat;
}
.ktgf:after{
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0px;
    width: 263px;
    height: 80px;
    transform: translateX(-50%);
    background: url(../images/ciro.webp) no-repeat;
}
.kf-con{
    padding-bottom: 70px;
}
.arr-hy{
    position: absolute;
    left: 50%;
    width: 150px;
    z-index: 99999;
    bottom: 0px;
    transform: translateX(-50%);
}
.div-left,
.div-rgt{
    position: relative;
    width: 70px;
    height: 70px;
    font-size: 20px;
    margin: 0px 1px;
    border-radius: 50px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color:#fff;
    background:rgb(0,0,0);

}
.sld-we{
        position: relative;
}
.sld-inner{
        position: relative;
        padding-right: 40px;
        padding-bottom: 30px;
}
.sld-inner2{
        position: relative;
        padding-left: 40px;
        padding-bottom: 30px;
}
.sld-text{
        position: relative;
        font-size: 19px;
        line-height: 36px;
        color: #000;
}
.div-left:hover,
.div-rgt:hover{
     color: #fff;
     background:rgb(0,13,255);
}

.sld-author {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    padding-left: 120px;
    padding-top: 25px;
    min-height: 120px;
    margin-top: 25px;
    text-align: right;
    color:#000dff;
    font-family: "Outfit", serif;
    span {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    color:#000;
    font-family: 'Manrope', sans-serif;
}
}
.sld-auth {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    padding-left: 0px;
    padding-right: 120px;;
    padding-top: 25px;
    min-height: 120px;
    margin-top: 25px;
    color:#000dff;
    font-family: "Outfit", serif;
    span {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    color:#000;
    font-family: 'Manrope', sans-serif;
}
}
.sld-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 150px;
}
.ssdd-img {
    position: absolute;
    top: 0px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 150px;
    left: auto;
    right: 0px;
}
.t-rag{
    position: relative;
    display: flex;
    gap: 4px;
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: right;
    line-height: 1em;
    align-items: center;
    color: #000;
    span {
    position: relative;
    font-size: 22px;
    color:rgb(193,21,236);
}

}
.t-ragg{
    position: relative;
    display: flex;
    gap: 4px;
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: right;
    line-height: 1em;
    align-items: center;
    color: #000;
    justify-content: end;
    span {
    position: relative;
    font-size: 22px;
    color:rgb(193,21,236);
     }
}

@media only screen and (max-width: 599px) {
.ghy-po {
    font-size: 13px;
}
.ktgf:before {
    background:none;
}
.sld-inner{
    padding-right: 0;
    padding-bottom: 0px;

}
.sld-inner2{
    padding-left: 0;
    padding-bottom: 0px;
}
.sld-text{
    font-size: 16px;
    line-height: 28px;
}
.sld-author{
    font-size: 16px;
    span{
        font-size: 13px;
        margin-top: 5px;
    }
}
.sld-auth{
    font-size: 16px;
    span{
        font-size: 13px;
        margin-top: 5px;
    }
}
.pointt{
    font-size: 90px;
}
.img-sed{
    justify-content: center;
}
.tele{
    font-size: 18px;
    line-height: 24px;
    margin-top: 30px;
}
.button-tst {
    margin-top: 20px;
}
.img-sed {
    ul {
        padding-left: 0;
        margin-left: 0px;
    }
}
.side-pat {
    padding: 35px 26px 35px;
}
}
/* Slide section ends */


/* Marque section starts */
.ami-mo{
    position: relative;
    min-height: 112px;
}
.mark-ht{
   display: flex;
   animation: marqueeAnimation 25s linear infinite; 
   transition: animation-play-state 0.3s ease; 
}
.ky-mrk{
    display: flex;
    white-space: nowrap;  /* Keeps content in a single line */
    margin-right: 20px;
    h1 {
        margin: 0;
        font-size: 83px;
        line-height: 1em;
        font-weight: 900;
        display: inline-block;
        text-transform: uppercase;
        color: rgb(221 221 221);
        font-family: 'Manrope', sans-serif;
        }
        h1:hover{
            background: linear-gradient(to right, #020dff, #bf15ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
}
@keyframes marqueeAnimation {
  0%{
    transform: translateX(0%);  /* Start from the right */
  }
  100% {
    transform: translateX(-100%);  /* Move to the left */
  }
}
.ami-mo:hover .mark-ht{
  animation-play-state: paused;  /* Pause the animation when hovering over the wrapper */
}

@media only screen and (max-width: 599px) {
.ky-mrk {
    h1 {
        font-size: 50px;
    }
}
.ami-mo {
    min-height: 12px;
}
.mark-ht{
   display: flex;
   animation: marqueeAnimation 10s linear infinite; 
   transition: animation-play-state 0.3s ease; 
}
}

/* Marque section ends */


/* brand section starts */
.brd-pr{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 15px;
    border: 1px solid #aaaaaa4a;
    border-bottom: 0px;
}
.column {
    position: relative;
    width: 20%;
    transition: all 300ms ease;
    border-right: 1px solid #aaaaaa4a;
    border-bottom: 1px solid #aaaaaa4a;
}
.column:nth-child(5n + 0) {
    border-right: none;
}
.sf-iimg{
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: 150px;
    }
}
/* .sf-iimg:hover img {
    filter: brightness(1);
} */
.gr-pp{
    position:relative;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}
@media only screen and (max-width: 599px) {
    .column {
        width: 100%;
        text-align: center;
    }
    .column:nth-child(1n + 0),
    .column:nth-child(2n + 0),
    .column:nth-child(3n + 0),
    .column:nth-child(4n + 0),
    .column:nth-child(5n + 0)
     {
        border-right: none;
    }
}
/* brand section ends */


/* blg section starts */
.mjt-lo{
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.news-inner{
    position: relative;
   .news-outer{
    position: absolute;
    left: 60px;
    top: 0px;
    z-index: 9;
    display: inline-block;
       .news-date{
        position: relative;
        z-index: 10;
        font-size: 32px;
        font-weight: 700;
        padding: 3px 22px 3px;
        border-radius: 50px;
        letter-spacing: 2px;
        color: white;
        text-transform: capitalize;
        font-family: "Outfit", serif;
        background-color: rgba(0, 13, 255, 1);
        background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
        outline: 5px solid white;
        outline-offset: 0px;
       }
       .news-date span{
            position: relative;
            font-size: 14px;
       }
   }
   .news-outer:before {
    position: absolute;
    content: '';
    left: -36px;
    top: 0px;
    width: 60px;
    z-index: 1;
    height: 38px;
    background: url(../images/blg-s2.png);
    background-position: right top;
    }
    .news-outer:after {
    position: absolute;
    content: '';
    right: -36px;
    top: 0px;
    width: 60px;
    height: 38px;
    z-index: 1;
    background: url(../images/blg-s.png);
    }
   .news-im{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;}
   }
   .news-im img {
    position: relative;
    width: 100%;
    display: block;
    transition: all 500ms ease;
}
   .news-im img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
    }

   .news-li{
         position: relative;
         padding: 24px 30px;
         list-style: none;
        font-family: 'Manrope', sans-serif;
          li {
            position: relative;
            display: inline-block;
            color: #666666;
            font-size: 18px;
            padding-left: 30px;
            margin-right: 15px;
            padding: 0;
         }
   }
   .news-li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: -21px;
    width: 399px;
    height: 106px;
    background: url(../images/rounded_arrow.png);
}
   .news-arrow{
    position: relative;
    width: 54px;
    height: 54px;
    opacity: 0;
    margin-bottom: 25px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    transform: rotate(90deg);
    background-color: rgba(0, 13, 255, 1);
    transition: all 500ms ease;
    background-image: linear-gradient(0deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
    img{
        width: 60%;
    }
   }

   .news-content{
       h3{
        text-transform: capitalize;
        line-height: 36px;
        font-size: 26px;
        color: #000;
        font-weight: 700;
        font-family: "Outfit", serif;
        a{
            text-decoration: none;
            color: #000;
        }
       }
   }
}
.news-inner:hover .news-arrow{
    transform: rotate(0deg);
    opacity: 1;
}
.news-inner:hover .news-im img:first-child {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}
.news-inner:hover .news-im img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}
@media only screen and (max-width: 599px) {
.news-inner {

    .news-li {
        padding: 10px;
        margin-bottom: 0;
    }

    .news-li:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        width: 0px;
        height: 0px;
        background:none;
    }
    .news-arrow{
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        line-height: 36px;
    }
    .news-content {
        h3 {
            line-height: 32px;
            font-size: 25px;
        }
    }
}
}
/* blg section ends */

/* solution section starts*/
.nan-inner{
    position: relative;
    padding:49px 50px 74px;
    border-radius: 20px;
    border:2px solid #e8e8e8;
}
.nan-inner:before {
    position: absolute;
    content: '';
    right: -28px;
    bottom: 60px;
    width: 28.5px;
    height: 90px;
    z-index: 1;
    background: url(../images/nan-roll.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.rebb{
    position: relative;
}
.tri-main .rebb:nth-child(2) {
    top: 30px;
}
.tri-main .rebb:nth-child(3) {
    top: -160px;
}
.tri-main .rebb:nth-child(4) {
    top: -325px;
}
.tri-main .rebb:nth-child(2) .nan-inner:before {
    bottom: auto;
    top: 20%;
}
.tri-main .rebb:nth-child(3) .nan-inner:before {
    bottom: auto;
    top: 30%;
}
.tri-main .rebb:nth-child(4) .nan-inner:before {
    right: 0px;
    bottom: 0px;
    background:none;
}
.nan-bg{
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    background-size: cover;
    transition: all 500ms ease;
   background-image:url(../images/string.png);
}
.nan-inner:hover .nan-bg{
    opacity: 1;
}
.nan-num{
    position: relative;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    color: #666666;
    span{
        position: relative;
        line-height: 1em;
        font-weight: 800;
        font-size: 96px;
        background: linear-gradient(to bottom, #020dff, #bf15ec);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
.nan-inner:hover .nan-num span{
    color: rgb(0,0,0);
    -webkit-text-fill-color: inherit;
}
.nan-head{
    position: relative;
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    color:black;
    line-height: 34px;
    transition: all 500ms ease;
    font-family: "Outfit", serif;
}
.nan-inner:hover .nan-head{
    color: rgb(0,13,255);
}
.nan-txt{
    position: relative;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    margin-top: 15px;
    font-family: 'Manrope', sans-serif;
}
.cot-main{
    position: relative;
    text-align: right;
    margin-top: -219px;
    .tsty-btn2 {
        padding: 20px 50px;
    }
    .cot-txt {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
}
}

@media only screen and (max-width: 599px) {
.nan-inner{
    text-align: center;
    padding: 40px 20px;
}
.nan-head {
    margin-top: 40px;
    font-size: 23px;
}
.nan-txt {
    font-size: 14px;
}
.main-hsd{
    br{
        display: none;
    }
}
.nan-inner:before {
    right: 0px;
    bottom: 0px;
    background:none;
}
.tri-main .rebb:nth-child(2),
.tri-main .rebb:nth-child(3),
.tri-main .rebb:nth-child(4)  {
        top: 0px;
    }
.cot-main{
    text-align: center;
    margin-top: 0px;
    .cot-txt{
    br{
        display: none;
    }
}
}    
}
/* solution section ends */

/* large0ne section starts */
.frt-main {
    position: relative;
    padding: 140px 0px 140px;
}
.larg-bg{
    position: absolute;
    left: 15px;
    top: 0px;
    right: 15px;
    bottom: 0px;
    border-radius: 50px;
    background-color: rgba(0, 13, 255, 0);
    background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}
.we-sign{
    background-image:url(../images/we-pat.png);
    position: absolute;
    left: 15px;
    top: 0px;
    bottom: 0px;
    width: 551px;
    background-repeat: no-repeat;
}
.holl{
    position: absolute;
    background-image:url(../images/globe.webp);
    background-size: 69% 66%;
    right: 0px;
    top: -70px;
    width: 660px;
    height: 615px;
    z-index: 1;
    background-repeat: no-repeat;
}
.gete {
.tri-headd {
    .hed-cornt{
     color: rgb(255,255,255);
     .con-dots span{
        background-color: rgba(255, 255, 255, 0);
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
}
}

.main-hsd{
    color: #fff;
}
.larg-be{
    position: relative;
    font-size: 110px;
    line-height: 104px;
    font-weight: 800;
    opacity: 0.8;
    text-transform: uppercase;
    color: transparent;
    font-family: "Raleway", serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255,255,255);
}
}
@media only screen and (max-width: 599px) {
    .frt-main {
        overflow: hidden;
        padding: 50px 0px 50px;
    }
    .larg-bg{
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        border-radius: 0px;
    }
    .we-sign,
    .holl{
        display: none !important;
    }
}
/* part2 */
.apha-mainn{
    position: relative;
    padding: 15px 0px 60px;
    .mag-ou{
        position: relative;
        overflow: hidden;
    }
}
.au-mod{
    position: relative;
    min-height: 110px;
}
.au-moddd{
    position: relative;
    min-height: 150px;
    z-index: 1;
}
.marrk-het{
   display: flex;
   animation: marqueeAnimation 25s linear infinite; 
   transition: animation-play-state 0.3s ease; 
}
.au-mod:hover .marrk-het{
  animation-play-state: paused;  /* Pause the animation when hovering over the wrapper */
}
.koi-mrk{
    display: flex;
    white-space: nowrap;  /* Keeps content in a single line */
    margin-right: 20px;
    .ky-hesd{
    font-size: 100px;
    line-height: 1em;
    font-weight: 800;
    margin: 0px 15px;
    text-transform: uppercase;
    font-family: "Raleway", serif;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0,0,0);
}
.ky-hehhd{
    font-size: 100px;
    line-height: 1em;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
    color: rgb(0,0,0);
    font-family: "Outfit", serif;
}
}
.kuut{
    background-image: url(../images/bg_abb.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.kutut{
    background-image: url(../images/pattern2.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.mu-hu{
   display: flex;
   animation: marqueerev 20s linear infinite; 
   transition: animation-play-state 0.3s ease; 
}
@keyframes marqueerev {
  0%{
    transform: translateX(-100%);  /* Start from the left */
  }
  100% {
    transform: translateX(0%);  /* Move to the right*/
  }
}
.ami-mo:hover .mark-ht{
  animation-play-state: paused;  /* Pause the animation when hovering over the wrapper */
}
.kty-mk{
    display: flex;
    white-space: nowrap;  /* Keeps content in a single line */
    margin-right: 20px;
   .ser-hee{
    position: relative;
    font-size: 100px;
    line-height: 1em;
    font-weight: 800;
    color: #000000;
    margin: 4px 25px 0px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #15C1EC;
    font-family: "Raleway", serif;
    transition: -webkit-text-fill-color 0.4s ease-in-out;
   }
   .ser-hee:hover{
    -webkit-text-fill-color: #15C1EC;
    transition: all 0.3s ease-in-out;
   }
}
.bla-bx{
    position: relative;
    width: 100%;
}
.stt-bx{
    position:relative;
    padding: 105px 70px;
    margin-top: -690px;
    bottom: 36px;
    border-radius: 20px;
    background-color: black;
}
.cont-sq{
    position: static;
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto;
}
.bla-txt{
    position: relative;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    max-width: 400px;
    margin-bottom: 70px;
    color: white;
    font-family: "Outfit", serif;
}
.au-moddd:hover .mu-hu{
  animation-play-state: paused;  /* Pause the animation when hovering over the wrapper */
}

.htyu{
    font-size: 20px !important;
    padding : 0 !important;
    line-height: 1.2 !important;
    color: #000000 !important;
    font-weight: bold !important;
    border-bottom: 4px solid transparent !important;
    cursor: pointer !important;
    padding-bottom: 10px !important;
    border-radius: 0 !important;
    font-family: 'Manrope', sans-serif !important;
}


.grtl{
      font-size: 19px;
}
.grtln{
    font-size: 18px;
    line-height:30px ;
}
.mhn{
    text-align: justify;
    font-size: 19px;
    line-height: 31px;
}
.kjyu{
    width: 550px;
}
.dgjdfj{
    position: absolute;
    right: 295px;
    top: 32px;
}
.jyhj{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius:  15px 15px 0 0;
}
.ku-imm{
    position: relative;
    overflow: hidden;
}
.ku-imm::before {  
    position: absolute; 
    top: 0; 
    left: -100%; 
    display: block; 
    content: "";  
    width: 50%; 
    height: 100%; 
    background:linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg); 
    pointer-events: none;
}  
.lojf:hover .ku-imm::before {
    animation: hoverShine 1.2s; 
}
.review-df{ 
        max-width: 590px;
    width: 100%; 
    border-radius: 20px;
    border: 1px solid #E8E8E8; 
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 20px; 
        padding: 16px 30px;
    position: relative; 
}
.single-rating{ 
        display: flex;
    align-items: center; 
    gap: 15px;
    strong{ 
        color: #110F0F;
        font-weight: 600; 
        font-size: 22px;
        min-width: 52px;
        max-width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 1px solid #E8E8E8;
        background-color: #fff;
        display: flex; 
        align-items: center;
        justify-content: center; 
    }
}
.tri-rate{
        padding-right: 45px;
    border-right: 1px solid #c1c1c1;
}
@keyframes hoverShine {  
    100% {
    left: 125%;
}
}
.ku-cont{  
    border: 1px solid #cfdde2;
    padding: 25px; 
    border-radius: 0 0 15px 15px;
    .smm-h{  
    margin-bottom: 20px;
    font-size: 18px; 
    font-weight: 500;
    background:#f5f6fc; 
    color:#000dff;
    display: inline-block; 
}
.smfm-h{              
    font-size: 18px;
    font-weight: 600;
}
}

@media only screen and (max-width: 599px) {
.koi-mrk {
    .ky-hesd {
        font-size: 50px;
    }
    .ky-hehhd {
        font-size: 50px;
    }
}
.kty-mk {
    .ser-hee {
       font-size: 50px;
       margin: 0;
    }
}
.au-mod,
.au-moddd{
    min-height: 12px;
}
.stt-bx {
        bottom: -15px;
        padding: 30px 25px;
        width: 100%;
        margin-top: 18px;
}
.bla-txt {
    font-size: 28px;
    line-height: 40px;
}
.apha-mainn {
    padding: 20px 0px 10px;
}
.gete {
    .larg-be {
        font-size: 50px;
        line-height: 60px;
    }
}
.marrk-het{
   display: flex;
   animation: marqueeAnimation 10s linear infinite; 
   transition: animation-play-state 0.3s ease; 
}
.mu-hu{
   display: flex;
   animation: marqueerev 10s linear infinite; 
   transition: animation-play-state 0.3s ease; 
}
.vector-main{
    bottom: 20px;
    left: 0%;
}
.vector2{
    display: none;
}
.kdjr{
    width: 100%;
}
.ghtyq {
    width: 335px;
}
.wera {
    line-height: 43px;
    font-size: 28px;
}
.weraaa {
    line-height: 29px;
    font-size: 24px;
}
.kjyu {
    width: 323px;
}
.mhn {
    font-size: 18px;
}
.htyu {
    font-size: 16px !important;
}
.dgjdfj {
    position:inherit;
}
.review-df{
        flex-wrap: wrap;
        border-radius: 15px;
        padding: 16px 20px;
        gap: 15px;
        margin-bottom: 20px;
            strong {
        font-size: 21px;
        min-width: 45px;
        max-width: 45px;
        height: 45px;
    }
        .tri-rate{
            border-right: none;
            img{
                width: 130px;
            }
        }
        .trust-rate{
             img{
                width: 110px;
            }
        }
}
}
/* large0ne section ends */

/* contact-us section starts */
.banner-imgg{
    height: 400px;
    object-fit: cover;
}
.carousell-inner{
    position: relative;
    width: 100%;
    overflow: hidden;
    .carousel-caption {
    bottom: 9.25rem !important;
    left: 11% !important;
    text-align: left !important;
}
}
.zas-g{
        box-shadow: 0 40px 80px 0px rgba(83, 94, 132, 0.15);
    border-radius: 20px;
}
.conf-bgg{
    background-image: url(../images/conus-bg.png);
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center center;
    background-repeat: no-repeat;
}
.luh{
    position: relative;
    border-radius: 20px;
    padding: 100px 100px 50px;
    background-color: white;
    box-shadow: 0 40px 80px 0px rgba(83, 94, 132, 0.15);
}
.form-aww{
    margin-bottom: 15px;
    input{
        position: relative;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 28px;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 16px;
    background: none;
    color: #666666;
    border-radius: 50px;
    transition: all 300ms ease;
    border: none;
    background-color: #F5F5F5;
    }
    input:focus{
        outline: 1px solid #a113ef;
    }
    textarea{
     position: relative;
    display: block;
    width: 100%;
    height: 200px;
    resize: none;
    color: #666666;
    font-size: 16px;
    border: none;
    line-height: 26px;
    padding: 20px 20px;
    border-radius: 25px;
    background-color: #F5F5F5;
    transition: all 300ms ease;
    }
   textarea:focus{
        outline: 1px solid #a113ef;
    }
}
.hefd-cont{
            position: relative;
            font-weight: 700;
            font-size: 18px;
            display: flex;
            justify-content: center;
            gap: 15px;
            align-items: center;
            color: #000dff;
            text-transform: uppercase;
            font-family: 'Manrope', sans-serif;
}
.conta-box{
        margin-top: 80px;
}
.fo-v4{
    color: #000;
    line-height: 34px;
    font-size: 25px;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.fa-fwde{
    position: relative;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px !important;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color:rgb(0,13,255);
    border: 2px solid rgb(0,13,255);
}
.nbhc{
    color: #000;
    line-height: 34px;
    font-size: 30px;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.conta-text{
a{
        font-size: 15px;
    line-height: 21px;
        color: #666666;
        font-family: 'Manrope', sans-serif;
}
}
.tri-rate{
    img{
        width: 150px;
    }
}
.trust-rate{
    img{
        width: 130px;
    }
}
@media only screen and (max-width: 599px) {
    .banner-imgg {
    height: 160px;
    object-fit: cover;
}
.slider-one_heading {
    font-size: 28px;
}
.carousell-inner {
    .carousel-caption {
        bottom: 2.25rem !important;
        left: 0% !important;
        text-align: center !important;
    }
}
   .luh {
        padding: 50px 18px 50px;
    }
    .contact-box {
        display: none;
    }
}


.contact-box {
  position: absolute;
   top: 109px;
   right: 354px;
  background: rgba(255, 255, 255);
    padding: 40px 26px;
    border-radius: 10px;
    width: 300px;
 box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  font-family: "Lexend", sans-serif;
  z-index: 10;
}
.contact-box h3 {
  margin-bottom: 10px;
  color: #000dff;
  font-weight: 700;
 font-family: "Outfit", serif;
}

.contact-box p {
  color: #333;
  font-size: 15px;
font-family: 'Manrope', sans-serif;
}
.contact-box a{
    color: #666666;
}

/* contact-us section ends */

.travel-banner{
    width: 100%;
    background-image: url(../images/travel/travel_bnr.png);
    background-repeat: no-repeat ;
    background-size: cover ;
    background-position: center center;
    height: 520px ;
}
.overview-sec{
    background-color: #FFFFFF ;
}
.overview-txt-main{
    padding:40px 0;
}
.overview-heading{
    font-size: 38px ;
    font-weight: 600 ;
}
.combine{
        text-align: justify;
        font-size: 18px;
        line-height: 31px;
        font-weight: 400;
}
.welcome-txt{
    p{
        font-size: 18px;
        line-height: 31px;
        font-weight: 400;
    }
}
.comprehensive-img{
    width: 100% ;
    img{
        width: 100% ;
    }
}
.form-sec-inner{
    background-image: url(../images/form_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover ;
    height: 500px ;
}
.map-img{
    width: 60% ;
   background-image: url(../images/travel/map_image.png);
    background-repeat: repeat;
    background-size: contain;
    height: 275px ; 
}
.modal.show .modal-dialog {
    transform: none;
    max-width: 700px !important;
}
.form-main{
    background-color: #FFFFFF;
    box-shadow: 1px 4px 39px 0px #0000001F;
    border-radius: 12px ;
    padding: 34px ;
    margin-top: 100px ;
     margin-left: -75px ;
}
.nbhcs{
    color: #000;
    line-height: 34px;
    font-size: 30px;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.tellus{
    font-size: 16px ;
    font-weight: 400 ;
    color: #000000 ;
}
.input-main{
    width: 100% ;
    input{
        width: 100% ;
        height: 50px ;
        border-radius: 8px ;
        border: 1px solid #BCBCBC;
        padding: 0 10px ;
       font-size: 16px ;
       font-weight: 300 ;
       color: #848484 !important;
        &:focus{
           outline: 1px solid #a113ef;
        }
    }
    textarea{
        width: 100% ;
        height: 100px ;
        border-radius: 8px ;
        border: 1px solid #BCBCBC;
        padding: 0 10px ;
       font-size: 16px ;
       font-weight: 300 ;
       color: #848484 !important;
         &:focus{
            outline: none ;
        }
    }
}
.check-main{
    p{
       display: flex ;
       justify-content: flex-start ;
       align-items: center ;
       gap: 10px ;
       font-size: 14px ;
       font-weight: 300 ;
       color: #848484 ;
       input{
        width: 20px ;
        height: 20px ;
        border: 1px solid #D9D9D9;
        border-radius: 5px ;
       }
    }
}
.submit-btn{
    font-size: 18px ;
    font-weight: 500 ;
    color: #FFFFFF ;
    background: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
    border-radius: 12px ;
    padding: 15px 40px;
    border: none ;
        transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.submit-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.submit-btn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1)  0%, rgba(0, 13, 255, 1) 100%);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.submit-btn:hover {
  color: #ffffff;
}

.submit-btn:hover:before {
  top: -35%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1) 0%, rgba(0, 13, 255, 1) 100%);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.submit-btn:hover:after {
  top: -45%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1)  0%, rgba(0, 13, 255, 1) 100%);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.map-main{
    width: 100% ;
    background-color: #FFFFFF;
}
.comprehensive-head{
    font-size: 32px ;
    font-weight: 600 ;
    color: #303030 ;
}
.comprehensive-txt{
    p{
                text-align: justify;
        font-size: 18px;
        line-height: 31px;
        font-weight: 400;
    }
}
@media screen and (max-width:768px) {
    .travel-banner{
        height: 160px ;
    }
    .overview-txt-main {
      padding: 15px 0;
    }
    .overview-heading{
        font-size: 22px ;
    }
    .combine {
    font-size: 15px;
    }
    .comprehensive-head{
        font-size: 20px ;
    }
    .comprehensive-txt{
        p{
            font-size: 15px ;
        }
    }
    .form-main{
       margin-top: 237px;
        margin-left: 0 ;
        padding: 15px;
    }
    .form-sec-inner {
               height: 360px;
        margin-bottom: 535px;
        padding: 20px 0;
    }
    .input-main {
        input {
            font-size: 12px;
            height: 40px ;
        }
            textarea {
        font-size: 12px;
        height: 80px;
    }
    }

    .tellus {
       font-size: 12px;
    }
    .check-main {
    p {
        font-size: 12px ;
    }
}
.submit-btn {
    font-size: 15px;
    border-radius: 8px;
    padding: 10px 30px;
    width: 100% ;
}
.map-main{
    display: none ;
}
}

/* career page style*/
.usp-numbers-sec{
background-color: #FBFBFB;
}
.usp-main{
    background-color: #E4E5FF;
    border-radius: 10px;
}
.usp-main2{
    background-color: #ECE2FF;
    border-radius: 10px;
}
.usp-main3{
    background-color: #FBEBFF;
    border-radius: 10px;
}
.number-sec{
    span{
          width: 70px;            
  height: 70px; 
  color: #340e86;             
  border-radius: 50%;       
  background-color:white; 
  display: flex;
  align-items: center;
  justify-content: center; 
font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 1px 1px 10px 2px #00000029;

    }
}
.usp-txt{
    p{
        font-family: "Outfit", serif;
        line-height: 31px;
        font-size: 21px;
        font-weight: 500;
        color: #303030;
    }
}
.liku{
    p{
        font-size: 18px;
        line-height: 31px;
        font-weight: 400;
        a{
            color: #060DFF;
        }
    }
}
.grfjj{
    margin-bottom: 78px;
    margin-top: 78px;
    padding: 40px 310px;
    background-image: url(../images/career/innovation_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    h2{
            font-size: 26px;
            font-weight: 700;
            font-family: "Outfit", serif
    }
    h1{            
        font-size: 56px;
            font-weight: 700;
            font-family: "Outfit", serif;
           margin-bottom: 45px;
           margin-top: 28px;
    }
    p{ 
        font-size: 23px;
        line-height: 31px;
        font-weight: 400;
         margin-bottom: 35px;
    }
}
.jkla{
    color: #fff;
}


.cards-container {
  position: relative;
  padding: 100px 0 0; /* Added padding to allow scrolling without spacers */
}
.card {
  position: sticky !important;
  top: 30% !important;
  max-width: 1324px;
  margin: 0 auto 40px auto;
  padding: 30px;
  background: white;
  box-shadow: 1px 1px 24px 3px #0000001A;
  border-radius:18px !important;
  z-index: 1 !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid transparent !important;
}
   #card1.active:not(.stacked){
    transform: translateY(-100px) scale(0.89) ;
    z-index: 2;
}
   #card1.inactive:not(.stacked){
    transform: translateY(-100px) scale(0.89) ;
    z-index: 2;
}
#card2.active:not(.stacked){
    transform: translateY(-70px)  scale(0.91);
    z-index: 3;
}
#card2.inactive:not(.stacked){
    transform: translateY(-70px)  scale(0.91);
    z-index: 3;
}
#card3.active:not(.stacked){
    transform: translateY(-40px) scale(0.93);
    z-index: 4;
}
#card3.inactive:not(.stacked){
    transform: translateY(-40px) scale(0.93);
    z-index: 4;
}
 #card4.active:not(.stacked){
    transform: translateY(-10px) scale(0.95);
    z-index: 5; 
 }
  #card4.inactive:not(.stacked){
    transform: translateY(-10px) scale(0.95);
    z-index: 5; 
 }
  #card5.active:not(.stacked){
    transform: translateY(-20px) scale(0.97);
    z-index: 6;
  } 
  #card5.inactive:not(.stacked){
    transform: translateY(-20px) scale(0.97);
    z-index: 6;
  } 
#card1:not(.stacked){
    transform: translateY(-100px)scale(1) ;
    z-index: 2;
}
#card2:not(.stacked){
    transform: translateY(-70px)scale(1);
    z-index: 3;
}
#card3:not(.stacked){
    transform: translateY(-40px);
    z-index: 4;
}
 #card4:not(.stacked){
    transform: translateY(-10px) ;
    z-index: 5; 
 }
  #card5:not(.stacked){
    transform: translateY(20px);
    z-index: 6;
  }
.rffr{
    h1{
        font-size: 50px;
        font-weight: 700;
        font-family: "Outfit", serif;
        color: #303030;
    }
    h2{
          font-size: 30px;
        font-weight: 600;
        font-family: "Outfit", serif;
        color: #303030;
    }
    p{
        font-size: 23px;
        line-height: 32px;
        color: #535353;
    }
}
@media screen and (max-width:768px) {
.usp-txt{
    font-size: 19px;
    font-weight: 500;
    p{
        font-size: 15px;
    }
}
.number-sec {
    span {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}
.grfjj {
        margin-bottom: 50px;
    margin-top: 58px;
    padding: 40px 10px;
        h1 {
        font-size: 35px;
        }
        p{
            font-size: 13px;
        }
}
.cards-container {
    position: relative;
    padding: 100px 18px 0;
}
.rffr {
    h1 {
        font-size: 32px;
    }
        h2 {
        font-size: 26px;}
            p {
        font-size: 18px;}
     }
.liku {
    p {
        font-size: 16px;
    }
}

}


.career-inner{
    width: 100% ;
    background-image: url(../images/career/career_bnr.png);
    background-repeat: no-repeat ;
    background-size: cover ;
    background-position: center center;
    height: 620px ;
}

.tab-sec-main{
    margin-top: -100px ;
}
.tab-sec{
    width: 100% ;
    background-image: url(../images/career/Vector.png);
    background-size: cover ;
    background-repeat: no-repeat ;
    padding-top: 260px ;
    height: 2625px ;
}

.dsgname{
        font-size: 26px;
        font-weight: 700;
        font-family: "Outfit", serif;
    color: #FFFFFF ;
    margin-bottom: 27px;
}
.officetime{
    font-size: 20px;
        font-weight: 400;
        font-family: "Outfit", serif;
    color: #FFFFFF ;
    letter-spacing: 4.5px;
}
.content-main{
    padding: 60px 40px ;
    border-bottom:1px solid #ffffff30;
}

.content-main:hover{
    background: linear-gradient(90deg, #0008EB 0%, #AF09DB 100%);
    border-radius: 20px ;
    border: none !important;
}
.call-btn{
   a{
    color: #b114ed;
    font-size: 24px;
    font-weight: 700 ;
    background-color: #FFFFFF ;
    text-decoration: none;
    width: 145px;
    height: 56px;
    border-radius: 10px ;
    display: flex ;
    justify-content: center ;
    align-items:center ;
   }
}

@media screen and (max-width:768px) {
    .tab-btn {
        justify-content: flex-start ;
            margin-bottom: 30px !important;
        gap: 10px ;
    & li {
        button {
            font-size: 15px !important;
        }
    }
}
.content-main {
    padding: 20px 10px;
}
.dsgname {
    font-size: 16px;
}
.officetime {
    font-size: 12px;
}
.call-btn {
    a {
        font-size: 15px;
        width: 100px;
        height: 40px;
        border-radius: 7px;
    }
}
.tab-sec{padding: 20px 0;
    background-size: 100% 100% ;
    height: auto ;
    padding-top: 150px ;
}
.card {
    top: 20%;
}
}

.hero-section{
    background: url(../images/travel/pat_bnr.webp) no-repeat;
    height: 567px;
    background-size: 100% 100%;
}
.slider-one_hea{
    margin-top: 130px;
    font-weight: 700;
    color: white;
    text-transform: capitalize;
    font-size: 57px;
    margin-bottom: 0;
    line-height: 66px;  
}
.form-container {
  position: relative;
  z-index: 2;
  background: #fff;
  color: #000;
  width: 360px;
  border-radius: 15px;
  box-shadow: 0px 2px 4px 3px #00000014;
}
.tjt{
padding: 15px 25px;
}
.hyujup{
    position: absolute;
    right: 0;
    top: 190px;
}
.form-container h2 {
  background: #333;
  color: #fff;
  padding: 15px;
  border-radius: 15px 15px  0 0;
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* Inputs and textareas */
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  background-color: #F8F8F8;
  border-radius: 6px;
  font-size: 14px;
}
.form-container input:focus,
.form-container textarea:focus {
outline: 1px solid #a113ef;
}
.form-container textarea {
  resize: none;
  height: 44px;
}

/* Submit button */

.part_btn {
    width: 100%;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  padding: 8px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
  text-decoration: none;
  font-weight: 600; 
  border: 1px solid transparent;
}
.derf{
        margin-top: 29px;
}
.part_btn:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.part_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.part_btn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1)  0%, rgba(0, 13, 255, 1) 100%);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.part_btn:hover {
  color: #ffffff;
}

.part_btn:hover:before {
  top: -35%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1) 0%, rgba(0, 13, 255, 1) 100%);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.solutions-section {
  max-width: 1200px;
  text-align: center;
  padding: 40px 20px;
}

.solutions-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.solutions-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.solutions-grid {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.solutions-gid {
   display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  .solution-card{
    padding: 20px 20px;
     h3 {
    margin-top: 20px;
    font-size: 19px;
}
  }
}
.solutions-griddd {
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.bghht{
   box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.solution-card {
  background: #fff;
  color: #222;
  border-radius: 10px;
  padding: 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.subtitle{
    font-size: 18px;
   font-family: Outfit, serif;
   margin-top: 22px;
   margin-bottom: 35px;
}
.solution-card:hover {
  transform: translateY(-5px);
    box-shadow: 0px 2px 15px 6px #0000001A;
}
.gtha{
    width: 150px;
}
.gtha{
    width: 180px;
}
.solution-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #8a00ff;
}

.solution-card h3 {
font-weight: 600;
        margin-top: 10px;
        font-size: 22px;
        font-family: Outfit, serif;
}
.derf{
    .subtitle{
        position: relative;
        color: #606060;
        margin-top: 18px;
        margin-bottom: 50px;
        font-weight: 400;
        font-family: "Outfit", serif;
        line-height: 30px;
        font-size: 22px;
    }
}
    .subtittle{
        position: relative;
        color: #ffffff;
        margin-top: 18px;
        margin-bottom: 50px;
        font-weight: 400;
        font-family: "Outfit", serif;
        line-height: 30px;
        font-size: 22px;
    }
.textk{
    h3{
        font-weight: 600;
        margin-top: 10px;
    font-size: 18px;
    font-family: "Outfit", serif;
    }
    p{
        font-size: 15px;
        font-family: "Outfit", serif;
    }
}
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .solutions-gid {
    grid-template-columns: repeat(2, 1fr);
        .solution-card {
        padding: 20px 10px;
                h3 {
            margin-top: 20px;
            font-size: 17px;
        }
    }
  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row even on small screens */
    gap: 15px;
  }

  .solution-card {
    padding: 15px 10px;
  }

  .solution-card .icon {
    font-size: 30px;
  }

  .solution-card h3 {
    font-size: 1rem;
  }
}
.partmg{
    width: 80px;
}
.part_btn:hover:after {
  top: -45%;
  background: linear-gradient(90deg, rgba(193, 21, 236, 1)  0%, rgba(0, 13, 255, 1) 100%);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.slider-one_heafg{
        font-weight: 700;
    color: white;
    text-transform: capitalize;
    font-size: 52px;
    margin-bottom: 0;
    line-height: 66px;
    text-shadow: 2px 4px 6px  #00000080;
}
.hero-sect{
    background: url(../images/hote_par.png) no-repeat;
    height: 567px;
    background-size: 100% 100%;
}
.hed-ckit{
        margin-top: 15px;
    color: #000;
    text-transform: capitalize;
    line-height: 70px;
    font-size: 48px;
    position: relative;
    font-weight: 700;
    font-family: "Outfit", serif;
}
.hed-ckjit{
        margin-top: 23px;
    color: #ffffff;
    text-transform: capitalize;
    line-height: 70px;
    font-size: 48px;
    position: relative;
    font-weight: 700;
    font-family: "Outfit", serif;
}

.cshyi{
    background: linear-gradient(90deg, #040DFF 0%, #BE14EC 100%);
}
.stats-section {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
    gap: 20px;
    padding: 47px 0%;
}
.csol-pi{
    background-color: #FBFBFB;
}
/* Each stat card */
.circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
  font-weight: 700;
  color: #ffffff;
  border: 3px solid #fff;
  background: linear-gradient(90deg, #040DFF 0%, #BE14EC 100%);
  box-shadow: 0 0 0 3px rgb(168 168 247);
  margin-bottom: 10px;
    z-index: 2; 
}

.stat-box p {
    color: #260ffb;
  font-size: 0.9rem;
  font-weight: 500;
      text-align: center;
    font-family: "Outfit", serif;
    line-height: 34px;
    margin-bottom: 0;
}
.stat-box {
  background-color: #120efe30;
  border: 1px solid #260ffb1f;
  color: #fff;
  border-radius: 15px;
  width: 226px;
  height: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Add the shine overlay */
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 1%;
  height: 100%;
  
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(15deg);  
  animation: shine 3s infinite;
   z-index: 0; 
}

/* The movement of the shine */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.logo-grid {
    margin-top: 40px;
    margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.logo-card {
  background: #fff;
 box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 10px;
  padding: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.logo-card:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.logo-card img {
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .logo-card {
    height: 90px;
    padding: 26px;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .stat-box {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .stat-box {
    width: 85%;
    height: 156px;
  }
  .circle {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
  .stats-section {
    gap: 26px;
    padding: 15px 0%;
}
}
.poim{
    position: relative;
    overflow: hidden;
    padding: 130px 0px 100px;
}
.hythq{
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-image: url(../images/partbe_ba.jpg);
}
.cerw{
        position: absolute;
    left: 0px;
    top: 0px;
    z-index: 99;
    width: 459px;
    height: 446px;
    background-repeat: no-repeat;
    background-image: url(../images/actionn.png);
}
.lhsg{
    position: relative;
}
.lhsg:before {
    position: absolute;
    content: '';
    right: 100%;
    top: 0px;
    bottom: 0px;
    width: 200%;
    z-index: 10;
    background-color: #001e53;
}
.nbgd{
    overflow: visible;
    padding-top: 110px;
    margin-top: -100px;
}
.ddb-main {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}
.ddb-inner{
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    padding: 25px 30px 45px;
    background-color: #002361;
}
.ddb-inner:before {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    opacity: 0;
    width: 162px;
    height: 151px;
    transition: all 500ms ease;
    background: url(../images/dd-hide.png);
}

@media screen and (max-width:768px) {
       .hed-ckit {
        line-height: 30px;
        font-size: 26px;
    }
      .hed-ckjit {
        line-height: 30px;
        font-size: 26px;
    }
    .hyujup {
    top: 90px;
}
.form-container {

    width:100%;
}
.derf {
    margin-top: 30px;
}
.hero-section {
    height: 625px;
}
.hero-sect{
    height: 325px;
}
.slider-one_heafg {
    font-size: 27px;
    line-height: 45px;
}
.parthg{
    display: flex;
    align-items: center;
        background: #7874ed26;
    padding:15px  20px;
    border-radius: 15px;
            margin-bottom: 20px;
            .icon{
                margin-right: 20px;
            }
}
.partmg {
    width: 60px;
}
.textk{
    p{
      margin-bottom: 0;
    }
}
.derf {
.subtitle {
        margin-bottom: 23px;
        font-size: 18px;
    }
}
.subtittle{
        margin-bottom: 23px;
        font-size: 18px;
    }
    .stat-box p {
    font-size: 18px;
}
}