/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  --color-navy: #0c2138;
  --color-navy-dark: #081826;
  --color-blue: #1e93e8;
  --color-blue-light: #3aa9f5;
  --color-text-dark: #12233c;
  --color-text-muted: #5b6b7d;
  --color-border-blue: #2ea3f2;
  --color-input-bg: #eef1f4;
  --color-input-border: #e3e7ec;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-card: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  --font-heading: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
/* .hero-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  background: linear-gradient(120deg, #1b2733 0%, #2c3e50 45%, #34495e 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
} */

/* .hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 40%);
} */

.hero-banner {
background-image: url(https://www.fastinfohub.com/assets-new/images/contact-us-hero-bg.webp);
background-repeat: no-repeat;
background-size: cover;
padding: 40px 0 100px 0;
}

.hero-content {
  z-index: 2;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.client-strip-section{
  padding-bottom: 40px;
}

.hero-title {
  color: #ffffff;
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.underline-word {
  position: relative;
  display: inline-block;
}

.hero-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background-color: var(--color-blue);
  border-radius: 2px;
  display: block;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 70px 0 60px;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}

.section-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ---- Office Cards ---- */
.office-card {
  border: 1.5px solid var(--color-border-blue);
  border-left-width: 4px;
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 22px;
  max-width: 520px;
}

.office-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

.office-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.office-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.office-details li:last-child {
  margin-bottom: 0;
}

.office-details i {
  color: var(--color-blue);
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   FORM CARD
   ========================================================================== */
.form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 44px 40px;
  height: auto;
}

.form-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px;
}

.form-heading span {
  position: relative;
  display: inline-block;
}

.form-heading span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 3px;
  background-color: var(--color-blue);
  border-radius: 2px;
}

.custom-input {
  background-color: var(--color-input-bg);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  box-shadow: none;
}

.custom-input::placeholder {
  color: #8b96a3;
}

.custom-input:focus {
  background-color: #ffffff;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(30, 147, 232, 0.12);
}

.custom-textarea {
  resize: none;
  min-height: 130px;
}

select.custom-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%235b6b7d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

select.custom-input:invalid,
select.custom-input option[value=""] {
  color: #8b96a3;
}

/* ---- Captcha ---- */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-box {
  position: relative;
  flex: 0 0 130px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #14324f, #1e93e8 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-text {
  display: inline-flex;
  gap: 4px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 1px;
  font-family: Georgia, 'Times New Roman', serif;
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
}

.captcha-text span {
  display: inline-block;
}

.captcha-refresh {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.captcha-input {
  flex: 1;
}

/* ---- Terms Checkbox ---- */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.terms-check .form-check-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--color-blue);
  flex-shrink: 0;
}

.terms-check .form-check-input:checked {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
}

.terms-check .form-check-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-left: 0;
}

/* ---- Submit Button ---- */
.btn-submit {
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-blue) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 999px;
  border: none;
  margin-top: 6px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.btn-submit:hover {
  opacity: 0.92;
  color: #ffffff;
}

.btn-submit:active {
  transform: scale(0.99);
}

/* ==========================================================================
   CLIENTS SECTION
   ========================================================================== */
.clients-section {
  padding-bottom: 80px;
}

.clients-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.clients-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-blue);
  white-space: nowrap;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
}

.logo-item {
  font-weight: 700;
  font-size: 1.15rem;
  color: #4a5568;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.logo-majestic {
  font-family: Georgia, serif;
  letter-spacing: 2px;
  color: #1a1a2e;
}

.logo-ato {
  color: #1e93e8;
  font-size: 1.25rem;
}

.logo-ato small {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  color: #8b96a3;
  letter-spacing: 1px;
  margin-top: -4px;
}

.logo-onnorokom {
  color: #1e5fa8;
}

.logo-onnorokom i {
  color: #1e93e8;
}

.logo-capixa {
  color: #6b7280;
  font-style: italic;
}

.logo-mysopy .dot-y {
  color: #e74c3c;
}

.logo-mysopy .sopy {
  background-color: #f5a623;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 1rem;
  margin-left: 2px;
}

.logo-kheti {
  color: #2e7d32;
}

.logo-kheti .dukan {
  color: #f5a623;
}
.footer_section {
  background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/footer-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.footer_section_one p,
.footer_h4,
.footer_section_two_left ul li a,
.fstr_one ul li a,
.fstr_two p,
.copyright_footer_left p,
.copyright_footer_right ul li a,
.copyright_footer_right ul li a,
.footer_section_one .footer_menu ul li a {
  color: #ffffff !important;
}

/*=========================
Footer
=========================*/

.fastinfo_footer {
  position: relative;
  background: #041b2b;
  color: #fff;
  padding: 70px 0 0;
  overflow: hidden;
}

/* Background Pattern */

.fastinfo_footer::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -220px;
  top: -260px;
  background: rgba(11, 64, 110, 0.18);
  transform: rotate(35deg);
}

.fastinfo_footer::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -260px;
  background: rgba(20, 90, 170, 0.18);
  transform: rotate(35deg);
}

.fastinfo_footer .container {
  position: relative;
  z-index: 2;
}

/*=========================
Logo
=========================*/

.footer_logo img {
  max-width: 220px;
}

.footer_text {
  color: #b8c7d6;
  line-height: 32px;
  font-size: 17px;
  margin: 30px 0;
}

/*=========================
Heading
=========================*/

.fastinfo_footer h4,
.fastinfo_footer h5 {
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

/*=========================
Links
=========================*/

.fastinfo_footer ul li {
  margin-bottom: 15px;
}

.fastinfo_footer ul li a {
  color: #c3d2df;
  transition: 0.3s;
  font-size: 17px;
  display: inline-block;
}

.fastinfo_footer ul li a:hover {
  color: #16a5ff;
  padding-left: 8px;
}

.fastinfo_footer ul li a::before {
  content: "•";
  color: #16a5ff;
  margin-right: 12px;
}

/*=========================
Contact
=========================*/

.contact_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact_list li i {
  /* width: 42px; */
  height: 42px;
  /* border-radius: 50%;
  background: #ffffff18; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
  font-size: 15px;
}
.scroll_wrapper_modification {
  border-radius: 12px;
  box-shadow: 2px 1px 17px 0px rgba(0, 0, 0, 0.1);
}
.contact_list span {
  color: #d6e4ef;
  font-size: 17px;
  position: relative;
  top: 7px;
}

.contact_list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.contact_list p {
  color: #c6d4df;
  line-height: 32px;
  margin: 0;
  font-size: 17px;
}

/*=========================
Social
=========================*/

.footer_social {
  display: flex;
  margin-top: 20px;
}

.footer_social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #fff;
  transition: 0.4s;
}

.footer_social a:nth-child(1) {
  background: #1877f2;
}

.footer_social a:nth-child(2) {
  background: linear-gradient(45deg, #ff0069, #ffcc00);
}

.footer_social a:nth-child(3) {
  background: #000;
}

.footer_social a:nth-child(4) {
  background: #0a66c2;
}

.footer_social a:nth-child(5) {
  background: #ff0000;
}

.footer_social a:hover {
  transform: translateY(-6px);
}
.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 60px;
  padding: 28px 0;
}

.footer_bottom .row {
  align-items: center;
}

.footer_bottom {
  color: #d0dde7;
  font-size: 16px;
}

.footer_links {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.footer_links a {
  color: #d0dde7;
  transition: 0.3s;
}

.footer_links a:hover {
  color: #16a5ff;
}
.map_box {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  overflow: hidden;
  background: #0b2438;
}

.map_box img {
  width: 100%;
  display: block;
}

.office_content {
  padding: 18px;
}

.office_content h5 {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.office_content h5 i {
  margin-right: 10px;
}

.office_content p {
  color: #c7d7e2;
  line-height: 30px;
  margin: 0;
}
.fastinfo_footer .contact_list li span a::before {
  display: none;
}
.new_unit_a_ground a {
    color: #c7d7e2 !important;
    line-height: 30px;
    margin: 0;
}
.form-check .form-check-input {
  margin-left: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .section-heading {
    font-size: 1.85rem;
  }

  .form-card {
    padding: 36px 28px;
  }

  .clients-card {
    justify-content: center;
    text-align: center;
  }

  .clients-logos {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0px 60px 0;
  }

  .form-check .form-check-input {
    margin-left: 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-text {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .office-card {
    padding: 20px 20px;
    max-width: 100%;
  }

  .office-title {
    font-size: 1.15rem;
  }

  .form-card {
    padding: 28px 20px;
    box-shadow: var(--shadow-card);
  }

  .form-heading {
    font-size: 1.35rem;
  }

  .captcha-row {
    flex-wrap: nowrap;
  }

  .captcha-box {
    flex: 0 0 110px;
    height: 48px;
  }

  .clients-card {
    padding: 22px 20px;
    gap: 16px;
  }

  .clients-logos {
    gap: 24px;
  }

  .logo-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 40px 0 40px;
  }

  .clients-section {
    padding-bottom: 50px;
  }
}