/* FONT IMPORT */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #C8A165;
  --secondary: #1D1D1F;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */


.preLoader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner div {
  width: 8px;
  height: 100%;
  background: #fff;
  margin: 0 2px;
  animation: load 1s infinite ease-in-out;
}

.spinner .rect2 {
  animation-delay: -0.9s;
}

.spinner .rect3 {
  animation-delay: -0.8s;
}

.spinner .rect4 {
  animation-delay: -0.7s;
}

.spinner .rect5 {
  animation-delay: -0.6s;
}

@keyframes load {

  0%,
  40%,
  100% {
    transform: scaleY(0.3);
  }

  20% {
    transform: scaleY(1);
  }
}

/* site hidden at start */
.site {
  opacity: 0;
  transition: 0.5s ease;
}

/* PRELOADER */

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1.125rem 6.25rem 1.125rem 6.25rem;
  transition: 0.3s ease-in-out;
  background-color: #161515;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar-brand img {
    width: 170px;
    filter: brightness(0) invert(1);
}

.navbar-nav {
  align-items: center;
  gap: 3.125rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 0;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
}

/* !NAV HEADER CSS */


/* Main Banner Css Start */

.main-banner {
  background: url(../images/mainBnnr.webp)center/cover no-repeat;
  height: 1000px;
  display: flex;
  align-items: end;
  text-align: center;
  padding: 6rem 0 4.75rem 0;
}


.main-content h1 {
  font-size: 5rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--white);
  letter-spacing: -1px;
}

.main-content p {
  margin: 1.25rem auto 1.75rem auto;
  line-height: 1.5;
  color: #FBFBFB;
  letter-spacing: -0.02px;
  width: 64%;
}

.themeBtn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.25rem 1rem 2.25rem;
  background-color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  color: #FEFEFE;
  border-radius: 10px;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-content .btn-group {
  gap: 1rem;
}


/* Main Banner Css End */


/* Services Sec Css Start */

.services-sec {
  background-color: #F3EFE9;
}

.services-flex figure img {
  border-radius: 10px;
  transition: 0.6s ease;
}

.services-flex {
  display: flex;
  align-items: start;
  gap: 1.875rem;
}

.services-sec .card-body {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.services-img .themeBtn {
  margin: 2rem 0 0 0;
  width: 100%;
  justify-content: center;
}

.services-sec #accordion {
  border: 0;
  border-radius: 0;
}

.faqt-top .subHead {
  color: var(--black);
  margin-bottom: 0.4rem;
}

.services-sec #accordion .card {
  background: transparent;
  border: unset;
  padding: 0;
  overflow: hidden;
  transition: 0.6s ease;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  border-radius: 0;
}

.services-sec #accordion .card .btn-link {
  width: 100%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--secondary);
  background-color: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem 0.75rem 1.25rem;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}

.services-sec #accordion .card .btn-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services-sec #accordion .card .btn-link i::before {
  content: "\f068";
}

.services-sec #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.services-sec #accordion .card .btn-link.collapsed {
  background-color: transparent;
  color: var(--secondary);
}

.services-sec #accordion .card .btn-link[aria-expanded="true"] i {
  color: var(--secondary);
}

.services-sec #accordion .card .card-body p {
  margin: 0;
  color: #4A4A4A;
  line-height: 1.8;
  letter-spacing: -0.02px;
}

.services-sec #accordion .card+.card {
  margin-top: 0.75rem;
}

.services-sec #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
}

.services-sec .card h5 {
  margin: 0;
}


/* Services Sec Css End */

/* Trust Sec Css Start */

.form-inline .themeBtn {
  background-color: var(--white);
  color: #1D1D1F;
  padding: 1rem 3.75rem 1rem 3.75rem;
}

.themeBtn i {
  transform: rotate(-46deg);
  transition: 0.6s ease;
}

.main-content .btn-group .themeBtn:last-child {
  background-color: var(--white);
  color: var(--secondary);
}

.mainHead {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -1px;
}

.trust-content .mainHead {
  font-size: 1.875rem;
  letter-spacing: -0.8px;
}

.trust-content p {
  margin: 1rem 0 2.875rem 0;
  color: #4A4A4A;
  line-height: 1.5;
  letter-spacing: -0.02px;
}

.trust-sec h4 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -1px;
  width: 99%;
  margin: 0 0 2.5rem 0;
}

.trust-counter h5 {
  display: flex;
  align-items: end;
  font-size: 4.375rem;
  font-weight: bold;
  color: var(--secondary);
  letter-spacing: -2.5px;
  gap: 0.2625rem;
  font-family: 'Inter';
  line-height: 1;
}

.trust-counter h5 span {
  font-size: 1.875rem;
  letter-spacing: -2.5px;
}

.trust-counter h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -0.2px;
  margin: 1.75rem 0 0.25rem 0;
}

.trust-counter p {
  color: #4A4A4A;
  line-height: 1.5;
  letter-spacing: -0.02px;
}

.trust-counter {
  border-right: 1px solid #C5C5C5;
  padding: 0 5rem 0 1rem;
}

.trust-sec .col-md-4:last-child .trust-counter {
  border: unset;
}

/* Trust Sec Css End */



/* Serve Sec Css Start */

.serve-para {
  color: #4A4A4A;
  line-height: 1.5;
  letter-spacing: -0.02px;
  padding: 0 0 0 5rem;
  border-left: 2px solid rgb(103 103 103 / 50%);
}

.serve-sec .row+.row {
  padding: 4.25rem 0 0 0;
}

.serve-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 0 0 4.25rem;
}

.serve-list li {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #C8A165;
  border: 1px solid #C8A165;
  padding: 0.475rem 1.5rem 0.475rem 1.5rem;
  border-radius: 10px;
  transition: 0.6s ease;
}

.serve-list li:hover {
  color: #676767;
  border-color: #676767;
}

.serve-wrapper {
  background-color: #F3EFE9;
  border-radius: 15px;
  padding: 1.875rem 1.5625rem 1.75rem 1.5625rem;
  transition: 0.6s ease;
  width: 360px;
}

.serve-wrapper:hover {
  background-color: var(--primary);
}

.serve-overlay h2 {
  font-size: 1.5625rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--secondary);
  letter-spacing: -0.5px;
  margin: 1.25rem 0 0.75rem 0;
}

.serve-overlay ul {
  padding: 0 0 1rem 1.125rem;
}

.serve-overlay ul li {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.02px;
  list-style: number;
  color: #4A4A4A;
}

.serve-overlay ul li+li {
  margin: 0.225rem 0 0 0;
}

.serve-overlay a {
  font-size: 1rem;
  font-weight: 600;
  color: #1D1D1F;
  border-bottom: 1px solid #000;
  width: fit-content;
  padding: 0 0 0.35rem 0;
}

.serve-overlay a i {
  transform: rotate(-45deg);
  margin: 0 0 0 4px;
}

.serve-wrapper:hover ul li {
  color: var(--white);
}

.serve-wrapper:hover h2 {
  color: var(--white);
}

.serve-wrapper:hover a {
  color: var(--white);
  border-color: var(--white);
}

.serve-main .row {
  margin: -28rem 0 0 10rem;
}

/* Serve Sec Css End */




/* Faq Sec Css Start */
.faq-sec #accordion {
  border: 0;
  border-radius: 0;
}

.faqt-top .subHead {
  color: var(--black);
  margin-bottom: 0.4rem;
}

.faq-sec #accordion .card {
  background: transparent;
  border: 1px solid #dfe1de;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.4s ease;
  border: unset;
}

.faq-sec #accordion .card .btn-link {
  width: 100%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--secondary);
  background-color: transparent;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
  padding: 1rem 1.25rem 1rem 0;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.faq-sec #accordion .card .btn-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-sec #accordion .card .btn-link i::before {
  content: "\f068";
}

.faq-sec #accordion .card .btn-link.collapsed i::before {
  content: "\f107";
}

.faq-sec #accordion .card .btn-link.collapsed {
  background-color: transparent;
  color: #000;
}


.faq-sec #accordion .card .btn-link[aria-expanded="true"] i {
  color: #fff;
  opacity: 0;
}

.faq-sec #accordion .card .card-body {
  padding: 29px 28px 30px 28px;
  font-size: 14px;
  background-color: var(--white);
  transition: all 0.3s ease;
  color: #4A4A4A;
  border-radius: 10px;
  border: 1px solid #E6E5E5;
}

.faq-sec #accordion .card .card-body p {
  margin: 0;
  color: #4A4A4A;
  line-height: 1.8;
}

.faq-sec #accordion .card+.card {
  margin-top: 0.475rem;
}

.faq-sec #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
}

.faq-sec .card h5 {
  margin: 0;
}



.faq-sec {
  background-color: #F3EFE9;
}

.faq-img img {
  width: 100%;
  border-radius: 10px;
  height: 490px;
  object-fit: cover;
}

/* Faq Sec Css End  */


/* Ready Sec Css Start */

.ready-sec {
  background: url(../images/readybg.webp)center/cover no-repeat;
  padding: 6.25rem 6.25rem 6.25rem 6.25rem;
  display: flex;
  align-items: end;
  height: 700px;
  z-index: 2;
}

.faq-content .mainHead {
  margin: 0 0 1.75rem 0;
}


.ready-content h2 {
  font-size: 4.7rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--white);
  width: 90%;
  line-height: 1.2;
  margin: 0 0 1.75rem 0;
}

.ready-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 40%);
  z-index: -1;
}

/* Ready Sec Css End */


/* Gallery Sec Css Start */

.gallery-top {
  text-align: center;
  margin: 0 0 2.25rem 0;
}

.gallery-top p {
  width: 40%;
  margin: 1rem auto 0 auto;
  line-height: 1.5;
  color: #4A4A4A;
}

.gallery-wrapper {
  text-align: center;
  border: 1px solid rgb(103 103 103 / 50%);
  border-radius: 15px;
  padding: 0.625rem 0.625rem 1rem 0.625rem;
  margin: 0 0 3rem 0;
  transition: 0.6s ease;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gallery-content {
  border-top: 1px solid #B9B9B9;
  padding: 0.5rem 0 0 0;
  margin: 1.125rem 2.15rem 0 2.15rem;
  transition: 0.6s ease;
}

.gallery-content p {
  color: #4A4A4A;
  text-transform: capitalize;
  letter-spacing: -0.02px;
}

.gallery-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #1D1D1F;
}

.gallery-img img {
  border-radius: 15px;
  transition: 0.6s ease;
  width: 100%;
  height: 280px;
}


.gallery-wrapper:hover .gallery-img::before {
  transform: scale(1.5);
}

.gallery-wrapper:hover {
  background-color: var(--primary);
}

.gallery-wrapper:hover p,
.gallery-wrapper:hover h3 {
  color: var(--white);
}

.gallery-wrapper:hover .gallery-content {
  border-color: var(--white);
}

.gallery-wrapper:hover .gallery-img img {
  transform: scale(1.1);
}

/* Gallery Sec Css End */

/* Contact Sec Css Start */

.contact-sec {
  background-color: #F3EFE9;
}

.contact-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.contact-main {
  padding: 0 7rem 0 6.25rem;
}

.contact-main p {
  color: #4A4A4A;
  line-height: 1.5;
  letter-spacing: -0.02px;
  margin: 3.125rem 0 3.125rem 0;
  width: 70%;
}

.contact-form .form-control {
  outline: unset;
  box-shadow: unset;
  border-radius: 0;
  border: unset;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  height: 3.25rem;
  background-color: transparent;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 1rem;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: -0.2px;
  color: var(--secondary);
}

.contact-form textarea.form-control {
  height: 8.875rem;
}

.blog-sec .mainHead {
  text-align: center;
  margin: 0 0 2.25rem 0;
  font-size: 3.125rem;
  letter-spacing: 0;
}

.blog-sec .row+.row {
  padding: 1.875rem 0 0 0;
}

.article-card span {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #666666;
  margin: 1.25rem 0 0.875rem 0;
  display: block;
}

.article-card h4 {
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #070707;
}

.blog-sec {
  padding: 6.7rem 0 8.75rem 0;
}

.img-wrapper img {
  border-radius: 10px;
}

.content-wrapper span {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #666666;
}

.content-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #070707;
  margin: 0.625rem 0 0.625rem 0;
}

.content-wrapper p {
  color: #666666;
  line-height: 1.5;
}

.content-wrapper a i {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Contact Sec Css End */


/* Discover Sec Css Start */

.discover-sec {
  background: url(../images/discoverbg.webp)center/cover no-repeat;
  padding: 11rem 0 11rem 0;
}


.discover-content .themeBtn {
  margin: 0 auto 0 auto;
  padding: 1.12rem 3.75rem 1.12rem 3.75rem;
}

.discover-content h2 {
  color: var(--white);
}

.discover-content p {
  color: #E6E5E5;
  line-height: 1.5;
  width: 80%;
  margin: 1.0875rem auto 2rem auto;
}

/* Discover Sec Css End */


/* Footer Sec Css Start */

footer {
  background: url(../images/footerbg.webp)center/cover no-repeat;
  padding: 7rem 0 0 0;
}


.footer-logo {
  display: block;
  margin: 0 0 1.875rem 0;
}

.footer-logo img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

footer p {
  line-height: 1.5;
  color: #E6E5E5;
  letter-spacing: -0.02px;
  margin: 0 0 2rem 0;
}

footer h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #E6E5E5;
  margin: 0 0 1rem 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.575rem;
  margin: 2.25rem 0 0 0;
}

.footer-social li a i {
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid #636363;
  border-radius: 50px;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #E6E5E5;
  transition: 0.6s ease;
}

.footer-social li a:hover i {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-text-fill-color: #fff;
}

.footer-list li a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #E6E5E5;
  position: relative;
}

.footer-list {
  margin: 0 0 1.25rem 0;
}

.footer-list li+li {
  margin: 0.625rem 0 0.625rem 0;
}

.email-text {
  font-size: 1rem;
  text-decoration: underline !important;
  color: #E6E5E5;
}

footer .row+.row {
  padding: 1.125rem 0 1.125rem 0;
  border-top: 1px solid rgb(99 99 99 / 30%);
  margin: 4rem 0 0 0;
}

footer .row+.row p {
  text-align: center;
  margin: 0;
}


/* Footer Sec Css End */

/* Hover Effect Css Start */


.navbar-nav .nav-item .nav-link::before {
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--primary);
  position: absolute;
  transition: 0.6s ease;
  bottom: -5px;
  left: unset;
  right: 0;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  right: unset;
  left: unset;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.themeBtn:hover i {
  transform: rotate(-179deg);
}

.themeBtn::before {
  position: absolute;
  content: "";
  height: 19rem;
  width: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--secondary);
  transition: 0.7s ease;
  transform: rotate(45deg);
  z-index: -1;
}

.themeBtn:hover::before {
  width: 19rem;
}

.themeBtn:hover {
  color: var(--white);
}

.form-inline .themeBtn::before {
  background-color: var(--primary);
}

.main-content .btn-group .themeBtn:first-child::before {
  background-color: var(--white);
}

.main-content .btn-group .themeBtn:first-child:hover {
  color: var(--secondary);
}

.main-content .btn-group .themeBtn:last-child::before {
  background-color: var(--primary);
}

.main-content .btn-group .themeBtn:last-child:hover {
  color: var(--white);
}

.serve-image img {
  border-radius: 15px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.ready-content .themeBtn::before {
  background-color: var(--white);
}

.ready-content .themeBtn:hover {
  color: var(--primary);
}

.discover-content .themeBtn::before {
  background-color: var(--white);
}

.discover-content .themeBtn:hover {
  color: var(--primary);
}

.footer-list li a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--primary);
  bottom: -4px;
  transition: 0.6s ease;
  left: 0;
  right: unset;
}

.footer-list li a:hover::before {
  width: 100%;
  left: 0;
}

.footer-list li a:hover {
  color: var(--primary);
}


/* Hover Effect Css End */

/* Imag Shine Css Start */


.img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-box img {
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-25deg);
}

.img-box:hover .shine {
  animation: shineMove 0.9s ease forwards;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

.img-wrapper img {
  width: 100%;
  transition: 0.6s ease;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.img-wrapper {
  overflow: hidden;
}

.img-wrapper:hover img {
  transform: scale(1.1);
}

/* Imag Shine Css End  */


/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: inherit;
  right: 0;
  bottom: 10%;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 80px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  text-align: center;
}

.innerBan {
  position: relative;
}


.serinclude h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D1F;
  margin: 1rem 0;
}

.serinclude ul li {
  font-size: 1rem;
  color: #4A4A4A;
  margin-bottom: 10px;
  list-style: disc;
}

section.services-sec.service-page .row+.row {
  margin-top: 7rem;
}

/* Invoice Section Styles */
.invoice-payment-section {
  background-color: #ffffff;
}

.header-icon {
  display: flex;
  align-items: flex-start;
  margin-top: 4px;
}

.section-title1 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1b1e;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 13px;
  color: #6c7075;
  max-width: 400px;
  line-height: 1.5;
}

.invoice-form .form-group {
  margin-bottom: 22px;
}

.invoice-form label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1b1e;
  margin-bottom: 8px;
  display: block;
}

.invoice-form .required {
  color: #c29b68;
  margin-left: 2px;
}

.invoice-form .form-control {
  border: 1px solid #e1e3e5;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: #1a1b1e;
  background-color: #ffffff;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.invoice-form .form-control::placeholder {
  color: #a0a5aa;
  font-weight: 400;
}

.invoice-form .form-control:focus {
  border-color: #c29b68;
  box-shadow: 0 0 0 3px rgba(194, 155, 104, 0.1);
  outline: none;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #1a1b1e;
  font-weight: 500;
  z-index: 10;
}

.form-control-amount {
  padding-left: 30px !important;
}

.form-control-notes {
  height: 47px;
  resize: none;
}

.required-text {
  font-size: 12px;
  font-weight: 500;
  color: #c29b68;
}

/* Payment Summary Card Styles */
.payment-summary-card {
  background-color: #f6f3eb;
  border-radius: 12px;
  padding: 35px 35px;
}

.summary-header {
  margin-bottom: 30px;
}

.summary-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1b1e;
  margin-bottom: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
}

.summary-label {
  color: #6c7075;
  font-weight: 500;
}

.summary-value {
  color: #1a1b1e;
  font-weight: 500;
}

.info-icon {
  font-size: 11px;
  color: #adb5bd;
  cursor: pointer;
}

.summary-total-wrapper {
  padding-top: 25px;
  border-top: 1px solid #e8e3d8;
}

.total-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1b1e;
}

.total-value {
  font-size: 24px;
  font-weight: 800;
  color: #1a1b1e;
}

.btn-secure-payment {
  background-color: #c29b68;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secure-payment:hover {
  background-color: #ad8656;
  color: #ffffff;
}

.security-badges {
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}

.badge-item {
  display: flex;
  align-items: center;
}

.badge-text {
  font-size: 9px;
  line-height: 1.3;
  color: #6c7075;
  font-weight: 500;
}

/* Dummy FAQ Section Styling */
.faq-dummy-section {
  background-color: #f8f9fa;
  border-top: 1px solid #e1e3e5;
}


.custom-faq-section {
  padding: 80px 0 9rem;
  background-color: #ffffff;
}

.custom-faq-title {
  font-size: 26px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.custom-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-faq-item:hover {
  border-color: #D1D5DB;
}

.custom-faq-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.custom-faq-question {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

.custom-faq-icon {
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-faq-icon svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-faq-item.is-open .custom-faq-icon svg {
  transform: rotate(90deg);
  color: #4B5563;
}

.custom-faq-body {
  height: 0;
  overflow: hidden;
}

.custom-faq-content {
  padding: 0 24px 20px 24px;
}

.custom-faq-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  font-weight: 400;
}

/* Subtle entry animation styles */
.custom-faq-item {
  opacity: 0;
  transform: translateY(15px);
}



.choosepay-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.choosepay-main-title {
  font-weight: 600;
  font-size: 20px;
  color: #1c1c1f;
  margin-bottom: 40px;
}

.choosepay-card {
  border: 1px solid #EAEAEC;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
}

.choosepay-card:hover {
  border-color: #d1d1d6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.choosepay-card-inner {
  display: flex;
  align-items: center;
  padding: 40px 15px;
  height: 100%;
}

.choosepay-radio-wrapper {
  width: 50px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.choosepay-icon-wrapper {
  width: 80px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.choosepay-text-wrapper {
  flex: 1;
}

.choosepay-title-small {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  color: #1c1c1f;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.choosepay-desc {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: #8d8d96;
  margin-bottom: 0;
}

/* Radio Button Styling */
.choosepay-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #c8c8cc;
  position: relative;
  transition: all 0.2s ease;
  background-color: transparent;
}

.choosepay-card.active .choosepay-radio {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.choosepay-card.active .choosepay-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #3b82f6;
  border-radius: 50%;
}

.section-features-portal::before {
  content: "";
  background: #F3EFE9;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  top: 0;
}

.services-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.services-img {
  flex: 1;
  flex-shrink: 0;
}

.services-image {
  flex: 1;
}

.article-card img {
  height: 300px !important;
  object-fit: cover;
}