@font-face {
  font-family: "poppins-bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "poppins-semibold";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-light";
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-regular";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
.navbar-light {
  background-color: #0b0d13;
}

.navbar-nav a {
  color: #eff3fe !important;
  font-family: poppins-semibold;
}
.navbar-nav a:hover {
  color: #3b82f6 !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2859, 130, 246, 0.80%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-toggler {
  color: rgba(59, 130, 246, 0.5);
  border-color: rgba(59, 130, 246, 0.5);
}

.blue {
  color: #3b82f6;
}

header {
  background-image: url("../image/bg.png");
  background-position: center center;
  background-size: cover;
  min-height: 580px;
}
header p {
  color: #9aa3bf;
  font-family: roboto-regular;
  line-height: 25px;
}
header .maintxt {
  padding-top: 120px;
  font-size: 30px;
  font-family: poppins-bold;
  color: #3b82f6;
}
header .maintxt2 {
  font-size: 30px;
  font-family: poppins-bold;
  color: #eff3fe;
}
header .letstalk {
  border: 1px solid #3b82f6;
  border-radius: 1px;
  padding: 12px 58px;
  background-color: #3b82f6;
  font-family: poppins-semibold;
  text-decoration: none;
  color: #eff3fe;
  transition: 0.35s;
}
header .letstalk:hover {
  background-color: #eff3fe;
  color: #3b82f6;
  border: 1px solid #eff3fe;
}
@media (max-width: 1199px) {
  header {
    min-height: auto;
  }
}
@media (max-width: 991px) {
  header * {
    text-align: center;
  }
  header img {
    padding-top: 50px;
  }
}

:root {
  --blue-glow: rgba(47,127,255,0.18);
}

.divider-line {
  height: 1px;
  background-image: linear-gradient(90deg, transparent, #11141b 0%, #3066be 35%, #11141b 100%);
  margin: 0;
}

.section1 h4 {
  font-family: poppins-bold;
  color: #eff3fe;
}
.section1 p {
  color: #9aa3bf;
  font-family: roboto-regular;
}
.section1 {
  background-color: #11141b;
  padding-bottom: 100px;
}
.section1 .card {
  border: 1px solid #272a31;
  border-radius: 1px;
  background-color: #161a22;
  color: #eff3fe;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.section1 :root {
  --blue-glow: rgba(47,127,255,0.18);
  --blue-glow2: rgba(47,127,255,0.08);
}
.section1 .divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), rgba(47, 127, 255, 0.3), var(--blue-glow), transparent);
  margin: 0;
}
.section1 .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 10%, var(--blue-glow2) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s;
}
.section1 .card:hover {
  border-color: rgba(47, 127, 255, 0.3);
  box-shadow: 0 16px 44px rgba(47, 127, 255, 0.06);
  transform: translateY(-4px);
}
.section1 .card:hover::after {
  opacity: 1;
}

.section2 {
  background-color: #0b0d13;
}
.section2 h5 {
  color: #eff3fe;
  font-family: poppins-bold;
}
.section2 h6 {
  font-family: poppins-semibold;
  color: #eff3fe;
}
.section2 p {
  font-family: roboto-regular;
  color: #9aa3bf;
}
.section2 .subtxt {
  color: #eff3fe;
}

:root {
  --bg: #090b10;
  --surface: #0f1219;
  --surface2: #141820;
  --border: rgba(255,255,255,0.07);
  --blue: #2f7fff;
  --blue-bright: #4d9bff;
  --blue-glow: rgba(47,127,255,0.18);
  --blue-glow2: rgba(47,127,255,0.08);
  --white: #f0f4ff;
  --muted: #6b7592;
  --muted2: #9aa3bf;
}

.section3 {
  background-color: #11141b;
  padding-bottom: 100px;
  position: relative;
}
.section3 h4 {
  font-family: poppins-bold;
  color: #eff3fe;
}
.section3 p {
  color: #9aa3bf;
}
.section3 .cta-actions {
  position: absolute;
  right: 45px;
  top: 55px;
}
.section3 .consult {
  border: 1px solid #25282f;
  border-radius: 1px;
  background-color: #161a22;
  position: relative;
  overflow: hidden;
  margin-top: 65px;
  padding: 40px;
}
.section3 .consult::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.section3 .letstalk {
  border: 1px solid #3b82f6;
  border-radius: 1px;
  padding: 12px 58px;
  background-color: #3b82f6;
  font-family: poppins-semibold;
  text-decoration: none;
  color: #eff3fe;
  transition: 0.35s;
}
.section3 .letstalk:hover {
  background-color: #eff3fe;
  color: #3b82f6;
  border: 1px solid #eff3fe;
}
@media (max-width: 767px) {
  .section3 .consult {
    text-align: center;
  }
  .section3 .cta-actions {
    position: static;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}

footer {
  padding-top: 50px;
  background-color: #0b0d13;
}
footer .icons {
  text-align: right;
}
footer hr {
  color: #9aa3bf;
}
footer a {
  text-decoration: none;
  color: #9aa3bf;
  font-family: roboto-regular;
  transition: 0.35s;
}
footer a:hover {
  color: #3b82f6;
}
footer p {
  font-family: poppins-bold;
  color: #9aa3bf;
  font-size: 13px;
}
footer span {
  font-family: roboto-light;
}
footer .footermenu span {
  padding-right: 20px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  footer * {
    text-align: center;
  }
  footer .icons {
    text-align: center;
  }
  footer .icons a i {
    padding-top: 30px;
  }
}/*# sourceMappingURL=main.css.map */