/*
Theme Name: Import Export Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A modern import/export business theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: import-export-theme
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #0D1B2A;
  --primary-dark: #1B263B;
  --bg: #F8F9FA;
  --text: #222;
  --text-light: #666;
  --white: #fff;
  --gray: #e0e0e0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

html,
body {
  box-sizing: border-box;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #222;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.header {
  width: 100%;
  background: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: box-shadow 0.5s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  font-family: 'Inter', Arial, sans-serif;
}

.main-nav {
  display: flex;
  align-items: center;
  /* background: #001D45 !important; */
  background: #001744 !important;
}

.nav-links {
  /* display: flex; */
  gap: 32px;
  /* list-style: none; */
  /* margin: 0; */
  /* padding: 0; */
  padding: 24px;
}

.nav-links li a {
  text-decoration: none;
  /* color: var(--text); */
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.5s, border-bottom 0.5s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links li a:focus,
.nav-links li a:hover,
.nav-links li a.active {
  color: #fff !important;
  border-bottom: 2px solid #fff;
}

.menu-icon {
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  margin-left: 24px;
  display: none;
}

.hero {
  position: relative;
  height: 520px;
  width: 100%;
  /* margin-top: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gray);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

.hero-bg img,
img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.36);
  /* z-index: 2; */
}

.hero-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 64px;
  background: #0D1B2A;
  /* border-radius: 14px; */
  z-index: 3;
  box-shadow: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

/* .hero-box {
  background: var(--white);
  padding: 54px 48px 40px 48px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 420px;
  min-width: 320px;
  text-align: left;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInUp 0.8s;
} */
.hero-box {
  background: rgb(65 90 119 / 40%);
  padding: 60px 40px 60px 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-size: 2rem;
  color: #F8F9FA;
  margin-bottom: 18px;
  letter-spacing: 2.5px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(13, 27, 42, 0.18);
  display: block;
}

.hero-box h1 {
  font-size: 2rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.13;
  color: #fff;
  letter-spacing: -1px;
}

.btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 0;
  font-size: 1.18rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.5s, box-shadow 0.5s, transform 0.5s;
  box-shadow: 0 6px 24px rgba(13, 27, 42, 0.18);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(27, 38, 59, 0.22);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

.btn:active {
  outline: 1px solid var(--primary-dark);
}

.btn:disabled {
  background: var(--primary);
}

.img-credit {
  font-size: 8.5px;
  color: #e0e0e0;
  margin-top: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  align-self: flex-end;
}

.connect-world {
  background: #f2f2f2;
  color: #000;
  text-align: center;
  padding: 56px 0 40px 0;
  /* border-top: 8px solid #fff; */
}

.connect-world h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.connect-world p {
  font-size: 1.08rem;
  margin-bottom: 36px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature {
  background: var(--white);
  color: var(--text);
  /* border-radius: 10px; */
  box-shadow: var(--shadow);
  padding: 28px 22px 22px 22px;
  /* width: 240px; */
  height: 100%;
  text-align: center;
  transition: box-shadow 0.5s, transform 0.5s;
  animation: fadeInUp 0.8s;
  border: 4px solid #415A77;
}

.feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  /* border-radius: 6px; */
  margin-bottom: 12px;
}

.feature:hover {
  /* box-shadow: 0 8px 32px rgba(255, 178, 0, 0.18); */
  box-shadow: 0 8px 32px rgba(65, 90, 119, 0.18);
  transform: translateY(-6px);
}

.feature h3 {
  font-size: 1.15rem;
  margin: 10px 0 6px 0;
  font-family: 'Inter', Arial, sans-serif;
}

.feature p {
  font-size: 1rem;
  color: var(--text-light);
}

.learn-more {
  background: #fff;
  color: #415A77;
  border: 2px solid #fff;
  margin-top: 10px;
}

.learn-more:hover {
  background: #F8F9FA;
  color: #1B263B;
}

.about {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  /* background: var(--bg); */
  padding: 60px 0;
  gap: 40px;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.about-img img {
  width: 100%;
  max-width: 550px;
  /* border-radius: 16px; */
  box-shadow: var(--shadow);
}

.about-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.about-label {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-content h2,
.about-conten2 h2 {
  font-size: 2rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: var(--text);
}

.about-desc {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.img-credit {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 18px;
}

.img-credit a {
  color: #888;
  text-decoration: underline;
}

/* .about .btn {
  background: #ffb200;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.5s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 1px;
}
.about .btn:hover {
  background: #e09e00;
} */
.testimonial {
  background: #f2f2f2;
  padding: 100px 0;
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; */
}

.testimonial-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffb200;
}

.testimonial-content {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-size: 3rem;
  color: #ffb200;
  position: absolute;
  left: 60%;
  top: -10px;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #444;
  margin: 0 0 10px 0;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 8px;
}

.stats {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  padding: 0;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  display: block;
}

.stats-card {
  position: relative;
  z-index: 2;
  background: #1B263B;
  color: #fff;
  /* border-radius: 18px; */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  border: 1.5px solid #e6e6e6;
  padding: 48px 44px 32px 44px;
  min-width: 340px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 32px 36px;
  width: 100%;
  margin-bottom: 32px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  font-size: 2.1rem;
  margin-bottom: 8px;
  color: #415A77;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0D1B2A;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 1rem;
  color: #415A77;
  text-align: center;
}

/* .stats-btn {
  width: 100%;
  background: #ffb200;
  color: #fff;
  border: none;
  padding: 14px 0;
  border-radius: 4px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.5s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stats-btn:hover {
  background: #e09e00;
} */
.business-connect {
  background: #f2f2f2;
  color: #000;
  text-align: center;
  padding: 56px 0 30px 0;
}

.business-connect h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.business-sub {
  color: #000;
  font-size: 1rem;
  margin-bottom: 38px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */
  gap: 24px;
  /* max-width: 950px; */
  /* margin: 0 auto 24px auto; */
}

.business-card {
  background: #fff;
  color: #222;
  /* border-radius: 14px; */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  min-height: 220px;
  min-width: 0;
  text-align: center;
}

.business-card h3 {
  color: #0D1B2A;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.business-card p {
  color: #222;
  font-size: 1rem;
  margin: 0;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 14px; */
  display: block;
  min-height: 220px;
}

/* .mission-card {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
} */
.business-credit {
  color: #ffe6a1;
  font-size: 12px;
  margin-top: 18px;
}

.business-credit a {
  color: #fff;
  text-decoration: underline;
}

.footer {
  position: relative;
  background: var(--text);
  color: var(--white);
  padding: 60px 20px 30px 20px;
  overflow: hidden;
  min-height: 300px;
}

.footer-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.7;
  display: block;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.footer-desc,
.footer-card,
.footer-credit {
  position: relative;
  z-index: 3;
}

.footer-card {
  background: var(--white);
  color: var(--text);
  /* border-radius: 10px; */
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 950px;
  margin: 0 auto 18px auto;
  padding: 38px 0;
  gap: 0;
}

.footer-col {
  flex: 1 1 0;
  text-align: center;
  padding: 0 18px;
}

.footer-icon {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-info {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
  word-break: break-word;
}

.footer-info a {
  color: var(--text);
  text-decoration: underline;
  font-weight: 700;
}

.footer-credit {
  color: #eee;
  font-size: 12px;
  text-align: center;
  margin-bottom: 18px;
}

.footer-credit a {
  color: var(--white);
  text-decoration: underline;
}

.business-advice {
  background: #f2f2f2;
  padding: 36px 0;
  display: flex;
  justify-content: center;
}

.advice-card {
  background: #fff;
  /* border-radius: 4px; */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  width: 95%;
  padding: 36px 40px;
  margin: 0 auto;
  border: 1.5px solid #eee;
}

.advice-left {
  flex: 1 1 0;
  text-align: left;
}

.advice-left h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #222;
}

.advice-left p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}

.advice-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}

.advice-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.5s;
}

.advice-btn:hover {
  background: var(--primary-dark);
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  transform: scale(.85) translateY(-1.3rem) translateX(-1.25rem);
  height: auto;
  padding: 5px;
  background: #fff;
}

.form-control:focus {
  border: 1px solid var(--primary);
}

/* EXTRA */
.section-padding {
  padding: 80px 30px;
  text-align: center;
}

.page_banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #fff;
}

.page_banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page_banner .banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 15px;
  color: #fff;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  margin-right: 8px;
  color: #ccc;
  font-weight: normal;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  /*   color: var(--primary); */
}

.breadcrumb-list .active {
  color: #ddd;
  font-weight: 500;
}

.about-conten2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  text-align: left;
}

.about-text,
.about-image {
  flex: 1;
  min-width: 320px;
  max-width: 580px;
}

/* Mission & Vision section styling */
.mission-vision-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.card {
  background-color: white;
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 40px;
  flex: 1;
  text-align: left;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.card h3 {
  font-size: 2.2em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.card p {
  font-size: 1.15em;
  color: #666;
  position: relative;
  z-index: 1;
}

.card .icon {
  /* font-size: 2.5em; */
  margin-right: 15px;
  vertical-align: middle;
  display: inline-block;
}



.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 label.error {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.navbar-toggler {
  border: none;
  outline: none;
  padding: 0;
  margin: 0 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.footer-bottom {
  background-color: #222222;
}

.social-icons a.social-link {
  font-size: 1.2rem;
  color: var(--bs-dark);
  color: #ffffff;
  transition: color 0.3s, transform 0.3s;
  background: #222222;
  height: 40px;
  width: 40px;
  font-size: 22px;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-icons a.social-link:hover {
  color: var(--gray);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: var(--primary, #007bff);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}

.scroll-to-top:hover {
  background-color: var(--bs-dark, #0056b3);
}

.feature_about {
  border-top: 5px solid #fcb530;
}

.feature_about p {
  font-weight: 700;
}

.feature_about h3 {
  color: #ffb200;
  font-size: 1.25rem !important;
  text-transform: uppercase;
  margin-bottom: 18px;
  /* text-decoration: underline; */
  letter-spacing: 0.5px;
}

.feature_about:hover {
  box-shadow: 0 8px 32px rgba(255, 178, 0, 0.18);
}

button.navbar-toggler {
  filter: invert(1);
}

.navbar-toggler-icon {
  width: 1.8em;
  height: 1.8em;
}

.swiper-button-next,
.swiper-button-prev {
  background: #0c1342;
  color: #fff;
  border-radius: 60px;
  height: 40px;
  width: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-pagination-bullet-active {
  background: #0c1342;

}

.btn,
.btn-small,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active,
.btn-small:link,
.btn-small:visited,
.btn-small:hover,
.btn-small:active {
  cursor: pointer !important;
}

.info-card {
  border-left: 4px solid #415A77;
  background: #fff;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mission-card,
.vision-card {
  border-left: 4px solid #0D1B2A;
  background: #fff;
}

.about-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.mission-vision-section {
  margin-top: 0 !important;
  padding-top: 1rem !important;
}

.service-card {
  border-left: 4px solid #415A77;
  background: #fff;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(65, 90, 119, 0.13);
  border-left: 4px solid #0D1B2A;
}

.service-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.service-card li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1.2em;
}

.service-card li:before {
  content: '\2713';
  color: #415A77;
  position: absolute;
  left: 0;
  font-size: 1em;
}

.testimonial-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.10);
  padding: 32px 28px 28px 28px;
  margin: 24px 8px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.testimonial-box:hover {
  box-shadow: 0 8px 32px rgba(65, 90, 119, 0.18);
}

.testimonial-swiper {
  padding-bottom: 48px;
}

.testimonial-box .testimonial-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.stats-card,
.stats-card h2,
.stat-value,
.stat-label,
.stats-card * {
  color: #0D1B2A !important;
}

.redesigned-stats-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.10);
  padding: 48px 32px 32px 32px;
  margin: 40px auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.redesigned-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px 36px;
  width: 100%;
  margin: 32px 0 0 0;
}

.redesigned-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  padding: 0;
}

.redesigned-stat-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 10px;
}

.redesigned-stat-value {
  color: #0D1B2A !important;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}

.redesigned-stat-label {
  color: #415A77 !important;
  font-size: 1rem;
  text-align: center;
}

.stats-title h2,
.stats-title p {
  color: #0D1B2A !important;
}

.stats-grid.redesigned-stats-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  /* box-shadow: 0 8px 32px rgba(13, 27, 42, 0.10); */
  padding: 36px 24px;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  gap: 0;
}

.stats-grid.redesigned-stats-grid .stat-block {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #E9ECEF;
  padding: 0 18px;
}

.stats-grid.redesigned-stats-grid .stat-block:last-child {
  border-right: none;
}



/* LG: Laptops */
@media (max-width: 1200px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* .mission-card {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  } */
}

@media (min-width: 992px) and (max-width: 1199px) {
  .quote-mark {
    left: 65%;
  }

  .business-connect h2 {
    font-size: 1.8rem !important;
  }

  .hero-box h1 {
    font-size: 2rem !important;
  }

  .business-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .card h3 {
    font-size: 2em !important;
  }

  .about-content h2,
  .about-conten2 h2 {
    font-size: 1.7rem;
  }
}

/* MD: Tablets */
@media (max-width: 992px) {
  .nav-links {
    /* display: none; */
  }

  .menu-icon {
    display: block;
  }

  /* .header, */
  .header-inner {
    padding: 12px 16px;
  }

  .about {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
  }

  .about-img img {
    max-width: 90vw;
  }

  .features {
    flex-direction: column;
    gap: 18px;
  }

  .footer-card {
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
  }

  .nav-links {
    gap: 14px;
  }

  .info-card,
  .mission-card,
  .vision-card {
    margin-bottom: 1rem;
  }

  .stats-grid.redesigned-stats-grid {
    flex-direction: column;
    padding: 24px 8px;
    max-width: 98vw;
  }

  .stats-grid.redesigned-stats-grid .stat-block {
    border-right: none;
    border-bottom: 1px solid #E9ECEF;
    padding: 18px 0;
  }

  .stats-grid.redesigned-stats-grid .stat-block:last-child {
    border-bottom: none;
  }
}


@media (min-width: 768px) and (max-width: 991px) {
  .feature img {
    height: 300px;
  }

  .business-connect h2 {
    font-size: 1.6rem;
  }

  .hero-box h1 {
    font-size: 1.8rem;
  }

  .card h3 {
    font-size: 1.6em;
  }

  .stats-grid.redesigned-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-content h2,
  .about-conten2 h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .who-we-are-section .row.text-center {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
  }

  .who-we-are-section .info-card {
    width: 100%;
  }
}

/* SM: Phones & Small Tablets */
@media (max-width: 767px) {
  .advice-card {
    flex-direction: column;
    /* align-items: stretch; */
    padding: 22px 10px;
  }

  .advice-right {
    margin-left: 0;
    margin-top: 18px;
    justify-content: flex-start;
  }

  .advice-btn {
    width: 100%;
    padding: 14px 0;
  }

  .hero {
    /* margin-top: 60px; */
  }

  .hero-bg,
  .hero-content {
    /* height: 320px; */
    /* min-height: 320px; */
  }

  .hero-bar {
    width: 80vw;
    height: 32px;
    /* border-radius: 8px; */
  }

  /* .hero-box h1 {
    font-size: 1.2rem;
  } */
  .stats-card {
    padding: 24px 6vw 18px;
    max-width: 95vw;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 18px 0;
  }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-card,
  .image-card img {
    min-height: 160px;
    /* border-radius: 10px; */
  }

  .section-padding {
    padding: 60px 20px;
  }

  .redesigned-stats-card {
    padding: 28px 15px 18px 15px;
  }

  .redesigned-stats-grid {
    gap: 18px 0;
  }

  .business-connect h2 {
    font-size: 1.3rem !important;
  }

  .hero-box h1 {
    font-size: 1.5rem !important;
  }

  .card h3 {
    font-size: 1.2em !important;
  }

  .lead {
    font-size: 1rem !important;
  }

  .cta-section .btn {
    font-size: 1rem !important;
  }
}

@media only screen and (min-width: 577px) and (max-width: 767px) {
  .stats-grid.redesigned-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}


/* XS: Small Phones */
@media (max-width: 480px) {

  .hero,
  .hero-content {
    /* height: 320px; */
    /* margin-top: 40px; */
  }

  .hero-box {
    padding: 22px 6vw 18px;
    max-width: 95vw;
    /* border-radius: 8px; */
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .about-content h2,
  .about-conten2 h2 {
    font-size: 1.2rem;
  }

  .card h3 {
    font-size: 1.5em;
  }
}