html {scroll-behavior: smooth;}
body {font-family: 'Roboto', sans-serif;font-size: 16px;color: #404040;}
ul {list-style: none;}
h1 {font-size: 70px;font-weight: 500;}
h2 {font-size: 40px;font-weight: 500}
h3 {font-size: 24px;font-weight: 500;}
p {font-size: 16px;line-height: 26px;}
h1,h2,h3,h4,h5,h6,p,a,ul,li,ol,div,section,article,aside,address {margin: 0;padding: 0;}
a {color: #25ACE3;transition: 0.3s ease;}
a:hover {color: #00b7ff;}
.section-padding {padding-top: 120px;padding-bottom: 120px;}
.section-padding-top {padding-top: 120px;}
.section-padding-bottom {padding-bottom: 120px;}
.section-margin {margin-top: 120px;margin-bottom: 120px;}
.section.margin-top {margin-top: 120px;}
.section.margin-bottom {margin-bottom: 120px;}
.sub-title {color: #14465a;font-weight: 600;}
.sub-title-white {color: #fff;}
.border-radius-content{border-radius: 10px;}

.title-heading-wrapper {text-align: center;}
.title-heading-wrapper h2.title-heading {position: relative; font-weight: bold; color: #009ede;}
.title-heading-wrapper h2.title-heading.request-title {color: #fff;}
.title-heading-wrapper h2.title-heading.request-title::before {background: #fff;}

.btn-blue {
  position: relative;
  padding: 7px 30px;
  color: #fff !important;
  letter-spacing: 2px;
  background-color: #009ede;
  border: 2px solid #009ede !important;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease;
}
.btn-blue:hover {
  border: 2px solid #009ede !important;
  color: #009ede !important;
  background-color: #fff;
  font-weight: 500;
}
.butn:link, .butn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size:16px;
  text-decoration: none;
  padding: 7px 30px;
  margin-right: 13px;
  border-radius: 4px;
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.butn::before {
  background: #fff;
  content: "";
  height: 155px;
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  width: 50px;
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.butn::after {
  background: #000;
  content: "";
  height: 20rem;
  opacity: 0;
  position: absolute;
  top: -100px;
  transform: rotate(35deg);
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 8rem;
}
.butn-slide::before {left: -50%;}
.butn-slide::after {left: -100%;}
.butn:hover, .butn:active {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
  background-color: #009ede;
  color: #fff !important;
}
.butn-slide:hover::before {left: 120%; opacity: 0.5s;}
.butn-slide:hover::after {left: 200%; opacity: 0.6;}
.butn span {z-index: 20; font-weight: 500;}

.form-floating>.form-control {background: #F2F1F1; font-size: 14px;}
.form-floating>.form-control, .form-floating>.form-select {height: calc(40px + 2px);}
.form-control:focus {box-shadow: 0 0 5px 0 rgb(37 172 226 / 10%); border: 1px solid #23abe2;}
.form-floating>label {padding: 7px 10px; font-size: 14px;}

.backtop {border-radius: 50%; position: fixed; right: 30px; bottom: 30px; text-decoration: none;}
.backtop img {width: 40px;}
.backtop span {display: block; text-align: center; text-decoration: none;}
.backtop:hover span{color: #23abe2;}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  background: #87d6f375;
  backdrop-filter: blur(5px);
  z-index: 998;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all ease-out .5s;
}
header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
header .header-wrapper .logo img {
  width: 186px;
  transition: all linear .5s;
}
header .header-right .menubar {
  display: none;
  width: 35px;
  margin-left: 20px;
}
@media (max-width: 991px) {
  header .header-right .menubar { display: block; cursor: pointer; }
}
header .header-right .navbar {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  header .header-right .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 0;
    overflow-y: auto;
  }
}
header .header-right .navbar.open {
  display: block !important;
}
header .header-right .navbar ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}
@media (max-width: 991px) {
  header .header-right .navbar ul { flex-direction: column; padding: 0; }
}
header .header-right .navbar ul li:first-child { display: none; list-style: none; }
header .header-right .navbar ul li { padding: 10px; }
header .header-right .navbar ul li .nav-link { color: #000000; }
@media (max-width: 991px) {
  header .header-right .navbar ul li { padding: 5px 10px; }
}
header .header-right .navbar ul li a {
  color: #fff;
  text-decoration: none;
  margin-right: 34px;
}
@media (max-width: 991px) {
  header .header-right .navbar ul li a { color: #404040; margin-right: 0; }
}
header .header-right .navbar ul li a.active-page { position: relative; }
header .header-right .navbar ul li a.active-page::after {
  content: "";
  width: 0;
  height: 0;
}
header .header-right .navbar .close-menu { display: none; }
@media (max-width: 991px) {
  header .header-right .navbar .close-menu {
    display: block;
    width: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }
}
header .header-right .login {
  font-weight: 500;
  letter-spacing: 2px;
  border: 2px solid #009ede;
  background-color: #009ede;
  color: #fff;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  transition: 0.3s ease;
}
@media (max-width: 991px) {
  header .header-right .login {
    color: #009ede;
    background-color: transparent;
    font-size: 14px;
    margin-top: 10px;
  }
}
header .header-right .login:hover { background-color: #009ede; color: #fff; }

header.header-bg {
  background-color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
}
header.header-bg .header-right nav ul li a { color: #404040; }
header.header-bg .header-wrapper { padding: 5px 0; }
header.header-bg .header-wrapper .logo img { width: 130px; }

header .nav-pills .nav-link.active, header .nav-pills .show > .nav-link {
  background-color: transparent;
  border-bottom: 2px solid #009ede;
  border-radius: 0;
}

/* Banner Styles */
.page-banner-top {
  position: relative;
  overflow: hidden;
  height: 800px;
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
  z-index: 1;
}
.page-banner-top .banner-content-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 1;
}
.page-banner-top .banner-content-wrapper .nxt-arrow-img img { width: 150px; }
.page-banner-top .banner-content-wrapper .banner-content { margin-left: 35px; }
.page-banner-top .banner-content-wrapper .banner-content h1 { color: #fff; font-size: 55px; }
.page-banner-top .banner-content-wrapper .banner-content h1 span { font-weight: normal; }

.slideshow { list-style-type:none; }
.slideshow:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  backface-visibility: hidden;
  animation: imageAnimation 36s linear infinite 0s;
}

.slideshow li:nth-child(1) span { background-image: url(../images/nexct_slide_1.webp) }
.slideshow li:nth-child(2) span { background-image: url(../images/nexct_slide_2.webp); animation-delay: 6s; }
.slideshow li:nth-child(3) span { background-image: url(../images/nexct_slide_3.webp); animation-delay: 12s; }
.slideshow li:nth-child(4) span { background-image: url(../images/nexct_slide_4.webp); animation-delay: 18s; }
.slideshow li:nth-child(5) span { background-image: url(../images/nexct_slide_5.webp); animation-delay: 24s; }
.slideshow li:nth-child(6) span { background-image: url(../images/nexct_slide_6.webp); animation-delay: 30s; }

@keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in; }
	8% { opacity: 1; transform: scale(1.05); animation-timing-function: ease-out; }
	17% { opacity: 1; transform: scale(1.1); }
	25% { opacity: 0; transform: scale(1.1); }
	100% { opacity: 0 }
}

/* Home Page Sections */
.what-we-do-section {
  position: relative;
  padding-top: 180px;
  margin-top: -88px;
  background-color: #f8f8f8;
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
}
.what-we-do-section .what-we-do-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #fff;
  margin-bottom: 20px; 
  box-shadow: 0 0 40px 0 rgb(0 0 0 / 4%);
  border-radius: 10px;
  transition: 0.3s ease;
}
.what-we-do-section .what-we-do-box p { text-align: center; margin-top: 30px; }
.what-we-do-section .what-we-do-box:hover {
  background:#4fc2f129;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
  border: 1px solid #25ace326;
}
.we-do-box-wrapper { margin-top: 50px; }

.client-partner-section { background-color: #DCEAEF; padding: 10px 0px; }
.client-partner-section .client-logo-wrapper { display: flex; align-items: center; justify-content: center; }
.client-partner-section .client-logo-wrapper .client-img { margin: 0px 10px; }
.client-partner-section .client-logo-wrapper .client-img img { width:90px; }

/* About Section */
.about-section .about-content-wrapper { width: 850px; margin: 0 auto; margin-top: 50px; }
.about-section .about-content-wrapper .about-box-wrapper { border-radius: 10px; transition: 0.3s ease; }
.about-section .about-content-wrapper .about-box-wrapper:hover .about-content {
  background-color: #4fc2f129;
  border: 1px solid #25ace326;
  box-shadow: 0 0 50px 0 rgb(0 0 0 / 20%);
}
.about-section .about-content-wrapper .about-box-wrapper .about-img-wrapper {
  background: #25ace3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px 0 0 10px;
}
.about-section .about-content-wrapper .about-box-wrapper .about-content {
  border: 1px solid #25ace3;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  transition: 0.3s ease;
}

/* Get in Touch Section */
.getintouch-box-wrapper { margin-top: 30px; }
.getintouch-box-wrapper .get-touch-box {
  min-height: 400px;
  padding: 35px 20px;
  margin-top: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 40px 0 rgb(0 0 0 / 4%);
  transition: 0.3s ease;
}
.getintouch-box-wrapper .get-touch-box .get-touch-content { margin-top: 20px; }
.getintouch-box-wrapper .get-touch-box .get-touch-content .tel-no {
  display: inline-block;
  margin-top: 10px;
  color: #404040;
  text-decoration: none;
}
.getintouch-box-wrapper .get-touch-box:hover {
  border: 1px solid #25ace326;
  background: #4fc2f129;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
}
.gettouch-section-wrapper {
  background: #f8f8f8;
  clip-path: polygon(49% 0, 100% 16%, 100% 100%, 0 100%, 0 15%);
}

/* Footer */
footer { font-size: 14px; color: #fff; }
footer .footer-section { background-color: #3f3f41; text-align: right; }
footer .footer-section .footer-nav { display: flex; justify-content: flex-end; }
footer .footer-section .footer-nav a { color: #fff; text-decoration: none; margin-left: 25px; }
footer .footer-section .contact-locaton { margin-top: 20px; }
footer .footer-section .contact-locaton .contact-mail .tel-no { color: #fff; text-decoration: none; }
footer .copyright { background-color: #2d2d2d; text-align: center; padding: 15px 0; }
footer .copyright span { opacity: 0.5; font-size: 13px; font-weight: normal; }
footer .footer-logo { text-align: left; }
footer .secured-logo { margin-top: 40px; width: 100px; }
footer .secured-logo img { width: 100%; }

/* Terms/Privacy common */
.term-box-content-wrapper { margin-top: 50px; text-align: justify; }
.term-box-content-wrapper .box-wrapper-gray { margin-bottom: 35px; }
.term-box-content-wrapper h2 { font-size: 24px; font-weight: bold; }
.term-box-content-wrapper .term-box-title { margin-bottom: 10px; }
.term-box-content-wrapper .term-box-content {
  padding: 25px;
  background: #f7f7f7;
  margin-top: 15px;
  border-radius: 12px;
  line-height: 1.7;
  color: #333;
}
.term-box-content-wrapper .term-box-content p { margin-bottom: 15px; font-size: 15px; }
.term-box-content-wrapper .term-box-content p:last-child { margin-bottom: 0; }
.term-box-content-wrapper .term-box-content p a { word-break: break-word; color: #2fa5e8; text-decoration: underline; }
.term-box-content-wrapper .term-box-content ul { padding-left: 20px; margin-bottom: 15px; }
.term-box-content-wrapper .term-box-content ul li { list-style-type: disc; font-size: 15px; }
.term-box-content-wrapper .term-box-content ul li:last-child { margin-bottom: 0; }
.term-box-content-wrapper h4 { font-size: 17px; font-weight: 600; margin-top: 25px; margin-bottom: 10px; }
.term-box-content-wrapper h4.mt-0 { margin-top: 0 !important; }

.sticky-top { top: 100px; z-index: 997; }
.accordion-item { border-radius: 10px; border-bottom: 0px; margin-bottom: 2px; }
.accordion-item:first-of-type, .accordion-item:last-of-type { border-radius: 10px; }
.accordion-header button {
  padding-right: 10px;
  line-height: 26px;
  color: #fff;
  background-color: #14465a;
  border-radius: 10px !important;
}
.accordion-header button:focus { box-shadow: none; }
.accordion-header button::after { background-image: url(../images/down-arrow.svg); }
.accordion-header button:not(.collapsed)::after { background-image: url(../images/down-arrow.svg); transform: rotate(-180deg); }
.accordion-button:not(.collapsed) { color: #fff; background-color: #14465a; box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%); }

.policyAccordion { margin-top: 50px; }
.policyAccordion button.scrollSection { text-decoration: none; color: #404040; background-color: transparent; border: none; display: block; text-align: left; }
.policyAccordion div.accordion-collapse { box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%); border-radius: 10px; }
