 :root {
        .icon6 {
          --tx: -56px !important;
          --ty: 0px !important;
        }
        .icon3 {
          --tx: 63px !important;
          --ty: 0px !important;
        }
        .icon1 {
          --tx: -33px !important;
          --ty: -40px !important;
        }
        .icon2 {
          --tx: 42px !important;
          --ty: -50px !important;
        }
        .icon4 {
          --tx: 45px !important;
          --ty: 50px !important;
        }
        .icon5 {
          --tx: -28px !important;
          --ty: 66px !important;
        }
      }

.service_box .img-box svg{
    width: 100%;
    min-height: 222px;
    object-fit: cover;
}

.chart_bar {
  transform-box: fill-box;       /* Important for SVG */
  transform-origin: bottom;      /* Bottom se grow kare */
  transform: scaleY(0);
  
}
.aos-animate .chart_bar {
    animation: growBar 1.2s ease-out forwards;
}
.aos-animate .delay-1 { animation-delay: 0.3s; }
.aos-animate .delay-2 { animation-delay: 0.4s; }
.aos-animate .delay-3 { animation-delay: 0.5s; }
.aos-animate .delay-4 { animation-delay: 0.6s; }
.aos-animate .delay-5 { animation-delay: 0.7s; }
.aos-animate .delay-6 { animation-delay: 0.8s; }

@keyframes growBar {
  0%   { transform: scaleY(0); }
  70%  { transform: scaleY(1.05); }
  100% { transform: scaleY(1); }
}


.svg_zoom {
  transform-box: fill-box;      /* SVG ke liye important */
  transform-origin: center;     /* Center se zoom kare */
  transform: scale(0);
}

.aos-animate .svg_zoom {
  animation: bounceZoom 1.5s ease-in-out infinite;
}

.aos-animate .svg_zoom.delay-1 { animation-delay: 0.3s; }
.aos-animate .svg_zoom.delay-2 { animation-delay: 0.4s; }
.aos-animate .svg_zoom.delay-3 { animation-delay: 0.5s; }
.aos-animate .svg_zoom.delay-4 { animation-delay: 0.6s; }

@keyframes bounceZoom {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.3); }
  40%  { transform: scale(1.1); }
  55%  { transform: scale(1.05); }
  70%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}

.svg_graph {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.aos-animate .svg_graph {
  animation: drawGraph 2.5s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes drawGraph {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}


.svg_bottom {
    transform-box: fill-box;
    transform-origin: bottom;
    transform: scaleY(0);
}

.aos-animate .svg_bottom {
    animation: revealUp 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes revealUp {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.svg_rotate {
    transform-box: fill-box;
    transform-origin: center;
}
.aos-animate .svg_rotate {
    animation: 30s linear infinite normal none running svgRotate;
    animation-delay: 0.8s;
}

@keyframes svgRotate {
  0% {
    transform: scaleY(0);
    transform: rotate(0deg);
  }
  100% {
    transform: scaleY(1);
    transform: rotate(360deg);
  }
}


.map_svg {
  transform-box: fill-box;
  transform-origin: center;
  transform: translateY(-80px);
}
.aos-animate .map_svg {
    animation: mapDrop 2s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes mapDrop {
  0% {
    transform: translateY(-20px);
    opacity: 0.5;
  }
  60% {
    transform: translateY(0px);
    opacity: 1;
  }
  80% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.map_svg:nth-of-type(1) { animation-delay: 0.1s; }
.map_svg:nth-of-type(2) { animation-delay: 0.3s; }
.map_svg:nth-of-type(3) { animation-delay: 0.5s; }
.map_svg:nth-of-type(4) { animation-delay: 0.7s; }
.map_svg:nth-of-type(5) { animation-delay: 0.9s; }
.map_svg:nth-of-type(6) { animation-delay: 1.1s; }

.banner_rotate {
    transform-box: fill-box;
    transform-origin: center;
    animation: 30s linear infinite normal none running bannerRotate;
    animation-delay: 0.8s;
}

@keyframes bannerRotate {
  0% {
    transform: scaleY(0);
    transform: rotate(0deg);
  }
  100% {
    transform: scaleY(1);
    transform: rotate(360deg);
  }
}
.banner_reverse_rotate {
    transform-box: fill-box;
    transform-origin: center;
    animation: 30s linear infinite normal none running bannerRevRotate;
    animation-delay: 0.8s;
}

@keyframes bannerRevRotate {
  0% {
    transform: scaleY(0);
    transform: rotate(0deg);
  }
  100% {
    transform: scaleY(1);
    transform: rotate(360deg);
  }
}


/*service-card animations*/
    .bg-banner-blue{
    background: #0143B50D;
    background-image: url(../img/banner-bg-svg.svg) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    }
      .icon {
        transform-box: fill-box;
        transform-origin: center;
        position: relative;
        z-index: 1;
        opacity: 0;
      }
      .aos-animate .icon {
        --tx: 0px;
        --ty: 0px;
        animation: iconReveal 3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
      }
      @keyframes iconReveal {
        0% {
          transform: translate(var(--tx), var(--ty)) scale(0.5);
          opacity: 0;
          filter: blur(3px);
        }

        60% {
          opacity: 0.5;
          filter: blur(0px);
        }

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

      .main_icon {
        position: relative;
        z-index: 2;
      }

      .rotate_circle {
        transform-origin: center;
        transform-box: fill-box;
        animation: iconRotate 5s linear infinite;
      }

      @keyframes iconRotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
       .hr_lines path {
       
        clip-path: inset(0 100% 0 0);
        transition:
          clip-path 0.8s ease,
          opacity 0.3s ease;
      }

      .hr_lines path.draw {
        opacity: 1;
        clip-path: inset(0 0 0 0);
      }
      .aos-animate .svg_ca_1 {
        transform: translateX(45%);
        animation: moveToCenter 1s ease forwards;
      }

      .aos-animate .svg_ca_2 {
        transform: translateX(24%);
        animation: moveToCenter 1s ease forwards;
      }

      .aos-animate .svg_ca_3 {
        transform: translateX(0);
      }

      .aos-animate .svg_ca_4 {
        transform: translateX(-20%);
        position: relative;
        z-index: 0;
        animation: moveToCenter 1s ease forwards;
      }

      .aos-animate .svg_ca_5 {
        transform: translateX(-43%);
        position: relative;
        z-index: 0;
        animation: moveToCenter 1s ease forwards;
      }
      @keyframes moveToCenter {
        to {
          transform: translateX(0);
        }
      }
      .svg_bottom {
        transform-box: fill-box;
        transform-origin: bottom;
        transform: scaleY(0);
      }
      .aos-animate .svg_bottom {
        animation: revealUp 1.2s ease-out forwards;
        animation-delay: 0.8s;
      }
      .svg_bottom1,
      .svg_bottom2,
      .svg_bottom3 {
        transform-box: fill-box;
        transform-origin: bottom;
        transform: scaleY(0);
        opacity: 0;
      }
      .aos-animate .svg_bottom1 {
        animation: revealUp 1.2s ease-out forwards;
        animation-delay: 0.8s;
      }
      .aos-animate .svg_bottom2 {
        animation: revealUp 1.6s ease-out forwards;
        animation-delay: 0.8s;
      }
      .aos-animate .svg_bottom3 {
        animation: revealUp 2.4s ease-out forwards;
        animation-delay: 0.8s;
      }
      .svg_verified{
        opacity: 0;
      }
      .aos-animate .svg_verified {
        animation: slideUp 1.8s ease-out forwards;
        animation-delay: 0.8s;
      }
      .svg_profile,
      .svg_slideUp {
        opacity: 0;
      }
      .aos-animate .svg_profile,
      .aos-animate .svg_slideUp {
        animation: slideRight 1.8s ease-out forwards;
        animation-delay: 0.8s;
      }
      .svg_slideUp1, .svg_slideUp2, .svg_slideUp3 {
        opacity: 0;
      }
      .aos-animate .svg_slideUp1 {
        animation: slideRight 1.8s ease-out forwards;
        animation-delay: 0.8s;
      }
      .aos-animate .svg_slideUp2 {
        animation: slideRight 1.8s ease-out forwards;
        animation-delay: 1.3s;
      }
      .aos-animate .svg_slideUp3 {
        animation: slideRight 1.8s ease-out forwards;
        animation-delay: 2s;
      }
      @keyframes revealUp {
        0% {
          transform: scaleY(0);
          opacity: 0;
        }
        100% {
          transform: scaleY(1);
          opacity: 1;
        }
      }
      @keyframes slideRight {
        0% {
          transform: translatey(100%);
          opacity: 0;
        }
        100% {
          transform: translatey(0);
          opacity: 1;
        }
      }

      @keyframes slideUp {
        0% {
          transform: translateX(100%);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
          opacity: 1;
        }
      }
      .svg_move {
        animation: svgFloat 2s ease-in-out infinite;
      }

      @keyframes svgFloat {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
        100% {
          transform: translateY(0);
        }
      }
      .svg_bounce {
        transform-origin: center;
        transform-box: fill-box;   
        opacity: 0;
      }
      .aos-animate .svg_bounce {
        animation: svgImpactEntry 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 3s;
      }

      @keyframes svgImpactEntry {
        0% {
          transform: translateY(160px) scale(0.8) rotate(-8deg);
          opacity: 0;
        }

        20% {
          transform: translateY(-12px) scale(1.05) rotate(5deg);
          opacity: 1;
        }
        40% {
          transform: translateY(8px) scale(0.9) rotate(-3deg);
          opacity: 1;
        }
        60% {
          transform: translateY(0px) scale(1.06) rotate(5deg);
          opacity: 1;
        }

        80% {
          transform: translateY(4px) rotate(-2deg);
          opacity: 1;
        }

        100% {
          transform: translateY(0) scale(1) rotate(0deg);
          opacity: 1;
        }
      }
      .svg_destination{
        opacity: 0;
      }

      .aos-animate .svg_destination {
        animation: destinationDrop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1)
          forwards;
        transform-origin: bottom;
      }

      @keyframes destinationDrop {
        0% {
          transform: translateY(-70px);
          opacity: 0;
        }

        70% {
          transform: translateY(-12px);
          opacity: 1;
        }

        100% {
          transform: translateY(-5px);
          opacity: 1;
        }
      }
      .svg_path, .svg_path1{
        opacity: 0;
      }
      .aos-animate .svg_path {
        animation: pathReveal 1.2s ease forwards;
      }

      .aos-animate .svg_path1 {
        animation: pathReveal 3s ease forwards;
        animation-delay: 3s;
      }

      @keyframes pathReveal {
        0% {
          clip-path: inset(0 100% 0 0);
          opacity: 0;
        }

        100% {
          clip-path: inset(0 0 0 0);
          opacity: 1;
        }
      }
      .svg_current_location {
        transform-origin: center;
        transform-box: fill-box;
      }
      .aos-animate .svg_current_location {
        animation: currentLocationPop 1s ease forwards;
      }

      @keyframes currentLocationPop {
        0% {
          transform: scale(0);
          opacity: 0;
        }

        60% {
          transform: scale(1.2);
          opacity: 1;
        }

        100% {
          transform: scale(1);
        }
      }
      .svg_current_location {
        animation-delay: 1s;
      }

      .svg_path {
        animation-delay: 0.4s;
      }

      .svg_destination {
        animation-delay: 0s;
      }
      .svg_eye {
        animation: eyeMove 3s ease-in-out infinite alternate;
      }

      @keyframes eyeMove {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(4px, -3px);
        }
      }
      .svg_chat {
        animation: chatMove 2.2s ease-in-out infinite alternate;
      }

      @keyframes chatMove {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-5px);
        }
        100% {
          transform: translateY(2px);
        }
      }
      .svg_scop {
        animation: scopeScan 1.6s ease-in-out infinite alternate;
        transform-origin: center;
        transform-box: fill-box;
      }

      @keyframes scopeScan {
        0% {
          transform: translateX(-4px) rotate(-1deg);
        }
        100% {
          transform: translateX(4px) rotate(1deg);
        }
      }
      .svg_eye {
        animation-delay: 0.2s;
      }
      .svg_chat {
        animation-delay: 0.6s;
      }
      .svg_scop {
        animation-delay: 0.4s;
      }
      .svg_check {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
        animation: checkDraw 1s ease forwards;
      }

      @keyframes checkDraw {
        to {
          stroke-dashoffset: 0;
        }
      }

      .svg_fly {
        opacity: 0;
        transform: translateY(80px) scale(0.7);

        animation:
          flyIn 2s ease forwards,
          floating 2s ease-in-out infinite 2s;
      }

      /* STEP 1 → Entry Fly */
      @keyframes flyIn {
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      /* STEP 2 → Infinite Floating */
      @keyframes floating {
        0% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(-10px);
        }

        100% {
          transform: translateY(0);
        }
      }
      .chart_bar {
        transform-box: fill-box; /* Important for SVG */
        transform-origin: bottom; /* Bottom se grow kare */
        transform: scaleY(0);
      }
      .aos-animate .chart_bar {
        animation: growBar 1.2s ease-out forwards;
        animation-delay: calc(var(--i) * 0.3s);
      }

      @keyframes growBar {
        0% {
          transform: scaleY(0);
        }
        70% {
          transform: scaleY(1.05);
        }
        100% {
          transform: scaleY(1);
        }
      }
      .svg_moveRight1 {
        animation: svg_moveRight 1.5s linear infinite;
      }

      .svg_moveRight2 {
        animation: svg_moveRight 1.8s linear infinite;
        animation-delay: 0.75s;
      }
      @keyframes svg_moveRight {
        0% {
          opacity: 0;
        }

        50% {
          opacity: 1;
        }

        100% {
          opacity: 0;
        }
      }
      .svg_rotate {
        animation: rotateSVG 6s linear infinite;
        transform-origin: center;
        transform-box: fill-box;
      }
      @keyframes rotateSVG {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      .svg_multiLines {
        transform-origin: center;
        transform-box: fill-box;
      }
      .aos-animate .svg_multiLines {
        animation: iconSpread 1.5s ease forwards;
      }

      .svg_multilines_icons {
        transform-origin: center;
        transform-box: fill-box;
      }
      .aos-animate .svg_multilines_icons {
        animation: iconSpread 1.5s ease forwards;
      }
      @keyframes iconSpread {
        0% {
          transform: translate(0, 0) scale(0.5);
          opacity: 0;
        }

        100% {
          transform: translate(var(--x), var(--y)) scale(1);
          opacity: 1;
        }
      }
      .svg_appear {
        transform-origin: center;
        transform-box: fill-box;
      }
      .aos-animate .svg_appear {
        animation: svg_appear 1.5s ease forwards;
      }
      @keyframes svg_appear {
        0% {
          transform: scale(0);
          opacity: 0;
        }

        100% {
          transform: scale(1);
          opacity: 1;
        }
      }
      
      .svg_zoom1 {
        transform-origin: center center;
        transform-box: fill-box;
        display: block;
        margin: auto;
        animation-name: svgZoom;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        animation-duration: 3s;
      }
      .zoom1 {
        animation-duration: 3s;
      }

      .zoom2 {
        animation-duration: 4s;
      }

      .zoom3 {
        animation-duration: 5s;
      }

      .zoom4 {
        animation-duration: 6s;
      }

      .zoom5 {
        animation-duration: 7s;
      }

      .zoom6 {
        animation-duration: 8s;
      }
      
      @keyframes svgZoom {
        0% {
          transform: scale(0.5);
        }
        50% {
          transform: scale(1.2);
        }
        100% {
          transform: scale(0.5);
        }
      }
      @keyframes moveDash {
        from {
          stroke-dashoffset: 12;
        }
        to {
          stroke-dashoffset: 0;
        }
      }
      .svg_cloud1 {
        animation: svgFloat 2s ease-in-out infinite;
      }
      .svg_cloud2 {
        animation: svgFloat 1.6s ease-in-out infinite;
      }
      /*@keyframes dashMove {
        from {
          stroke-dashoffset: 0;
        }
        to {
          stroke-dashoffset: -1000;
        }
      }*/
      .svg_remaining {
        animation: planeTrailMove 5s linear infinite;
      }
      @keyframes planeTrailMove {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .svg_card1,
      .svg_card2 {
        animation: slidecard 1.5s ease forwards;
        opacity: 0;
      }
      .svg_card1 {
        animation-delay: 1s;
      }
      @keyframes slidecard {
        0% {
          transform: translatey(10%);
          opacity: 0;
        }
        100% {
          transform: translatey(0);
          opacity: 1;
        }
      }

      .finance_banner_icon1,
      .finance_banner_icon2,
      .finance_banner_icon3,
      .finance_banner_icon4 {
        animation: rotateReverse 20s linear infinite;
        transform-box: fill-box;
        transform-origin: center;
      }
      .banner-finance-svg .svg_path{
        animation: pathReveal 1.2s ease forwards;
      }

      .legal_banner_icon1,
      .legal_banner_icon2,
      .legal_banner_icon3,
      .legal_banner_icon4 {
        animation: rotateReverse 20s linear infinite;
        transform-box: fill-box;
        transform-origin: center;
      }
      .it_banner_icon1,
      .it_banner_icon2,
      .it_banner_icon3,
      .it_banner_icon4,
      .it_banner_icon5,
      .it_banner_icon6 {
        animation: rotateReverse 20s linear infinite;
        transform-box: fill-box;
        transform-origin: center;
      }
      .ai_banner_icon1,
      .ai_banner_icon2,
      .ai_banner_icon3,
      .ai_banner_icon4,
      .ai_banner_icon5,
      .ai_banner_icon6,
      .ai_banner_icon7 {
        animation: rotateReverse 20s linear infinite;
        transform-box: fill-box;
        transform-origin: center;
      }

      

      /* Main rotation */
      @keyframes rotateMain {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      /* Reverse rotation */
      @keyframes rotateReverse {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(-360deg);
        }
      }
      .main-rotate-group {
        transform-box: fill-box;
        transform-origin: center;
        animation: rotateMain 20s linear infinite;
      }

      /* Reverse rotate icons */
      .investment_banner_icon1,
      .investment_banner_icon2,
      .investment_banner_icon3,
      .investment_banner_icon4 {
        transform-box: fill-box;
        transform-origin: center;
        animation: rotateReverse 20s linear infinite;
      }
      .travel_banner_icon1,
      .travel_banner_icon2,
      .travel_banner_icon3,
      .travel_banner_icon4,
      .travel_banner_icon5 {
        animation: rotateReverse 20s linear infinite;
        transform-box: fill-box;
        transform-origin: center;
      }

      /* Center icon ko rotate na hone do */
      .investment_banner_icon_center,
      .finance_banner_icon_center,
      .legal_banner_icon_center,
      .it_banner_icon_center,
      .ai_banner_icon_center,
      .travel_banner_icon_center {
        animation: none !important;
      }

      /* Center icon static */
      .investment_banner_icon_center {
        animation: none;
      }

      @keyframes rotateMain {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      @keyframes rotateReverse {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(-360deg);
        }
      }
      .banner-right-img svg:hover .finance_banner_icon1,
      .banner-right-img svg:hover .finance_banner_icon2,
      .banner-right-img svg:hover .finance_banner_icon3,
      .banner-right-img svg:hover .finance_banner_icon4,
      .banner-right-img svg:hover .legal_banner_icon1,
      .banner-right-img svg:hover .legal_banner_icon2,
      .banner-right-img svg:hover .legal_banner_icon3,
      .banner-right-img svg:hover .legal_banner_icon4 ,
      .banner-right-img svg:hover .it_banner_icon1,
      .banner-right-img svg:hover .it_banner_icon2,
      .banner-right-img svg:hover .it_banner_icon3,
      .banner-right-img svg:hover .it_banner_icon4,
      .banner-right-img svg:hover .it_banner_icon5,
      .banner-right-img svg:hover .it_banner_icon6,
      .banner-right-img svg:hover .ai_banner_icon1,
      .banner-right-img svg:hover .ai_banner_icon2,
      .banner-right-img svg:hover .ai_banner_icon3,
      .banner-right-img svg:hover .ai_banner_icon4,
      .banner-right-img svg:hover .ai_banner_icon5,
      .banner-right-img svg:hover .ai_banner_icon6,
      .banner-right-img svg:hover .ai_banner_icon7,
      .banner-right-img svg:hover .investment_banner_icon1,
      .banner-right-img svg:hover .investment_banner_icon2,
      .banner-right-img svg:hover .investment_banner_icon3,
      .banner-right-img svg:hover .investment_banner_icon4,
      .banner-right-img svg:hover .travel_banner_icon1,
      .banner-right-img svg:hover .travel_banner_icon2,
      .banner-right-img svg:hover .travel_banner_icon3,
      .banner-right-img svg:hover .travel_banner_icon4,
      .banner-right-img svg:hover .travel_banner_icon5,
      .banner-right-img svg:hover .main-rotate-group {
        animation-play-state: paused;
    -webkit-animation-play-state: paused;
      }

@media (max-width: 1399px) {
	.team-sec .row{
		column-gap: 0px;
	}
	.m-details h5{
		font-size: 20px;
	}
	p {
	    font-size: 15px;
	}
	.title-box h2{
		font-size: 36px;
        line-height: 48px;
	}
	 .tab-nav .nav-link{
        padding: 10px 20px;
        font-size: 16px;
        text-wrap: nowrap;
    }
    .tab-nav .nav-tabs{
        gap: 20px;
    }
    .tab-sec-inner .tab-nav{
        padding: 16px 20px;
        padding-right: 50px;
    }
    .tab-arrow{
        background: #fff;
        border-radius: 50%;
    }
    .banner-text h1{
        font-size: 56px;    
        line-height: 68px;
    }
    .img-box svg {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 1199px) {
	p {
    	font-size: 15px;
    }
    .banner-text h1 {
        font-size: 44px;
        font-weight: 600;
        line-height: 50px;
    }
    .banner-text p{
        font-size: 18px;
    }
    .title-box h2 {
        font-size: 36px;
    }
    .work-box h4 {
        font-size: 20px;
        line-height: 26px;
    }
    .work-box p {
        font-size: 14px;
    }
    .ring-1 {
        width: 25.625em;
        height: 25.625em;
    }
    .ring-3{
            width: 250px;
            height: 250px;
    }
    .ring-1 li {
        width: 43px;
        height: 43px;
        padding: 7px;
    }
    .ring-1>*:nth-of-type(4) {
        transform: rotate(275deg) translate(13.1em) rotate(-275deg);
    }
    .ring-1>*:nth-of-type(5) {
        transform: rotate(335deg) translate(12.5em) rotate(-335deg);
    }
    .ring-1>*:nth-of-type(6) {
        transform: rotate(395deg) translate(12.2em) rotate(-395deg);
    }
    .ring-1>*:nth-of-type(1) {
        transform: rotate(95deg) translate(12.4em) rotate(-95deg);
    }
    .ring-1>*:nth-of-type(2) {
        transform: rotate(155deg) translate(13em) rotate(-155deg);
    }
    .ring-1>*:nth-of-type(3) {
        transform: rotate(215deg) translate(13.4em) rotate(-215deg);
    }
    .orbit-center{
        width: 57px;
        height: 52px;
        border-radius: 9px;
    }
    .orbit-center__iconz
    {
        width: 32.5px;
    }
    .banner-animation {
        min-height: 400px;
    }
    .hero_circle_row {
    margin-top: 100px;
    }
    .hero-banner-vdo{
        margin-top: 80px;
    }
}

@media (max-width: 991px) {
	.menu-button-container
    {
        position: unset;
        padding-top: 8px;
    }
    .site-logo .custom-logo{
        max-width: 100px;
        margin-left: 0;
    }
    .menu_btn .common_btn{
        display: none;
    }
    .banner-animation{
         min-height: 600px;
    }
    .hero_circle_row {
        margin-top: 80px;
    }

    .hero-banner-vdo {
        margin-top: 53px;
    }
    .banner-text h1{
        margin-top: 10px;
        font-size: 36px;
        line-height: 48px;
    }
    .banner-text p {
        font-size: 16px;
        line-height: 24px;
    }
    .title-box h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .title-box p {
        color: #5A6475;
        font-size: 16px;
        line-height: 22px;
    }
    .experience-team-card h4{
        font-size: 25px;
        line-height: 33px;
    }
    .experience-team-card p{
        font-size: 15px;
        line-height: 23px;
    }
    section#text-2 {
        width: 50%;
        padding-right: 53px;
    }
    section#nav_menu-2 {
        width: 50%;
    }
    section#nav_menu-3 {
        width: 50%;
    }
    section#text-3 {
        width: 50%;
    }
	.primary-navigation .primary-menu-container>ul>.menu-item {
		margin-left: 10px;
	}
	.primary-navigation .primary-menu-container>ul>.menu-item>a,
	.top_nav ul li a {
		font-size: 16px;
	}
	.primary-navigation > div > .menu-wrapper > li > .sub-menu {
	    position: relative;
	    top: 0;
	    left: 0;
	    right: auto;
	    width: 100%;
	    background: transparent;
	    box-shadow: none;
	    padding: 0 20px;
	}
	.primary-navigation .primary-menu-container>ul>.menu-item {
	    flex-wrap: wrap;
	}
	.primary-navigation > div > .menu-wrapper {
	    gap: 0px;
	}
    .primary-navigation .primary-menu-container>ul>.menu-item>a, .top_nav ul li a {
        font-size: 16px;
        padding: 18px 16px;
    }
	.primary-navigation .primary-menu-container > ul > .menu-item:has(.sub-menu) > a:after {
	    content: none;
	}
	.primary-navigation>.primary-menu-container {
	    background: #fff;
	}
	.primary-navigation-open .menu-button-container {
	    background: transparent;
	}
	.site-header.has-logo:not(.has-title-and-tagline).has-menu .site-logo {
		position: inherit;
	}
	.primary-navigation .primary-menu-container>ul>.menu-item {
		margin-left: 0px;
	}
	.primary-navigation>.primary-menu-container {
		position: fixed;
		visibility: hidden;
		opacity: 0;
		top: 100px;
		right: 0;
		bottom: 0;
		left: 0;
		padding-top: 0;
		padding-left: var(--global--spacing-unit);
		padding-right: var(--global--spacing-unit);
		padding-bottom: var(--global--spacing-horizontal);
	}
	.primary-navigation .primary-menu-container > ul > .menu-item > a + .sub-menu-toggle {
	    display: block;
	    margin-left: auto;
	}
	.primary-navigation>.primary-menu-container {
		height: 100vh;
		z-index: 499;
		overflow-x: hidden;
		overflow-y: auto;
		border: 2px solid transparent;
	}
	.primary-navigation-open .primary-navigation {
		width: 100%;
		position: absolute;
		z-index: 2;
	}
    .primary-navigation-open .has-logo.has-title-and-tagline .primary-navigation > .primary-menu-container {
        padding: 0;
        top: 95px;
        left: 0;
        right: 0;
        margin:0 auto ;
        width: calc(100% - 24px);
        background: #fafafa;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu {
        padding: 0;
        margin: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    #primary-menu-list .menu-item {
        border-bottom: 1px solid #5a647520;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu li{
      border-radius: 0;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu li:first-child{
      border-radius: 8px 8px 0 0;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu li:last-child{
      border-radius:0 0 8px 8px ;
    }

    .primary-navigation > div > .menu-wrapper > li > .sub-menu li a {
        padding: 18px 20px;
    }
    i.fa.fa-angle-down {
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height: 60px;
        text-align: center;
        padding: 18px 25px;
    }
    .menu-button-container {
        position: relative;
    }
	.primary-navigation {
        top: 0;
		position: absolute;
	}
	.site-branding {
		margin-top: 0;
	}
	.primary-navigation>div>.menu-wrapper {
		padding-bottom: 100px;
	}
	.primary-navigation>div>.menu-wrapper li {
		display: block;
		position: relative;
		width: 100%;
	}
	#primary-mobile-menu {
		outline: none;
	}

	#primary-mobile-menu .dropdown-icon {
		font-size: 0;
	}
	.menu-button-container {
	    display: block;
	}
	header#masthead{
		position: relative;
	}

	.experience-team-card{
		width: 100%;
	}
	.vdo-banner1 .overlay .heading{
		font-size: 26px
	}
	.video_play_btn {
      width: 70px;
      height: 50px;
      padding-left: 10px;
      padding-right: 10px;
      border-radius: 12px;
  }
  .video_play_btn img {
      width: 20px;
      transform: translate(-50%, -50%);
  }
  .video_play_btn1 {
      width: 70px;
      height: 50px;
      padding-left: 10px;
      padding-right: 10px;
      border-radius: 12px;
  }
  .video_play_btn1 img {
      width: 20px;
      transform: translate(-50%, -50%);
  }
	.vdo-sec {
	    padding: 30px 0px 140px 0;
	}
	.gallery-scrolling-content{
		animation: galleryscroll 40s linear infinite;
	}
	.gallery-scrolling-content .gallery-image {
	    max-width: 260px;
	}
	.gallery-carousel-box .gallery-scrolling-content .gallery-image:nth-child(even) {
	    padding-top: 50px;
	}
	.faq-header{
		padding: 15px 20px;
		font-size: 14px;
	}
	.footer_para{
		font-size: 14px;
    	line-height: 24px;
	}
	.footer-widget .menu li a{
		font-size: 14px;
    	line-height: 24px
	}
	.banner-inner-sec{
		border-radius: 20px;
		padding: 50px 25px;
	}
    .counter-box {
        padding: 12px;
    }
    .counter-box p {
        font-size: 14px;
        line-height: 20px;
    }
    .counter {
        font-size: 30px;
    }
    .pt-40 {
        padding-top: 25px;
    }
    .pb-60 {
      padding-bottom: 45px;
    }
    .sec_padd {
        padding: 35px 0;
    }
    .vision-box {
        margin-bottom: 20px;
        height: auto;
    }
    .vision-box-inner p{
        max-width: 100%;
    }
    .row.work-box-main {
        row-gap: 20px;
    }
    .job-post-title h4 {
        font-size: 20px;
    }
    p{
        font-size: 14px;
    }
    .job-des ul li {
        font-size: 12px;
    }
    .active .overlay-content{
        margin: 0 0 0 20px;
    }
    .overlay-content{
        padding: 15px 20px;
    }
    .overlay-content h5{
        font-size: 20px;
        line-height: 1.2;
    }
    .service_box .img-box svg{
        min-height: 180px;
    }
}

@media only screen and (max-width: 767px){
    .input-box input, .input-box select, .input-box textarea {
        padding: 8px 12px;
        font-size: 14px;
    }
    .pt-40 {
        padding-top: 16px;
    }
    .pb-60 {
      padding-bottom: 25px;
  }
    .header_inr{
        top: 20px;
    }
    .banner-inner-sec {
        border-radius: 0;
        padding: 24px 20px;
       /* margin: 0 -12px;*/
    }
    .banner-right-img {
        margin-top: 24px;
    }
    .primary-menu-container{
        padding-top: 20px;
    }
    .primary-navigation .primary-menu-container>ul>.menu-item>a, .top_nav ul li a{
        font-size: 16px;
    }
    .sec_padd{
        padding: 25px 0;
    }
    .primary-navigation-open .primary-navigation > .primary-menu-container{
        position: unset;
    }
    .menu-button-container {
        position: unset;
        padding: 8px;

    }
    .site-logo .custom-logo{
        max-width: 77px;
    }
    .menu_btn .common_btn{
        display: none;
    }
    .common_btn{
        font-size: 14px;
        margin-top: 10px;
    }
    .banner-text h1{
        font-size: 24px;
        line-height: 32px;
    }
    .banner-text p{
        font-size: 14px;
        line-height: 20px;
    }
    .title-box h6{
        font-size: 14px;
    }
    .title-box h2{
        font-size: 24px;
        line-height: 32px;
    }
    .title-box p{
        font-size: 14px;
        line-height: 20px;
    }
    .video_play_btn{
        width: 50px;
        height: 30px;
        padding-left:0 ;
    }
    .video_play_btn img
    {
        width: 15px;
            transform: translate(-6px, -50%);
    }
    .video_play_btn1{
        width: 50px;
        height: 30px;
        padding-left:0 ;
    }
    .video_play_btn1 img
    {
        width: 15px;
            transform: translate(-6px, -50%);
    }
    .service_box .box-content h6{
        font-size: 14px;
        line-height: 20px;
    }
    .service_box .box-content pZ{
        font-size: 12px;
        line-height: 20px;
    }
    .slider1 .slide , .slider2 .slide{
        height: 42px;
    }
    .home_tab_sec .title-box{
        padding: 16px 0 24px 0;
    }
    .tab-nav .nav-link{
        font-size: 12px;
        padding: 5px 15px;
    }
    .tab_slider_card h6{
        font-size: 14px;
    }
    .tab_slider_card p{
        font-size: 12px;
    }
    .banner-animation{
         min-height: 600px;
    }
    .hero_circle_row {
        margin-top: 80px;
    }
    .hero-banner-vdo {
        margin-top: 53px;
    }
    .experience-team-card{
      height: 350px;
      margin-bottom: 0;
    }
    .service-vertical-slider .slide{
      position: unset;
      top: 0 !important;
    }
    .banner-text h1{
        margin-top: 10px;
    }
    .banner-video figure{
        border-radius: 20px;
    }
    section#text-2 {
        width: 100%;
        padding-right: 53px;
    }
    section#nav_menu-2 {
        width: 50%;
    }

    section#nav_menu-3 {
        width: 50%;
    }

    section#text-3 {
        width: 100%;
    }
    .contact-num, .contact-email, .contact-address{
        font-size: 14px;
    }
    .contact-num, .contact-email{
        width: auto;
    }
    .num-mail {
        display: flex;
        gap: 20px;
    }
    .col_2{
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .service-vertical-slider{
        margin-top:20px;
    }
    .tab-slider-nav{
        justify-content: center;
        padding: 5px ;
    }
    .tab-slider-nav .nav-btn{
        display: none !important;
    }
    .custom-dots button{
        width: 8px !important;
        height: 8px !important;
    }
    .custom-dots .slick-active button{
        width: 24px !important;
        height: 8px !important;
        border-radius: 16px;
    }
    .counter-box {
        border-radius: 12px;
        padding: 12px;
        border: 1px solid #F0F0F0;
        margin-bottom: 15px;
    }
    .vision-box-inner{
        padding: 24px;
    }
    .vision-box-inner h4{
        font-size: 18px;
        line-height: 24px;
    }
    .vision-box-inner p{
        font-size: 14px;
        line-height: 20px;
    }
    .overlay-content {
        padding: 10px 18px;
        width: 100%;
        bottom: 0;
        border-radius: 0 0 12px 12px;
    }
    .overlay-content p {
        font-size: 12px;
    }
    .overlay-content h5 {
        font-size: 16px;
        line-height: 1.4;
    }
    .m-details h5 {
        font-size: 14px;
        line-height: 24px;
    }
    .m-details p {
        font-size: 10px;
        margin-bottom: 8px;
    }
    .team-sec .row {
        row-gap: 16px;
    }
    .faq-sec .title-box {
        padding-bottom: 10px;
    }
    .faq-inner-sec{
        gap: 16px;
    }
    aside.widget-area.footer-widget {
        padding: 20px 8px;
    }
    p:empty {
        display: none;
    }
    .career-banner .banner-right-img img {
        max-width: 100%;
        right: 0;
    }
    .work-box h4 {
        font-size: 16px;
        line-height: 22px;
    }
    .work-box {
        background: #F9FAFF;
        border: 1px solid #DEE0E3;
        border-radius: 12px;
        padding: 16px;
    }
    .work-box p {
        font-size: 12px;
        margin: 0;
        min-height: 70px;
    }
    .tab-sec-inner .row {
        row-gap: 12px;
    }
    .job-post {
        padding: 24px 16px 0;
    }
    .job-post-title h4 {
        font-size: 16px;
    }
    .job-des {
        padding: 16px 16px 24px;
    }
    .title-box p br {
        display: none;
    }
    .growth-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .growth-box {
        width: 100%;
    }
    .growth-box.active {
        width: 100%;
    }
    .growth-sec .box-img, .growth-sec .box-img img, .growth-sec .box-img-main {
        min-height: 350px;
    }
    .active .overlay-content {
        margin: 0;
    }
    .widget ul li {
        margin-bottom: 8px;
    }
}
@media only screen and (max-width: 575px){
    .header_inr{
        padding: 0 10px;
    }
    .ring-1 {
        width: 18.625em;
        height: 18.625em;
    }
    .ring-3{
            width: 190px;
        height: 190px;

    }
    .ring-1 li {
        width: 32px;
        height: 32px;
        padding: 5px;
    }
    .ring-1>*:nth-of-type(4) {
        transform: rotate(275deg) translate(9.3em) rotate(-275deg);
    }
    .ring-1>*:nth-of-type(5) {
        transform: rotate(335deg) translate(9em) rotate(-335deg);
    }
    .ring-1>*:nth-of-type(6) {
        transform: rotate(395deg) translate(8.95em) rotate(-395deg);
    }
    .ring-1>*:nth-of-type(1) {
        transform: rotate(95deg) translate(8.92em) rotate(-95deg);
    }
    .ring-1>*:nth-of-type(2) {
        transform: rotate(155deg) translate(9.4em) rotate(-155deg);
    }
    .ring-1>*:nth-of-type(3) {
        transform: rotate(215deg) translate(9.5em) rotate(-215deg);
    }
    .orbit-center{
        width: 49px;
        height: 52px;
        border-radius: 9px;
    }
    .orbit-center__iconz
    {
        width: 32px;
    }
    .banner-animation {
        min-height: 400px;
    }
    .tab-sec-inner .nav-btn {
        display: none;
    }
}
