:root {
  --blue: #4f6df5;
  --light-blue: rgb(219, 232, 254);
  --pink: #f6c7e7;
  --dark: rgba(64, 62, 62, 0.9);
  --muted: #6b7280;
  --btn-color: #4c76ef;
}

a {
  color: #000;
  text-decoration: none;
}

/* @font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Helvetica.woff') format('woff');
}


@font-face {
  font-family: 'Helvetica Oblique';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Helvetica-Oblique.woff') format('woff');
}


@font-face {
  font-family: 'Helvetica Compressed';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/helvetica-compressed-5871d14b6903a.woff') format('woff');
}


@font-face {
  font-family: 'Helvetica Rounded Bold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/helvetica-rounded-bold-5871d05ead8de.woff') format('woff');
}


@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Helvetica-Bold.woff') format('woff');
}


@font-face {
  font-family: 'Helvetica Bold Oblique';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Helvetica-BoldOblique.woff') format('woff');
}


@font-face {
  font-family: 'Helvetica Light';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/helvetica-light-587ebe5a59211.woff') format('woff');
} */

body {
  font-family: "Poppins", sans-serif;
  color: #111;
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

/* Header */
.navbar-brand {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand img {
  width: 22px;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #0d6efd;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #0d6efd !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
}


.nav-link.active {
  color: #0d6efd !important;
  text-decoration: none;
  border-bottom: solid 1px #0d6efd;
}

.hero-bg {
  background-color: #EFF6FF;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(15, 23, 42, 0.04),
    rgba(15, 23, 42, 0.04) 1px,
    transparent 1px,
    transparent 12px
  );
}

.hero-bg h1 {
  font-size: 3.5rem;
  color: #182A3F;
  letter-spacing: 0.5px;
   font-family: "Poppins", sans-serif;
}

.hero-content {
  padding: 60px;
}

.btn-pill {
  border-radius: 999px;
    padding: .55rem 2rem;
    font-weight: 500;
    background: #4F46E5 !important;
    border: 0;
}
.btn-pill:hover{
  background-color: #4338CA!important;
}
.feature-bg {
  background: #1E293B;
}

.icon-circle {
width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 1px solid rgba(255, 255, 255, .35); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    fill: #9290a7;
    margin-bottom: 50px !important;
}

.soft-card {
    border-radius: 0;
    width: 100%;
}

.section-gap {
  padding: 5rem 0;
}

.stat h4 {
  font-weight: 700;
}



/* Main section */
.contact-section {
  padding: 80px 0;
}

.contact-left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-left p {
  max-width: 420px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Form */
.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100% !important;
}
.form-control,
.form-select {
  border: none;
  border-bottom: 1px solid #999;
  border-radius: 0;
  padding-left: 0;
  font-size: 0.85rem;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-bottom-color: #000;
}

.form-check-input {
  border-radius: 0;
}

.submit-btn {
  border-radius: 30px;
  margin-top: 15px;
  padding: 6px 100px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  background: #000;
  color: #fff;
}



.phone-wrap {
  border-bottom: 1px solid #999;
}

.country-select {
  cursor: pointer;
  user-select: none;
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  padding: 10px;
  z-index: 100;
}

.country-list {
  max-height: 220px;
  overflow-y: auto;
}

.country-list li {
  padding: 10px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.country-list li img {
  margin-right: 10px;
}

.country-list li:hover {
  background: rgba(255, 255, 255, 0.15);
}
.form-check-input:checked {
    background-color: #222427;
    border-color: #222427;
}
.form-check-input[type=checkbox] {
    border-radius: 0;
    border: solid 1px #4d4d4d;
    box-shadow: none;
}
.fst-italic {
  font-style: italic;
}
.plan-section .content{
position: relative;
}
.plan-section .content span{
    position: absolute;
    bottom: 12px;
    width: 96%;
    left: 5px;
    background: #fff;
    padding: 3px;
    border-radius: 21px;
    text-align: center;
}
.plan-section .content span:hover{
  box-shadow: 0 5px 5px #4d4d4d;
  cursor: pointer;
}


.testimonial-section {
  background: #1e293b;
  padding: 5rem 1.5rem;
  text-align: center;
}





.testimonial-item h6 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.divider {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: #4f6df5;
  margin: 0 auto 2rem;
}

.testimonial-item p {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 45%;
    margin: 0 auto 20px;
      color: #fff;
}

/* Arrows */
.slick-prev,
.slick-next {
  width: 3rem;
  height: 3rem;
}

.slick-prev:before,
.slick-next:before {
  font-size: 2rem;
  color: #4f6df5;
}

/* Dots */
.slick-dots li button:before {
  font-size: 0.7rem;
  color: #4f6df5;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Poppins';
}

/* Footer */
footer {
  background: #f3f3f3;
  padding: 40px 0 20px;
}

footer p {
  color: #444;
  max-width: 420px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #000;
  text-decoration: none;
}

.footer-links a.active {
  color: #0d6efd;
}

.copyright {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}