/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

@font-face {
  font-family: BebasKai;
  src: url('../fonts/BebasKai.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #04122c;
  --secondary: #1f56c3;
}

html {
  scroll-behavior: smooth;
  height: 100%;
    overflow-x: hidden;
}

body {
  position: relative;
  background: #04122c;
  overflow-x: hidden;
  height: 100%;
  font-family: Poppins, sans-serif
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
  font-family: Poppins, sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  margin: 0;
  font-family: Poppins, sans-serif
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: Poppins, sans-serif
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--secondary);
  font-size: 1.125rem;
  color: var(--white);
  /* text-transform: uppercase; */
  /* font-weight: 500; */
  display: inline-block;
  padding: 1rem 3rem;
  line-height: normal;
  border-radius: 20px;
}

.themeBtn:hover {
  color: var(--white);
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1.5rem 5rem;

  transition: 0.3s ease-in-out;
  background: rgb(5 20 36 / 24%);
}

/* header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: #17187b;
  left: 0;
} */

header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #17187b;
  transition: width 1.5s ease;
}

/* Animation */
header.animate::after {
  width: 100%;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.navbar-brand h1 span {
  color: var(--secondary);
  font-weight: 400;
}

.navbar-nav {
  width: 70%;
  gap: 4.8rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.1400rem;
  color: var(--white);
  /* text-transform: uppercase; */
  /* font-weight: 500; */
  padding: 0 0;
  display: inline-block;
}

header .themeBtn {
  padding: 0.8rem 2rem;
  border-radius: 5px;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */
/*==============================
 Hero Section
===============================*/
.servicesBnnr-section,
.aboutBnnr-section,
.mainBnnr-section {
  background: url(../images/mainBnnr-section.webp) no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.servicesBnnr-section.animate,
.aboutBnnr-section.animate,
.mainBnnr-section.animate {
  opacity: 1;
}

/*==============================
 Left Content
===============================*/
.servicesBnnr-section .content-left,
.aboutBnnr-section .content-left,
.mainBnnr-section .content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Default Animation */
.aboutBnnr-section .content-left .span-1,
.aboutBnnr-section .content-left h1,
.aboutBnnr-section .content-left p,
.aboutBnnr-section .content-left ul,
.aboutBnnr-section .head-btn,


.servicesBnnr-section .content-left .span-1,
.servicesBnnr-section .content-left h1,
.servicesBnnr-section .content-left p,
.servicesBnnr-section .content-left ul,
.servicesBnnr-section .head-btn,

.mainBnnr-section .content-left .span-1,
.mainBnnr-section .content-left h1,
.mainBnnr-section .content-left p,
.mainBnnr-section .content-left ul,
.mainBnnr-section .head-btn {
  opacity: 0;
  transition: .8s ease;
}

/* Span */
.section-10 .head-4 .span-1,
.section-7 .span-1,
.section-10 .head-1 .span-1,
.section-6 .head-1 .span-1,
.section-5 .head-1 .span-1,
.section-update-9 .head-1 .span-1,
.section-update-8 .head-1 .span-1,
.section-4 .head-1 .span-1,
.section-3 .head-1 .span-1,
.section-2 .head-1 .span-1,
.section-update-7 .head-1 .span-1,
.section-update-6 .head-1 .span-1,
.section-update-11 .content .span-1,
.section-update-12 .head-1 .span-1,
.section-update-1 .content .span-1,
.section-12 .head-1 .span-1,
.section-1 .content .span-1,
.servicesBnnr-section .content-left .span-1,
.aboutBnnr-section .content-left .span-1,
.mainBnnr-section .content-left .span-1 {
  background: rgb(31 86 195 / 41%);
  padding: .6rem 3rem;
  border-radius: 50px;
  font-size: 1.4rem;
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 300;

  transform: translateX(-80px);
}

/* Heading */
.servicesBnnr-section .content-left h1,
.aboutBnnr-section .content-left h1,
.mainBnnr-section .content-left h1 {
  font-size: 4.1rem;
  font-weight: 600;
  color: #fff;
  transform: translateY(40px);
}

.servicesBnnr-section .content-left h1 span,
.aboutBnnr-section .content-left h1 span,
.mainBnnr-section .content-left h1 span {
  color: var(--secondary);
  display: block;
  font-weight: 300;
}

/* Paragraph */
.servicesBnnr-section .content-left p,
.aboutBnnr-section .content-left p,
.mainBnnr-section .content-left p {
  font-size: 1.6rem;
  color: #fff;
  transform: translateY(40px);
}

/* List */
.servicesBnnr-section .content-left ul,
.aboutBnnr-section .content-left ul,
.mainBnnr-section .content-left ul {
  padding: 1.3rem 0;
  color: #fff;
  font-size: 1.4rem;
  transform: translateY(40px);
}

.servicesBnnr-section .content-left ul li img,
.aboutBnnr-section .content-left ul li img,
.mainBnnr-section .content-left ul li img {
  padding-right: 1rem;
}

/* Buttons */
.servicesBnnr-section .head-btn,
.aboutBnnr-section .head-btn,
.mainBnnr-section .head-btn {
  transform: translateY(40px);
}

.servicesBnnr-section .head-btn a:nth-child(2),
.aboutBnnr-section .head-btn a:nth-child(2),
.mainBnnr-section .head-btn a:nth-child(2) {
  background: rgb(31 86 195 / 17%);
  border: 1px solid rgb(255 255 255 / 28%);
  margin-left: 1rem;
}

/*==============================
 Right Box
===============================*/
.servicesBnnr-section .content-right,
.aboutBnnr-section .content-right,
.mainBnnr-section .content-right {
  background: url(../images/main-slide-right.png);
  background-size: cover;
  height: 63vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2.8rem;

  opacity: 0;
  transform: scale(.7);
  transform-origin: center;
  transition: .8s cubic-bezier(.175, .885, .32, 1.25);
}

.servicesBnnr-section .content-right h2,
.aboutBnnr-section .content-right h2,
.aboutBnnr-section .content-right p,

.mainBnnr-section .content-right h2,
.mainBnnr-section .content-right p {
  opacity: 0;
  transform: translateY(30px);
  transition: .8s ease;
}

.servicesBnnr-section .content-right h2,
.aboutBnnr-section .content-right h2,
.mainBnnr-section .content-right h2 {
  position: relative;
  color: var(--secondary);
  font-size: 1.5rem;
  padding-bottom: 1.2rem;
}

.servicesBnnr-section .content-right h2::after,
.aboutBnnr-section .content-right h2::after,
.mainBnnr-section .content-right h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width .8s ease;
}

.servicesBnnr-section .content-right p,
.aboutBnnr-section .content-right p,
.mainBnnr-section .content-right p {
  width: 96%;
  font-size: 1.4rem;
  line-height: 1.4;
}

/*==============================
 Animation Sequence
===============================*/

.servicesBnnr-section.animate .content-left .span-1,
.aboutBnnr-section.animate .content-left .span-1,
.mainBnnr-section.animate .content-left .span-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .2s;
}

.servicesBnnr-section.animate .content-left h1,

.aboutBnnr-section.animate .content-left h1,

.mainBnnr-section.animate .content-left h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .4s;
}

.servicesBnnr-section.animate .content-left p,
.aboutBnnr-section.animate .content-left p,
.mainBnnr-section.animate .content-left p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .6s;
}

.servicesBnnr-section.animate .content-left ul,
.aboutBnnr-section.animate .content-left ul,
.mainBnnr-section.animate .content-left ul {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .8s;
}

.servicesBnnr-section.animate .head-btn,
.aboutBnnr-section.animate .head-btn,
.mainBnnr-section.animate .head-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.servicesBnnr-section.animate .content-right,
.aboutBnnr-section.animate .content-right,
.mainBnnr-section.animate .content-right {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.1s;
}

.servicesBnnr-section.animate .content-right h2,
.aboutBnnr-section.animate .content-right h2,
.mainBnnr-section.animate .content-right h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}

.servicesBnnr-section.animate .content-right p,
.aboutBnnr-section.animate .content-right p,
.mainBnnr-section.animate .content-right p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.7s;
}

.servicesBnnr-section.animate .content-right h2::after,
.aboutBnnr-section.animate .content-right h2::after,
.mainBnnr-section.animate .content-right h2::after {
  width: 10%;
  transition-delay: 2s;
}

/* Drop-Down Css End  */
.section-tell::before,
.section-12::before,
.section-update-11::before,
.section-update-1::before,
.section-1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 90vh;
  background: url(../images/sec-1-left-bg.png) no-repeat;
  left: 0;
  top: -62%;
  z-index: -1;
}
.section-tell::after,
.section-12::after,
.section-update-3::after,
.section-update-1::after,
.section-update-11::after,
.section-1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90vh;
  background: url(../images/sec-1-right-bg.png) no-repeat;
  right: 0;
  top: -38%;
  z-index: -1;
}


.section-update-1::before,
.section-1::before,
.section-1::after {
  opacity: 0;
  transform: scale(.8);
  transition: 1s ease;
}

.section-update-1.animate::before,
.section-1.animate::before {
  opacity: 1;
  transform: scale(1);
  transition-delay: .2s;
}

.section-update-3.animate::after,
.section-update-1.animate::after,
.section-1.animate::after {
  opacity: 1;
  transform: scale(1);
  transition-delay: .5s;
}

.section-update-1 .content,
.section-1 .content {
  padding-right: 4rem;
  position: relative;
}

.section-update-1 .content:before,
.section-1 .content:before {
  content: "";
  position: absolute;
  left: -22%;
  height: 61vh;
  background: url(../images/sec-content-bg.png) no-repeat;
  background-size: cover;
  z-index: -1;
  width: 100%;
  bottom: -68%;
}

.section-7 .content .span-1,
.section-update-1 .content .span-1,
.section-1 .content .span-1 {
  transform: translate(0);
}

.section-update-1 .content h2,
.section-1 .content h2 {
  font-size: 3rem;
  font-weight: 600;
  /* padding-bottom: 1rem; */
}

.section-update-1 .content p,
.section-1 .content p {
  padding: 1.2rem 0;
}

/* .mission-sec .content-main, */
.section-update-5 .content-main,
.section-update-3 .content-box,
.section-update-1 .content-box,
.section-update-11 .content-box,
.section-1 .content-box-2,
.section-1 .content-box-1,
.section-1 .content-box {
  position: relative;
  padding: 5rem 3rem;

  border-radius: 10px;
  background: #091d45;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  height: -webkit-fill-available;
}

.section-1 .content-box-1 {
  background: rgb(21 45 86 / 48%);
}

/* Gradient Border */
.section-update-6 .content-box::before,
.section-update-5 .content-main::before,
.section-10 .content-main::before,
.mission-sec .content-main::before,
.section-update-3 .content-box::before,
.section-update-11 .content-box::before,
.section-update-1 .content-box::before,
.section-update-9 .content-box::before,
.section-4-update .content-box::before,
.section-4 .content-box::before,
.section-2 .content-box::before,
.section-1 .content-box-1::before,
.section-1 .content-box::before {
  content: "";
  /* position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: 10px;
  background: linear-gradient(150deg, #199cea 0%, #199cea 21%, rgb(25 156 234 / 2%) 41%, rgba(255, 255, 255, .05) 66%, rgb(70 98 243 / 28%) 72%, #4662f3 81%, #4662f3 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; */

  content: "";
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: 10px;

  background: linear-gradient(120deg,
      #199cea 0%,
      #199cea 20%,
      rgba(25, 156, 234, .08) 35%,
      rgba(255, 255, 255, .05) 50%,
      rgba(70, 98, 243, .10) 65%,
      #4662f3 80%,
      #4662f3 100%);

  background-size: 300% 300%;
  animation: borderGradient 4s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

@keyframes borderGradient {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

}

.section-1 .content-box-2 p,
.section-1 .content-box-1 p,
.section-1 .content-box p {
  line-height: 1.2;
}

.section-1 .content-box-2 p span,
.section-1 .content-box-1 p span,
.section-1 .content-box p span {
  font-size: 2.2rem;
  font-weight: 600;
}



.section-1 .content .span-1,
.section-1 .content h2,
.section-1 .content p,
.section-1 .content .themeBtn {

  opacity: 0;
  transform: translateY(40px);
  transition: .7s ease;
}

.section-1 .content .span-1 {
  transform: translateX(-70px);
}

.section-1.animate .content .span-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .8s;
}

.section-1.animate .content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.section-1.animate .content p:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.section-1.animate .content p:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.section-1.animate .content .themeBtn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}

/*=========================
RIGHT BOXES
==========================*/
.section-update-5 .content-main,
.section-update-10 .content-main,
.section-update-1 .content-box,
.section-update-3 .content-box,
.section-1 .content-box,
.section-1 .content-box-1,
.section-1 .content-box-2 {

  opacity: 0;
  transform: translateY(60px) scale(.9);
  transition: .7s ease;
}

/* Box 1 */

.section-1.animate .content-box-2 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.8s;
}

/* Box 2 */

.section-1.animate .col-lg-6:nth-child(2) .content-box-1 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 2s;
}

/* Box 3 */
.section-update-1.animate .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s;
}

.section-update-5.animate .content-main {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s;
}

.section-update-3.animate .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s;
}

.section-10.animate .content-main {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s;
}

.section-1.animate .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 2.2s;
}

/* Box 4 */

.section-1.animate .col-lg-6:nth-child(4) .content-box-1 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 2.4s;
}

.section-update-6:before,
.section-2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 147vh;
  background: url(../images/section-2-bg.png) no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: -1;
}
.section-12 .head-1,
.section-10 .head-4,
.section-10 .head-1,
.section-6 .head-1,
.section-5 .head-1,
.section-4 .head-1,
.section-3 .head-1,
.section-update-12 .head-1,
.section-update-6 .head-1,
.section-update-7 .head-1,
.section-update-9 .head-1,
.section-update-8 .head-1,
.section-2 .head-1 {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
}

.section-update-7 .head-1::after,
.section-update-6 .head-1::after,
.section-6 .head-1::after,
.section-4 .head-1::after,
.section-2 .head-1::after {
  position: absolute;
  content: "";
  background: url(../images/head-1-bg.png) no-repeat;
  width: 100%;
  height: 89vh;
  bottom: -58%;
  left: 9%;
  z-index: -1;
}
.section-12 .head-1 .span-1,
.section-update-12 .head-1 .span-1,
.section-10 .head-4 .span-1,
.section-update-9 .head-1 .span-1,
.section-update-8 .head-1 .span-1,
.section-update-7 .head-1 .span-1,
.section-update-6 .head-1 .span-1,
.section-10 .head-1 .span-1,
.section-5 .head-1 .span-1,
.section-6 .head-1 .span-1,
.section-4 .head-1 .span-1,
.section-3 .head-1 .span-1,
.section-2 .head-1 .span-1 {
  transform: translate(0);
}
.section-12 .head-1 h2,
.section-update-12 .head-1 h2,
/* .section-12 .head-1 h2, */
.section-10 .head-4 h2,
.section-update-8 .head-1 h2,
.section-update-7 .head-1 h2,
.section-update-6 .head-1 h2,
.section-update-9 .head-1 h2,
.section-10 .head-1 h2,
.section-4-update h2,
.section-6 .head-1 h2,
.section-6 .head-1 h2,
.section-5 .head-1 h2,
.section-4 .head-1 h2,
.section-3 .head-1 h2,
.section-2 .head-1 h2 {
  font-size: 3.1rem;
  line-height: 1.6;
}

.section-update-6 .content-box,
.section-update-9 .content-box,
.section-4-update .content-box,
.section-4 .content-box,
.section-2 .content-box {
  padding: 2rem 3rem;
  backdrop-filter: blur(0.1px);
  background: rgb(206 207 207 / 15%);
  border-radius: 10px;
  margin: 1rem 2rem 2rem 2rem;
  height: -webkit-fill-available;
}

.section-update-6 .content-box h4,
.section-update-9 .content-box h4,
.section-4-update .content-box h4,
.section-4 .content-box h4,
.section-2 .content-box h4 {
  font-size: 1.8rem;
  padding: 1rem 0;
}


.section-update-6 .content-box::before,
.section-4 .content-box::before,
.section-2 .content-box::before {
  padding: 8px;
}

/* ------- */
/* Background */
.section-update-6:before,
.section-2::before {
  opacity: 0;
  transform: scale(.9);
  transition: 1s ease;
}

.section-update-6.animate::before,
.section-2.animate::before {
  opacity: 1;
  transform: scale(1);
}

/*=========================
Heading
==========================*/
.section-update-6 .head-1::after,
.section-2 .head-1::after {
  opacity: 0;
  transform: scale(.8);
  transition: .8s ease;
}

.section--update-6.animate .head-1::after,
.section-2.animate .head-1::after {
  opacity: 1;
  transform: scale(1);
  transition-delay: .3s;
}

.section-update-6 .head-1 .span-1,
.section-2 .head-1 .span-1,
.section-2 .head-1 h2,
.section-2 .head-1 p {

  opacity: 0;
  transition: .7s ease;
}

.section-update-6 .head-1 .span-1,
.section-2 .head-1 .span-1 {
  transform: translateX(-60px);
}

.section-update-6 .head-1 h2,
.section-2 .head-1 h2,
.section-2 .head-1 p {
  transform: translateY(40px);
}

.section-update-6.animate .head-1 .span-1,
.section-2.animate .head-1 .span-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .6s;
}

.section-update-6.animate .head-1 h2,
.section-2.animate .head-1 h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .8s;
}

.section-update-6.animate .head-1 p,
.section-2.animate .head-1 p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/*=========================
Content Boxes
==========================*/
.section-update-6 .content-box,
.section-2 .content-box {
  opacity: 0;
  transform: translateY(70px) scale(.9);
  transition: .7s ease;
}

/* Row 1 */
.section-update-6.animate .row .col-lg-4:nth-child(1) .content-box,
.section-2.animate .row .col-lg-4:nth-child(1) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s ;
}

.section-update-6.animate .row .col-lg-4:nth-child(2) .content-box,
.section-2.animate .row .col-lg-4:nth-child(2) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.9s ;
}

.section-update-6.animate .row .col-lg-4:nth-child(3) .content-box,
.section-2.animate .row .col-lg-4:nth-child(3) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1s ;
}

/* Row 2 */
.section-update-6.animate .row .col-lg-4:nth-child(4) .content-box,
.section-2.animate .row .col-lg-4:nth-child(4) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.1s ;
}

.section-update-6.animate .row .col-lg-4:nth-child(5) .content-box,
.section-2.animate .row .col-lg-4:nth-child(5) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.2s ;
}

.section-update-6.animate .row .col-lg-4:nth-child(6) .content-box,
.section-2.animate .row .col-lg-4:nth-child(6) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.3s ;
}

.section-5:before,
.section-3:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: -20%;
  background: url(../images/section-3-bg.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

.section-5 .swiper-slide .content,
.section-3 .swiper-slide .content {
  padding: 4rem 3rem;
  background: rgb(255 255 255 / 3%);
  border-radius: 10px;
}

.section-8 .content-main .content span,
.section-5 .swiper-slide .content span,
.section-3 .swiper-slide .content span {
  font-family: BebasKai, sans-serif;
  font-size: 3.2rem;
  color: white;
  background: #1e3a8a45;
  /* padding: 0.9rem; */
  width: 90px;
  border-radius: 100%;
  display: block;
  height: 90px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}

.section-5 .swiper-slide .content h3,
.section-3 .swiper-slide .content h3 {
  font-size: 1.9rem;

  padding-bottom: 1rem;

}

.section-5 .swiper-slide .content p,
.section-3 .swiper-slide .content p {
  font-size: 1.1rem;
}

.section-4 .head-1::after {
  background: url(../images/head-2-bg.png) no-repeat !important;
  left: 0;
  height: 75vh;
  bottom: -109%;
}

.section-4 .content-box {
  background: #232f46;
  margin: 1rem 1rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
}

.section-4 .content-box a {
  padding: 1rem 0;
  display: block;
  font-weight: 700;
}

.section-4 .head-1::after {
  opacity: 0;
  transform: scale(.8);
  transition: .8s ease;
}

.section-4.animate .head-1::after {
  opacity: 1;
  transform: scale(1);
  transition-delay: .3s;
}

.section-4 .head-1 .span-1,
.section-4 .head-1 h2,
.section-4 .head-1 p {
  opacity: 0;
  transition: .7s ease;
}

.section-4 .head-1 .span-1 {
  transform: translateX(-60px);
}

.section-4 .head-1 h2,
.section-4 .head-1 p {
  transform: translateY(40px);
}

.section-4.animate .head-1 .span-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .5s;
}

.section-4.animate .head-1 h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .7s;
}

.section-4.animate .head-1 p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .9s;
}

/*=========================
Content Boxes
==========================*/

.section-4 .content-box {
  opacity: 0;
  transform: translateY(70px) scale(.9);
  transition: .7s ease;
}

/* Row 1 */

.section-4.animate .row .col-lg-4:nth-child(1) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.1s;
}

.section-4.animate .row .col-lg-4:nth-child(2) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.3s;
}

.section-4.animate .row .col-lg-4:nth-child(3) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.5s;
}

/* Row 2 */

.section-4.animate .row .col-lg-4:nth-child(4) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.7s;
}

.section-4.animate .row .col-lg-4:nth-child(5) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.9s;
}

.section-4.animate .row .col-lg-4:nth-child(6) .content-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 2.1s;
}




.section-5 .swiper-slide .content {
  height: 360px;
  padding: 2rem 2rem;
}

.section-5 .swiper-slide .content span {
  margin-bottom: 1rem;
}

.section-5 .swiper-slide .content h3 {
  font-size: 1.7rem;
  padding-bottom: 0.7rem;
}

.section-5 .swiper-slide.swiper-slide-active .content {
  background: linear-gradient(2deg,
      rgba(79, 102, 255, 1) 34%,
      rgba(15, 170, 248, 1) 91%);
  border: 1px solid #fff;
}

.section-6:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 108vh;
  background: url(../images/section-6-bg.png) no-repeat;
  background-size: cover;
  z-index: -1;
  top: 49%;

}

/* .section-6 .head-1::after {
  background: url(../images/head-3-bg.png) no-repeat !important;
  left: 0;
  height: 84vh;
  bottom: -9%;
} */

.section-6 .reviewslider .content {
  padding: 3rem 2rem;
  height: 480px;
  /* background: rgb(255 255 255 / 8%); */
  background: rgb(37 50 73 / 61%);
  /* backdrop-filter: brightness(1.3); */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  border: 1px solid var(--secondary);
}

.section-6 .reviewslider .content img {
  padding-bottom: 2rem;
}

.section-6 .reviewslider .content h4 {
  border-top: 2px dashed rgba(255, 255, 255, .8);
  padding-top: 1.2rem;
  font-size: 1.4rem;
  width: 100%;
  height: 97px;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  justify-content: space-evenly;
}

.section-10:before,
.section-7:before {
  content: "";
  position: absolute;
  top: -1%;
  left: 0;
  height: 97vh;
  background: url(../images/section-7-bg.png) no-repeat;
  background-size: cover;
  width: 100%;
  z-index: -1;
}

.section-7 .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 90%;
}

.section-7 .content h2 {
  font-size: 3.2rem;
}

.section-7 .content ul li {
  padding: 0.7rem 0;
}

.section-7 .content ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;

}

.section-7 .content ul li a strong {

  font-weight: 600;
  font-size: 1.3rem;
}


.section-7 form {
  background: #0a2e6e;
  padding: 4rem;
  border-radius: 50px;
  border: 1px solid #fff;
}

.section-7 .form-group {
  margin-bottom: 2rem;
}

.section-7 label {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.section-7 .form-control {
  background: #35518c;
  border: none;
  border-radius: 0;
  color: #fff;
  height: 56px;
  padding: 0 18px;
  font-size: 1rem;
  box-shadow: none;
}

.section-7 textarea.form-control {
  height: 120px;
  resize: none;
  padding: 15px 18px;
}

.section-7 .form-control::placeholder {
  color: #d4d9e8;
}

.section-7 .form-control:focus {
  background: #35518c;
  color: #fff;
  box-shadow: none;
  border: none;
}

.section-7 .submit-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: #2d62d8;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.section-7 .submit-btn:hover {
  background: #3b71e8;
}

.section-update-9 .content-box,
.section-4-update .content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: rgb(12 32 72 / 58%);
}

.section-4-update:before {
  content: "";
  position: absolute;
  /* right: -53%; */
  top: -4%;
  width: 100%;
  height: 100vh;
  background: url(../images/left-update-bg.png) no-repeat;
  left: 0;
  z-index: -1;
}

.section-4-update:after {
  content: "";
  position: absolute;
  right: -53%;
  top: -47%;
  width: 100%;
  height: 100vh;
  background: url(../images/right-update-bg.png) no-repeat;
}

/* 232f46 */
/* Content Animation */

/* .section-2 .content-box img,
.section-2 .content-box h4,
.section-2 .content-box p{
    opacity:0;
    transform:translateY(25px);
    transition:.5s ease;
}

.section-2.animate .content-box img{
    opacity:1;
    transform:translateY(0);
    transition-delay:2.3s;
}

.section-2.animate .content-box h4{
    opacity:1;
    transform:translateY(0);
    transition-delay:2.5s;
}

.section-2.animate .content-box p{
    opacity:1;
    transform:translateY(0);
    transition-delay:2.7s;
} */

.aboutBnnr-section .content-right {
  background: url(../images/about-slide-right.png);
}

.section-update-1 {
  padding-top: 2rem;
}

.section-update-1 .content-box {
  flex-direction: column;
  gap: 0;
  text-align: center;
  background: rgb(9 29 69 / 52%);
  margin: 0 2rem;
}

.section-update-1 .content-box span {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
}




.service-section {
  z-index: 1;
}

.section-update-9:before,
.service-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 25%;
  top: -32%;
  background: url(../images/services-bg.png) no-repeat;
  /* background-size: cover; */
  z-index: -1;
}

.service-section .images-box {
  position: relative;
}

.service-section .images-box img {
  position: relative;
  z-index: 2;

  opacity: 0;
  transform: scale(0.7);
  transition: all 1s ease;
}


.service-section .images-box .line-img {
  position: absolute;
  width: 350px;
  height: 366px;
  background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
  left: -1.4%;
  top: 10%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transform: translateX(200px);

}

.service-section .images-box .line-img-1 {
  position: absolute;
  width: 350px;
  height: 300px;
  background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
  top: 51%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  right: -1%;
}

.service-section.animate img {
  opacity: 1;
  transform: scale(1);
}

.service-section.animate .line-img-1,
.service-section.animate .line-img {
  animation: lineJhatka 0.9s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

@keyframes lineJhatka {

  0% {
    opacity: 0;
    transform: translateX(200px);
  }

  60% {
    opacity: 1;
    transform: translateX(-20px);
  }

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

}


.service-section .content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;


  width: 85%;

}

.service-section .content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.service-section .content span {
  font-size: 1.3rem;
  /* color: #362e2e4a; */
  font-weight: 500;
  line-height: 3.7;
}


.service-section .content-update-1 h2,
.service-section .content h2 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 500;

}

.gradient-text {
  background: linear-gradient(90deg, #199cea 0%, #4662f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* .service-section-3 .content {
  width: 85%;
}

.service-section-3:before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  background: #161614;
  z-index: 0;
  top: 0
}

.service-section-3:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  background: url(../images/service-bg.png) no-repeat rgb(189 143 45 / 22%);
  z-index: -1;
  top: 0;
  right: 0;
} */
.mission-sec .content-main {
  background: rgb(9 29 69 / 52%);
  padding: 5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.mission-sec::before {
  position: absolute;
  content: "";
  background: url(../images/head-3-bg.png) no-repeat;
  width: 100%;
  height: 89vh;
  /* bottom: 0; */
  top: -54%;
  left: 9%;
  z-index: -1;
}


.mission-sec .container {
  position: relative;
  z-index: 2;
}

.mission-sec .sub-heading {
  color: #2d86ff;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.mission-sec .top-area {
  align-items: center;
}
.mission-sec .head-5{
  display: flex;
    align-items: center;
    gap: 2rem;
}
.mission-sec .content-main .head-5 .themeBtn{
display: flex;
}
.mission-sec .content-main::before {
  padding: 7px;
  border-radius: 50px
}

.mission-sec .top-area h2 {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.mission-sec .top-area .themeBtn {
    padding: 14px 10px;
}
.mission-sec .line {
  width: 100%;
  height: 4px;
  /* background: #2d5fbb; */
  margin: 40px 0;
  background: linear-gradient(158deg, #199cea 0%, #199cea -24%, rgba(25, 156, 234, .08) 33%, rgba(255, 255, 255, .05) 70%, rgba(70, 98, 243, .10) 80%, #4662f3 73%, #4662f3 100%);
  background-size: 300% 300%;
}

.mission-sec .mission-text {
  font-size: 22px;
  /* color: #dbe4ff; */
  line-height: 1.7;
  width: 95%;
}

.mission-sec .feature-box {
  display: flex;
  align-items: flex-start;
}

.mission-sec .feature-box img {
  width: 46px;
  margin-right: 18px;
}

.mission-sec .feature-box h4 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.mission-sec .feature-box p {
  margin: 0;
  font-size: 20px;
  color: #dbe4ff;
}

/*==================================
MISSION SECTION ANIMATION
==================================*/

.mission-sec {
  position: relative;

}

/* Background */

.mission-sec::before {
  opacity: 0;
  transform: scale(.9);
  transition: 1s ease;
}

.mission-sec.animate::before {
  opacity: 1;
  transform: scale(1);
}

/* Main Box */

.mission-sec .content-main {
  opacity: 0;
  transform: translateY(80px) scale(.96);
  transition: 1s ease;
}

.mission-sec.animate .content-main {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .3s;
}

/* Border Animation */

.mission-sec .content-main::before {
  opacity: 0;
  transform: scale(.95);
  transition: .8s ease;
}

.mission-sec.animate .content-main::before {
  opacity: 1;
  transform: scale(1);
  transition-delay: .5s;
}

/*==========================
Top Area
==========================*/

.mission-sec .sub-heading,
.mission-sec .icon-box,
.mission-sec .top-area h2,
.mission-sec .top-area .themeBtn {

  opacity: 0;
  transition: .7s ease;
}

.mission-sec .sub-heading {
  transform: translateX(-60px);
}

.mission-sec .icon-box {
  transform: scale(.5);
}

.mission-sec .top-area h2 {
  transform: translateY(40px);
}

.mission-sec .top-area .themeBtn {
  transform: translateX(60px);
}

.mission-sec.animate .sub-heading {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .7s;
}

.mission-sec.animate .icon-box {
  opacity: 1;
  transform: scale(1);
  transition-delay: .9s;
}

.mission-sec.animate .top-area h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.mission-sec.animate .top-area .themeBtn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.3s;
}

/* Lines */

.mission-sec .line {
  transform: scaleX(0);
  transform-origin: left;
  transition: .8s ease;
}

.mission-sec.animate .line {
  transform: scaleX(1);
}

.mission-sec.animate .line:nth-of-type(1) {
  transition-delay: 1.5s;
}

.mission-sec.animate .line:nth-of-type(2) {
  transition-delay: 2.2s;
}

/* Paragraph */

.mission-sec .mission-text {
  opacity: 0;
  transform: translateY(40px);
  transition: .7s ease;
}

.mission-sec.animate .mission-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}

/*==========================
Feature Boxes
==========================*/

.mission-sec .feature-box {
  opacity: 0;
  transform: translateY(50px);
  transition: .7s ease;
}

.mission-sec.animate .bottom-row .col-lg-4:nth-child(1) .feature-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.5s;
}

.mission-sec.animate .bottom-row .col-lg-4:nth-child(2) .feature-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.7s;
}

.mission-sec.animate .bottom-row .col-lg-4:nth-child(3) .feature-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.9s;
}

/* Feature Content */

.mission-sec .feature-box img,
.mission-sec .feature-box h4,
.mission-sec .feature-box p {
  opacity: 0;
  transform: translateY(20px);
  transition: .5s ease;
}

.mission-sec.animate .feature-box img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3s;
}

.mission-sec.animate .feature-box h4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.2s;
}

.mission-sec.animate .feature-box p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.4s;
}

.section-update-3 .head-2 span {
  font-size: 1.3rem;
  font-weight: 500;
}

.section-8 h2,
.section-update-3 .head-2 h2 {
  font-size: 3.2rem;
  padding-bottom: 2rem;
}

.section-update-3 .content-box {
  flex-direction: column;
  text-align: center;
  background: rgb(9 29 69 / 60%);
}

.section-update-3::after {
  background: url(../images/section-update-3.png) no-repeat;
  background-size: contain;
  right: -42%;
  top: -52%;
}

.section-8::before {
  position: absolute;
  content: "";
  background: url(../images/before-bg-1.png) no-repeat;
  width: 100%;
  height: 93vh;
  /* bottom: 0; */
  top: -80%;
  left: 0%;
  z-index: -1;
}
.update-sec-bg-1:after,
.section-update-12:after,
.section-update-7:after,
.section-8:after {
  position: absolute;
  content: "";
  background: url(../images/after-bg-1.png) no-repeat;
  width: 100%;
  height: 123vh;
  /* bottom: 0; */
  top: 9%;
  left: 0%;
  z-index: -1;
}

.section-8 .content-main {
  background: rgb(9 29 69 / 52%);
  padding: 5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.section-8 .content-main .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-8 .content-main .content {
  padding: 0 2rem;
  position: relative;
}

.section-8 .content-main .content h4 {
  font-size: 1.9rem;
  padding: 2rem 0 0;
}

.section-8 .content-main .content p {
  font-size: 1.1rem;
  padding: 1rem 0;
}

.section-8 .content-main .bottom-bar {
  width: 80%;
}

.section-8 .content-main .content span {
  margin: 0;
}

.section-update-7 .content:before,
.section-update-5 .content-main .content-box:before,
.section-8 .content-main .content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #00bfff00 -4%, #1a8dff 108%, rgb(63 108 255 / 56%) 47%, rgb(91 79 255 / 85%) 48%);
  border-radius: 10px;
}
/* .update-sec-bg-1:before, */
.line-hide::before {
  display: none;
}

.line-hide .images-box .line-img-1 {
  top: 53%;
  right: 6%;
}

.service-section .content-update-1 {
  padding: 0rem 0 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.service-section .content-update-1 h2 {
  padding-bottom: 1rem;
}

.service-section .content-update-1 .feature-box:first-of-type {
  padding-top: 2rem;
}

.service-section .content-update-1 .feature-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.4rem 0;
}

.service-section .content-update-1 .feature-box p {
  font-weight: 600;
}

.service-section .content-update-1 p {
  font-size: 18px;

  line-height: 1.5;

}

.section-9:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -50%;
  background: url(../images/after-bg-2.png) no-repeat;
  z-index: -1;
}

.section-9 .content h2 {
  font-size: 3.2rem;
  padding-bottom: 2rem;
}

.section-9 .content p {
  font-size: 1.9rem;
}

.section-9 .content p strong {
  font-weight: 500;
}

.section-9 .content .ul-div {
  display: flex;
  gap: 5rem;
  padding-top: 2rem;
  padding-left: 1rem;
}

.section-9 .content .ul-div ul li {
  list-style: disc;
  color: white;
  padding: 0.5rem 0;
  font-size: 1.2rem;
}

.section-9 .content .ul-div ul li::marker {
  color: var(--secondary);
  font-size: 1.7rem;

}

.section-10 .content-main::before {
  border-radius: 50px;
}

.section-10 .content-main {
  position: relative;
  padding: 5rem 4rem 7rem;
  border-radius: 50px;
  background: rgb(9 29 69 / 52%);
  margin-bottom: 7rem;
}


.section-10 .content-main ul li a {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.section-10 .content-main .content ul li h4 {
  padding-bottom: 0.6rem;
}

.section-10 .content-main .head-1 {
  margin-bottom: 7rem;
}

.section-10 .content-main .head-4:after,
.section-10 .content-main .head-1:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  /* background: #2d5fbb; */
  margin: 40px 0;
  background: linear-gradient(158deg, #199cea 0%, #199cea -24%, rgba(25, 156, 234, .08) 33%, rgba(255, 255, 255, .05) 70%, rgba(70, 98, 243, .10) 80%, #4662f3 73%, #4662f3 100%);
  background-size: 300% 300%;
  left: 0;
  bottom: -45%;

}

.servicesBnnr-section .content-right {
  background: url(../images/main-services-right.png) no-repeat;
  height: 67vh;
}

.servicesBnnr-section .content-left p {
  padding: 1rem 0;
}

.section-update-5 .content-main {
  display: block;
}

.section-update-5 .content-main .content-box {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  justify-content: space-between;
  gap: 1rem;
}

.section-update-5 .content-main .content-box:before {
  left: -9%;
}

.section-update-6:before,
.section-2:before {

  background: url(../images/section-update-6-bg.png) no-repeat;
}

.section-update-6 .content-box ul {
  padding: 2rem 0;
  color: white;
}

.section-update-6 .content-box p {
  font-size: 18px;
}

.section-update-6 .content-box {
  padding: 2rem 2rem;
}

.section-update-7 .content {
  text-align: center;
}

.section-update-7 .content h4 {
  font-size: 1.4rem;
  padding: 1rem 0;
}

.section-update-7 .content p {
  font-size: 1.1rem;

}

.section-update-7 .content:before {
  left: -14%;
}

.section-update-7:after {
  top: -18%;
}

.section-update-8 .serprocessslider .swiper-slide.swiper-slide-active .content {
  background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
  border: 1px solid #fff;
}

.section-update-8 .swiper-slide.swiper-slide-active .content img {
  filter: brightness(0.5);
}


.section-update-8 .content {
  padding: 2rem;
  gap: 1rem;
  display: flex;
  height: 320px;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  /* height: -webkit-fill-available; */
  border-radius: 10px;
  background: rgb(255 255 255 / 3%);
}

.section-update-8 .content p {
  font-size: 1.1rem;
}

.section-update-9 {
  padding-bottom: 3rem;
}

.section-update-9 .content-box {
  margin: 0 0.4rem;
  height: 250px;
  background: rgb(255 255 255 / 11%);
}

.section-update-9 .content-box img {
  width: 90px;
}

.section-update-9 .content-box h4 {
  font-size: 1.5rem;
  text-align: center;
}

.section-update-9:before {
  background: url(../images/section-update-9.png) no-repeat;
  left: 0;
  top: 2%;
  height: 107vh;
}

.section-10 .head-4 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}

.section-10 .head-4:after {
  bottom: -50%;
}

.section-10 .content-head {
  text-align: left;
}

.section-10 .head-btn-1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-10 .head-btn-1 a:nth-child(2) {
  background: transparent;
  border: 1px solid white;
}

.section-update-11 .content-box {
  background: #263148;
  flex-direction: column;
  /* text-align: center; */
  padding: 2rem 3rem;
  align-items: start;
}

.section-update-11::before {
  background: url(../images/before-bg-2.png) no-repeat;
  left: 29px;
  top: 35%;
}

.section-update-11::after {
  background: url(../images/after-bg-3.png) no-repeat;
  right: -78%;
  top: 22%;
}

.section-update-12 .content {
  display: flex;
  gap: 1rem;
  /* background: #fff; */
  background: rgb(255 255 255 / 12%);
  padding: 3rem 2rem;
  margin: 1rem;
  border-radius: 20px;
  height: -webkit-fill-available;
  transition: 0.2s linear;
}

.section-update-12 .content:hover {
  background: var(--secondary);
  cursor: pointer;
}

.section-update-12 .content:hover figure img {
  filter: brightness(4.5);
}

.section-update-12 .content figure {
  width: 20%;
}

.section-update-12 .content .box-content {
  width: 80%;
}

.section-update-12 .content h4 {
  font-size: 1.5rem;
  padding: 0rem 0 1rem;
}

.section-update-12 .content p {
  font-size: 1.1rem;
}

.section-update-12:after {
  background: url(../images/after-bg-4.png) no-repeat;
  height: 121vh;
  /* bottom: 0; */
  top: 29%;
  left: 0%;
}

/*=============================
SECTION UPDATE 12 ANIMATION
=============================*/



/* Background */

.section-update-12::after {
  opacity: 0;
  transform: scale(1.08);
  transition: 1.2s ease;
}

.section-update-12.animate::after {
  opacity: 1;
  transform: scale(1);
}

/* Heading */

.section-update-12 .head-1 .span-1,
.section-update-12 .head-1 h2,
.section-update-12 .head-1 p {
  opacity: 0;
  transition: .7s ease;
}

.section-update-12 .head-1 .span-1 {
  transform: translateX(-60px);
}

.section-update-12 .head-1 h2 {
  transform: translateY(40px);
}

.section-update-12 .head-1 p {
  transform: translateY(40px);
}

.section-update-12.animate .head-1 .span-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .2s;
}

.section-update-12.animate .head-1 h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .4s;
}

.section-update-12.animate .head-1 p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .6s;
}

/*=============================
Content Boxes
=============================*/

.section-update-12 .content {
  opacity: 0;
  transform: translateY(70px) scale(.95);
  transition: .7s ease;
}

/* Row 1 */

.section-update-12.animate .col-lg-4:nth-child(1) .content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .5s ;
}

.section-update-12.animate .col-lg-4:nth-child(2) .content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1s ;
}

.section-update-12.animate .col-lg-4:nth-child(3) .content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.1s ;
}

/* Row 2 */

.section-update-12.animate .col-lg-4:nth-child(4) .content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.3s ;
}

.section-update-12.animate .col-lg-4:nth-child(5) .content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.4s ;
}

.section-update-12.animate .col-lg-4:nth-child(6) .content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.5s ;
}

.section-12 .content {
  display: flex;
}

.section-12 .content span {
  display: block;
  padding: 1rem 1.5rem;
  background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
  border-radius: 10px;
  margin: 0 2rem 2rem;
  font-size: 2.4rem;
  color: var(--white);
}

.section-12 .content .box-content h4 {
  font-size: 1.9rem;
  padding-bottom: 0.4rem;
}

.section-12 .content .box-content p {
  font-size: 1.1rem;
}

.section-12::before {
    background: url(../images/before-bg-2.png) no-repeat;
    left: -5%;
    top: 70%;
}
.section-12::after {
    background: url(../images/after-bg-5.png) no-repeat;
    right: -78%;
    top: 22%;
}
.section-12.animate figure img{
    animation: wheelRotate 1.8s ease-out forwards !important;
}

@keyframes wheelRotate{

    0%{
        transform:rotate(-360deg) scale(.8);
        opacity:0;
    }

    70%{
        transform:rotate(20deg) scale(1.05);
        opacity:1;
    }

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

}
.section-update-9 .content-update-2 {
    padding: 2rem 1rem;
    gap: 0.5rem;
    display: flex;
    height: 290px;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    /* height: -webkit-fill-available; */
    border-radius: 10px;
    background: rgb(255 255 255 / 11%);
    margin: 0 0.4rem;
}
.section-update-9 .content-update-2 h4{
    font-size: 1.5rem;
}
.section-update-9 .content-update-2 p{
    font-size: 1.1rem;
}


.section-update-8 .content-update-5{
    padding: 2rem;
    gap: 0.4rem;
    display: flex;
    height: 257px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    /* height: -webkit-fill-available; */
    border-radius: 10px;
    background: rgb(255 255 255 / 3%);
}

.section-update-6 .ul-content {
    padding: 1rem 0 2rem !important;
  
}
.ul-content li {
    list-style: none;
    position: relative;
    padding-left: 35px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.ul-content li::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 3px;
    width: 37px;
    height: 24px;
    background: url(../images/check-small.png) no-repeat center;
    background-size: contain;
}
.section-update-6 .contetn-bottom h5{
    padding: 1rem 0;
    border-top: 2px solid var(--secondary); 
}
.section-update-6 .add-content-css{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
}


.update-sec-bg-1::before {
    position: absolute;
    content: "";
    background: url(../images/before-bg-3.png) no-repeat;
    width: 100%;
    height: 123vh;
    /* bottom: 0; */
    top: -64%;
    left: 0%;
    z-index: -1;
}
/*=============================
Inner Content
=============================*/

/* .section-update-12 .content figure,
.section-update-12 .content h4,
.section-update-12 .content p{
    opacity:0;
    transition:.5s ease;
}

.section-update-12 .content figure{
    transform:scale(.5) rotate(-15deg);
}

.section-update-12 .content h4{
    transform:translateX(25px);
}

.section-update-12 .content p{
    transform:translateY(20px);
}

.section-update-12.animate .content figure{
    opacity:1;
    transform:scale(1) rotate(0);
    transition-delay:2s;
}

.section-update-12.animate .content h4{
    opacity:1;
    transform:translateX(0);
    transition-delay:2.15s;
}

.section-update-12.animate .content p{
    opacity:1;
    transform:translateY(0);
    transition-delay:2.3s;
} */

/* .service-section . */

/* * contact-page */
.update-sec-bg-2{
  background: url(../images/mainBnnr-contact.png) no-repeat;
      height: 111vh;
}
.address-tab {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;

}

.address-tab a {
  color: var(--white)
}

.address-tab p {
  font-size: 22px;
  padding: 10px 0;
  color: var(--white);
  text-transform: capitalize;
}

.address-tab .tel-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;

}

.address-tab:nth-of-type(1) .tel-icon {
background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
}

.address-tab:nth-of-type(2) .tel-icon {
background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
}

.address-tab:nth-of-type(3) .tel-icon {
 background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
}

.address-tab .loc-tab {
  background: #000;
}

.tel-icon i {
  font-size: 3rem;
  color: #fff;
}

.contact-map-sec iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 0;
}

.location-img {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.location-box {
  padding: 0;
  margin: 0;
  border: 7px solid #ffffff;
  border-radius: 17px;

}
/* footer */
footer {
  /* background-image: url(../images/footer-bg.png); */
  background-size: cover;
  /* background-position: top left; */
  padding: 7rem 0 0rem 0px;
  /* background-repeat: no-repeat; */
  background: #010a19;
  position: relative;
}

.contact-before {
  position: absolute;
  top: -19%;
  right: 24%;
}

.footer-menu {
  display: flex;
  gap: 0.5rem;
  padding: 0px 0rem 1.6rem 0;
  /* margin: 0.6rem 0 0; */
  /* padding-top: 4rem; */
  /* padding: 2.2rem 0; */
  /* border-top: 1px solid #fff; */
  /* border-bottom: 1px solid #fff; */
  /* margin-top: 2rem; */
  flex-direction: column;
}

.footer-menu li::marker {
  color: white;
}

.footer-menu li:nth-child(1) {
  list-style: none;
}

.footer-menu li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  transition: all 0.4s;
  text-transform: uppercase;
  padding-left: 1rem;
}

.footer-menu li a:hover {
  color: var(--white);
}


.copyright-content {
  display: flex;
  justify-content: space-between;
  background: #08152f;
  padding: 2rem 10rem;
}

.copyright-content ul {
  display: flex;
  gap: 1rem;
}

.copyright-content ul li a {
  color: var(--white);
}

.copyright-content p {
  font-size: 17px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  /* border-top: 1px solid #fff; */
  /* padding: 1.5rem 0; */

}

.copyright-content p span {
  font-weight: 700;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-links li a i {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid white;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.footer-social-links li a i:hover {
  background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
  border-color: transparent;
  border: none;
  color: var(--white)
}

.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: start;
  /* height: 330px; */
  /* background: #f7f9f8; */
  padding: 2.8rem 0;
  border-radius: 20px;
  position: relative;
  top: -37px;
}

.brand-footer p {
  padding: 1rem 0;
}

.brand-footer p strong {
  font-weight: 700;
}

.quickList h3 {
  color: var(--white);
  font-size: 2rem;
  padding-bottom: 0.7rem;
  font-family: "Poppins", sans-serif;
}

.calFoter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.calFoter li {
  display: flex;
  gap: 0.5rem;
}

.calFoter li:first-child {
  width: 100%;
}

.calFoter li a,
.calFoter li span {
  font-size: 21px;
  color: #fdfdfd;
  transition: all 0.4s;
}

.calFoter li a:hover,
.calFoter li span:hover {
  color: var(--white);
}

.calFoter li i {
  color: #fdfdfd;
  margin-top: 6px;
}

.map-location iframe {
  border-radius: 20px;
}

.footer-sign p {
  color: white;
  font-size: 1.3rem;
  line-height: 1.7;
  padding-bottom: 1.1rem;
}

.footer-sign input {
  width: 57%;
  padding: 0.9rem;
  border-radius: 37px;
  border: none;
}

.footer-sign input::placeholder {
  color: var(--black);
}

.footer-sign .themeBtn {
  border: none;
  border-radius: 55px;
  background: linear-gradient(2deg, rgba(79, 102, 255, 1) 34%, rgba(15, 170, 248, 1) 91%);
}


figure.industries-banner {
    margin-top: 6rem;
}

strong.skipline {
    line-height: 79px;
}


section.section-3.my-custom-section {
    padding: 0;
}


.head-1.custom-card-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.8s;
    padding: 4rem 5rem;
    backdrop-filter: blur(0.1px);
    background: rgb(206 207 207 / 15%);
    border-radius: 20px;
}

/* Form ki css */

#form-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 5px;
    font-size: 15px;
}

#form-message.success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}
