:root {
  --primary-blue: #002b6d;
  --accent-yellow: #ffc107;
  --text-white: #ffffff;
  --bp-green: #25c768;
}

body {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.gap-wrapper {
  padding-top: 80px;
  padding-bottom: 55px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

/* --->NAVBAR CSS<--- */

.navbar {
  padding: 15px 30px;
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
}
.navbar-custom-header {
  padding: 0px 20px;
}

.navbar-brand-custom {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #4a90e2 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-custom {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #333 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: #4a90e2 !important;
}

/* --->NAVBAR CSS<--- */

/* --->TOPBAR NAVBAR CSS<--- */
.top-bar-custom {
  background-color: #1a1a1a;
  color: #fff;
  padding: 8px 0;
  font-size: clamp(10px, 1.5vw, 12px);
}

.top-bar-custom a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

/* --->TOPBAR NAVBAR CSS<--- */

/* --->HOME BANNER  CSS<--- */

.wrapper {
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), transparent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.hero-section-custom {
   
   background: linear-gradient(#337AB7, #2868A0);
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
}
    .hero-section-custom .hero-inner {
        max-width:100%;
    }

    .hero-section-custom .trusted-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(211, 154, 32, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 30px;
        padding: 6px 16px;
        font-size: 0.8rem;
        color: #f5c518;
        margin-bottom: 22px;
        letter-spacing: 0.02em;
    }

.hero-section-custom .trusted-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc108;
}

.hero-section-custom .hero-title-custom {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-section-custom .hero-title-custom span {
  position: relative;
  display: inline-block;
}

.hero-section-custom .hero-title-custom span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 90px;
  height: 3px;
  background: #ffc108;
  border-radius: 2px;
}

.hero-section-custom .hero-description-custom {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 500;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-section-custom .hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-section-custom .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffc108;
  color: #1a1a1a;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 26px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.hero-section-custom .btn-primary:hover {
  background: #ffb000;
}

.hero-section-custom .btn-primary i {
  transition: transform 0.25s;
}

.hero-section-custom .btn-primary:hover i {
  transform: translateX(3px);
}

.hero-section-custom .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-white);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s;
  text-decoration: none;
}

.hero-section-custom .btn-secondary:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.07);
}

/* STATS */
.hero-section-custom .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-section-custom .stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #ffc108;
  line-height: 1;
}

.hero-section-custom .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.hero-section-custom .stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

.hero-section-custom .hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.hero-section-custom .hero-image-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-section-custom .hero-image-card .img-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #f7b8c0 0%, #b0c8e8 60%, #8ab4e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-custom .hero-image-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.hero-section-custom .float-badge-verified {
  position: absolute;
  top: 16px;
  right: -10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  animation: floatUp 3s ease-in-out infinite;
}

.hero-section-custom .badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-section-custom .badge-icon svg {
  color: #2e7d32;
}

.hero-section-custom .badge-text-top {
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
}

.hero-section-custom .badge-text-main {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
  margin-top: 1px;
}

.hero-section-custom .float-badge-rating {
  position: absolute;
  bottom: 16px;
  left: -10px;
  background: #ffc108;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: floatDown 3.5s ease-in-out infinite;
}

.hero-section-custom .rating-star-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-custom .rating-star-icon svg {
  color: #ffc108;
}

.hero-section-custom .rating-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}

.hero-section-custom .rating-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* --->HOME BANNER  CSS<--- */

/* SITE TITLES */
.main_title {
  text-align: center;
  position: relative;
  max-width: 750px;
  margin: 0 auto 35px;
}

.main_title h2 {
  margin: 20px 0 10px;
  font-weight: 600;
  color: #333;
}

.main_title p {
  color: #555555;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
}

.main_title span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
  margin: auto;
}

.main_title span em {
  width: 60px;
  height: 2px;
  background-color: #004dda;
  display: block;
  margin: auto;
}
/* SITE TITLES */

/* --->HOME ABOUT CSS<--- */
.home-about-wrapper {
  background: #f9fafb;
  padding: 60px 0px;
}

.home-about-inner .about-badge {
  background: #eff6ff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 59, 125, 0.125);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 16px;
  margin-bottom: 22px;
  color: rgb(0, 59, 125);
}

.home-about-inner .about-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d2b6e;
}

.home-about-inner .about-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: rgb(30, 41, 59);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.home-about-inner .about-desc {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* â”€â”€ FEATURE ITEMS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-about-inner .about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-about-inner .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.home-about-inner .feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #0d2b6e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-about-inner .feature-icon i {
  color: #f5c518;
  font-size: 20px;
}

.home-about-inner .feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
}

.home-about-inner .feature-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}

/* â”€â”€ RIGHT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-about-inner .about-right {
  flex: 1 1 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Yellow decorative square */
.home-about-inner .about-right::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #f5c518;
  border-radius: 16px;
  opacity: 0.25;
  z-index: 0;
}

/* Blue decorative square */
.home-about-inner .about-right::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 20px;
  width: 90px;
  height: 90px;
  background: #0e4db8;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.home-about-inner .about-img-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(13, 43, 110, 0.15);
  width: 100%;
  max-width: 460px;
}

.home-about-inner .about-img-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  /* reveal animation */
  animation: imgReveal 1.2s ease-in-out forwards;
}

/* Fallback placeholder */
.home-about-inner .about-img-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #c9d8f0 0%, #8aaee0 100%);
  display: none;
  align-items: center;
  justify-content: center;
}

.home-about-inner .about-img-placeholder i {
  font-size: 56px;
  color: rgba(255, 255, 255, 0.6);
}

/* Reveal overlay */
.home-about-inner .about-reveal-overlay {
  position: absolute;
  inset: 0;
  background: #0e4db8;
  z-index: 2;
  animation: revealSlide 1.2s ease-in-out forwards;
  border-radius: 20px;
}

@keyframes revealSlide {
  0% {
    transform: translateX(-100%);
  }

  45% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(101%);
  }
}

@keyframes imgReveal {
  0%,
  45% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes reveal_left_to_right {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/* --->HOME ABOUT CSS<--- */

/* --->HOME FEATURES CSS<--- */
.home-feature-wrapper {
  background: #ffffff;
  padding: 60px 0;
}

.home-feature-wrapper .feature-section-badge {
  background: #eff6ff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 59, 125, 0.125);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 16px;
  margin-bottom: 22px;
  color: rgb(0, 59, 125);
}

.home-feature-wrapper .feature-section-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d2b6e;
  flex-shrink: 0;
}

.home-feature-wrapper .feature-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.home-feature-wrapper .feature-box {
  background: #fff;
  border: 1.5px solid #e8ecf2;
  border-radius: 14px;
  padding: 30px 24px 28px;
  margin-bottom: 24px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  height: 100%;
}

.home-feature-wrapper .feature-box:hover {
  box-shadow: 0 16px 40px rgba(13, 43, 110, 0.1);
  border-color: #c5d0e8;
}

.home-feature-wrapper .feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #0d2b6e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.home-feature-wrapper .feature-icon-box i {
  color: #f5c518;
  font-size: 22px;
}

.home-feature-wrapper .feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.home-feature-wrapper .feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
/* --->HOME FEATURES CSS<--- */

/* --->HOME WORKFLOW CSS<--- */
.home-workflow-wrapper {
  background-color: #003b7d;
  padding: 80px 0;
}

/* Connector line between workflow cards */
.home-workflow-wrapper .workflow-col-wrap::after {
  content: "";
  position: absolute;
  top: 32px; /* vertically center with the yellow number box */
  right: -30px;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 193, 7, 0.5),
    rgba(255, 193, 7, 0.5)
  );
  z-index: 1;
}

/* Hide the connector on the last card */
.home-workflow-wrapper .col-md-4:last-child .workflow-col-wrap::after {
  display: none;
}

.home-workflow-wrapper .workflow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 30px;
  padding: 5px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #facc15;
  margin-bottom: 20px;
}

.home-workflow-wrapper .workflow-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5c518;
  flex-shrink: 0;
}

.home-workflow-wrapper .workflow-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.home-workflow-wrapper .workflow-col-wrap {
  position: relative;
  padding-top: 16px;
  padding-left: 16px;
  height: 100%;
}

.home-workflow-wrapper .workflow-number-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.home-workflow-wrapper .workflow-number-box span {
  font-size: 1.35rem;
  font-weight: 700;
  color: #003b7d;
  line-height: 1;
}

.home-workflow-wrapper .workflow-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  min-height: 300px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}

.home-workflow-wrapper .workflow-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.home-workflow-wrapper .workflow-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.home-workflow-wrapper .workflow-icon-box i {
  color: #ffc107;
  font-size: 24px;
}

.home-workflow-wrapper .workflow-box h3 {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.home-workflow-wrapper .workflow-box p {
  font-size: 14px;
  color: rgba(219, 234, 254, 0.9);
  line-height: 1.7;
  margin: 0;
}
/* --->HOME WORKFLOW CSS<--- */

/* --->ABOUT-US CSS<--- */
.about-hero-section {
    /*  background: #004dda url("../img/pattern_2.svg") center center repeat fixed;*/
    background: linear-gradient(180deg, #337AB7 0%, #2868A0 100%);
    position: relative;
}
.about-us-detail {
  background: #f8f8f8;
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.about-hero-content {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-title {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 600;
  color: #fff;
  animation: fadeInUp 0.8s ease;
}

.about-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

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

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

/* Stats Section */
.stats-section-about {
  background: #fff;
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.stat-card-about {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.stat-card-about.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-card-about:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 77, 218, 0.2);
}

.stat-icon-about {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-blue), #0066ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 3vw, 24px);
  color: #fff;
}

.stat-number-about {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.stat-label-about {
  font-size: clamp(14px, 2vw, 16px);
  color: #555;
  font-weight: 500;
}

/* Story Section */
.story-section-about {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.story-content-about {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.story-content-about.animate {
  opacity: 1;
  transform: translateX(0);
}

.section-label-about {
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title-about {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.section-description-about {
  text-align: justify;
  font-size: clamp(14px, 2vw, 16px);
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.story-image-about img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section-about {
  padding: 80px 0;
  background: #fff;
}

.values-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card-about {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 40px 30px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-blue);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
}

.value-card-about.animate {
  opacity: 1;
  transform: scale(1);
}

.value-card-about:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 77, 218, 0.15);
  border-left-width: 8px;
}

.value-icon-about {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), #0066ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 28px);
  color: #fff;
}

.value-title-about {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.value-description-about {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #555;
  line-height: 1.7;
}

/* Team Section */
.team-section-about {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #fff;
}

.team-member-about {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  background: #fff;
  padding: 15px 0px;
  border-radius: 7px;
}

.team-member-about:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px #ededed;
}

.team-member-about.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-avatar-about {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #0066ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 5vw, 25px);
  color: #fff;
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.team-member-about:hover .team-avatar-about {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-yellow);
}

.team-name-about {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.team-role-about {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #004dda;
  font-weight: 500;
}

/* CTA Section */
.cta-section-about {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 100%);
  position: relative;
  overflow: hidden;
}

.cta-section-about::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-content-about {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title-about {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.cta-description-about {
  font-size: clamp(16px, 2.5vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-about {
  background: var(--accent-yellow);
  color: #333;
  padding: 10px 40px;
  font-size: clamp(14px, 2vw, 16px);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button-about:hover {
  background: #ffb800;
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}
/* --->ABOUT-US CSS<--- */

/* --->READ-REVIEW DESIGN CSS<--- */
.read-reviews-wrapper {
  padding: 80px 0px 40px;
}

.review-header h1 {
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.2px;
  color: #fff;
}

.review-header .verify-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 2px;
}

.review-header .hero-stars i {
  color: #ffd34d;
  font-size: 18px;
}

.review-header .hero-rating {
  color: #fff;
  font-size: 14px;
  margin-left: 8px;
  font-weight: 500;
}

.review-header .hero-small {
  font-size: 13px;
  margin-top: 4px;
  margin-left: 0px !important;
  opacity: 0.95;
  text-align: left;
  color: #fff;
}

.review-header .hero-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.review-header .hero-quick-stat-card {
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-header .hero-quick-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
}

.review-header .hero-quick-stat-icon--price {
  background: linear-gradient(135deg, #ffbf1f 0%, #f59e0b 100%);
}

.review-header .hero-quick-stat-icon--deadline {
  background: linear-gradient(135deg, #2fd36f 0%, #16a34a 100%);
}

.review-header .hero-quick-stat-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.review-header .hero-quick-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.76);
}

.review-header .hero-quick-stat-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}

.read-reviews-wrapper.review-header .verify-badge i {
  color: #25c768;
  font-size: 22px;
}

canvas {
  display: block;
}

.gauge-card {
  border-radius: 12px;
  padding: 30px 40px 30px;
  text-align: center;
  width: 280px;
  position: relative;
}

.guage-container {
  position: relative;
  width: 200px;
  height: 110px;
  margin: 0 auto 16px;
}

.gauge-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(16px, 4vw, 32px);
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.gauge-num {
  font-weight: 800;
  font-size: 2rem;
}

.gauge-caption {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: #fff;
}

.gauge-caption .sub {
  opacity: 0.9;
}

.gauge-caption .brand {
  font-weight: 700;
}

.verify-badge i {
  color: #25c768;
  font-size: 22px;
}

.read-reviews-wrapper .about-card {
  padding: 0px 0px;
  margin-bottom: 18px;
}

.read-reviews-wrapper .card-main {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.read-reviews-wrapper .about-inner {
  background: #216fcd;
  border-radius: 10px;
  padding: 18px 20px;
  color: #e5f1ff;
  font-size: 14px;
  line-height: 1.6;
}

.read-reviews-wrapper .about-inner h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.read-reviews-wrapper .reviews-header h4 {
  font-size: 13px;
  margin: 0;
  font-weight: 600;
}

.read-reviews-wrapper .review-input-card {
  padding: 22px 26px 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.read-reviews-wrapper .review-input-card:hover {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.read-reviews-wrapper .review-input-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.read-reviews-wrapper .review-hint {
  text-align: center;
  font-size: 14px;
  color: var(--bp-muted);
  margin-bottom: 14px;
}

.read-reviews-wrapper .star-select {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.read-reviews-wrapper .star-select {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.read-reviews-wrapper .star-select button {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #e3e7ef;
  background: #fff;
  font-size: 22px;
  color: #ccc;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.read-reviews-wrapper .reviews-card {
  padding: 18px 0 6px;
  font-size: 13px;
}

.read-reviews-wrapper .reviews-header {
  padding: 0 26px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #edf0f5;
}

.read-reviews-wrapper .review-item {
  padding: 16px 26px 14px;
  border-bottom: 1px solid #edf0f5;
}

.read-reviews-wrapper .reviews-pagination {
  border-top: 1px solid #edf0f5;
  padding: 12px 26px 14px;
  display: flex;
  justify-content: center;
}

.read-reviews-wrapper .reviews-pagination .pagination {
  gap: 6px;
}

.read-reviews-wrapper .reviews-pagination .page-link {
  min-width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 2px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d7e2;
  color: #4b5563;
  background-color: #ffffff;
  line-height: 1;
}

.read-reviews-wrapper .reviews-pagination .page-item.active .page-link {
  background: #1f6fd3;
  border-color: #1f6fd3;
  color: #fff;
  box-shadow: 0 2px 6px rgba(31, 111, 211, 0.35);
}

.read-reviews-wrapper .review-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.read-reviews-wrapper .review-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.read-reviews-wrapper .review-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.read-reviews-wrapper .bizprobe-reviews-shell {
  position: relative;
}

.read-reviews-wrapper .bizprobe-reviews-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(2px);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 5;
}

.read-reviews-wrapper .bizprobe-reviews-shell.is-loading .bizprobe-reviews-loading {
  opacity: 1;
  visibility: visible;
}

.read-reviews-wrapper .bizprobe-reviews-shell.is-loading #siteReviewsContainer {
  opacity: 0.4;
  pointer-events: none;
}

.read-reviews-wrapper .bizprobe-reviews-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(31, 111, 211, 0.18);
  border-top-color: #1f6fd3;
  border-radius: 50%;
  animation: bizprobe-spin 0.8s linear infinite;
}

.read-reviews-wrapper .bizprobe-reviews-loading-text {
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

@keyframes bizprobe-spin {
  to {
    transform: rotate(360deg);
  }
}

.read-reviews-wrapper .side-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e1e5f0;
  padding: 18px 0 18px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.read-reviews-wrapper .side-logo-wrap {
  padding: 18px 26px 18px;
  border-bottom: 1px solid #edf0f5;
  text-align: center;
}

.read-reviews-wrapper .side-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 14px;
  padding: 20px 30px;
  border-radius: 8px;
  border: 1px solid #dde3f0;
  background: #ffffff;
}

.read-reviews-wrapper .side-btn {
  display: block;
  width: 100%;
  border: none;
  background: #1f6fd3;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0;
  border-radius: 4px;
}

.read-reviews-wrapper .side-info {
  padding: 10px 26px 4px;
  font-size: 12px;
}

.read-reviews-wrapper .side-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #edf0f5;
}

.read-reviews-wrapper .best-picks {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e1e5f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 18px;
}

.read-reviews-wrapper .best-header {
  background: #1c6fcf;
  color: #fff;
  padding: 9px 16px;
  border-radius: 14px 14px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.read-reviews-wrapper .best-list {
  padding: 12px 16px 10px;
}

.read-reviews-wrapper .best-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f5;
}

.read-reviews-wrapper .best-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dfe6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.read-reviews-wrapper .best-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

.read-reviews-wrapper .best-logo__fallback {
  font-size: 18px;
  color: #1f6fd3;
  font-weight: 700;
}

.read-reviews-wrapper .best-body {
  flex: 1;
  font-size: 12px;
}

.read-reviews-wrapper .best-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.read-reviews-wrapper .btn-visit-sm {
  border: none;
  background: #1c6fcf;
  color: #fff;
}

.read-reviews-wrapper .btn-visit-sm,
.btn-reviews-sm {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
}

.read-reviews-wrapper .btn-reviews-sm {
  border: 1px solid #d3d8e3;
  background: #fff;
  color: #4b5563;
}

.read-reviews-wrapper .best-stars i {
  color: #f7b302;
  font-size: 11px;
}

.read-reviews-wrapper .ad-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.read-reviews-wrapper .ad-box {
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 40px 0;
  margin-top: 10px;
  color: #9ca3af;
  font-size: 12px;
}

.read-reviews-wrapper .side-info-row i {
  color: #60a5fa;
  font-size: 15px;
}

.read-reviews-wrapper .review-stars i {
  font-size: 15px;
  color: #f7b302;
}

.read-reviews-wrapper .modal-review .modal-content {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  padding: 22px 26px 24px;
}

.read-reviews-wrapper .modal-review .modal-dialog {
  max-width: 640px;
  font-family: Arial, Helvetica, sans-serif;
}

.read-reviews-wrapper .modal-review .modal-header {
  border: 0;
  padding-bottom: 0;
}

.read-reviews-wrapper .modal-review-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.read-reviews-wrapper .modal-review .modal-header .btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.read-reviews-wrapper .review-star-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 16px;
}

.read-reviews-wrapper .review-star-tile {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.read-reviews-wrapper .review-star-icon {
  font-size: 22px;
  color: #cbd5e1;
}
.load-more-reviews-wrap {
    display:flex;
    justify-content:center;
   

}

.load-more-reviews-btn {
    background: #1f6fd3;
    color: #fff;
    outline: none;
    border: none;
    padding: 10px 40px;
    margin-top: 20px;
    border-radius: 10px;
}

.modal-review .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}

.modal-review .form-control {
  font-size: 13px;
  border-radius: 10px;
  border-color: #e5e7eb;
  background: #f5f5f7;
  padding: 0.6rem 0.85rem;
}

.modal-review .form-control::placeholder {
  color: #9ca3af;
}

.modal-review .form-control:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 0.16rem rgba(37, 99, 235, 0.18);
}

.modal-review .btn-submit-review {
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  padding: 0.7rem 1rem;
  background: #1d67c9;
  border-color: #1d67c9;
}

.modal-review .btn-submit-review:hover {
  background: #1653a6;
  border-color: #1653a6;
}

/* hover & active: light green box, white star */
.review-star-tile:hover,
.review-star-tile.is-active {
  background: #4ade80;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
  transform: translateY(-1px);
}

.review-star-tile:hover .review-star-icon,
.review-star-tile.is-active .review-star-icon {
  color: #ffffff;
}
/* --->READ-REVIEW DESIGN CSS<--- */

/* --->CONTACT US CSS<--- */

.bp-hero-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.bp-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.bp-hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Form */
.bp-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bp-form-control {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.bp-form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 77, 218, 0.15);
}

.bp-btn-submit {
  background: linear-gradient(135deg, var(--primary-blue), #0066ff);
  border: none;
  color: #fff;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  width: 100%;
  transition: all 0.3s;
}

.bp-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 77, 218, 0.3);
}

/* Features */
.bp-features {
  background: linear-gradient(135deg, #000f2c, #001a3d);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  height: 100%;
}

.bp-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.bp-feature-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #333;
}

/* --->CONTACT US CSS<--- */

/* --->REVIEW-MAIN PAGE CSS<--- */
.reviews-main-header {
  padding: 80px 0px;
  color: #fff;
}

.reviews-main-header .hero-title,
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.reviews-main-header .hero-sub,
.hero-small {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.reviews-main-header .hero-stats {
  justify-content: center;
  align-items: center;
}

.hero-stats .num {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

.hero-stats .num.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-stats .stat {
    background:transparent;
}

.stat .label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
}

/* *=========Layout / Content=========*/
.review-main-section {
  padding: 30px 0px;
}

.content-wrap,
.page-wrap {
  padding: 32px 0;
}

.card-main {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* ========= About Card ========= */
.about-card {
  padding: 0px 0px;
  margin-bottom: 18px;
}

.about-inner {
  background: #216fcd;
  border-radius: 10px;
  padding: 18px 20px;
  color: #e5f1ff;
  font-size: 14px;
  line-height: 1.6;
}

.about-inner h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.about-inner h2 span {
  font-weight: 700;
  color: #fff;
}

/* ========= Filter Bar (index page) ========= */
.filter-shell {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
}

.filter-icon {
  color: #337ab7;
}

.filter-title {
  font-weight: 500;
}

.filter-hint {
  color: #6b7280;
  font-weight: 500;
  font-size: 13px;
}

.filter-pair {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.select-pill {
  padding: 6px 25px;
  background: #f4f6fa;
  border: 1px solid #e6eaf2;
  color: #111827;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
}

.select-pill:hover {
  background: #eef1f6;
}

.svc-count {
  color: #337ab7;
  font-weight: 500;
  margin-right: 0.25rem;
}

.btn-reset {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #0f172a;
  /* padding: 0.45rem 0.95rem; */
  border-radius: 8px;
  font-weight: normal;
  padding: 4px 20px;
}

.btn-reset:hover {
  background: #f9fafb;
  border: 1px solid #d1d5db;
}

/* ========= Service Cards (index) ========= */
.service-card {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.card-grid h2 {
  color: #212121;
  font-size: 16px;
  margin: 15px 0px;
  font-weight: 500;
}

.badge-verified {
  background: var(--bp-green);
}

.badge-featured {
  background: #facc15;
}

.rating-stars i {
  color: #f5a623;
}

.rating-stars span {
  font-size: 13px;
}

.thumb-wrap {
  position: relative;
}

.thumb {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--bp-border);
}

.thumb-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e6f0ff;
  border: 1px solid #cfe2ff;
  color: #337ab7;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.kpi {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
}

.kpi-icon {
  width: 45px;
  height: 45px;
  font-size: 20px;
  border-radius: 7px;
  background: #e0edff;
  display: inline-grid;
  place-items: center;
  color: #337ab7;
}

.review-wrapper-btn button {
  margin-bottom: 10px;
}

.review-wrapper-btn a {
  text-decoration: none;
}

.review-wrapper-btn .visit-site-btn {
  outline: none;
  border: none;
  background: #337ab7;
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.review-wrapper-btn .read-review-btn {
  border: 1px solid #0000001a;
  font-size: 13px;
  background: #fff4d7;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 100px;
  text-decoration: none;
  transition: background 0.5s;
}

.review-wrapper-btn .read-review-btn:hover {
  background: #f59e0b;
}

/* Buttons */
.btn-full {
  display: block;
  width: 100%;
  font-weight: 600;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff4d7;
  border-top: 1px solid #0000001a;
}

.service-card .btn-primary {
  background-color: #337ab7;
  padding: 5px 10px;
}

/* ========= Sidebar (index + single) ========= */
.sticky-col {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.06);
  margin-bottom: 1.5rem;
}

.sidebar-header {
  background: #2868a0;
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.sidebar-list {
  padding: 1rem;
}

.sidebar-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-item:last-child {
  border-bottom: 0;
}

.rank-badge {
  width: 38px;
  height: 38px;
  font-size: 13px;
  border-radius: 10px;
  background: #2868a0;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-text .title {
  font-size: 14px;
  font-weight: 600;
}

.sidebar-text .stars i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.featured-card {
  background: linear-gradient(180deg, #2868a0 0%, #2d8be6 100%);
  border-radius: 14px;
  color: #fff;
  padding: 1.6rem 1rem;
  text-align: center;
}

/* ========= Review List / Single Page ========= */
.card-soft {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.review-item {
  padding: 16px 26px 14px;
  border-bottom: 1px solid #edf0f5;
}

.review-item:first-child {
  border-top: 0;
}

.review-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  margin-top: 2px;
}

.review-stars i {
  font-size: 15px;
  color: #f7b302;
}

.review-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Review wrapper cards */
.reviews-card {
  padding: 18px 0 6px;
  font-size: 13px;
}

.reviews-header {
  padding: 0 26px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #edf0f5;
}

.reviews-header h4 {
  font-size: 13px;
  margin: 0;
  font-weight: 600;
}

.reviews-header button {
  border-radius: 10px;
  font-size: 11px;
  padding: 3px 10px;
}

/* Write review card */
.review-input-card {
  padding: 22px 26px 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.review-input-card:hover {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.review-input-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.review-hint {
  text-align: center;
  font-size: 14px;
  color: var(--bp-muted);
  margin-bottom: 14px;
}

.star-select {
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* Star rating buttons */
.star-select button {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #e3e7ef;
  background: #fff;
  font-size: 22px;
  color: #ccc;
  /* default grey */
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.star-select button.active {
  color: #f7b302 !important;
  /* FILL COLOR */
  border-color: #f7b302 !important;
  background: #fff6e5;
  /* soft orange glow */
}

.pagination-modern {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  border: 1px solid #e5e7eb;
  padding: 15px;
  border-radius: 10px;
}

.pagination-modern .page-link {
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  font-size: 12px;
}

.active > .page-link {
  background: #337ab7 !important;
}

/* --->REVIEW-MAIN PAGE CSS<--- */

/* --->FOOTER CSS<--- */
.footer-wrapper {
  padding: 60px 0px 0px;
}
footer {
  background-color: #101828;
}

footer h3 {
  margin: 0 0 15px 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #fff;
  font-weight: 600;
}

footer ul li {
  margin-bottom: 5px;
}

footer ul li a {
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #99a1af;
}

/*footer ul li a::after {
  content: "â†’";
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}*/

footer ul li a:hover {
  color: #0066ff;
  transform: translateX(5px);
}

footer ul li a:hover::after {
  opacity: 1;
  right: -5px;
}

footer .logo_normal {
  filter: brightness(0) invert(1);
  margin: 0 0 15px 0;
}

.footer-about p {
  font-size: 13px;
  color: #99a1af;
  line-height: 1.6;
  width: 450px;
}

.footer-contact p {
  font-size: 13px;
  color: #99a1af;
  line-height: 1.6;
}
.footer-contact p i {
  color: #ffc107;
  margin-right: 8px;
}

hr {
  margin: 20px 0 20px 0;
  border-color: #aeaeae;
}

.footer_copyright p {
  font-size: 14px;
  color: #99a1af;
}

ul#additional_links {
  float: right;
  padding: 0;
  color: #555;
  font-size: 13px;
}

#toTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
  border-radius: 50%;
  text-align: center;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
}

#toTop:hover {
  background: #004dda;
}

#toTop::after {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  display: block;
  top: 50%;
  transform: translateY(-55%);
}

@media (max-width: 767px) {
  .hero-illustration-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .review-wrapper-btn .read-review-btn {
    padding: 10px 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .review-wrapper-btn .visit-site-btn,
  .review-wrapper-btn .read-review-btn {
    width: 100%;
  }
  .gap-wrapper {
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .main_title {
    margin: 0 auto 20px;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-link-custom {
    padding: 0.75rem 1rem !important;
  }
  .footer_copyright {
    text-align: center;
  }
  ul#additional_links {
    max-width: 100%;
  }
  /* .about-hero-section {
    padding: 60px 0 40px;
  } */

  .stats-section-about {
    padding: 40px 0;
  }

  .story-section-about,
  .values-section-about,
  .team-section-about,
  .cta-section-about {
    padding: 50px 0;
  }

  .story-image-about::before {
    width: 150px;
    height: 150px;
    top: -10px;
    right: -10px;
  }
  .navbar {
    padding: 15px 8px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #333 !important;
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    padding: 20px;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-collapse.collapsing {
    left: -100%;
    transition: left 0.3s ease-in-out;
    height: 100vh;
  }

  .navbar-nav {
    margin-top: 60px;
  }

  .nav-link-custom {
    color: #ffffff !important;
    padding: 15px 10px !important;
    border-bottom: 1px solid #404040;
    font-size: 1rem;
  }

  .nav-link-custom:hover {
    color: #4a90e2 !important;
    background-color: rgba(74, 144, 226, 0.1);
  }

  /* Close button */
  .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
  }

  .close-menu:hover {
    color: #4a90e2;
  }

  /* Menu header text */
  .menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  /* Overlay */
  .navbar-collapse.show::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
  }
  .footer-wrapper {
    padding: 40px 0px 0px;
  }

  
}

@media (max-width: 991.98px) {
  .sticky-col {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .hero {
    padding: 56px 0 46px;
  }

  .review-header .hero-quick-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .review-header .hero-quick-stat-card {
    min-width: 0;
  }

  .gauge {
    width: 148px;
    height: 148px;
  }
  .gauge-inner {
    width: 112px;
    height: 112px;
  }
    .footer-about p {
        width:100%;
    }
}
@media (max-width: 575.98px) {
  .gauge {
    width: 136px;
    height: 136px;
  }
  .gauge-inner {
    width: 102px;
    height: 102px;
  }
  .pill {
    padding: 0.48rem 0.6rem;
    border-radius: 10px;
  }
}

@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: 220px 1fr;
  }
}


.bizprobe-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.bizprobe-pagination__pages {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bizprobe-pagination__btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

    .bizprobe-pagination__btn:hover:not(:disabled) {
        background: #2f73b5;
        color: #fff;
        border-color: #2f73b5;
    }

    .bizprobe-pagination__btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.bizprobe-pagination__btn.bizprobe-pagination__btn--active {
    background: #2f73b5;
    color: #fff;
    border-color: #2f73b5;
}

.bizprobe-pagination__btn.bizprobe-pagination__btn--ellipsis {
    cursor: default;
}



/*PAGE NOT FOUND CSS*/
.bizprobe-404-wrapper {
    padding: 80px 0px;
    background: linear-gradient(135deg, #ddeeff 0%, #c8e0f8 40%, #d6eaff 100%);
}

.bizprobe-main {
    text-align: center;
}

.bizprobe-container {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(37,99,235,.07);
}

.bizprobe-icon-wrap {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bizprobe-icon-wrap i {
    font-size: 2rem;
    color: #337AB7;
}

.bizprobe-num {
    font-size: 6rem;
    font-weight: 800;
    color: #337AB7;
    line-height: 1;
    margin-bottom: 20px;
}


.bizprobe-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.bizprobe-desc {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.bizprobe-actions {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bizprobe-btn-primary {
    background: #337AB7;
    color: #fff;
    padding: .65rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.bizprobe-btn-primary:hover {
    background: #1d4ed8;
}

.bizprobe-btn-outline {
    background: #fff;
    color: #337AB7;
    border: 1.5px solid #bfdbfe;
    padding: .63rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.bizprobe-btn-outline:hover {
    background: #eff6ff;
}

.bizprobe-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.bizprobe-divider::before,
.bizprobe-ivider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.bizprobe-divider span {
    font-size: .75rem;
    color: #94a3b8;
    font-weight: 500;
}

.bizprobe-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.bizprobe-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .85rem;
    background: #eff6ff;
    color: #337AB7;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #bfdbfe;
}

.bizprobe-chip:hover {
    background: #337AB7;
    color: #fff;
}

    .bizprobe-chip i {
        font-size: .75rem;
    }

/*PAGE NOT FOUND CSS*/


/* ── Scoped prefix: au- ── */


/* ─── About Section ─────────────────────────────── */
.au-about {
    background: #f7f8fc;
    text-align: center;
    padding: 80px 0px 40px
}

.au-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #337AB7;
    margin-bottom: 18px;
    background: #337AB71A;
    border-radius: 10px;
    padding: 5px 20px;
}



.au-title, .section-title {
    font-size: clamp(2rem, 4vw, 30px);
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.2;
}

.au-lead {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
}

/* feature cards */
.au-feat-card {
    padding: 36px 28px 32px;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
    text-align: center;
}

    .au-feat-card:hover {
        box-shadow: 0 12px 40px rgba(90,106,207,.12);
    }

.au-feat-icon-wrap img {
    width: 70px;
    margin-bottom: 20px
}


.au-feat-heading {
    font-size: 1.15rem;
    color: #111827;
}

.au-feat-desc {
    font-size: 13.5px;
    color: #4B5563;
    margin: 0;
}

/* ─── Mission Section ────────────────────────────── */
.au-mission {
    background: linear-gradient(180deg, #337AB7 0%, #2868A0 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}



.au-mission-inner {
    position: relative;
    z-index: 1;
}

/* decorative blobs */
.au-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
    pointer-events: none;
}

.au-blob-1 {
    width: 380px;
    height: 380px;
    background: #7b8fff;
    top: -80px;
    right: -80px;
}

.au-blob-2 {
    width: 260px;
    height: 260px;
    background: #a5b4ff;
    bottom: 20px;
    left: -60px;
}

.au-mission-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 6px 18px 6px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}

    .au-mission-pill i {
        font-size: 16px;
        color: #a5b4ff;
    }

.au-mission-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.25;
}

.au-mission-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 36px 36px 36px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.au-mission-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .au-mission-card-icon i {
        font-size: 24px;
        color: #c5cdff;
    }

.au-mission-card-body p {
    font-size: 15px;
    color: #FFF;
    line-height: 1.8;
    margin: 0;
    text-align: start;
}

/* CTA button */
.au-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #3a4fbb;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    margin-top: 36px;
}

    .au-cta-btn:hover {
        background: #eef0fb;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.18);
        color: #2c3ea8;
    }

    .au-cta-btn i {
        font-size: 16px;
    }

.aut-feat-card-wrapper {
    background: #FFF;
    position: relative;
    z-index: 2;
    padding: 28px;
    top: 70px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #337AB7;
    background: #337AB71A;
    border-radius: 10px;
    padding: 5px 20px;
    margin-bottom: 10px;
}

.section-sub {
    color: var(--bp-muted);
    max-width: 720px;
    margin: 0 auto;
}
/* WHAT WE DO */
.what-we-do-wrapper, .why-us-wrapper, .cta-wrapper-about-us {
    padding: 60px 0px
}

.wedo-card {
    border-radius: 18px;
    padding: 2rem;
    color: #fff;
    height: 100%;
    box-shadow: 0 14px 34px rgba(15, 27, 61, 0.12);
}

    .wedo-card.blue {
        background: linear-gradient(180deg, #337AB7 0%, #2868A0 100%);
    }

    .wedo-card.green {
        background: linear-gradient(140deg, #22b07a, #16704a);
    }

    .wedo-card h3 {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 1.2rem;
    }

    .wedo-card .top-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .15);
        border: 1px solid rgba(255, 255, 255, .2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wedo-card ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0;
    }

    .wedo-card li {
        padding: 0.45rem 0;
        display: flex;
        gap: 0.6rem;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.95rem;
    }

        .wedo-card li i {
            margin-top: 0.25rem;
        }
/* WHY CHOOSE */
.why {
    background: var(--bp-bg);
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.6rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: 0.25s;
    box-shadow: 0px 4px 6px -4px #0000001A;
}

    .why-card:hover {
        box-shadow: 0 16px 40px rgba(15, 27, 61, 0.08);
    }

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bp-blue-soft);
    color: var(--bp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.why-card p {
    color: var(--bp-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* CTA */
.cta-wrapper-about-us .cta {
    background: linear-gradient(180deg, #337AB7 0%, #2868A0 100%);
    color: #fff;
    text-align: center;
    padding: 50px 0;
    border-radius: 24px
}

.cta h2 {
    color: #fff;
    font-size: 24px;
}


.cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    max-width: 620px;
    margin: 0.8rem auto 1.8rem;
}

.cta-wrapper-about-us a {
    text-decoration: none;
}



.btn-bp {
    background: #fff;
    color: #337AB7;
    border-radius: 10px;
    padding: 10px 20px;
    border: 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: 0.2s;
}

.btn-bp-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 10px 20px;
    transition: 0.2s;
}


/*LATEST ABOUT US SECTION CSS STARTS HERE */

.git-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    max-width: 700px;
    margin: 0 auto;
}



.git-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.git-cards-row {
    display: flex;
    flex-wrap:wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.git-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap:wrap;
}

.git-card-icon {
    width: 36px;
    height: 36px;
    background: #eef2fb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .git-card-icon i {
        font-size: 15px;
        color: #4a6fa5;
    }

.git-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.git-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.git-card-desc {
    font-size: 14px;
    color: #6b7a99;
    line-height: 1.4;
}

.git-card-link {
    font-size: 0.78rem;
    color: #4a6fa5;
    text-decoration: none;
    font-weight: 500;
}

    .git-card-link:hover {
        text-decoration: underline;
    }

.git-form-section {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 30px 24px;
    margin-bottom:40px;
}

.git-form-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 22px;
}

.git-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.git-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

.git-label {
    font-size:14px;
    font-weight: 600;
    color: #2c3e60;
}

.git-input,
.git-select,
.git-textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #d8e0ee;
    border-radius: 7px;
    font-size: 0.82rem;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

    .git-input::placeholder,
    .git-textarea::placeholder {
        color: #aab4c8;
    }

    .git-input:focus,
    .git-select:focus,
    .git-textarea:focus {
        border-color: #4a6fa5;
        box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
    }

.git-select {
    appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
    color: #aab4c8;
}

    .git-select.selected {
        color: #1a1a2e;
    }

.git-select-wrap {
    position: relative;
}

    .git-select-wrap .git-select-arrow {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #6b7a99;
        font-size: 12px;
    }

.git-textarea {
    resize: none;
    height: 90px;
    line-height: 1.5;
}

.git-char-count {
    text-align: right;
    font-size: 0.72rem;
    color: #aab4c8;
    margin-top: 2px;
}

.git-field-full {
    margin-bottom: 14px;
}

.git-btn {
    width: 100%;
    padding: 12px;
    background: #3b5ea6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
    margin-top: 4px;
}

    .git-btn:hover {
        background: #2f4e8a;
    }

    .git-btn:active {
        transform: scale(0.99);
    }


/* ══════════════════════════════
       FAQ SECTION
    ══════════════════════════════ */


.contact-faqs .faq-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.contact-faqs .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    /* Override Bootstrap accordion styles */
    .contact-faqs .faq-accordion .faq-item {
        border: 1px solid #e8edf5 !important;
        border-radius: 10px !important;
        overflow: hidden;
        background: #fff;
    }

        .contact-faqs .faq-accordion .faq-item .faq-header {
            margin: 0;
        }

        .contact-faqs .faq-accordion .faq-item .faq-btn {
            background: #fff;
            color: #1a1a2e;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 16px 18px;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: none !important;
            transition: background 0.2s;
        }

            .contact-faqs .faq-accordion .faq-item .faq-btn:not(.collapsed) {
                background: #f7f9fd;
                color: #3b5ea6;
            }

            .contact-faqs .faq-accordion .faq-item .faq-btn .faq-q-icon {
                color: #4a6fa5;
                font-size: 14px;
                flex-shrink: 0;
            }

            .contact-faqs .faq-accordion .faq-item .faq-btn .faq-q-text {
                flex: 1;
            }

            .contact-faqs .faq-accordion .faq-item .faq-btn .faq-chevron {
                color: #6b7a99;
                font-size: 13px;
                flex-shrink: 0;
                transition: transform 0.3s ease;
            }

            .contact-faqs .faq-accordion .faq-item .faq-btn.collapsed .faq-chevron {
                transform: rotate(0deg);
            }

            .contact-faqs .faq-accordion .faq-item .faq-btn:not(.collapsed) .faq-chevron {
                transform: rotate(180deg);
            }

        .contact-faqs .faq-accordion .faq-item .faq-body {
            font-size: 0.83rem;
            color: #6b7a99;
            line-height: 1.65;
            padding: 0 18px 16px 42px;
            background: #f7f9fd;
        }

    .contact-faqs .faq-accordion .accordion-collapse {
        border: none;
    }
.contact-faqs .accordion-button::after {
    display:none;
}
/* ── RESPONSIVE ── */
/* ══════════════════════════════
       NEED IMMEDIATE HELP SECTION
    ══════════════════════════════ */
.nih-section {
    text-align: center;
    background: linear-gradient(135deg, #F0F7FF 0%, #E0EFFF 100%);
    padding: 60px 0px
}

.nih-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.nih-subtitle {
    font-size: 0.9rem;
    color: #6b7a99;
    margin-bottom: 36px;
}

.nih-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.nih-icon-wrap {
    width: 60px;
    height: 60px;
    background: #eef2fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .nih-icon-wrap i {
        font-size: 22px;
        color: #4a6fa5;
    }

.nih-card-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.nih-card-desc {
    font-size: 0.82rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 22px;
    flex: 1;
}

.nih-card-btn {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid #2968A3;
    border-radius: 6px;
    background: #fff;
    color: #2968A3;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    cursor: pointer;
}

    .nih-card-btn:hover {
        background: #3b5ea6;
        border-color: #3b5ea6;
        color: #fff;
        text-decoration: none;
    }

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
    .git-cards-row {
        flex-direction: column;
    }

    .git-form-section {
        padding: 20px 16px;
    }

    .faq-accordion .faq-item .faq-btn {
        font-size: 0.83rem;
        padding: 14px 14px;
    }

    .faq-accordion .faq-item .faq-body {
        padding: 0 14px 14px 38px;
        font-size: 0.8rem;
    }

    .nih-card {
        padding: 28px 18px 22px;
    }
}
/*LATEST ABOUT US SECTION CSS ENDS HERE */