/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Colors */
:root {
  --color-default: #01102D;
  --color-primary: #6D4FFF;
  --color-secondary: #04FBFD;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*General -*/

body {
  color: var(--color-default);
  overflow-x: hidden;
  font-family: 'Fira Sans', sans-serif;
  font-family: 'Inter', sans-serif;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #01102D;
  text-decoration: none;
}

p {
  color: #5B5B5B;
}

/*- # Sections & Section Header -*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*- # Breadcrumbs -*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*- # Scroll top button -*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #01102D;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*- # Preloader -*/

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*-# Disable aos animation delay on mobile devices -*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*- # Header -*/

.header {
  z-index: 997;
  position: absolute;
  padding: 20px 0;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #2D3957;
  position: fixed;
  background-image: url(../img/header.png);
  width: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;

}

.header .logo h1 span {
  color: #fff;
}

/*- # Desktop Navigation -*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 0px 25px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;

    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    top: 65px;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*- # Mobile Navigation -*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;

    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}


.body {
  background-image: url("../img/Bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 110vh;
  padding: 100px 0 0;
  position: relative;
  height: 100vh;
}

.body:after {
  content: "";
  background-image: url("../img/starimage.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 100PX;
  position: absolute;
}

.body video {
  height: 100vh;
}

.marque {
  background: linear-gradient(90.72deg, #00FFFD 0.18%, #B133FF 100%);
  width: 100%;
  height: 50px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.marque span {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px;
}

/*- # Hero Section -*/

.hero {
  overflow-x: hidden;
  padding: 0;
  position: absolute;
  width: 100%;
  top: 250px;
}

.hero .carousel {
  width: 75%;
  min-height: 100vh;
  padding: 80px 0;
  margin: auto;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
  margin: 80px auto;
}

.joined-to-item {
  width: 200px;
  height: 167px;
  background: var(--color-primary);
  position: absolute;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  top: 40px;
  left: -40px;
  z-index: 9;
}

.star-rating {
  position: absolute;
  width: 210px;
  height: 70px;
  z-index: 99;
  top: 450px;
  right: -50px;
  background: var(--color-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}


.hero .info h2,
.infoContent h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  position: relative;
}

.infoContent {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
}

.infoContent span {
  background: -webkit-linear-gradient(45deg, #00FFFD, #B133FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }

  .marque span {
    font-size: 16px;
  }
}

.hero .info p,
.infoContent p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started,
.btn-get-started {
  background: transparent;

  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover,
.btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}


.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}


.buttonsection {
  background-color: #fff;
  width: 375px;
  height: 45px;
  border-radius: 50px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px auto 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
}

.buttonsection a {
  color: #272727;
  font-weight: 600;
  padding: 8px 32px;
  border-radius: 45px;
}

.buttonsection a:hover {
  color: #fff;
  background-color: var(--color-primary);
  padding: 8px 32px;
  border-radius: 45px;
}

.slideactive {
  color: #fff !important;
  background-color: var(--color-primary);
  padding: 8px 32px;
  border-radius: 45px;
}


@media (max-width: 991px) {
  .body {
    background-size: 100vh;
    height: calc(100vh - 400px);
  }

  .hero .carousel {
    min-height: 50vh;
  }

  .hero .info h2,
  .infoContent h2 {
    font-size: 26px;
  }

  .buttonsection a:hover {
    pointer-events: none
  }
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }

  .body {
    background-size: 100vh;
    height: calc(100vh - 350px);
  }

  .hero .carousel {
    min-height: 70vh;
  }
}

@media (max-width: 580px) {
  .body {
    height: calc(100vh - 310px);
  }

  .hero .carousel {
    min-height: 50vh;
  }

  .hero .info h2,
  .infoContent h2 {
    font-size: 26px;
  }

  .buttonsection {
    font-size: 12px;
    margin: 20px;
    width: auto;
    top: -20px;
  }

  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

@media (max-width: 376px) {

  .body {
    height: calc(100vh - 240px);
  }

  .hero .carousel {
    min-height: 50vh;
  }

  .buttonsection {
    font-size: 12px;
  }

  .marque {
    height: 30px;
  }

  .marque span {
    font-size: 12px;
  }
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

/* - About -*/

.about {
  background-color: #fff;
}

.about .top-heading {
  text-align: center;
  padding-bottom: 15px;
}

.about p {
  text-align: center;
}

/* - services -*/

.services {
  background: linear-gradient(0deg, #EFF2F5, #EFF2F5),
    linear-gradient(0deg, #F6F9FC, #F6F9FC);
}

.services .top-heading {
  text-align: center;
  padding-bottom: 15px;
}

.services p {
  text-align: center;
}

.services .card {
  padding: 20px;
  border: 0;
  border-radius: 20px;
  height: 370px;
}

.services .card .card-title {
  margin: 20px 0;
}

.services .card .card-body .iconbox {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0EDFF;
  border-radius: 10px;
  margin-bottom: 20px;
}

.services .card-text {
  text-align: left;
}

@media (max-width: 768px) {
  .about {
    padding-top: 50px;
  }
}

@media (max-width: 580px) {
  .about {
    padding-top: 0;
  }

  .services .card {
    height: auto;
  }
}

/* - ourproject -*/

.ourproject {
  background-image: url("../img/innerBg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1005;

}

.ourproject .top-heading {
  text-align: center;
  color: #fff;
  padding-bottom: 15px;
}

.ourproject .projectcard {
  background: linear-gradient(104.07deg, rgba(255, 255, 255, 0.6) -16.95%, rgba(255, 255, 255, 0.1) 12.3%, rgba(255, 255, 255, 0.3) 89.93%, rgba(255, 255, 255, 0.6) 117.48%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
}

.ourproject .projectcard .arrow {
  position: absolute;
  right: 20px;
  top: 20px;
}

.ourproject .projectcard .imgpro img {
  border-radius: 30px;
  background-color: #fff;
}

.ourproject .projectcard .procontent {
  padding: 20px;
  color: #fff;
}

.ourproject .projectcard .procontent h3,
.ourproject .projectcard .procontent p {
  color: #fff;
}


.ourproject .projectcard span {
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #fff;
  color: var(--color-primary);
  margin: 10px 0;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 991px) {
  .ourproject .projectcard {
    flex-direction: column;
    align-items: self-start;
  }

  .ourproject .projectcard .imgpro img {
    max-width: 100%;
  }
}

/* - ourvalue -*/

.ourvalue {
  background: linear-gradient(0deg, #EFF2F5, #EFF2F5),
    linear-gradient(0deg, #F6F9FC, #F6F9FC);

}

.ourvalue .ourimg {
  position: relative;
  z-index: 0;
}

.ourvalue .ourimg::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 110px;
  background-image: url(../img/ourvalue.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.ourvalue .top-heading {
  text-align: center;
  padding-bottom: 15px;
}

.ourvalue .card {
  padding: 20px;
  border-radius: 20px;
  border: none;
  height: 245px;
}

/* - Aspiration -*/


.aspiration .aspirbox {
  background: -webkit-linear-gradient(45deg, #221863, #074C69) !important;

  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.aspiration .aspirbox::after {
  content: " ";
  width: 500px;
  height: 500px;
  position: absolute;
  background-image: url("../img/V1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: -20px;
  left: 0;
  z-index: -1;
}

.aspiration .aspirbox::before {
  content: " ";
  width: 140px;
  height: 250px;
  position: absolute;
  background-image: url("../img/V2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: -25px;
  right: 0;
  z-index: -1;
}

.aspiration .aspirbox .aspimg img {
  width: 500px;
  padding: 50px 50px 0;
}

.aspiration .aspirbox .aspcontent h3,
.aspiration .aspirbox .aspcontent p {
  color: #fff !important;
}

.aspiration .aspirbox .aspcontent p {
  padding-right: 90px;
}

@media (max-width: 991px) {
  .aspiration .aspirbox {
    flex-direction: column;
  }

  .aspiration .aspirbox .aspcontent {
    margin: 20px 0;
  }

  .aspiration .aspirbox .aspcontent p {
    padding-right: 0;
  }
}

@media (max-width: 580px) {

  .aspiration .aspirbox .aspimg img,
  .aspiration .aspirbox::before,
  .aspiration .aspirbox::after {
    max-width: 100%;
  }
}

/*-
# Footer
-*/
.footer {
  /* color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover; */
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
  background-color: #01102D;
}

.footer:before {
  content: "";
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 22px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;

  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links img {
  max-width: 100%;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

@media (max-width: 580px) {
  .footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}