/* ================= GLOBAL CSS ================= */

:root {
  --primary-blue: #05aeea;
  --dark-blue: #004867;
  --footer-blue: #00293B;
  --light-bg: #eaf8fd;
  --white: #ffffff;
  --text-dark: #123b4a;
  --text-light: #6f8790;
  --border-color: #e6eef2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1320px;
}


/* ================= HEADER SECTION ================= */

/* .main-header {
  background-color: var(--light-bg);
  padding: 28px 0 0;
}

.custom-navbar {
  background-color: var(--white);
  border-radius: 12px;
  padding: 13px 18px;
  box-shadow: 0 8px 30px rgba(0, 83, 112, 0.04);
}

.brand-logo span {
  display: block;
  color: var(--primary-blue);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}

.brand-logo small {
  display: block;
  color: #3f5b64;
  font-size: 9px;
  line-height: 1;
  margin-top: 2px;
}

.navbar-nav .nav-link {
  color: #1b3640;
  font-size: 12px;
  font-weight: 700;
  padding: 0 22px !important;
  letter-spacing: 0.4px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

.dropdown-menu {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.dropdown-item {
  font-size: 13px;
  border-radius: 8px;
  padding: 8px 12px;
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary-blue);
}

.header-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 11px 27px;
  border: none;
}

.header-btn:hover {
  background-color: var(--dark-blue);
  color: var(--white);
} */


/* ================= HERO SECTION ================= */

.hero-section {
  background-color: var(--light-bg);
  padding: 52px 0 58px;
}

.hero-content {
  padding-top: 10px;
}

.hero-content h1 {
  color: var(--dark-blue);
  font-size: 44px;
  /* line-height: 1.05; */
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
}

.hero-content h1 span {
  color: #009DFF;
}

.hero-content > p {
  color: #34535e;
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 35px;
}


/* ================= STEPS SECTION ================= */

.steps-wrapper {
  margin-bottom: 38px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}

/* .step-number {
  min-width: 32px;
  color: var(--primary-blue);
  font-size: 15px;
  font-weight: 800;
} */

.step-number-box {
    color: var(--primary-blue);
    background: #c5eefd;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(41, 171, 226, .12);
    padding: 8px 10px;
}

.step-item h6 {
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 2px;
}

.step-item p {
  font-size: 16px;
  color: #5a737c;
  line-height: 1.4;
  margin-bottom: 0;
}


/* ================= TRUSTED CAROUSEL SECTION ================= */

.trusted-section {
  margin-top: 22px;
  margin-bottom: 30px;
}

.trusted-section h6 {
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.trusted-carousel {
  max-width: 490px;
}

.trusted-logo {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #315863;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0.9;
}

.trusted-logo img{
    height: 30px;
}

.trusted-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.trusted-carousel .owl-dots,
.trusted-carousel .owl-nav {
  display: none;
}




/* ================= FORM SECTION ================= */

.contact-form-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px 42px 34px;
  box-shadow: 0 16px 40px rgba(0, 77, 103, 0.07);
}

.contact-form-card h2 {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-form-card > p {
  color: #94a7ae;
  font-size: 13px;
  margin-bottom: 28px;
}

.form-label {
  color: #173c48;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-label span {
  color: var(--bs-danger);
  font-weight: 800;
  margin-left: 1px;
}

.form-control,
.form-select {
  height: 43px;
  border: 1px solid var(--border-color);
  border-radius: 7px;
  color: #3c535c;
  font-size: 16px;
  padding: 10px 14px;
  box-shadow: none;
}

.form-control::placeholder {
  color: #b6c4c9;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(5, 174, 234, 0.08);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 2px 0 18px;
}

.privacy-check .form-check-input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border-radius: 2px;
}

.privacy-check label {
  color: #8a9fa6;
  font-size: 12px;
  line-height: 1.4;
}

.submit-btn {
  width: 100%;
  background-color: var(--primary-blue);
  color: var(--white);
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 7px;
  border: none;
  letter-spacing: 0.4px;
}

.submit-btn:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}


/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
  background-color: var(--white);
  padding: 62px 0 70px;
}

.section-title span {
  color: var(--primary-blue);
  font-size: 18px;
  font-weight: 600;
}

.section-title h2 {
  color: var(--dark-blue);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.testimonial-wrapper {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: #f7f9fa;
  border-radius: 10px;
  padding: 36px 48px 28px;
  position: relative;
  min-height: 190px;
}

.testimonial-card p {
    color: #526b73;
    font-size: 14px;
    line-height: 1.65 !important;
    margin-bottom: 28px;
    font-style: italic;
}

.quote-icon {
    color: #94BFFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.55;
}

.start-quote {
  position: absolute;
  top: 14px;
  left: 45px;
}

.end-quote {
  position: absolute;
  right: 340px;
  bottom: 102px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #ebeff1;
  padding-top: 18px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  background-color: #EAAC85;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.client-info h5 {
  color: #3774A6;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.client-info h6 {
  color: #868686;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
}

.client-info span {
  color: #868686;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-carousel .owl-nav {
  margin: 0;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  background-color: #f1f4f5 !important;
  border-radius: 50% !important;
  color: #9aadb4 !important;
  font-size: 20px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-carousel .owl-nav button.owl-prev {
  left: -85px;
}

.testimonial-carousel .owl-nav button.owl-next {
  right: -85px;
}



/* ================= CONTACT DETAILS SECTION ================= */

.contact-details-section {
  background-color: var(--light-bg);
  padding: 42px 0 60px;
}

.contact-title,
.office-title {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.office-title {
  margin-top: 30px;
}

.contact-info-row {
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  background-color: var(--white);
  border-radius: 6px;
  min-height: 98px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-card i {
  color: var(--primary-blue);
  font-size: 17px;
  min-width: 20px;
}

.info-card p {
  color: #405f69;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 0;
}

.office-row {
    max-width: 1040px;
    margin: 0 auto;
}

.office-image-card {
    position: relative;
    min-height: 365px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    /* box-shadow: 0 28px 55px rgba(0, 72, 90, 0.10); */
}

.office-img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    display: block;
}

.office-image-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25%;
    background: linear-gradient(
        to top,
        rgba(234, 248, 253, 0.95),
        rgba(234, 248, 253, 0.45),
        rgba(234, 248, 253, 0)
    );
    z-index: 1;
}

.office-info-box {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 22px;
    box-shadow: 0 12px 28px rgba(0, 70, 95, 0.08);
    z-index: 2;
    min-height: 140px;
}

.office-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.office-heading i {
    color: var(--primary-blue);
    font-size: 15px;
}

.office-heading h5 {
    color: #183f4c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.office-info-box p {
    color: #5d747c;
    font-size: 13px;
    line-height: 1.65 !important;
    margin-bottom: 0;
}


/* ================= FOOTER SECTION ================= */

.footer-section {
  background-color: var(--footer-blue);
  padding: 54px 0 0;
  color: var(--white);
}

.footer-logo img {
  width: 180px;
}

.footer-about p {
  max-width: 320px;
  color: #A6A6A6;
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 22px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 40px;
}

.social-icons a {
  color: #A6A6A6;
  font-size: 20px;
}

.social-icons a:hover {
  color: var(--primary-blue);
}

.footer-links h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #A6A6A6;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 48px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a,
.footer-bottom span,
.footer-bottom p {
  color: #A6A6A6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-bottom span {
  padding: 0 22px;
}


/* ================= RESPONSIVE CSS ================= */

@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    padding: 0 12px !important;
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .contact-form-card {
    padding: 30px;
  }

  .testimonial-carousel .owl-nav button.owl-prev {
    left: -48px;
  }

  .testimonial-carousel .owl-nav button.owl-next {
    right: -48px;
  }
}

@media (max-width: 991px) {
  .main-header {
    padding-top: 18px;
  }

  .custom-navbar {
    padding: 12px 16px;
  }

  .navbar-collapse {
    padding-top: 20px;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    font-size: 13px;
  }

  .header-btn {
    margin-top: 12px;
    display: inline-block;
  }

  .hero-section {
    padding: 42px 0 50px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content > p {
    max-width: 100%;
  }


  .contact-form-card {
    margin-top: 8px;
  }

  .testimonial-carousel .owl-nav button.owl-prev,
  .testimonial-carousel .owl-nav button.owl-next {
    position: static;
    transform: none;
    margin: 22px 8px 0;
  }

  .testimonial-carousel .owl-nav {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .step-content h6 {
    font-size: 22px;
  }

  .step-content p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 36px 0 42px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .step-item {
    gap: 14px;
    margin-bottom: 28px;
  }

  .step-content h6 {
    font-size: 19px;
  }

  .step-content p {
    font-size: 16px;
  }

  .trusted-carousel {
    max-width: 100%;
  }




  .contact-form-card {
    padding: 26px 20px;
    border-radius: 14px;
  }

  .contact-form-card h2 {
    font-size: 22px;
  }

  .testimonial-section {
    padding: 48px 0 55px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .testimonial-card {
    padding: 32px 22px 24px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .start-quote {
    left: 18px;
  }

  .end-quote {
    display: none;
  }

  .client-info {
    align-items: flex-start;
  }

  .contact-details-section {
    padding: 38px 0 48px;
  }

  .info-card,
  .office-card {
    min-height: auto;
  }

  .footer-section {
    padding-top: 46px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo span {
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .step-number-box {
    font-size: 14px;
  }

  .step-content h6 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }


  .form-control,
  .form-select {
    height: 42px;
  }

  .testimonial-card {
    border-radius: 8px;
  }

  .client-avatar {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .footer-bottom span {
    padding: 0 12px;
  }
}

.hero-content .content-span {
        color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
}

/* ================= STATS SECTION ================= */

.stats-section {
  background-color: var(--dark-blue);
  padding: 20px 0px;
}

.stats-wrapper {
  padding: 38px 0;
  border-radius: 10px;
}

.stats-item {
  text-align: center;
  padding: 0 15px;
}

.stats-item h3 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-item p {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

/* Tablet view */
@media (max-width: 767px) {
  .stats-wrapper {
    padding: 34px 0;
  }

  .stats-item {
    padding: 18px 10px;
  }
}

/* Mobile view */
@media (max-width: 575px) {
  .stats-wrapper {
    padding: 28px 0;
  }

  .stats-item h3 {
    font-size: 26px;
  }

  .stats-item p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 42px 22px 24px !imporatant;
    }
}