/* 
============================
Shiv Shakti Custom Styles
============================
*/

/* Global Hover Color Override */
a:hover {
  color: var(--loan-primary) !important;
}

:root {
  --loan-primary: #e88f23;
  /* Saffron from logo */
  --loan-secondary: #b5651d;
  /* Darker accent from logo */
  --loan-gold: #fac141;
  /* Gold highlights */
  --loan-dark: #051429;
  /* Deep navy for contrast */
}

/* Header Active Link Styling */
.main-menu-ex ul li a.active {
  color: var(--loan-primary) !important;
  position: relative;
}

.main-menu-ex ul li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--loan-primary);
  bottom: -5px;
  left: 0;
}

/* Mobile Menu Active Styling */
.mobile-main-menu ul li a.active {
  color: var(--ztc-bg-main-bg-1) !important;
  font-weight: 700;
}

/* Header Call Text Styling */
.header1-header-elements .header1-buttons .button .contact .headding p {
  font-size: 12px;
  font-weight: 600;
  color: var(--ztc-text-text-1);
  margin-bottom: 0;
  letter-spacing: 1px;
}

.header1-header-elements .header1-buttons .button .contact .headding a {
  font-size: 18px;
  font-weight: 800;
  color: var(--ztc-bg-main-bg-1) !important;
}

/* New Service page design */

.heading-subtitle {
  border: 1px solid #09244c;
  border-radius: 30px;
  padding: 4px 20px;
  font-family: var(--loanlift-body-font);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3em;
  margin-bottom: 18px;
  display: inline-block;
  color: var(--ztc-text-text-1);
}

.fadeInUp {
  animation-name: fadeInUp;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.services-section-one .heading-title {
  margin-bottom: 40px;
}

.service-one-inner {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ebebeb;
  position: relative;
}

*,
:after,
:before {
  box-sizing: border-box;
}

.service-one-box {
  padding: 50px 40px;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 32px;
  width: 50%;
  cursor: pointer;
  overflow: hidden;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  transition: all 0.5s;
}

.service-one-box:nth-child(2n) {
  border-right: none;
}

.service-one-box:nth-last-child(1),
.service-one-box:nth-last-child(2) {
  border-bottom: none;
}

.service-one-box-image {
  position: absolute;
  top: 0;
  left: -670px;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}

.service-one-box-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(6, 21, 37, 0.6);
}

.service-one-box-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-one-icon-box {
  font-size: 60px;
  line-height: 60px;
  transition: all 0.5s;
  transform: scaleX(1);
  flex-shrink: 0;
}

i[class*=" flaticon-"]:before,
i[class^="flaticon-"]:before {
  font-family: flaticon_loan !important;
  font-style: normal;
  font-weight: 400 !important;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.service-one-info h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 8px;
  transition: all 0.5s;
}

.service-one-info p {
  margin: 0;
  transition: all 0.5s;
}

.service-one-box a {
  color: var(--ztc-text-text-1);
  font-size: 24px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  line-height: 0;
  flex-shrink: 0;
  background-color: #f2f4f8;
  transition: all 0.5s;
  margin-left: auto;
}

/* Hover States Added */
.service-one-box:hover .service-one-box-image {
  left: 0;
  opacity: 1;
}

.service-one-box:hover .service-one-info h4,
.service-one-box:hover .service-one-info p,
.service-one-box:hover .service-one-icon-box i {
  color: #fff !important;
}

.service-one-box:hover a {
  background-color: var(--ztc-bg-main-bg-1);
  color: #fff !important;
  transform: rotate(-45deg);
}

.service-one-icon-box i {
  color: var(--ztc-bg-main-bg-1);
  transition: all 0.5s;
  font-size: 50px;
}

.heading-box h2 {
  font-weight: 800;
}

.service-one-box-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 991px) {
  .service-one-box {
    width: 100%;
  }

  .service-one-inner:before,
  .service-one-inner:after {
    display: none;
  }

  .service-one-inner {
    border: none;
  }

  .service-one-box {
    border-bottom: 1px solid #ebebeb;
  }
}

@media (max-width: 991px) {
  .service-one-box {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid #ebebeb !important;
  }

  .service-one-box:last-child {
    border-bottom: none !important;
  }

  .service-one-box a {
    margin-left: initial;
  }
}

/* Service Details & Sidebar Redesign */
.common-hero {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.common-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.common-hero .container {
  position: relative;
  z-index: 2;
}

.common-hero .title {
  color: #fff !important;
  font-weight: 800;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.common-hero p {
  color: #f0f0f0;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.sidebar-box {
  background: #fff;
  padding: 20px 15px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.sidebar-box:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.sidebar-box h4 {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.sidebar-box h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 60px;
  background: var(--ztc-bg-main-bg-1);
  border-radius: 2px;
}

.service-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  margin-bottom: 12px;
}

.service-list li a {
  display: flex !important;
  align-items: center;
  padding: 10px 15px;
  background: #f9f9f9;
  color: #444;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  text-decoration: none;
}

.service-list li a i.main-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  color: var(--ztc-bg-main-bg-1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-list li a i.arrow-right {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.service-list li a:hover,
.service-list li a.active {
  background: var(--ztc-bg-main-bg-1) !important;
  color: #fff !important;
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-list li a:hover i.main-icon,
.service-list li a.active i.main-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.service-list li a:hover i.arrow-right,
.service-list li a.active i.arrow-right {
  opacity: 1 !important;
  transform: translateX(3px);
}

/* Sidebar CTA Improvements */
.sidebar-cta {
  background: linear-gradient(135deg,
      var(--ztc-bg-main-bg-1) 0%,
      #1a428a 100%) !important;
  padding: 40px 30px !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sidebar-cta:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.sidebar-cta h3 {
  color: #fff !important;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px;
  margin-bottom: 30px;
}

.sidebar-cta .theme-btn1 {
  display: inline-block;
  padding: 15px 30px;
  background: #fff !important;
  color: var(--ztc-bg-main-bg-1) !important;
  border-radius: 50px !important;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.sidebar-cta .theme-btn1:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   PREMIUM HERO SECTION REDESIGN
   ========================================================================== */

/* ==========================================================================
   FULL-PAGE HERO SECTION REDESIGN (CENTERED)
   ========================================================================== */

.hero1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/hero/Hero-banner.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh !important;
  max-height: 800px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  padding: 100px 0 !important;
  text-align: center;
}

.hero1 .container {
  position: relative;
  z-index: 5;
}

.hero1 .sub-title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero1 .title {
  font-size: clamp(28px, 4.5vw, 54px) !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  color: #fff !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-btn-outline {
  border: 2px solid #fff;
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #000 !important;
}

.hero-btn-solid {
  background: #fff;
  color: #000 !important;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.hero-btn-solid:hover {
  background: var(--ztc-bg-main-bg-1);
  color: #fff !important;
}

.experience-badge {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@keyframes rotate-badge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotating-badge {
  width: 150px;
  animation: rotate-badge 10s linear infinite;
  filter: invert(1) brightness(2);
}

.hero-bottom-info {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 5;
  text-align: left;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  color: #fff;
  opacity: 0.8;
}

.hero-info-item .num {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-info-item .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .hero1 .title {
    font-size: 40px !important;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* Fix Hero Bottom Area Overlap */
.hero-bottom-area {
  position: relative !important;
  z-index: 99 !important;
  background: #fff !important;
  margin-top: -60px !important;
  /* Reduced pull-up for better balance with constrained hero height */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
  border-radius: 10px !important;
}

/* ==========================================================================
   LOAN PROCESS SECTION (HORIZONTAL TIMELINE)
   ========================================================================== */

.process-section {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.process-badge {
  background: #fff;
  border: 1px solid #09244c;
  border-radius: 50px;
  padding: 5px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.process-badge i {
  color: var(--loan-gold);
  font-size: 14px;
}

.process-section .title {
  margin-bottom: 20px;
}

.process-section .description {
  max-width: 500px;
}

.process-img-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.process-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline Layout */
.process-timeline {
  margin-top: 80px;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 112px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #ccc;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 40px;
  color: var(--loan-primary);
  margin-bottom: 25px;
  display: block;
}

.step-title {
  margin-bottom: 35px;
}

.step-marker {
  width: 12px;
  height: 12px;
  background: var(--loan-primary);
  margin: 0 auto 30px;
  display: block;
}

.step-text {
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .timeline-line {
    display: none;
  }

  .process-step {
    margin-bottom: 50px;
  }

  .process-section .title {
    font-size: 32px;
  }
}

/* ==========================================================================
   DARK TRUST SECTION (BELOW PROCESS)
   ========================================================================== */

.trust-section {
  background-color: #051429;
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust-section .trust-badge {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 5px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.trust-section .trust-badge i {
  color: var(--loan-gold);
}

.trust-section .section-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 40px;
  max-width: 800px;
}

.trust-banner-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 50px;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-feature-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-feature-item i {
  font-size: 32px;
  color: var(--loan-primary);
}

.trust-feature-item h5 {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.trust-feature-item p {
  color: #a0a0a0 !important;
  font-size: 14px;
  line-height: 1.6;
}

/* Stats Styling */
.trust-stats-column {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.stat-item {
  position: relative;
  width: 100%;
}

.stat-number {
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
  color: transparent;
  display: block;
  margin-bottom: 15px;
  font-family: inherit;
}

.stat-content-wrapper {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  display: block;
}

.stat-content {
  display: block;
  font-size: 14px;
  color: #a0a0a0;
  text-transform: capitalize;
  font-weight: 500;
}

.stat-index {
  position: absolute;
  right: 0;
  top: -10px;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .trust-stats-column {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 50px;
    margin-top: 50px;
  }

  .trust-features {
    grid-template-columns: 1fr;
  }

  .trust-section .section-title {
    font-size: 32px;
  }
}

/* Global Accent Updates */
.hero-btn-outline {
  background-color: var(--loan-primary) !important;
  border-color: var(--loan-primary) !important;
  color: #fff !important;
}

.hero-btn-outline:hover {
  background-color: var(--loan-secondary) !important;
  border-color: var(--loan-secondary) !important;
}

.sub-title,
.span {
  color: var(--loan-primary) !important;
}

.heading-subtitle {
  border-color: var(--loan-primary) !important;
}

/* Service Box Icons Color Fix */
.service-one-icon-box i {
  color: var(--loan-primary) !important;
}

.service-one-box:hover .service-one-icon-box i {
  color: #fff !important;
}

/* Redesigning Trust Index for better visibility in saffron theme */
.stat-index {
  color: var(--loan-gold) !important;
}

/* ==========================================================================

/* ==========================================================================
   TESTIMONIAL SECTION REDESIGN
   ========================================================================== */

.testimonial-success {
  background: linear-gradient(135deg, #fac141, #b5651d);
  padding: 50px 0;
  color: #051429;
  position: relative;
  overflow: hidden;
}

.testimonial-success .section-title {
  color: #051429 !important;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.testimonial-success .description {
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 95%;
}

.testimonial-success .success-badge {
  border: 1px solid rgba(5, 20, 41, 0.3) !important;
  border-radius: 50px !important;
  padding: 6px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 25px !important;
  color: #051429 !important;
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-success .success-badge i {
  color: #051429 !important;
}

/* Video/Image Thumb Styling */
.video-testimonial-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  /* Fixed height for consistency */
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-testimonial-thumb:hover img {
  transform: scale(1.05);
}

.video-testimonial-thumb::after {
  content: "\f04b";
  /* FontAwesome Play Icon */
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5651d;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding-left: 5px;
  /* Visual correction */
}

.video-testimonial-thumb:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
  background: #051429;
  color: #fff;
}

/* User Info Styling */
.testimonial-user-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(5, 20, 41, 0.1);
}

.testimonial-user-info .user-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-user-info .user-details h4 {
  color: #051429;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 5px;
}

.testimonial-user-info .user-details span {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-quote-icon {
  margin-left: auto;
  /* Push to right */
  font-size: 80px;
  color: #051429;
  opacity: 0.1;
  line-height: 1;
}

/* Dots Navigation */
.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(5, 20, 41, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: #051429;
  transform: scale(1.3);
}

.testimonial-dots span:hover {
  background: #051429;
}

@media (max-width: 991px) {
  .testimonial-content-wrap {
    padding-left: 0 !important;
    margin-top: 50px;
  }

  .video-testimonial-thumb {
    height: 350px;
  }

  .testimonial-success .section-title {
    font-size: 36px;
  }

  .testimonial-success {
    padding: 40px 0;
  }
}

/* Contact Page Styles */
.contact-page .contact-box {
  display: flex !important;
  align-items: center !important;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.contact-page .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-box .icon {
  width: 60px;
  height: 60px;
  background: var(--loan-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(232, 143, 35, 0.3);
}

.contact-page .contact-box .icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  /* Makes the icon white */
  object-fit: contain;
}

.contact-page .contact-box .icon i {
  color: #fff !important;
}

.contact-page .contact-box .content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--loan-dark);
  margin-bottom: 8px;
}

.contact-page .contact-box .content a,
.contact-page .contact-box .content p {
  font-size: 16px;
  color: #666;
  margin: 0;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}

.contact-page .contact-box .content a:hover {
  color: var(--loan-primary);
}

/* Link Overflow Fix for Contact Page */
.contact-page .contact-box .content a {
  word-break: break-all !important;
  overflow-wrap: anywhere !important;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1400px !important;
  }

  .contact-page .contact-box {
    padding: 15px 20px !important;
    gap: 15px !important;
  }

  .contact-page .contact-box .icon {
    width: 50px !important;
    height: 50px !important;
  }

  .contact-page .contact-box .content h4 {
    font-size: 18px !important;
    margin-bottom: 5px !important;
  }

  .contact-page .contact-box .content a,
  .contact-page .contact-box .content p {
    font-size: 14px !important;
  }

  .contact-form-box {
    padding: 30px !important;
  }

  .contact-form-box .heading1 h2 {
    font-size: 28px !important;
  }

  .contact-form-box input,
  .contact-form-box textarea {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
}

/* Contact Box Alignment Fix */
.contact-box .heading1 h4 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-box .heading1 .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--loan-primary);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}

/* Service Details Image Standardization */
.service-details-content .image img {
  width: 100%;
  height: 400px;
  /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Centered Testimonial Slider Fixes */
.single-testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 50px;
  /* Space for dots */
  position: relative;
}

.testimonial-item {
  text-align: center;
  outline: none;
  /* Remove focus outline */
}

.testimonial-item .description {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Slick Dots Customization */
.single-testimonial-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.single-testimonial-slider .slick-dots li {
  margin: 0;
}

.single-testimonial-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: rgba(5, 20, 41, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.single-testimonial-slider .slick-dots li.slick-active button {
  background: #051429;
  transform: scale(1.3);
}

.single-testimonial-slider .slick-dots li button:hover {
  background: #051429;
}

/* Restore Footer Icons to Original State */
.footer1 .single-footer-items .social-icon li a i {
  filter: none !important;
  color: #051429 !important;
  /* Ensure visibility */
}

.footer1 .single-footer-items .contact-box .icon img {
  width: 20px !important;
  height: auto !important;
  display: block !important;
  filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure social icon container is visible */
.footer1 .single-footer-items .social-icon li a {
  filter: none !important;
}

/* Reset Footer Contact Box Styles */
.footer1 .single-footer-items .contact-box {
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  padding: 5px 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
  gap: 20px !important;
}

.footer1 .single-footer-items .contact-box:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Nuclear option for footer icons */
.footer1 .single-footer-items .contact-box .icon i,
.footer1 .single-footer-items .contact-box .icon svg {
  font-family: "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  color: var(--loan-primary) !important;
  display: inline-block !important;
  width: 25px !important;
  /* Fixed width */
  height: auto !important;
  line-height: normal !important;
  visibility: visible !important;
  opacity: 1 !important;
  content: none !important;
  /* Reset any content overrides */
}

/* Ensure container allows visibility */
.footer1 .single-footer-items .contact-box .icon {
  display: flex !important;
  /* Use flex to center */
  justify-content: center !important;
  align-items: center !important;
  width: 35px !important;
  height: 35px !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.footer1 .single-footer-items .contact-box .content h4 {
  display: none;
  /* Hide heading if it was added by contact box style and not in footer HTML */
}

/* Custom Footer Icon Styling */
.footer1 .single-footer-items .contact-box .icon i {
  font-size: 20px;
  color: var(--loan-primary);
  /* Use brand color */
  width: 25px;
  text-align: center;
  display: inline-block;
}

/* Hero Bottom Icons */
.hero-bottom-area .single-box .icon i {
  font-size: 40px;
  color: var(--loan-primary);
  /* Use brand color */
  margin-bottom: 10px;
  display: inline-block;
}

/* Ensure inherit doesn't override it if specifically targeted */
.hero-bottom-area .single-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center align hero bottom icons and text */
.hero-bottom-area .single-box {
  flex-direction: column !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Reset icon container for centered layout */
.hero-bottom-area .single-box .icon {
  margin-right: 0 !important;
  margin-bottom: 20px;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
}

/* Center align testimonial user info */
/* Center align testimonial user info */
.testimonial-user-info {
  display: flex;
  flex-direction: row !important;
  /* Side by side */
  justify-content: center;
  align-items: center;
  text-align: left;
  /* Text aligns left relative to itself */
}

.testimonial-user-info img {
  margin-right: 15px !important;
  /* Space between image and text */
  margin-bottom: 0 !important;
}

.testimonial-user-info .user-details {
  text-align: left;
}

/* Force Success Story text to black */
.testimonial-content-wrap .heading1 span {
  color: #000000 !important;
}

/* Fix Need Help button size for longer phone number */
.theme-btn1 {
  padding: 15px 25px !important;
  /* Reduce padding significantly */
  font-size: 16px !important;
  /* Reduce font size if needed */
  white-space: nowrap !important;
  /* Prevent wrapping */
  min-width: fit-content !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  border-radius: 50px !important;
  /* Maintain rounded pill shape */
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  left: 20px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 15px;
    left: 15px;
  }

  .mobile-sidebar {
    background-color: #ffffff !important;
  }

  .menu-close {
    color: #051429 !important;
  }

  .mobile-nav li a {
    color: #051429 !important;
  }

  .mobile-sidebar .single-footer-items,
  .mobile-sidebar .contact-infos {
    background-color: var(--ztc-bg-bg-1) !important;
    padding: 20px 25px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    color: #051429 !important;
    border: 1px solid #eeeeee !important;
  }

  .mobile-sidebar .contact-box {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 12px !important;
  }

  .mobile-sidebar .contact-box .icon {
    width: 25px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .mobile-sidebar .contact-box .icon i {
    color: #051429 !important;
    font-size: 18px !important;
  }

  .mobile-sidebar .single-footer-items h3,
  .mobile-sidebar .contact-infos h3 {
    color: #051429 !important;
    margin-bottom: 15px !important;
  }

  .mobile-sidebar .contact-box .headding p,
  .mobile-sidebar .contact-box .headding a,
  .mobile-sidebar .contact-box .pera,
  .mobile-sidebar .contact-box .pera a {
    color: #051429 !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    font-size: 14px !important;
  }

  .mobile-sidebar .contact-infos .social-icon {
    display: flex !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }

  .mobile-sidebar .contact-infos .social-icon li a {
    background-color: #051429 !important;
    color: #fff !important;
    border: none !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
  }
}