

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4667f9;
  text-decoration: none;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

lottie-player {
  z-index: 3;
  position: relative;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1.5px solid #000000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #000000;
  line-height: 0;
}

.back-to-top:hover, i:hover {
  background: #000000;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.abggf {
  box-sizing: border-box;
}
.loader {
  position: fixed; /* Use fixed to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: rgb(27, 107, 255);
  perspective: 1000px; /* Add perspective for 3D effect */
}

.loader-container {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 3s linear infinite;
}

.loader-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  bottom: -75px;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.7);
  filter: blur(30px);
  transform: rotateX(90deg);
  z-index: -1;
  opacity: 0.7;
}

.loader-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.loader-container img:nth-child(1) {
  transform: rotateY(0deg) translateZ(75px);
}

.loader-container img:nth-child(2) {
  transform: rotateY(90deg) translateZ(75px);
}

.loader-container img:nth-child(3) {
  transform: rotateY(180deg) translateZ(75px);
}

.loader-container img:nth-child(4) {
  transform: rotateY(270deg) translateZ(75px);
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  position:absolute;
  
}

#header.header-scrolled,
#header.header-inner-pages {
  background: transparent;
  padding: 8px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  /* line-height: 1; */
  font-weight: 400;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  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: -5px;
  left: 0;
  background-color: #fff;
  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 .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  border-color: #fff;
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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: 14px;
  color: #2c4964;
}

.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: #4670f9;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4667f9;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4676f9;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: 
  linear-gradient(45deg, rgba(7, 12, 17, 0.4) 0%, rgba(45, 46, 46, 0.3) 100%),
   url("../img/a.jpg") center center no-repeat;
  background-size: cover;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
  z-index: 2;
  position: relative;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #0e45da;
}



#hero .hero-img {
  width: 600px;
  height: auto;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
  background-color: #060708;
}

.about p{
  color: #dadde0;
}
@media (max-width: 445px) {
  .about p{
    font-size: medium !important;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  color: #ebf0f5;
}


.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #1a1b1d;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
  color: #dadde0;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #dadde0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .img-fluid {
  width: 500px;
  height: auto;
}
/*--------------------------------------------------------------
# Call To Action Section


--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  /* background: linear-gradient(90deg, rgba(88, 70, 249, 0.5) 0%, rgba(123, 39, 216, 0.5) 100%), url("../img/counts-bg.png") center center no-repeat; */
  padding: 130px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #000000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
}

.about-boxes {
  background: url("../img/desk.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}

.about-boxes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  
}
.services .icon-box-up {
  z-index: 2;
  position: relative;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #21c94b;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #1dc769;
}

.services .iconbox-black i {
  color: #1d1d1f;
}

.services .iconbox-black:hover .icon i {
  color: #fff;
}

.services .iconbox-black:hover .icon path {
  fill: #1d1d1f;
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background-color: #1b1b1b;
}
.features h2{
  color: #f5f5f5;
}
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #f0f0f0;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #5846f9;
}

.features .icon-box p {
  font-size: 15px;
  color: #c9c9c9;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonials-carousel,
.testimonials .client-slider {
  overflow: hidden;
}
 
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #2c4964;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #a9bffc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4676f9;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4670f9;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

.international-box {
  background: url("../img/m4.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 150px 0;
  position: relative;
  overflow: hidden; /* Ensures no content overflows outside */
}

.international-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.2);
}

.map-image {
  max-width: 100%; /* Adjust size */
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 10;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transitions */
  transform-origin: center; /* Rotate around center */
    /* 3D Animation*/
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  animation: map3DAnimation 5s infinite ease-in-out;
}

/* Keyframes for 3D Animation */
@keyframes map3DAnimation {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: perspective(1000px) rotateX(10deg) rotateY(15deg);
  }
  50% {
    transform: perspective(1000px) rotateX(0deg) rotateY(30deg);
  }
  75% {
    transform: perspective(1000px) rotateX(-10deg) rotateY(15deg);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  } 
}

.map-image:hover {
  animation: none;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background-color: #1a1a1a;

}
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: white;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #dadada;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  z-index: 2;
  position: relative;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
  z-index: 2;
  position: relative;
}

.contact .info-box i {
  font-size: 32px;
  color: #5846f9;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact-info-box {
  z-index: 2;
  position: relative;
}

.contact-info-box h3{
  font-size: 44px;
  padding-left: 90px;
  padding-right: 80px;
  padding-top: 90px;
}
@media (max-width: 991px) {
  .contact-info-box h3{
    font-size: 44px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 85px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  z-index: 1;
  position: relative;
  background: linear-gradient(to right, #004492, #016bc2, #004492) center center no-repeat;
  background-size: 400% 400%;
  animation: gradienterer 5s ease infinite;

}
 @keyframes gradienterer {
         0% {
             background-position: 0% 50%;
         }
         50% {
             background-position: 100% 50%;
         }
         100% {
             background-position: 0% 50%;
         }
     }



#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  z-index: 2;
  position: relative;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  z-index: 2;
  position: relative;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

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

#footer .footer-top .footer-links ul a:hover {
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(123, 39, 216, 0.8);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #5846f9;
}

#footer .copyright-wrap {
  border-top: 1px solid #8577fb;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

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

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

.wave-container {
  position: fixed; /* Use fixed to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: "#fff";
  z-index: 0;
    }

/* Style for the text */

.waves {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  transform: translate3d(0, 0, 0);
  
}

.parallax > use {
  animation: moveWaves 4s linear infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 2s;
}

.parallax > use:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 6s;
}

.parallax > use:nth-child(3) {
  animation-delay: -3s;
  animation-duration: 4s;
}
.parallax > use:nth-child(4) {
  animation-delay: -3s;
  animation-duration: 5s;
}
.parallax > use:nth-child(5) {
  animation-delay: -4s;
  animation-duration: 3s;
}
.parallax > use:nth-child(6) {
  animation-delay: -4s;
  animation-duration: 7s;
}

@keyframes moveWaves {
  0% {
      transform: translate3d(-90px, 0, 0);
  }
  100% {
      transform: translate3d(85px, 0, 0);
  }
}

/* ======= contact form ========= */

.form-contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
  background-color: #e3e8ec;
  padding: 35px;
  
}

.form-contact-intro > * + * {
  margin-top: 1rem;
}

.form-contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.form-contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #2665ee;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.35rem;
  border: none;
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

#result {
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.text-success {
  color: #10b981;
}

.text-error {
  color: #ef4444;
}

.form-contact-form {
  margin-top: 2rem;
}
.form-control {
  z-index: 2;
  position: relative;
}

textarea.form-control {
  resize: vertical;
  min-height: 50px; /* Ensures big message area */
}
.contact .btn-primary:hover {
  background-color: #00579e;
}

.form-btn {
  z-index: 2;
  position: relative;
}



/*  ===== Timeline =====  */
 :root {
  --line: #17e6ff;
  --halo: 2px 4px 8px var(--line);
  --speed: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
 .timeline-section {
  background: linear-gradient(180deg, #050608 0%, #0a0c13 100%);
}
.timeline-section.container {
  padding-left: 0;
  padding-right: 0;
}
.timeline-section {
  width: 100%;
  background-color: #06070e; /* Match your dark background */
  padding: 5rem 1rem;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

  .timeline { position: relative; max-width: 1000px; margin: auto; padding: 5rem 0; }
  .timeline::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--line);
    opacity: 0.15;
    
  }
  .progress-line {
    position: absolute;
    left: calc(50% + 2px);
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--line);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease-out;
    z-index: 1;
  }
  
  .step {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 8rem;
    padding: 3rem 0;
    z-index: 2;
  }
  .step:nth-child(even) { flex-direction: row-reverse; }
  .timeline .content {
    width: calc(50% - 2rem);
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1.6rem 1.9rem;
    border-radius: 12px;
    border: 1.5px solid rgba(176, 226, 255, 0.6);
    opacity: 0;
    transform: translateY(50px) scale(0.92);
    transition: transform var(--speed), opacity var(--speed), box-shadow 0.35s ease;
  }
  .step:nth-child(odd) .content { margin-right: 2rem; }
  .step:nth-child(even) .content { margin-left: 2rem; }
  .timeline .content h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: .45rem; color: #d4d4d4; }
  .timeline .content p  { color: #d4d4d4; }
  .step.is-visible .content {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .step.is-visible .content:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.35), var(--halo);
  }
  @media(max-width: 700px) {
    .step {
       flex-direction: column !important; 
       overflow: hidden;
    
    }
    .timeline .content {
      width: 100%;
      margin: 0 0 0 2.8rem !important;
      overflow: hidden;
      width: calc(80%);
    }
    .timeline::before,
    .progress-line { left: 18px; transform: none; }
  }
  /* ---------- TIMELINE SECTION THEME ---------- */
#timeline {
  /* full-width dark gradient so the coloured line is visible */
  background: linear-gradient(135deg, #06070e 0%, #10121f 100%);
  /* give it a subtle separation from neighbours */
  padding-block: 6rem;
}

/* ensure padding inside container doesn’t collapse */
#timeline > .container,
#timeline.timeline.container {
  padding-left: 0;   /* override Bootstrap’s extra paddings */
  padding-right: 0;
}

/* subtle separator before testimonials so the switch to white feels intentional */
#timeline::after {
  content: "";
  display: block;
  height: 2px;
  width: 120px;
  margin: 4rem auto 0;
  background: var(--line);
  opacity: .25;
  border-radius: 6px;
}

/* =========== Why choose us ==================== */


.features-section .feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(209, 216, 219);
}

.features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 1);
}



.features-section .icon-wrap {
  width: 60px;
  height: 60px;
  font-size: 24px;
  border-radius: 50%;
  transition: 0.3s ease;
  font-size: 36px;
  color: rgb(146, 178, 204); 
  flex-shrink: 0;
}

.features-section .feature-card:hover .icon-wrap {
  color: #0077ff;
}


.features-section .card-title {
  font-weight: 600;
  color: rgb(184, 194, 201);
  text-shadow: 0 0 8px rgb(0, 21, 44);
}

.features-section .card-text {
  color: rgb(194, 202, 209);
  text-shadow: 0 0 8px rgb(0, 21, 44);
}

