@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {

  --primary-color: #003B8F;
  --secondary-color: #0A2D6F;
  --accent-color: #D4A437;
  --accent-light: #E8BE63;
  --light-bg: #F8FAFD;
  --white-color: #FFFFFF;
  --dark-color: #111827;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;

}

.light-blue {
  color: #003B8F;
}

.logo-blue {
  color: #0A2D6F;
}

.accent-logo {
  color: #D4A437;
}

.accent-light-logo {
  color: #E8BE63;
}

.light-bg-color {
  color: #F8FAFD;
}

.text-muted-color {
  color: #6B7280;
}

/* heading title style start  */
.section-title {
  color: var(--secondary-color);
  font-weight: 700;
}

.border-color {
  color: #E5E7EB;
}

.section-badge {
  background: rgba(212, 164, 55, .10);
  color: var(--accent-color);
}

/* heading title style end */

body {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  background-color: #fff !important;
  overflow-x: hidden;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler i {
  font-size: 32px;
  color: var(--secondary-color);
}

a {
  text-decoration: none;
}

button:focus,
.form-control:focus,
.btn-primary:focus,
input:focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* secondary */
.btn.btn-secondary {
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  padding: 10px 14px;
  font-size: 14px !important;
  border-color: var(--primary-color);
}


.btn.btn-secondary:hover,
.btn-outline-secondary:hover {
  transition: all 0.10s ease-in-out;
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color);
}


.btn-secondary-outline {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color) !important;
}

/* header css */
.main-header {
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.logo {
  max-height: 65px;
}

.navbar-nav {
  gap: 15px;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  transition: .3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.call-btn {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 500;
}

.call-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.enquiry-btn {
  background: var(--accent-color);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 500;
}

.enquiry-btn:hover {
  background: var(--accent-light);
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ======= Hearder End=============== */

/* hero section start  */
.hero-section {
  background:
    linear-gradient(135deg,
      #f8fbff 0%,
      #eef7ff 100%);
}

.hero-image-wrapper {
    position: relative;
    height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrapper img {
    position: absolute;
    bottom: 0;
    left: 65%;
    transform: translateX(-50%);
    width: 135%;
    max-width: unset;
    height: auto;
    z-index: 2;
}
.lead-class {
  line-height: 28px;
}

.hero-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  background: var(--accent-color);
  opacity: .08;
  border-radius: 50%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.floating-card {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 3;
  border-radius: 16px;
}

.floating-card-two {
  position: absolute;
  bottom: 15%;
  right: 0;
  z-index: 3;
  border-radius: 16px;
}

.hero-section .badge {
  background: rgba(0, 59, 143, .08) !important;
  color: var(--primary-color) !important;
}

.hero-section .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-section .btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.hero-section .btn-outline-dark {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 500;
  font-size: 1rem !important;
  border-radius: 10px !important;
}

.hero-section .btn-outline-dark:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.floating-card h4 {
  color: var(--accent-color);
}

.floating-card-two h5 {
  color: var(--primary-color);
}
/* hero section end  */

/* About Us Section Start  */
.about-section {
  background: #fff;
}

.round-about-img {
  border-radius: 16px;
}

.about-section .badge {
  background: rgba(212, 164, 55, .10) !important;
  color: var(--accent-color) !important;
}

.about-section h2 {
  color: var(--secondary-color);
}

.about-images {
  padding-bottom: 80px;
}

.floating-image {
  position: absolute;
  width: 220px;
  bottom: 0;
  right: -30px;
  border-radius: 20px;
  overflow: hidden;
}

.experience-box {
  position: absolute;
  top: 30px;
  left: -30px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  z-index: 2;
  box-shadow:  0 15px 35px rgba(0, 0, 0, .08);
  border-left: 4px solid var(--accent-color);
}

.experience-box h2 {
  color: var(--primary-color);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 59, 143, .08);
  color: var(--accent-color);
  font-size: 20px;
}

.about-section h6 {
  color: var(--secondary-color);
}

.about-section .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.about-section .btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
/* About Us Section End  */

/* why choose us section start  */
.why-choose-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,  var(--secondary-color) 0%,  var(--primary-color) 50%,   #0f4db5 100%);
  padding: 100px 0;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -180px;
  right: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.why-choose-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -180px;
  left: -180px;
  border-radius: 50%;
  background: rgba(212, 164, 55, .10);
}

.why-choose-section .section-title {
  color: #fff;
}

.why-choose-section .text-muted {
  color: rgba(255, 255, 255, .75) !important;
}

.premium-card {
  position: relative;
  padding: 35px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow:  0 20px 40px rgba(0, 0, 0, .15);
  transition: all .4s ease;
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg,  var(--accent-color),  var(--accent-light));
}

.premium-icon {

  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  color: #fff;
  font-size: 32px;
  box-shadow:  0 15px 35px rgba(212, 164, 55, .25);
  transition: .4s;
}

.premium-card:hover .premium-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow:
    0 20px 45px rgba(212, 164, 55, .40);
}

.premium-card h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;

  color: rgba(255, 255, 255, .80);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-light);
  font-weight: 700;
}

.why-center {
  position: relative;
}

.circle-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, .12),   rgba(212, 164, 55, .10),  transparent 70%);
}

.why-center img {
  position: relative;
  z-index: 2;
  max-height: 500px;
}
/* why choose us section end  */

/* Our Service section Start  */
.services-section {
  background: var(--light-bg);
}

.service-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--accent-color));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white-color);
  font-size: 28px;
}

.service-card h4 {
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-muted);
}

.service-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--accent-color);
}

.service-link i {
  transition: .3s;
  font-size: 14px;
  line-height: 1;
}

.service-link:hover i {
  transform: translateX(5px);
}

.services-section .badge {
  background: rgba(212, 164, 55, .10) !important;
  color: var(--accent-color) !important;
}

.services-section h2 {
  color: var(--secondary-color);
}

.round-about-img1 {
  border-radius: 30px;
}
/* Our Service section End  */

/* Our value section start  */
.values-section {
  background: var(--light-bg);
}

.values-timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.values-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg,
      var(--primary-color),
      var(--accent-color));
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 50px;
}

.timeline-item.left {
  left: 0;
  text-align: left;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));

  top: 45px;
  z-index: 2;
  border: 4px solid #fff;
}

.timeline-item.left::before {
  right: -12px;
}

.timeline-item.right::before {
  left: -12px;
}

.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow:  0 15px 40px rgba(0, 0, 0, .06);
  transition: .4s;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 59, 143, .12);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));

  color: #fff;
  font-size: 28px;
}

.timeline-item.left .timeline-icon {
  margin-left: 0;
}

.timeline-content h4 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
}
/* Our value section end  */

/* FAQ Section start  */
.faq-section {
  background: #f5f5f5;
}

.faq-help-box {
  padding: 30px;
  border-radius: 24px;
  margin-top: 30px;
  background: #fff;
  border: 1px solid rgba(0, 59, 143, .08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.faq-help-icon {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.custom-faq .accordion-button {
  padding: 22px 25px;
  font-weight: 600;
  color: var(--secondary-color);
  background: #fff;
  box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
}

.custom-faq .accordion-body {
  padding: 20px 25px 25px;
  color: var(--text-muted);
  line-height: 1.8;
}

.custom-faq .accordion-button::after {
  filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.custom-faq .accordion-collapse {
  transition: height .45s ease;
}

.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
  transition: .3s ease;
}

.custom-faq .accordion-collapse.show .accordion-body {
  opacity: 1;
  transform: translateY(0);
}

.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 20px 45px rgba(0, 59, 143, .18);
}
/* FAQ Section end  */

/* contact us section start  */
.contact-section {
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      var(--light-bg) 100%);
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  height: 100%;
  border: 1px solid rgba(0, 59, 143, .08);
  box-shadow: 0 20px 45px rgba(0, 59, 143, .08);
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background:
    linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
}

.contact-item h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-muted);
}

.contact-form-card .form-control {
  height: 58px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.contact-form-card textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
/* Contact us section end  */

/* Footer section start  */
.footer-section {
  position: relative;
  background:
    linear-gradient(135deg,
      var(--secondary-color),
      #021c46);
  overflow: hidden;
  color: #fff;
}

.footer-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  top: -180px;
  right: -180px;
  background: radial-gradient(rgba(212, 164, 55, .15), transparent 70%);
}

.footer-wrapper {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  max-height: 65px;
  border-radius: 10px;
}

.footer-about {
  color: rgba(255, 255, 255, .75);
  line-height: 1.9;
}

.footer-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 45px;
  height: 3px;
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      var(--accent-color),
      var(--accent-light));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  transition: .3s;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 8px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .75);
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 18px;
}

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, .08);
  padding: 25px 0;
}

.footer-bottom p {
  color:
    rgba(255, 255, 255, .70);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    rgba(255, 255, 255, .08);
  transition: .4s;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background:
    linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
}

.footer-map-link {
  color: inherit;
  text-decoration: none;
  transition: .3s;
}

.footer-map-link:hover {
  color: var(--accent-color);
}
/* Footer section End  */

/* About us page start  */
/* hero section start  */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  text-align: center;
  background:
    linear-gradient(135deg,
      var(--secondary-color),
      var(--primary-color));
  color: #fff;
}

.about-hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 850px;
  margin: auto;
}

.about-hero h1 span {
  color: var(--accent-light);
}

.about-hero p {
  max-width: 700px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.breadcrumb-wrapper {
  display: inline-flex;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 350px;
  height: 350px;
  background:rgba(255, 255, 255, .05);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(212, 164, 55, .15);
  bottom: -80px;
  left: -80px;
}
/* hero section end  */
/* COMPANY OVERVIEW  */
.company-overview {
  background: var(--white-color);
  overflow: hidden;
  position: relative;
}

.overview-image-wrapper {
  position: relative;
}

.main-overview-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 59, 143, .10);
}

.floating-stat {
  position: absolute;
  background: var(--white-color);
  padding: 20px 25px;
  border-radius: 18px;
  z-index: 2;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 59, 143, .08);
}

.floating-stat h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.floating-stat p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.stat-one {
  top: 40px;
  left: -25px;
}

.stat-two {
  bottom: 40px;
  right: -25px;
}

.overview-text {
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.9;
  font-size: 15px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: .35s ease;
}

.mini-feature:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow:
    0 15px 35px rgba(0, 59, 143, .08);
}

.mini-feature i {
  font-size: 18px;
  color: var(--accent-color);
}

.mini-feature span {
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.4;
}
/* mission & vission section start  */
.mission-vision-section {
  background: var(--light-bg);
  overflow: hidden;
}

.mv-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
}

.mv-title span {
  color: var(--accent-color);
}

.mv-card {
  background: var(--white-color);
  padding: 40px;
  border-radius: 28px;
  height: 100%;
  position: relative;
  border: 1px solid var(--border-color);
  transition: .35s ease;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0, 59, 143, .10);
}

.mv-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background:
    linear-gradient(90deg,
      var(--primary-color),
      var(--accent-color));
}

.mv-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background:
    linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
}

.mv-icon i {
  color: #fff;
  font-size: 32px;
}

.mv-card h3 {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.9;
}

.mv-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--dark-color);
  font-weight: 500;
}

.mv-list i {

  color: var(--accent-color);
}

.vision-card .mv-icon {

  background:
    linear-gradient(135deg,
      var(--accent-color),
      var(--accent-light));
}
/* mission & vission section end  */
/* About us page End  */

/* contact us page start  */
.contact-section {
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      var(--light-bg) 100%);
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  height: 100%;
  border: 1px solid rgba(0, 59, 143, .08);
  box-shadow:
    0 20px 45px rgba(0, 59, 143, .08);
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background:
    linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
}

.contact-item h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-muted);
}

.contact-form-card .form-control {
  height: 58px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.contact-form-card textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.map-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 59, 143, .08);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
/* contact us page end  */
/* privacy policy section start  */
.hover-accent:hover {
  color: #D4A437 !important;
}

.contact-details a {
  color: #000 !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: .3s ease;
}

.contact-details a:hover {
  color: #D4A437 !important;
}

ul li::marker {
  color: #0A2D6F;
  font-size: 16px;
}

ol li::marker {
  color: #0A2D6F;
  font-weight: 700;
}

ul {
  list-style-type: disc;
}
/* privacy policy section end  */

/* grievance page start  */
.grievance-step-wrapper {
  margin: 30px 0px;
}

.step-card .card {
  border-radius: 12px;
}

.step-card .card-header {
  padding: 6px 24px;
  border-radius: 10px 10px 0px 0px !important;
}

.card-1 {
  border: 2px solid #C9D9F9;
}

.card-1 .card-header {
  background-color: #538FE0;
}

.card-2 {
  border: 2px solid #F3E8FF;
}

.card-2 .card-header {
  background: linear-gradient(99deg, rgba(92, 66, 173, 1) 48%, rgba(154, 115, 202, 1) 86%);
}

.card-3 {
  border: 2px solid #FAE6CF;
}

.card-3 .card-header {
  background: linear-gradient(83deg, rgba(233, 153, 40, 1) 73%, rgba(246, 181, 90, 1) 100%);
}

.card-4 {
  border: 2px solid #FAC2CD;
}

.card-4 .card-header {
  background: linear-gradient(83deg, rgba(204, 73, 95, 1) 73%, rgba(244, 103, 122, 1) 100%);
}

.card-level {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 0px;
  font-weight: 800;
}

.card-head {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0px;
}

.tat-box {
  padding: 8px 24px;
  border-radius: 12px;
  color: #2B235E;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.tat-box1 {
  background-color: #C9D9F9;
}

.tat-box2 {
  background-color: #F3E8FF;
  color: #5C42AD;
}

.tat-box3 {
  background-color: #FAE6CF;
  color: #AA6402;
}

.tat-box4 {
  background-color: #FAC2CD;
  color: #CD485F;
}

.step-card .card-body {
  padding: 16px 24px;
}

.custom-list {
  width: 70%;
}

.custom-list .list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  background: #F8FAFC;
  border: none;
  padding: 6px 12px;
  border-radius: 9px;
}

.label-li {
  color: #1E2754;
  font-size: 16px;
  font-weight: 700;
}

.link-li {
  color: #36A9E2;
  font-size: 16px;
  font-weight: 500;
  word-break: break-all;
}

.custom-list .list-group-item-warning {
  background-color: #FFF7EA;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  color: #F59E0B;
  border: none;
}

.bottom-card {
  background-color: #EEEFF9;
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: 24px;
}

.box-btn {
  padding: 3px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #E0E0E0;
}

.success {
  color: #059669;
  background-color: #ECFDF5;
}

.warning {
  color: #032E63;
  background-color: #FEF2F2;
}

.danger {
  color: #FB4253;
  background-color: #F3F3F3;
}

.warning1 {
  background-color: #F6E8E0;
  color: #AA6402;
}

.light-txt {
  font-weight: 400;
}

.arrow-box-down img {
  width: 84%;
}

.arrow-box-down {
  text-align: center;
}

.card-level {
  width: 80px;
}

.gap-10 {
  gap: 100px;
}


/* digital lending patner page start  */
.lending-partner .accordion-button:not(.collapsed)::after {
  background-image: url('../images/minus.svg') !important;
}

.lending-partner .accordion-button::after {
  background-image: url('../images/plus.svg') !important;
  filter: brightness(0) invert(1);
}

.lending-partner .accordion-button::after {
  content: '';
}

.lending-partner .accordion-button::after {}

.lending-btn {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
}

.lending-btn:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
}

/* digital lending patner page end  */