/* ===============================
   1. RESET
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{text-decoration: none;}
.button-theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.button-theme1 .left-arrow {
    position: absolute;
    left: 0px;
    top: 3px;
    opacity: 0;
    width: 48px;
    height: 48px;
    font-size: 16px;
    line-height: 48px;
    border-radius: 50px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background-color: #00255c;
    transition: all 500ms ease;
}
.button-theme1:hover .left-arrow {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.button-theme1 .left-arrow i, .button-theme1 .left-arrow svg, .button-theme1 .right-arrow i, .button-theme1 .right-arrow svg {
    width: 10px;
}
.button-theme1 .theme-btn {
    position: relative;
    font-size: 16px;
    padding: 12px 34px;
    border-radius: 50px;
    display: inline-flex;
    text-transform: capitalize;
    color: #fff;
    background-color: #00255c;
    transition: all 300ms ease;
}
.button-theme1:hover .theme-btn {
    -webkit-transform: translateX(48px);
    -moz-transform: translateX(48px);
    -ms-transform: translateX(48px);
    transform: translateX(48px);
}
.button-theme1 .right-arrow {
    position: relative;
    font-size: 16px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    color: #fff;
    background-color: #00255c;
    transition: all 300ms ease;
}
.button-theme1:hover .right-arrow {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* ===============================
   2. BASE STYLES
================================= */
body {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-style: normal;
  background-color: #f0faff;
  line-height: 1.6;
  position: relative;
}

/* ===============================
   3. MENU / NAVBAR
================================= */
.menu-section {
  position: absolute; /* change to fixed if needed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.menu-section .navbar-brand img {
  width: 200px;
  max-width: 100%;
}

.menu-section .nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 10px;
  text-decoration: none;
}

/* Buttons */
.menu-section a.btn {
  display: inline-block;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  font-weight: 500;
  margin: 0 10px;
  padding: 10px 20px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.1);
  transition: all 0.3s ease;
}

.menu-section a.btn.login-btn {
  color: #ffffff;
  background-color: #23a8e0;
}

.menu-section a.btn.register-btn {
  color: #23a8e0;
  background-color: #ffffff;
  border: 1px solid #23a8e0;
}

.menu-section a.btn:hover,
.menu-section a.btn:focus {
  color: #ffffff;
  background-color: #23a8e0;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.6);
}

.menu-section a.btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* ===============================
   4. BANNER SECTION
================================= */
.banner-section {
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Gradient Background Effects */
.banner-section::before,
.banner-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.banner-section::before {
  top: 110%;
  width: 120vw;
  height: 120vw;
  max-width: 1300px;
  max-height: 1300px;
  background: linear-gradient(
    180deg,
    rgba(35, 168, 224, 0.16) 0%,
    rgba(35, 168, 224, 0.12) 20%,
    rgba(35, 168, 224, 0) 60%
  );
}

.banner-section::after {
  top: 110%;
  width: 140vw;
  height: 140vw;
  max-width: 1500px;
  max-height: 1500px;
  background: linear-gradient(
    180deg,
    rgba(35, 168, 224, 0.16) 0%,
    rgba(35, 168, 224, 0.12) 20%,
    rgba(35, 168, 224, 0) 60%
  );
}

/* Banner Content */
.banner-section .content {
  width: 80%;
  margin: 0 auto;
}

.banner-section .content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.banner-section .content h1 span {
  font-size: 60px;
}

.banner-section .content .data {
  width: 70%;
  margin: 0 auto;
}

/* ===============================
   5. SINGLE COUNTRY TAGS
================================= */
.banner-section .single-country {
  padding: 10px 30px;
  background: #ffffff;
  border-radius: 100px;
  backdrop-filter: blur(6px) saturate(120%);
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.12);
}

.banner-section .single-country a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
}

/* Left Side Positions */
.banner-section .single-country.one { top: 20%; left: 5%; }
.banner-section .single-country.two { top: 30%; left: 7%; }
.banner-section .single-country.three { top: 40%; left: 9%; }
.banner-section .single-country.four { top: 50%; left: 11%; }
.banner-section .single-country.five { top: 60%; left: 15%; }
.banner-section .single-country.six { top: 70%; left: 19%; }
.banner-section .single-country.seven { top: 80%; left: 25%; }

/* Right Side Positions */
.banner-section .single-country.eight { top: 20%; right: 5%; }
.banner-section .single-country.nine { top: 30%; right: 7%; }
.banner-section .single-country.ten { top: 40%; right: 9%; }
.banner-section .single-country.eleven { top: 50%; right: 11%; }
.banner-section .single-country.twelve { top: 60%; right: 15%; }
.banner-section .single-country.thirteen { top: 70%; right: 19%; }
.banner-section .single-country.fourteen { top: 80%; right: 25%; }








.about-section {
  position: relative;
  padding: 0 0 103px;
  border-bottom: 1px solid rgba(0, 37, 92, 0.1019607843);
}
@media (max-width: 1199.98px) {
  .about-section {
    padding: 0 0 233px;
  }
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 0 0 193px;
  }
}
@media (max-width: 575.98px) {
  .about-section {
    padding: 0 0 80px;
  }
}
.about-section .sub-title{
      font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    color: #666666;
}
.about-section .content-column .inner-column {
  margin-top: 20px;
}
.about-section .content-column .inner-column .sec-title-h3 .title {
  margin-bottom: 30px;
  letter-spacing: -1px;
  max-width: 440px;
}
.about-section .content-column .inner-column .sec-title-h3 .text {
  max-width: 502px;
  margin-bottom: 36px;
}
.about-section .content-column .inner-column .sec-title-h3 .text a {
  text-decoration: underline;
  color: var(--theme-color2);
}
.about-section .content-column .inner-column .bottom-box .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 93px;
}
@media (max-width: 1399.98px) {
  .about-section .content-column .inner-column .bottom-box .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.about-section .content-column .inner-column .bottom-box .inner-box .list-style-four {
  margin-top: 5px;
}
.about-section .content-column .inner-column .bottom-box .inner-box .list-style-four li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color-black);
}
.about-section .content-column .inner-column .bottom-box .inner-box .list-style-four li .icon {
  width: 25px;
  height: 25px;
  line-height: 27px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  margin-right: 15px;
  display: block;
  text-align: center;
  color: var(--theme-color-white);
}
@media (max-width: 1399.98px) {
  .about-section .content-column .inner-column .bottom-box .inner-box .exp-box {
    margin-bottom: 30px;
  }
}
.about-section .content-column .inner-column .bottom-box .inner-box .exp-box .exp {
  padding: 30px 44px;
  background: #FAF8F7;
  border-top: 5px solid var(--theme-color1);
  max-width: 200px;
}
.about-section .content-column .inner-column .bottom-box .inner-box .exp-box .exp .text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-color-black);
  line-height: 28px;
}
.about-section .content-column .inner-column .bottom-box .inner-box .exp-box .exp .count-box {
  font-size: 65px;
  font-weight: 500;
  line-height: 1;
  color: var(--theme-color1);
  letter-spacing: -1px;
}
.about-section .image-column .inner-column {
  position: relative;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column {
    margin-top: 30px;
  }
}
.about-section .image-column .inner-column .image-1 {
  text-align: right;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column .image-1 {
    margin-left: 183px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media (max-width: 575.98px) {
  .about-section .image-column .inner-column .image-1 {
    margin: 0;
  }
}
.about-section .image-column .inner-column .image-2 {
  margin-top: -460px;
}
@media (max-width: 575.98px) {
  .about-section .image-column .inner-column .image-2 {
    display: none;
  }
}
.about-section .image-column .inner-column .tm-animation-floating {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0px;
  width: 100%;
  z-index: 1!important;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  -webkit-animation-name: tm-animation-floating;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: Floating;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
}







/* ===============================
   6. WORKING PROCESS SECTION
================================= */
.working-process-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.working-process-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/testimonial-map.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

/* ===============================
   7. RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {

  .banner-section .content h1 {
    font-size: 36px;
  }

  .banner-section .content h1 span {
    font-size: 42px;
  }

  .banner-section .content .data {
    width: 90%;
  }

  .banner-section .single-country {
    display: none;
  }
}

@media (max-width: 576px) {

  body {
    font-size: 16px;
  }

  .banner-section {
    padding: 80px 20px;
  }

  .banner-section .content {
    width: 100%;
  }
}








header{position: absolute; left: 0; right: 0; top: 10px; width: 100%; z-index: 11; padding: 0px 80px;}
header nav{background: #00255c82; padding: 10px 10px!important; border-radius: 8px;}
header nav .navbar-brand{padding: 0; margin: 0;}
header nav .navbar-brand img{
  background: #fff;
  width: 200px;
  border-radius: 8px;
  padding: 4px 10px;
}
header nav .nav-link{color: #fff; text-transform: uppercase; margin: 0px 10px;}
header nav .nav-link.active{color: #f7891a!important;}
header nav .nav-link:hover{color: #f7891a!important;}
header nav .button-theme1 .left-arrow {
    background-color: #f7891a;
}
header nav .button-theme1 .theme-btn {
    background-color: #f7891a;
}
header nav .button-theme1 .right-arrow {
    background-color: #f7891a;
}

.hero-section .slider{
  position: relative;
  background-image: url('../images/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  color: #ccc;
  padding: 0px 80px;
  
}
.hero-section .slider:before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
    background-color: transparent;
  --background-overlay: '';
  background-image: linear-gradient(180deg, #000000A1 38%, #00255c 77%);
  z-index: -1;
  width: 100%;
  height: 100%;;
}
.hero-section .slider .row{align-items: end; min-height: 800px;}
.hero-section .slider .slider-caption{padding-bottom: 60px;}
.hero-section .slider h1{color: #fff; margin-bottom: 30px;}
.hero-section .button-theme1 .left-arrow {
    background-color: #f7891a;
}
.hero-section .button-theme1 .theme-btn {
    background-color: #f7891a;
}
.hero-section .button-theme1 .right-arrow {
    background-color: #f7891a;
}

.hero-section .registration-form{
  position: relative;
  background-color: #fff;
  z-index: 1;
  color: #ccc;
  padding: 100px 40px 0px 40px;
  min-height: 800px;
}
.hero-section .registration-form:after{position: absolute; content: ''; bottom: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../images/shape-dark-img.png'); background-position: bottom center; background-size: contain;
  background-repeat: no-repeat; z-index: -1; opacity: 0.2;
}
.hero-section .registration-form .tm-animation-floating {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  -webkit-animation-name: tm-animation-floating;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: Floating;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
}


.working-process-section {
    position: relative;
    z-index: 1;
}

.working-process-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/testimonial-map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
}
.working-process-section .container{position: relative; z-index: 1;}
.working-process-section .container::after {
    content: "";
    position: absolute;
    top: 180px;
    left: 0px;
    background-size: 1100px;
    width: 1320px;
    height: 131px;
    background-image: url('../images/icon-line-1.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
        
}


.working-process-section .heading{text-align: center; max-width: 50%; margin: 0 auto;
  margin-bottom: 60px;}
.working-process-section .heading h4{font-size: 14px; text-transform: uppercase;}

.working-process-section .working-block {
  margin-bottom: 30px;
}
.working-process-section .working-block .inner-box {
  position: relative;
  text-align: center;
  margin: 0 25px 0;
}
.working-process-section .working-block .inner-box:hover i {
  color: #fff;
  background-color: #23a8e0;
}
.working-process-section .working-block .inner-box:hover i.icon-two {
  background: #fff;
  color: #23a8e0;
  border: none;
}
.working-process-section .working-block .inner-box:hover .content {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}
.working-process-section .working-block .inner-box:hover .content:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid var(--theme-color-light);
}
.working-process-section .working-block .inner-box:before {
  /* content: ""; */
  /* position: absolute; */
  /* bottom: 85px; */
  /* right: -50px; */
  /* width: 40px; */
  /* height: 40px; */
  /* background-image: url(../../../images/current-theme/icon-arrow2.png); */
}
@media (max-width: 1199.98px) {
  .working-process-section .working-block .inner-box:before {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .working-process-section .working-block .inner-box:before {
    margin: 89px 25px 0;
  }
}
@media (max-width: 991.98px) {
  .working-process-section .working-block .inner-box:before {
    margin-top: 0;
  }
}
.working-process-section .working-block .inner-box .icon-box {
  position: relative;
  display: inline-block;
}
.working-process-section .working-block .inner-box .icon-box .icon-two {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background-color: #23a8e0;
  transition: all 300ms ease;
}
.working-process-section .working-block .inner-box i {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #23a8e0;
  box-shadow: 0 10px 60px rgba(226, 9, 53, 0.2);
  border: 3px dashed #23a8e0;
  background-color: #fff;
  text-align: center;
  transition: all 300ms ease;
}
.working-process-section .working-block .inner-box i:before {
  position: relative;
  display: inline-block;
  transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
  .working-process-section .working-block .inner-box i {
    width: 120px;
    height: 120px;
    font-size: 60px;
  }
}
.working-process-section .working-block .inner-box .content {
  position: relative;
  padding: 35px 28px 30px;
  text-align: center;
  transition: all 300ms ease;
}
.working-process-section .working-block .inner-box .content .working-count {
  position: relative;
  color: #23a8e0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.working-process-section .working-block .inner-box .content .working-title {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  line-height: 30px;
  margin-bottom: 15px;
}

.working-block:last-child .working-block-style2 .inner-box:before {
  display: none;
}


footer{background: #00255c; padding-top: 80px; padding-bottom: 15px; position: relative; z-index: 1;}
footer:before{position: absolute; content: ''; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../images/footer-cloud.png'); --background-overlay: '';
  background-position: 91px 25px; background-repeat: no-repeat; z-index: -1; opacity: 0.5;
  }
footer:after{position: absolute; content: ''; bottom: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../images/shape-img.png'); background-position: bottom center;
  background-repeat: no-repeat; z-index: -1; opacity: 0.1;
}
footer .tm-animation-floating {
  position: absolute;
  top: 0px;
  right: 60px;
  width: 501px;
  height: 400px;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  -webkit-animation-name: tm-animation-floating;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: Floating;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
}

@-webkit-keyframes tm-animation-floating {
  from {
    -webkit-transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
  }
}
@-moz-keyframes tm-animation-floating {
  from {
    -moz-transform: translate(0, 0px);
  }
  65% {
    -moz-transform: translate(0, 15px);
  }
  to {
    -moz-transform: translate(0, 0px);
  }
}

footer .button-theme1 .left-arrow {
    background-color: #f7891a;
}
footer .button-theme1 .theme-btn {
    background-color: #f7891a;
}
footer .button-theme1 .right-arrow {
    background-color: #f7891a;
}

footer h2{color: #fff; font-size: 24px; margin-bottom: 30px;}

footer .first h1{font-size: 46px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;}
footer .second ul{margin: 0; padding: 0; list-style: none;}
footer .second ul li{width: 49%; display: inline-block; margin: 8px 0px;}
footer .second ul li a{color: #CCCCCC;}
footer .second ul li a i{font-size: 14px;}

footer .third .phone{display: flex; align-items: center; gap: 30px; margin-bottom: 30px;
  color: #ccc;}
footer .third .phone span{display: block; font-size: 15px; letter-spacing: 1px;}
footer .third .phone a{color: #fff; font-weight: 600;}
footer .third .phone .icon img{width: 30px;}

footer .social-icons ul{margin: 0; padding: 0; list-style: none;}
footer .social-icons ul li{display: inline-block;}
footer .social-icons ul li a{
    color: #fff;
    background: #23a8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    margin-right: 4px;
    border: 1px solid #23a8e0;
    transition: 0.5s;
}
footer .social-icons ul li a:hover{background: transparent;}
footer .social-icons ul li a i{font-size: 13px;}

footer .middle{margin-top: 80px;}
footer .middle .logo{margin-bottom: 30px; display: inline-block;}
footer .middle p{color: #ccc;}

footer .newsletter{background-color: #AFAFAF0D; border: 1px solid #fafafa14;
  padding: 40px 60px; border-radius: 8px;}
footer .newsletter h4{color: #fff; font-size: 24px; margin-bottom: 15px;}
footer .newsletter p{color: #ccc;}
footer .newsletter .input-flex{display: flex; align-items: center; gap: 15px; position: relative;
  margin-top: 30px;}
footer .newsletter .input-flex input{padding: 15px 24px;
    border-radius: 70px;
    border: navajowhite;}
footer .newsletter .input-flex button{background: transparent; border: none;
  position: absolute; right: 8px;}
footer .newsletter .input-flex .button-theme1 .theme-btn{padding: 8px 34px;}
footer .newsletter .input-flex .button-theme1 .left-arrow{width: 42px; height: 42px;}
footer .newsletter .input-flex .button-theme1 .right-arrow{width: 44px; height: 44px;}


footer .copyright{text-align: center; color: #ccc; margin-top: 60px; border-top: 1px solid #fafafa14;
  padding-top: 15px;}
footer .copyright p{margin-bottom: 0; font-size: 15px; color: #ccc;}

@media (max-width: 768px) {
    body{font-size: 15px;}
    p{margin-bottom: 8px;}
    p, li, a, button{font-size: 15px;}
    
    .scrollTop a {width: 40px; height: 40px;}
    .scrollTop a .feather{width: 16px; height: 16px;}
    
    
    
    

}