@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins: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&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "open sans", sans-serif;
}

/* Login / Register pages */

:root {
  --black-color: #0c263a;
  --black-card: #122621;
  --green-color: #003378;
  --bgblack-color: #fff;
  --white-color: #ffffff;
  --white-bg: #f9f9f9;
  --forest-green: #FFA000;
  --dark-green: #00150f;
  --dark-blue: #03314b;
  --blue-color: #0a4fd5;
  --paragraph-color: #45525b;
  --primary-font: "Open Sans", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --accent-color: #00a676;
  --grey-color: #FDBA06;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
label,
ul,
li,
ol {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black-color);
}

a {
  text-decoration: none;
  color: #fff;
}
.yellow_btn{
    background-color: var( --forest-green) !important;
    color: #fff;
}
.green_text {
  color: var(--green-color);
}
.banner_content {
  color: var(--white-color);
}
.padding_70 {
  padding: 70px 0px;
}
.bg_green {
  background: var(--forest-green);
  color: var(--white-color);
}
.bg_black {
  background: var(--bgblack-color);
  color: #fff !important;
}
.bg_grey {
  background: var(--grey-color);
  color: var(--white-color);
}
.bg_lightblack {
  background: var(--light-black);
  color: var(--white-color);
}
.bg_card {
  background: var(--black-card);
  color: var(--white-color);
}
.bg_white {
  background: var(--white-bg);
  color: var(--black-color);
}
.green_btn {
  background: var(--green-color);
  padding: 8px 32px;
  color: var(--black-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--primary-font);
  border: none;
  border-radius: 10px;
}
.black_btn {
  background: var(--black-color);
  padding: 17px 50px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  margin: 30px;
}

.sec_head h2 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: var(--black-color);
  margin-bottom: 20px;
}

.sec_head p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: var(--paragraph-color);
}

main {
  margin-top: 84px;
}

/* header */

header .nav-item a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.header ul.navbar-nav {
  align-items: center;
  gap: 65px;
}

header img {
  width: 110px;
}

header.header {
  position: fixed;
  width: 100%;
  top: 0px;
  background: transparent;
  z-index: 9999;
}

header .navbar-toggler {
    background: #fff;
} 


/*login*/
.login .input-group-text {
  border: none !important;
  justify-content: center;
  font-size: 18px;
  background: transparent;
  color: var(--bf-navy);
}
.login .input-group {
  height: 48px;
  border-radius: var(--bf-radius);
  overflow: hidden;
  background: #F8FAFC;
  padding-left: 12px;
  border: 1px solid var(--bf-border);
  box-shadow: none;
  transition: var(--bf-transition);
}
.login .input-group:focus-within {
  border-color: var(--bf-navy);
  box-shadow: 0 0 0 3px rgba(15,43,78,0.1);
  background: #fff;
}
.login .form-control {
  border: none !important;
  font-size: 14px;
  background: transparent !important;
  outline: none !important;
  transition: 0.5s ease;
  box-shadow: none !important;
  color: var(--bf-text);
}
.login .form-control::placeholder {
  color: var(--bf-text-muted);
}
.login .green_btn {
  padding: 12px 32px;
  color: var(--bf-navy-dark);
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  border-radius: var(--bf-radius);
  background: var(--bf-gold) !important;
  border: none;
  transition: var(--bf-transition);
  letter-spacing: 0.5px;
}
.login .green_btn:hover {
  background: #C0952E !important;
  box-shadow: 0 4px 16px rgba(212,168,67,0.4);
}
.login_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login_card {
  padding: 40px 30px;
  border-radius: var(--bf-radius-lg);
  box-shadow: var(--bf-shadow-lg);
  max-width: 460px;
  margin: auto;
  width: 100%;
  height: max-content;
  background: #fff;
  border: none;
}
.login {
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bf-navy-dark) 0%, var(--bf-navy) 50%, var(--bf-navy-light) 100%);
  min-height: 100vh;
}
.login .info p {
  line-height: 26px;
  font-size: 14px;
  padding: 0px;
  color: var(--bf-text-muted);
}
.login .info h4 {
  font-size: 24px;
  padding: 0px;
  color: var(--bf-navy);
  font-weight: 700;
}

.login a {
  text-decoration: none;
  color: var(--bf-gold);
  font-weight: 500;
  transition: var(--bf-transition);
}
.login a:hover {
  color: #C0952E;
  text-decoration: underline;
}
label.form-check-label {
  font-size: 12px;
}
/* header_white */

header.header_white {
  position: fixed;
  width: 100%;
  top: 0px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 0 5px #eee;
}

.header_white .nav-item a.nav-link {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  margin: 0 20px;
}

header .nav-item a.nav-link:hover,
header .nav-item a.nav-link.active {
  color: var(--green-color);
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s ease;
}
header.header.fixed {
  background: var(--white-color);
  box-shadow: 0 0 5px #eee;
}
.header.fixed a.nav-link {
  color: var(--black-color);
}
.header.fixed .black_header {
  display: none;
}
.header.fixed .white_header {
  display: block;
}
.header .white_header {
  display: none;
}
/*banner*/
.banner_sec {
  background: url("../images/BGbnner.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 780px;
  position: relative;
  overflow: hidden;
}
.banner_img img {
  width: 478px;
  height: 395px;
}
.padding_120 {
  padding: 135px 0px;
}
.banner_img {
  position: relative;
}
.banner_sec::before {
  position: absolute;
  content: "";
  background: url("../images/bgoval.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 702px;
  height: 931px;
  top: -315px;
  left: 73px;
}
.banner_sec ::before {
  position: absolute;
  content: "";
  background: url("../images/icon.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  right: 61px;
  bottom: 20px;
  opacity: 18%;
}

.bnr_btn .green_btn {
  padding: 11px 41px;
  font-size: 18px;
  border-radius: 5px;
}
.banner_content .info p {
  padding: 0px;
}
/*about*/
.about_sec .info h3 {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 700;
}
.about_sec .info h4 {
  font-size: 33px;
  font-weight: 600;
  color: var(--white-color);
}
.about_sec .info p {
  color: var(--white-color);
  font-weight: 400;
  line-height: 40px;
  font-size: 21px;
  opacity: 60%;
  padding: 20px 0px;
}
.about_sec .info span {
  font-size: 33px;
  font-weight: 600;
}
.about_sec {
  position: relative;
}
.about_sec::before {
  position: absolute;
  content: "";
  background: url("../images/oval.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 599px;
  height: 100%;
  top: 0px;
  right: 88px;
}
/*service*/
.service_box {
  background: var(--forest-green);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 389px;
  border-radius: 15px;
  min-height: 360px;
}
.service_box .info h5 {
  font-size: 22px;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 0px;
}
.service .info span {
  font-size: 48px;
  font-weight: 700;
}
.service_box:hover {
  border: 1px solid var(--green-color);
  box-shadow: 0 0 3px var(--green-color);
  transition: 0.5s ease;
  transform: scale(1.02);
}
.exc_box {
  background: var(--forest-green);
  padding: 10px 10px;
  border-radius: 10px;
  text-align: center;
}
.excellence .info span {
  font-size: 48px;
  font-weight: 700;
}
.excellence .info h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
}
.exc_box .info span {
  font-size: 33px;
  font-weight: 600;
}
.exc_box .info p {
  color: var(--white-color);
  padding: 0px !important;
}
/*clients*/
.client_head .info h3 {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 700;
}
.client_combo .info h5 {
  font-size: 18px;
  color: var(--white-color) !important;
  font-weight: 700;
  opacity: 50%;
  margin-bottom: 10px !important;
}
.clients .info span {
  font-size: 48px;
  font-weight: 700;
}
.client_head {
  display: flex;
  justify-content: space-between;
}
.combo_img {
  display: flex;
  gap: 19px;
}
.client_info p {
  padding: 12px 10px !important;
  opacity: 43%;
  font-size: 16px;
  line-height: 26px;
  text-decoration: underline;
  border-bottom: 1px solid;
}
.combo_img .info p {
  padding: 0px !important;
  opacity: 45%;
  text-decoration: underline;
}
.client_combo {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}

.client_cnt info h5 {
  font-size: 20px;
  color: var(--white-color);
}
.client_cnt {
  padding: 15px;
  border-radius: 17px;
  background: var(--forest-green);
  opacity: 78%;
  margin: 30px;
  transition: 0.5s ease;
}
.client_cnt:hover {
  transform: scale(1.08);
  border: 1px solid #00d094;
  transition: 0.5s ease;
  opacity: 100% !important;
}
.color_arrow {
  display: none;
}
.client_box .owl-carousel .owl-item img {
  width: 59px;
  height: 62px;
}
.client_box .owl-stage {
  padding: 30px 0px;
}
.client_box .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: var(--forest-green);
  color: var(--white-color);
  border: none;
  padding: 13px 21px !important;
  border-radius: 38px;
  font-size: 18px;
  transition: 0.5s ease;
}
.client_box button.owl-prev {
  position: absolute;
  top: 151px;
  left: 0px;
  box-shadow: 0 0px 5px;
}
.client_box button.owl-next {
  position: absolute;
  top: 151px;
  right: 0px;
  box-shadow: 0 0px 5px;
}
.client_box .owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--green-color);
  color: var(--black-color);
  text-decoration: none;
}
.client_cnt .quote {
  display: block !important;
  transition: 0.5s ease;
}
.client_cnt .color_quote {
  display: none !important;
  transition: 0.5s ease;
}
.client_cnt:hover .quote {
  display: none !important;
  transition: 0.5s ease;
}
.client_cnt:hover .color_quote {
  display: block !important;
  transition: 0.5s ease;
}
.client_cnt .quote .view_btn.green_btn {
  background: var(--green-color);
  padding: 8px 25px;
  color: var(--black-color);
  text-decoration: underline;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
}
.client_box {
  position: relative;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}
/*contact*/
.contact .info p {
  color: var(--black-color);
}
.contact_info .info p {
  color: var(--white-color);
  padding: 4px;
  font-size: 18px;
}
.contact .info h3 {
  color: var(--black-color);
}
.contact .info h4 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 600;
}
.contact_list {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}
.contact_info.bg_card {
  padding: 35px 30px;
  min-height: 408px;
  display: flex;
  flex-direction: column;
  gap: 101px;
  border-radius: 16px;
}
.contact_icons {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.contact_icons .social_icons {
  gap: 31px !important;
}
.content_right_col {
  padding: 35px 20px;
}
.content_right_col .form-control {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0px;
  width: 100%;
}
.content_right_col label {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 14px;
}
.content_right_col .message {
  border: 1px solid var(--black-color);
  border-radius: 8px;
  transition: 0.5s ease;
  height: 180px;
}
.contact_box.contact_box {
  padding: 15px 10px;
  background: var(--white-color);
}
.contact_box .social_icons a:hover {
  color: var(--black-color);
  background: var(--white-color);
  box-shadow: 0 0 10px;
  transform: scale(1.05);
  transition: 0.5s ease;
}
.contact_info {
  position: relative;
}
.contact_info ::after {
  background: url("../images/Ellipse combine.png");
  position: absolute;
  content: "";
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 227px;
  height: 226px;
  right: 0px;
  bottom: 0px;
  opacity: 5%;
  border-bottom-right-radius: 12px;
}
/*footer*/
.ftr_box .nav-link {
  color: #ffffff99 !important;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--primary-font);
  padding: 0px !important;
}
.ftr_box h5 {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: #fff;
}
.footer_content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--primary-font);
  margin: 20px 0px;
}
.social_icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: 2px solid #ffffff1a;
  transition: 0.3s ease;
}
.social_icons a:hover {
  color: var(--green-color);
  transition: 0.3s ease;
}
.social_icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.copyright {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--primary-font);
  border-top: 2px solid #ffffff1a;
}
.banner_content .info h2 {
  font-size: 48px;
  color: var(--white-color);
  margin: 25px 0px;
}

/* -------- ABOUT PAGE -------- */
.main_bnr_sec {
  background: url("../images/about_bnr.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
}

.page_info h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: #fff;
}

p.page_link {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--body-font);
  color: #fff;
}

p.page_link a {
  color: var(--accent-color);
}

.experience_sec {
  background: url("../images/exp_bg.png");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}

.exp_img_box {
  position: relative;
}

.exp_img_box .overlay {
  background: #ffffffe5;
  padding: 24px 32px;
  border-radius: 20px;
  width: max-content;
  box-shadow: 0 0 5px #ccc;
}

.exp_img_box .overlay_top {
  position: absolute;
  top: -70px;
  left: 10px;
}

.exp_img_box .overlay_btm {
  position: absolute;
  bottom: -70px;
  right: 10px;
}

.exp_img_box .overlay label {
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  font-family: var(--primary-font);
  color: var(--blue-color);
}

.exp_img_box .overlay p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: var(--dark-blue);
}

.cnt h2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--dark-blue);
}
.cnt p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--body-font);
  color: #6b777f;
}

/* who_we_are */

.who_we_are {
  background: url("../images/roadmap_bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.who_we_are::before {
  position: absolute;
  content: "";
  background: url("../images/roadmap_lft_img.png");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 410px;
  top: 0;
  left: 0;
  z-index: -1;
}

.who_we_are::after {
  position: absolute;
  content: "";
  background: url("../images/bitcoin.png");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
  z-index: -1;
}

.card_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.card,
.card.scd {
  background: linear-gradient(to right, #f0f4fa16, #e9eff7);
  padding: 40px;
  border: none;
  border-radius: 16px;
}

.card.scd {
  background: linear-gradient(to right, #e9eff7, #f0f4fa16);
}

.card h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--black-color);
}

/* --------- SERVICES PAGE --------- */

.srvcs_exp {
  height: 100% !important;
}

.srvcs .sec_head h2 {
  margin-bottom: 10px;
}

.srvcs_box {
  background: var(--forest-green);
  padding: 50px 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-align: right;
}

.srvcs_box h2 {
  font-size: 46px;
  line-height: 58px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: #fff;
  width: 70%;
  margin-left: auto;
}

.srvcs_box p {
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: #fff;
  opacity: 0.6;
  width: 65%;
  margin-left: auto;
}


/* auth/welcome page */

.welcome_card .card_content {
  max-width: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.welcome_card .card_content p {
  display: flex;
  align-items: center;
  gap: 20px;
}

.welcome_card .card_content  label {
  min-width: 100px;
  text-align: left;
}

.welcome_card .login_form {
  padding: 20px;
  background: #000;
  border-radius: 10px;
}

.welcome_card .login_form label {
  text-transform: uppercase;
  font-weight: 700;
}

#showPassword {
  font-size: 18px;
  cursor: pointer;
}

/*website*/
section {
  scroll-margin-top: 95px;
}

.bg-blue {
  background: #0A3D62;
}

/* LOGO ONLY */
body {
  font-family: 'Inter', sans-serif;
  /*padding-top: 80px;*/
  scroll-behavior: smooth;
}
.logo-only {
  height: 60px;
}

/* HERO */
.carousel-bg {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-one {
  background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80');
}

.slide-two {
  background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1600&q=80');
}

.slide-three {
  background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1600&q=80');
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10,61,98,0.55),
    rgba(10,61,98,0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 85vh;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.hero-content p {
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-btn {
  width: fit-content;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
}

/* SECTIONS */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0A3D62;
}

.service-card,
.value-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* CAROUSEL DOTS */
.carousel-indicators .active {
  background-color: #1E8E5A;
}

