/* ===================================================
   ChallanWale.com - Comprehensive Main Stylesheet
   Modern, Responsive, Pixel-Perfect Bootstrap 5 Design
   Includes: Home, About Us, and Contact Us Pages
=================================================== */

:root {
  --primary-color: #0b63d8;
  --primary-hover: #084ea8;
  --primary-light: #eaf2fd;
  --secondary-color: #0d1b2a;
  --dark-bg: #14171d;
  --dark-card: #1d222b;
  --dark-border: #2a313d;
  --gold-accent: #e5a93c;
  --gold-gradient: linear-gradient(135deg, #f5c066 0%, #c98822 100%);
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 99, 216, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ================= TOP NAVBAR ================= */
.navbar-custom {
  background: #ffffff;
  padding: 14px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

.brand-text-logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
}

.brand-text-logo .text-challan {
  color: var(--primary-color);
}

.brand-text-logo .text-wale {
  color: #1e293b;
}

.brand-text-logo .text-dot {
  color: var(--primary-color);
}

.navbar-custom .navbar-nav {
  gap: 28px;
}

.navbar-custom .nav-link {
  font-weight: 600;
  color: #334155;
  padding: 8px 12px !important;
  font-size: 0.98rem;
  position: relative;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-color);
}

.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background-color: var(--primary-color);
  border-radius: 4px;
}

.nav-cta-btn {
  background-color: var(--primary-color);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(11, 99, 216, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta-btn:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 99, 216, 0.35);
}

.header-phone-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.header-phone-box i {
  font-size: 1.1rem;
  color: #60a5fa;
}

.header-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 0 18px;
}

/* ================= HERO BANNER (HOME) ================= */
.hero-section {
  position: relative;
  background-color: #111827;
  background-image: linear-gradient(
      rgba(15, 23, 42, 0.78),
      rgba(15, 23, 42, 0.86)
    ),
    url('../img/page-header.jpg');
  background-size: cover;
  background-position: center top;
  color: #ffffff;
  padding: 60px 0 110px;
  overflow: hidden;
}

.hero-officer-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.officer-image-container {
  position: relative;
  max-width: 440px;
  text-align: center;
}

.officer-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.hero-title-box {
  padding-left: 20px;
}

.hero-badge-square {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 2px;
}

.hero-main-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-accent-line {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 4px;
  margin-bottom: 32px;
}

.btn-hero-consult {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 14px 38px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 8px 24px rgba(11, 99, 216, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-consult:hover {
  background-color: #084ea8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 99, 216, 0.5);
}

/* ================= FLOATING CHALLAN CHECK CARD ================= */
.challan-check-wrapper {
  margin-top: -65px;
  position: relative;
  z-index: 20;
  margin-bottom: 50px;
}

.challan-search-card {
  background: #ffffff;
  border: 2px dashed #0b63d8;
  border-radius: var(--radius-md);
  padding: 38px 42px;
  box-shadow: 0 20px 45px rgba(11, 99, 216, 0.12);
}

.challan-card-title {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.challan-card-title span {
  color: var(--primary-color);
}

.challan-form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.challan-input-group {
  position: relative;
  margin-bottom: 16px;
}

.challan-input-group .form-control {
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  padding-left: 16px;
  transition: var(--transition);
  background-color: #f8fafc;
}

.challan-input-group .form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(11, 99, 216, 0.12);
}

.btn-check-challan {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 28px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-check-challan:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(11, 99, 216, 0.3);
}

/* ================= STATS SECTION ================= */
.stats-strip {
  padding: 10px 0 45px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  text-transform: capitalize;
}

/* ================= 3 STEPS PROCESS BAR ================= */
.process-section {
  padding: 10px 0 60px;
}

.process-card {
  border-radius: 12px;
  padding: 24px 26px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.process-card.process-card-dark {
  background-color: #1a1d24;
  color: #ffffff;
  border-color: #2b303c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.process-card.process-card-dark::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(11, 99, 216, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.process-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.process-card-dark .process-icon-box {
  background-color: rgba(11, 99, 216, 0.2);
  color: #3b82f6;
}

.process-step-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.process-card-dark .process-step-tag {
  color: #60a5fa;
}

.process-title {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.3;
  color: #0f172a;
}

.process-card-dark .process-title {
  color: #ffffff;
}

/* ================= ABOUT SECTION (HOME) ================= */
.about-section {
  padding: 60px 0 80px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  display: inline-block;
}

.about-main-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-founder-sub {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.about-desc {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 26px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.about-feature-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.about-call-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}

.about-call-box i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.about-call-box span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.about-call-box strong {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 800;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.about-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.04);
}

/* ================= DARK SERVICES / WHY CHOOSE US ================= */
.dark-services-section {
  background-color: var(--dark-bg) !important;
  color: #ffffff !important;
  padding: 90px 0;
  position: relative;
}

.service-card-dark {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 26px 24px;
  height: 100%;
  transition: var(--transition);
}

.service-card-dark:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.service-card-dark .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(11, 99, 216, 0.25);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.service-card-dark h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card-dark p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Experience Golden Highlight Card */
.experience-card-glow {
  background: #1a1e27;
  border: 2px solid var(--gold-accent);
  border-radius: 14px;
  padding: 40px 30px;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(229, 169, 60, 0.25);
}

.experience-card-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(26, 30, 39, 0.2),
      rgba(26, 30, 39, 0.95)
    ),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 1;
}

.experience-card-content {
  position: relative;
  z-index: 2;
}

.experience-number {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -2px;
  display: flex;
  align-items: flex-start;
}

.experience-number span {
  color: var(--gold-accent);
}

.experience-text {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  margin-top: 6px;
  line-height: 1.2;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  padding: 80px 0 70px;
  background-color: #f8fafc;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf2f7;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0;
}

/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 80px 0 60px;
}

.blog-card {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img-box {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.06);
}

.blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 12px;
}

.blog-title a {
  color: #0f172a;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  color: var(--primary-hover);
  gap: 10px;
}

/* ================= COUNTER SECTION ================= */
.counter-section {
  padding: 50px 0;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  background-color: #fafbfc;
}

.counter-box {
  text-align: center;
  padding: 15px;
}

.counter-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.counter-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.counter-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
}

/* ================= FAQ ACCORDION SECTION ================= */
.faq-section {
  padding: 80px 0 70px;
  background-color: #ffffff;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 35px;
}

.faq-accordion .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-button {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1e293b;
  background-color: #ffffff;
  padding: 18px 24px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #f1f7fe;
  color: var(--primary-color);
}

.faq-accordion .accordion-body {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.7;
  padding: 16px 24px 24px 24px;
  background-color: #ffffff;
}

/* ================= ASK QUESTION / CONTACT SECTION (HOME) ================= */
.contact-section {
  padding: 30px 0 80px;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 45px 50px;
  box-shadow: var(--shadow-md);
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

.contact-title span {
  color: var(--primary-color);
}

.contact-phone-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-phone-text small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.contact-phone-text strong {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 800;
}

.contact-form .form-control {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  padding: 12px 18px;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(11, 99, 216, 0.12);
}

.btn-contact-submit {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  width: 100%;
  transition: var(--transition);
}

.btn-contact-submit:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(11, 99, 216, 0.3);
}

/* ================= PAGE BANNER (ABOUT US & CONTACT PAGES) ================= */
.page-header-wrapper {
  position: relative;
  background-color: #0f172a;
  background-image: linear-gradient(
      rgba(15, 23, 42, 0.68),
      rgba(15, 23, 42, 0.82)
    ),
    url('../img/page-header.jpg');
  background-size: cover;
  background-position: center top;
  color: #ffffff;
}

.page-header-banner {
  position: relative;
  padding: 65px 0 85px;
  text-align: center;
  color: #ffffff;
}

.page-header-banner .banner-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-header-banner .breadcrumb-box {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-header-banner .breadcrumb-box a {
  color: #cbd5e1;
}

.page-header-banner .breadcrumb-box a:hover {
  color: #ffffff;
}

.page-header-banner .breadcrumb-box .active-page {
  color: #3b82f6;
  font-weight: 700;
}

.navbar-dark-banner {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  position: relative;
  z-index: 10;
}

.navbar-dark-banner .navbar-nav {
  gap: 28px;
}

.navbar-dark-banner .navbar-brand .text-wale {
  color: #ffffff;
}

.navbar-dark-banner .nav-link {
  color: #cbd5e1 !important;
}

.navbar-dark-banner .nav-link:hover,
.navbar-dark-banner .nav-link.active {
  color: #3b82f6 !important;
}

.navbar-dark-banner .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background-color: #3b82f6;
  border-radius: 4px;
}

/* ================= ABOUT STORY SECTION (ABOUT US PAGE) ================= */
.about-story-section {
  padding: 85px 0 60px;
}

.section-tag-blue {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 12px;
}

.about-story-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 14px;
}

.about-story-title .brand-accent {
  color: var(--primary-color);
  font-style: italic;
}

.about-founder-tag {
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  display: block;
  margin-top: 6px;
}

.blue-underline-bar {
  width: 50px;
  height: 3.5px;
  background-color: var(--primary-color);
  border-radius: 4px;
  margin: 18px 0 24px;
}

.story-text {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 18px;
}

.story-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin-top: 25px;
}

.story-feature-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
}

.story-feature-point .arrow-symbol {
  color: #64748b;
  font-weight: 700;
  font-size: 0.85rem;
}

.story-feature-point i {
  color: #10b981;
  font-size: 1.05rem;
}

.about-img-styled {
  border: 1.5px solid #d4a359;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 540px;
  height: auto;
  transition: var(--transition);
}

.about-img-styled:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(212, 163, 89, 0.22);
}

/* ================= FUN FACT / ACHIEVEMENT SECTION (ABOUT US PAGE) ================= */
.achievement-section {
  padding: 40px 0 60px;
}

.achievement-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.achievement-title .text-achievement {
  color: var(--primary-color);
  font-style: italic;
}

.achievement-quote-box {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
}

.achievement-quote-box .lead-highlight {
  font-size: 0.96rem;
  color: #334155;
  margin-bottom: 18px;
}

.achievement-quote-box strong {
  color: #0f172a;
}

.achievement-desc-box {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
}

.achievement-desc-box strong {
  color: #0f172a;
}

/* ================= 4 STAT BLOCKS SECTION (ABOUT US PAGE) ================= */
.stat-blocks-section {
  padding: 30px 0 80px;
}

.stat-block {
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.stat-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.stat-block-blue {
  background-color: var(--primary-color);
  color: #ffffff;
}

.stat-block-dark {
  background-color: #14171d;
  color: #ffffff;
}

.stat-block-val {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-block-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* ================= CONTACT PAGE SPECIFIC ================= */
.contact-page-section {
  padding: 85px 0 60px;
  background-color: #ffffff;
}

.contact-main-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  padding: 55px 50px;
}

.contact-info-title {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
}

.contact-info-title .text-consultan {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 800;
}

.contact-info-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 22px 0 28px;
}

.contact-direct-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-direct-list li {
  margin-bottom: 14px;
}

.contact-direct-list a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #334155;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-direct-list a:hover {
  color: var(--primary-color);
}

.contact-direct-list a i {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.contact-form-box .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.contact-form-box .form-control {
  background-color: #edf2f7;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  padding: 10px 16px;
  transition: var(--transition);
}

.contact-form-box .form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 99, 216, 0.12);
}

.contact-form-box textarea.form-control {
  height: 120px;
  resize: vertical;
}

.btn-contact-pill {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 34px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 14px rgba(11, 99, 216, 0.3);
  transition: var(--transition);
}

.btn-contact-pill:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 99, 216, 0.4);
}

.contact-map-section {
  padding: 0 0 80px;
}

.map-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  background-color: #f1f5f9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= FOOTER ================= */
.main-footer {
  background-color: #14171e;
  color: #94a3b8;
  padding: 75px 0 25px;
  border-top: 1px solid #232731;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand-title .f-blue {
  color: #3b82f6;
}

.footer-brand-title .f-white {
  color: #ffffff;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-contact-info,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li,
.footer-contact-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.footer-contact-info li i,
.footer-contact-list li i {
  color: #3b82f6;
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-title,
.footer-column-heading {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.footer-links,
.footer-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-menu-links li {
  margin-bottom: 12px;
}

.footer-links li a,
.footer-menu-links li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links li a:hover,
.footer-menu-links li a:hover {
  color: #3b82f6;
  padding-left: 6px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1e2430;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom,
.footer-bottom-strip {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #232936;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}

.footer-social-icons a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  color: #3b82f6;
}

/* ================= FLOATING WIDGETS ================= */
.contact-widget-pill {
  position: fixed;
  bottom: 30px;
  right: 95px;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 999;
}

.whatsapp-float {
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 24px;
  right: 26px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #1ebc57;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ================= RESPONSIVENESS ================= */
@media (max-width: 991.98px) {
  .hero-main-title {
    font-size: 2.4rem;
  }
  .hero-section {
    padding: 50px 0 80px;
    text-align: center;
  }
  .hero-officer-col {
    margin-bottom: 30px;
  }
  .hero-title-box {
    padding-left: 0;
  }
  .hero-accent-line {
    margin: 0 auto 26px;
  }
  .challan-check-wrapper {
    margin-top: -40px;
  }
  .challan-search-card {
    padding: 28px 24px;
  }
  .about-story-title {
    font-size: 1.85rem;
  }
  .experience-card-glow {
    min-height: 280px;
    margin-top: 24px;
  }
  .contact-main-card {
    padding: 35px 28px;
  }
  .contact-info-title {
    font-size: 1.65rem;
  }
}

@media (max-width: 767.98px) {
  .hero-main-title {
    font-size: 1.95rem;
  }
  .challan-card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .about-features-grid,
  .story-features-grid {
    grid-template-columns: 1fr;
  }
  .contact-card-box {
    padding: 26px 20px;
  }
  .experience-number {
    font-size: 3.6rem;
  }
  .stat-block-val {
    font-size: 2.3rem;
  }
  .page-header-banner .banner-title {
    font-size: 2.2rem;
  }
  .contact-widget-pill {
    display: none;
  }
  .contact-main-card {
    padding: 30px 20px;
  }
  .map-wrapper {
    height: 300px;
  }
}

/* ================= LEGAL / POLICY PAGE ================= */
.legal-content-section {
  padding: 70px 0 95px;
  background-color: #ffffff;
}

.legal-content-box h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 38px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.legal-content-box h2:first-child {
  margin-top: 0;
}

.legal-content-box p {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 18px;
}

.legal-content-box a {
  color: var(--primary-color);
  word-break: break-all;
}

.legal-content-box a:hover {
  text-decoration: underline;
}

