@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #20a441;
  --secondary: #3f2f18;
  --white: #fff;
  --dark: #111;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  overflow: inherit !important;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, input[type="date"], input[type="file"], textarea, select {
  background: var(--white);
  border: solid 1px #eee;
  color: #444;
  font-size: 14px;
  line-height: 1;
  margin: 5px 0 12px;
  padding: 13px 15px;
  width: 100%;
  outline: 0;
  border-radius: 10px;
}

input[type="submit"] {
  color: var(--white);
  background: var(--primary);
  line-height: 1;
  padding: 13px 26px;
  border: 0;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  border-radius: 10px;
  font-size: 15px;
}

input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}

textarea {
  height: 100px;
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: "Montserrat", sans-serif;
  color: #202020;
  font-weight: normal;
  text-transform: inherit;
  line-height: 1.18;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  padding: 0;
  margin: 0 0 10px 0;
  color: #363636;
  font-size: 14px;
  line-height: 1.6;
}

ul,
li,
a {
  list-style-type: none;
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  line-height: 1.4;
  font-size: 14px;
}

a:hover {
  transition: 0.8s;
  text-decoration: none;
}

.heading,
.leftheading {
  margin-bottom: 40px;
  font-size: 40px;
  position: relative;
  font-weight: 700;
}

.leftheading span,
.heading span {
  color: var(--primary);
}

.heading {
  text-align: center;
}

.subheading {
  margin: 0 auto 20px;
  font-size: 16px;
  letter-spacing: .5px;
  color: var(--primary);
  font-weight: 500;
  background: #4d835a12;
  padding: 5px 14px;
  width: fit-content;
  border-radius: 8px;
}

.zoomeffect {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}

.zoomeffect:hover img {
  transform: scale(1.1);
}

.btn-primary {
  background: var(--primary);
  border: none;
  font-size: 14px;
  letter-spacing: .2px;
  border-radius: 8px;
  padding: 14px 24px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-weight: 500;
}

.btn-primary i {
  margin-right: 3px;
}

.btn-primary:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--secondary);
  transition: .5s;
  border-radius: 8px;
  z-index: -1;
}

.btn-primary:hover:before {
  left: 0;
  width: 100%;
}

.btn-secondary {
  background: var(--secondary);
  border: none;
  font-size: 14px;
  letter-spacing: .2px;
  border-radius: 15px;
  padding: 14px 24px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-weight: 500;
}

.btn-secondary i {
  margin-right: 3px;
}

.btn-secondary:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: .5s;
  border-radius: 15px;
  z-index: -1;
}

.btn-secondary:hover:before {
  left: 0;
  width: 100%;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

ul.slick-dots li button {
  padding: 0;
  line-height: 1;
  height: 12px;
  width: 12px;
  border: none;
  text-indent: 100px;
  overflow: hidden;
  border-radius: 50px;
  transition: .5s;
  background: #dfdfdf;
}

ul.slick-dots li {
  line-height: 1;
}

ul.slick-dots li.slick-active button {
  width: 20px;
  background: var(--primary);
}

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

/* HEADER SECTION CSS */

.topbar {
  background: var(--primary);
  padding: 6px 0;
}

.topbar ul li,
.topbar ul li a {
  color: var(--white);
}

.topbar ul li i {
  font-size: 13px;
  height: 30px;
  width: 30px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.topbar ul.topbar-info li i {
  transform: rotateY(180deg);
  margin-right: 5px;
}

header::before,
header::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: .7 / 1;
  background: var(--secondary);
  border-radius: 0 50px 50px 0;
}

header::after {
  left: auto;
  right: 0;
  border-radius: 50px 0 0 50px;
}

.menubar>a img {
  height: 65px;
}

.menubar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header ul.header-cntct {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header ul.header-cntct li a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
}

header ul.header-cntct li a i {
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 15px;
}

header ul.header-cntct li:first-child a i {
  margin-right: 11px;
}

header ul.header-cntct li:first-child a {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #ddd;
}

header .menutop li a:after {
  top: 40px;
  left: 100%;
  padding: 2.5px;
  border-radius: 50%;
}

/* BANNER SECTION CSS */

.mainslider {
  position: relative;
}

.mainslider #carouselExampleFade .carousel-item>img {
  aspect-ratio: 12/5.5;
  width: 100%;
  object-fit: cover;
  height: auto;
  filter: brightness(0.5);
}

.mainslider .carousel-caption h1 {
  max-width: 70%;
  font-size: 60px;
  margin: 0 auto;
  font-weight: 700;
  display: block;
  color: var(--white);
}

.mainslider .carousel-caption h1 span {
  color: transparent;
  -webkit-text-stroke: .8px #ffffff;
}

.carousel-caption-info h4 {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  font-weight: 500;
  width: fit-content;
  padding: 7px 16px;
  line-height: 1;
  margin: 0 auto 20px;
  background: #ffffff1f;
  border-radius: 6px;
  border-top: 2px solid var(--primary);
  backdrop-filter: blur(8px);
}

.mainslider .carousel-caption p {
  width: 60%;
  margin: 15px auto 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
}

.carousel-caption-info a.btn.btn-primary {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .5px;
}

/* WHY CHOOSE US SECTION CSS */

.whychooseus {
  background: linear-gradient(45deg, #02160f, #0000008c), url(../images/whychooseus-bg.webp) no-repeat center center / cover;
  background-attachment: fixed;
}

.whychooseuslist {
  background: #0000000d;
  padding: 30px;
  border-radius: 15px;
  transition: .5s;
  border: 2px solid #20a44130;
  backdrop-filter: blur(5px);
  text-align: center;
}

.whychooseuslist:hover {
  transform: translateY(-10px);
}

.whychooseuslist figure {
  height: 100px;
  width: 100px;
  background: #20a441;
  border: 1px solid #ffffff00;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0;
  outline: 2px solid #ffffff78;
  outline-offset: -7px;
}

.whychooseuslist figure i {
  font-size: 35px;
  color: var(--white);
  line-height: .4;
}

.whychooseuslist h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 22px 0 15px;
  color: var(--white);
}

.whychooseuslist p {
  margin: 0;
  color: #d7d7d7;
}

/* HOMEABOUT SECTION CSS */

.homeabout figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.homeabout-content p strong {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}

/* SOLUTIONS PAGE CSS */

.solutions {
  background: #f3f7f5;
}

.solutions_slider .slick-slide {
  margin: 0 12px;
}

.solutionslist {
  border-radius: 20px;
  transition: .5s;
}

.solutionslist img {
  aspect-ratio: 1 / 1.1;
  filter: brightness(0.9);
  transition: .5s;
}

.solutionslist-info {
  padding: 30px;
  background: linear-gradient(45deg, #011606, transparent);
}

.solutionslist-info p {
  color: #ececec;
}

.solutionslist:hover img {
  transform: scale(1.1);
}

.solutionslist h3 {
  font-size: 20px;
  margin: 20px 0 12px !important;
  transition: .5s;
}

.solutionslist:hover h3 {
  color: var(--primary);
}

.solutionslist figure {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #c09b4b21;
  margin: 0 0 0 10px;
}

.solutionslist figure img {
  transform: translateX(-10px);
  opacity: .8;
}

/* HOW IT WORK SECTION CSS */

.howitwork .accordion-button {
  font-size: 17px;
  font-weight: 600;
  padding: 18px 0;
  background: transparent;
}

.howitwork .accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
  box-shadow: none;
}

.howitwork .accordion-button::after {
  margin-left: auto;
}

.howitwork button.accordion-button[aria-expanded="true"] {
  color: var(--primary);
}

.howitwork .accordion-body {
  padding: 0 0 20px;
  line-height: 1.6;
  font-size: 14px;
}

.howitwork .accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.howitwork .img-wrapper {
  position: relative;
  text-align: center;
}

.howitwork .circle-img {
  max-width: 100%;
  border-radius: 20px;
}

/* OUR PARTNER SECTION CSS */

.ourpartner-slider:first-child {
  margin-bottom: 30px;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.slider-track-left {
  animation-name: slideLeft;
  animation-duration: 120s;
}

.slider-track-right {
  animation-name: slideRight;
  animation-duration: 120s;
}

.partner-card {
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

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

.slider-track:hover {
  animation-play-state: paused;
}

/* CTA SECTION CSS */

.ctasec-inner {
  background: linear-gradient(45deg, #281904ed, #09682194), url('../images/ctasec-bg.webp') no-repeat center center / cover;
  border-radius: 24px;
  padding: 60px;
}

.ctasec-inner::before,
.ctasec-inner::after {
  content: '';
  position: absolute;
  background: rgb(255 255 255 / 4%);
  border-radius: 50%;
}

.ctasec-inner::before {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.ctasec-inner::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -80px;
}

.cta-content {
  max-width: 700px;
}

.cta-badge {
  background: #ffffff33;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid #ffffff4d;
  font-size: 14px;
}

.ctasec-inner h2 {
  font-size: 46px;
}

.ctasec-inner .subtitle {
  font-size: 17px;
  color: #ffffffe6;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ctasec-inner .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: normal;
}

.ctasec-inner .btn-primary {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ctasec-inner .btn-primary:before {
  background: var(--primary);
}

.ctasec-inner .btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ctasec-inner .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgb(255 255 255 / 51%);
}

.ctasec-inner .btn-secondary:hover {
  color: var(--dark);
}

.ctasec-inner .btn-secondary:before {
  background: var(--white);
}

@media (max-width: 768px) {
  .ctasec-inner {
    padding: 40px;
  }
}

/* FOOTER SECTION CSS */

footer {
  background: linear-gradient(45deg, black, #000000b0), url('../images/footer-bg.webp') no-repeat center center / cover;
  background-attachment: fixed;
}

footer figure {
  margin-bottom: 22px;
}

footer figure a img {
  height: 80px;
  padding: 10px;
  background: var(--white);
  border-radius: 12px;
}

footer ul li.menu-item a {
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}

footer ul li.menu-item a:before {
  position: absolute;
  content: '\f101';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: var(--primary);
  left: 0;
  font-size: 12px;
  top: 2px;
}

footer ul li.menu-item a:hover {
  color: transparent;
  background: var(--primary);
  background-clip: text;
}

footer h3 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  font-size: 18px;
  border-left: 2px solid var(--primary);
  padding-left: 12px;
}

footer ul.footer-smo li a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 5px 0 5px 42px;
}

footer ul.footer-smo li:not(:last-child) {
  margin-bottom: 12px;
}

footer ul.footer-smo li a i {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

footer ul.footer-details li {
  position: relative;
  margin-bottom: 12px;
  padding: 5px 0 5px 42px;
}

footer ul.footer-details li i {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

footer ul.socialicon {
  display: flex;
  column-gap: 8px;
}

footer ul.socialicon li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: var(--primary);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--white);
  margin: 0;
}

footer ul.socialicon li a:hover {
  background: linear-gradient(45deg, var(--secondary), var(--primary));
}

footer .ftdetails li i {
  margin-right: 8px;
}

footer ul li,
footer ul li a,
footer p,
footer p a {
  color: #e0e0e0;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid #ffffff26;
}

.copyright p a {
  color: var(--primary);
}

#GoToTop {
  display: none;
  position: fixed;
  bottom: 62px;
  right: 45px;
  z-index: 99999999;
  padding: 0;
  background: var(--primary);
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 17px;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 0 #00000017;
}

a#GoToTop.is-visible {
  display: flex;
}

#whatsappbtn {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  padding: 9px 9px 8px 11px;
  background: #4fcc5d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 32px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

#whatsappbtn img {
  display: block;
  width: 30px;
}

@media only screen and (min-width: 991px) {
  footer .col-lg-3 {
    border-left: 1px solid #ffffff26;
    padding: 60px 35px 25px;
  }

  footer .col-lg-3:first-child {
    border-left: 0;
    padding-left: 12px;
  }

  footer ul.footer-details li:last-child {
    margin: 0;
  }
}

/* BREADCRUMB SECTION CSS */

.breadcrumb {
  background: linear-gradient(45deg, #000000e0, #0000009e), url(../images/breadcrumb-bg.webp) no-repeat center center / cover;
  padding: 200px 0 30px;
  margin-bottom: 0;
}

.breadcrumb .row {
  align-items: center;
  display: flex;
}

.breadcrumb h1 {
  margin: 0;
}

.breadcrumb p {
  text-align: right;
  margin: 0;
}

.breadcrumb p,
.breadcrumb span,
.breadcrumb p a {
  color: #eee;
  font-weight: 500;
}

.breadcrumb p a {
  padding-right: 18px;
  margin-right: 5px;
  position: relative;
}

.breadcrumb h1 span {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  color: transparent;
  text-transform: capitalize;
  background: var(--primary);
  background-clip: text;
  line-height: 1.2;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}

.breadcrumb h1 span a {
  display: none;
}

.breadcrumb h1 p#breadcrumbs {
  text-align: left;
}

.breadcrumb a:after {
  position: absolute;
  content: "\f101" !important;
  font-size: 10px !important;
  font-weight: 600;
  font-family: "Font Awesome 5 Free" !important;
  color: var(--primary);
  right: 0;
  top: 3px;
}

/* ABOUT US PAGE CSS */

.section-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.promise-content {
  max-width: 900px;
  margin: 0 auto;
}

.promise-text {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.promise-text strong {
  color: #1a1a1a;
  font-weight: 600;
}

.promise-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.4rem;
}

.promise-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.promise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 168, 83, 0.15);
  border-color: var(--primary);
}

.promise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d8e48 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.promise-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.promise-card-text m-0 {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}

/* Legacy Section */
.legacy-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.legacy-intro {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.legacy-intro strong {
  font-weight: 600;
}

/* Stats Grid */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  border-radius: 15px;
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 168, 83, 0.15);
  border-color: var(--primary);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d8e48 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--white);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 18px 0 10px;
}

/* CTA Text */
.cta-text {
  font-size: 1rem;
  text-align: center;
  margin: 2rem auto;
  line-height: 1.8;
}

/* Tagline Box */
.tagline-box {
  background: linear-gradient(135deg, var(--primary) 0%, #2d8e48 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(52, 168, 83, 0.3);
}

.tagline-main {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.tagline-sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Learn More Button */
.btn-learn-more {
  display: inline-block;
  padding: 12px 32px;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn-learn-more:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(52, 168, 83, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {

  .promise-cards-grid,
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tagline-main {
    font-size: 1.5rem;
  }

  .tagline-sub {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .promise-card,
  .stat-card,
  .tagline-box {
    padding: 2rem;
  }

}

/* CONTACT PAGE CSS */

.contactus-details {
  margin: 40px 0 0;
}

.contact-details-info {
  height: 100%;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(45deg, #000a03, #34210594), url('../images/contact-img.webp') no-repeat center center / cover;
}

.contactus form label {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}

.contactus form label textarea {
  height: 110px;
}

.contactus form p>label {
  font-weight: 500;
  color: var(--secondary);
}

.contactus form p input[type="text"],
.contactus form p input[type="email"],
.contactus form p input[type="tel"],
.contactus form p textarea {
  border: 1px solid #0000001a;
  border-radius: 15px;
  padding: 13px 20px;
  font-size: 14px;
  resize: none;
  background: var(--white);
  margin-top: 5px;
}

.contactus form {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #afafaf57;
  background: #fafbfa;
}

.contactus input[type="submit"] {
  margin-top: 10px;
}

.contactus form p {
  margin: 0;
}

.contactus_detailslist {
  gap: 12px;
  margin: 12px 0;
}

.contact-details-info h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
}

.contact-details-info>p {
  margin-bottom: 30px;
  font-size: 18px;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contactus_detailslist i {
  font-size: 30px;
  color: var(--primary);
  display: inline-block;
  line-height: 1;
}

.contactus_detailslist p,
.contactus_detailslist p a {
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
}

.contactus iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / .4;
  border-radius: 15px;
}

.secondary-container.testimonials .reviewslist {
  border: 2px solid #00a6a621;
  margin-bottom: 23px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(45deg, #00a6a614, #c993360f);
  box-shadow: 5px 5px 0 #00000008;
}

.secondary-container.testimonials .reviewslist p {
  width: 100%;
  color: #333;
}

.secondary-container.testimonials .reviewslist h5 {
  color: #163250;
}

.secondary-container.testimonials .reviewslist img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.secondary-container.testimonials .reviewslist i {
  left: 0;
}

.secondary-container.testimonials .reviewslist .reviewlist-btm {
  padding-left: 50px;
}




/* LOAN PAGE CSS CODE */


.loan-form form input[type="text"], .loan-form form input[type="email"], .loan-form form input[type="tel"], .loan-form form select, .loan-form form input[type="file"], .loan-form form textarea {
    background: #63856c0f;
    border-radius: 10px;
    padding: 12px 20px;
    margin: 5px 0 15px;
    font-size: 14px;
    border: 1px solid #0000000d;
}

.loan-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #a7a7a724;
    box-shadow: 0 10px 40px -10px rgb(0 0 0 / 8%);
}

.loan-form form input[type="submit"] {
    background: var(--primary);
    margin-top: 10px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
}

.loan-form form input[type="submit"]:hover {
    background: var(--secondary);
}

.loan-form form label {
    width: 100%;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
}

.loan-form form label>span {
    color: #e12626;
}
.loan-form form .wpcf7-spinner {
    position: absolute;
    margin: 20px 0 0 3px;
}


/* SERVICES PAGE CSS */

.loan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.loan-card {
    overflow: hidden;
    text-align: center;
    background: var(--white);
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #3f2f18;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
    position: relative;
    z-index: 0;
}

.loan-card img {
    max-width: 100%;
    transition: .5s;
}

.loan-card-info {
    padding: 15px;
}

.loan-card-info h3 {
    margin: 0;
    font-weight: 600;
    font-size: 21px;
    color: var(--secondary);
}

.loan-card-info p {
    margin: 22px 0 14px;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.loan-card:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #3f2f18;
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.loan-card figure {
    overflow: hidden;
    border-radius: 8px;
}

.loan-card:hover img {
    transform: scale(1.1);
}

.loan-card-info button.btn-primary:before {
    background: var(--white);
}

.loan-card-info button.btn-primary:hover {
    color: var(--secondary);
    background: var(--primary);
}




.loan-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    padding: 0 12px;
}

.loan-popup.active {
    display: block;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.popup-content {
    position: relative;
    max-width: 900px;
    margin: 5% auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.popup-content.loan-form h3#loan-title {
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--secondary);
}


/* RESPONSIVENESS CSS */


@media only screen and (max-width: 1649px) {
  .popup-content {
    margin: 10px auto;
}
.loan-form {
    padding: 20px 25px 25px;
}
}



@media only screen and (max-width: 1199px) {
  .mainslider #carouselExampleFade .carousel-item>img {
    aspect-ratio: 12/7;
  }

  .mainslider .carousel-caption h1 {
    font-size: 36px;
}
.mainslider .carousel-caption h1 span {
  -webkit-text-stroke: .5px #ffffff;
}

  .mainslider .carousel-caption h1 br {
    display: none;
  }

  .mainslider .carousel-caption p {
    width: 100%;
    font-size: 14px;
  }
  .carousel-caption-info h4 {
    font-size: 14px;
}

  .carousel-control-next,
  .carousel-control-prev {
    width: 40px;
    height: 40px;
    padding: 11px;
  }
}

@media only screen and (max-width: 991px) {

  .subheading {
    margin: 0 auto 15px;
    font-size: 16px;
  }

  .heading,
  .leftheading {
    margin-bottom: 25px;
    font-size: 28px;
  }

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

  header::before, header::after {
    display: none;
}

footer {
    padding-top: 45px;
}
  .copyright {
    margin-top: 20px;
    padding: 20px 0;
  }



  .loan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
}

@media only screen and (max-width: 767px) {

  .carousel-control-prev {
    left: 10px;
}
  .carousel-control-next {
    right: 10px;
}
  .mainslider #carouselExampleFade .carousel-item>img {
    aspect-ratio: 1/1;
  }

  .mainslider .carousel-caption h1 {
    max-width: 100%;
}
.carousel-caption-info a.btn.btn-primary {
    font-size: 14px;
}
  .contactus iframe {
    aspect-ratio: 1 / .8;
  }

 
  .ctasec-inner h2 {
    font-size: 30px;
}
.ctasec-inner .subtitle {
    font-size: 14px;
}

 .loan-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}


.loan-form {
    padding: 25px;
}



.contact-details-info {
    padding: 25px;
}
.contact-details-info h2 {
    font-size: 26px;
}
.contactus-details {
    margin: 25px 0 0;
}
.contact-details-info>p {
    font-size: 16px;
}
.contactus_detailslist p, .contactus_detailslist p a {
    font-size: 14px;
}
.contactus_detailslist i {
    font-size: 20px;
    line-height: .5;
}



}

@media only screen and (max-width: 580px) {
  .mainslider .carousel-caption h1 {
    font-size: 30px;
  }

  .mainslider .carousel-caption p {
    margin: 12px 0 14px;
    font-size: 14px;
  }

  .howitwork p.howitwork-desc,
  .howitwork .accordion-body {
    font-size: 14px;
  }

  .howitwork .accordion-button {
    font-size: 16px;
    padding: 12px 0;
  }

  .breadcrumb p,
  .breadcrumb span,
  .breadcrumb p a {
    text-align: center !important;
  }

  .breadcrumb h1 span {
    font-size: 26px;
  }

}