* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background: var(--primary) !important;
  color: #f1f5f9;
  padding-top: 115px;
}

@media(max-width:912px) {
  body {
    background: var(--primary) !important;
    color: #f1f5f9;
    padding-top: 65px;
  }
}


:root {
  --color-primary: #0b1329;
  /* Deep navy */
  --color-secondary: #c5a880;
  /* Elegant gold */
  --color-accent: #2ab7ca;
  /* Muted teal */
  --color-bg: #f5f9ff;
  /* Soft grayish‑blue */
  --color-text: #e2e8f0;
  /* Light gray for dark backgrounds */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* New UI utilities */
:root {
  --login-bg: rgba(11, 19, 41, 0.78);
  --contact-bg: rgba(11, 19, 41, 0.8);
  --welcome-bg: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* Prevent overflow beyond body */
html,
body {
  overflow-x: hidden;
}


/*=========================
    Sticky Header Wrapper
=========================*/

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.header-wrapper.fixed {
  box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}


.header-wrapper.fixed .topestnav {
  display: none;
}

/*=====================================
            TOP HEADER
======================================*/
.topestnav {
  background: var(--gold);
  padding: 10px 0;
  font-size: 14px;
  text-align: right !important;
}

.top-header {
  display: flex;
  justify-content: right;
}

.top-social {
  display: flex;
  align-items: center;
  text-align: right !important;
  gap: 18px;
}

.top-social a {
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.top-social a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.top-social i {
  font-size: 20px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.top-links a:hover {
  color: var(--blue);
}


/*=====================================
            NAVBAR
======================================*/
.custom-nav {
  background: rgba(11, 19, 41, .96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
  z-index: 999;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 8px !important;
  position: relative;
  transition: .3s;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: .35s;
}

.nav-link:hover::after,
.sc-nav-hover-box:hover>.nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}


/*=====================================
            LOGIN BUTTON
======================================*/
.login-btn {
  background: transparent !important;
  color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  transition: .35s;
}

.login-btn:hover {
  background: var(--gold) !important;
  color: var(--blue) !important;
}


/*=====================================
          MAIN DROPDOWN
======================================*/
.sc-nav-hover-box {
  position: relative;
}

.sc-nav-hover-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #0f172a;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .35s;
  z-index: 999;
}

.sc-nav-hover-box:hover>.sc-nav-hover-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sc-nav-hover-list>a,
.sc-sub-hover-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  transition: .3s;
}

.sc-nav-hover-list>a:hover,
.sc-sub-hover-btn:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--gold);
}


/*=====================================
          SUB DROPDOWN
======================================*/
.sc-sub-hover-box {
  position: relative;
}

.sc-sub-hover-list {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 260px;
  background: #0f172a;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: .35s;
}

.sc-sub-hover-box:hover>.sc-sub-hover-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sc-sub-hover-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  transition: .3s;
}

.sc-sub-hover-list a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--gold);
}


/*=====================================
            MOBILE
======================================*/
@media (max-width:1199px) {

  .navbar-collapse {
    background: #0b1329;
    margin-top: 15px;
    padding: 20px;
    border-radius: 12px;
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0 !important;
  }

  .sc-nav-hover-list,
  .sc-sub-hover-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    background: transparent;
    box-shadow: none;
    min-width: 100%;
    padding-left: 18px;
  }

  .login-btn {
    margin-top: 12px;
  }
}

@media (max-width:991px) {

  .top-links {
    gap: 15px;
  }

}

@media (max-width:767px) {

  .topestnav {
    display: none;
  }

  .navbar-brand img {
    height: 42px;
  }

}

/* Offcanvas Menu  */

.offcanvas {
  width: 320px;
  background: #08142b !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.offcanvas-body {
  border: none !important;
}


.mobile-link {
  display: block;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-link:hover {
  color: var(--gold);
}

.accordion {
  --bs-accordion-border-width: 0 !important;
  --bs-accordion-border-color: transparent !important;
  --bs-accordion-border-radius: 0 !important;
  --bs-accordion-inner-border-radius: 0 !important;
  --bs-accordion-btn-focus-box-shadow: none !important;
  --bs-accordion-bg: transparent !important;

  border: 0 !important;
  box-shadow: none !important;
}

.accordion-item {
  background: transparent;
  border: none;
  color: #fff !important;
}

.accordion-button {
  color: #fff !important;
  padding: 15px;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  outline: none !important;
}


.accordion-button:not(.collapsed) {
  background: transparent !important;
  color: var(--gold);
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  padding: 0;
  border: none !important;
  background: transparent !important;
}

.accordion-body a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 12px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.accordion-collapse {
  border: none !important;
}

.accordion-body a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, .05);
}

.btn-close-white {
  filter: invert(1);
}

#menuIcon {
  transition: .3s ease;
  font-size: 32px;
}



/* ============================================================ */

/* Total Section */
.totalsection {
  padding: 15px;
  border-top: 1px solid #eee;
  background: #fafafa;
  font-size: 13px;
  /* margin-bottom: 4rem; */
  position: sticky;
  /* ✅ KEY FIX */
  bottom: 50px;

}

.totalsection div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.total {
  font-weight: bold;
  font-size: 18px;
}

/* Button */
.frmsubmit {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.frmsubmit:hover {
  background: var(--darkblue);
}



/* ===== SERVICES SECTION ===== */

:root {
  --gold: #d4af37;
  --dark: #0d1b2a;
}

.intro-section {
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.intro-left .welcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.intro-left h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
}

.intro-left h2 span {
  color: var(--gold);
}

.line {
  width: 90px;
  height: 4px;
  border-radius: 10px;
  background: var(--gold);
  margin: 25px 0;
}

.intro-left p {
  color: #cfcfcf;
  line-height: 1.9;
  font-size: 17px;
}

.intro-left .btn {
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}

.intro-left .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, .35);
}

.intro-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 5px solid var(--gold);
  padding: 40px;
  border-radius: 20px;
  transition: .4s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.intro-card:hover {
  transform: translateY(-10px);
}

.intro-card .icon {
  font-size: 55px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.intro-card p {
  color: #ddd;
  line-height: 2;
  margin: 0;
  font-size: 17px;
}

@media(max-width:992px) {

  .intro-left {
    text-align: center;
  }

  .line {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .intro-left h2 {
    font-size: 42px;
  }

  .intro-card {
    padding: 30px;
  }

}

@media(max-width:576px) {

  .intro-left h2 {
    font-size: 34px;
  }

  .intro-card {
    padding: 25px;
  }

  .intro-card .icon {
    font-size: 40px;
  }

}



/* ================================================ */
/* Card Service:- Service, Rera service and Dept Satelment */

.service-card {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  transition: .5s;
  background: #000;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s;
}

/* Overlay */

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .95),
      rgba(0, 0, 0, .45),
      rgba(0, 0, 0, .05));
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: .5s;
}

/* Icon */

.icon-box {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227, #f7dd8a);
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-bottom: 25px;
  transition: .5s;
  box-shadow: 0 10px 30px rgba(212, 175, 55, .45);
}

.service-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-overlay p {
  font-size: 15px;
  line-height: 28px;
  color: #f2f2f2;
  margin-bottom: 25px;
}

/* Button */

.read-btn {
  display: inline-block;
  width: 160px;
  text-align: center;
  padding: 12px;
  background: #d4af37;
  color: #111;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  transition: .4s;
}

.read-btn:hover {
  background: #fff;
  color: #111;
}

/* Footer */

.service-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  background: #071322;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  border-top: 3px solid #d4af37;
  z-index: 5;
  transition: .4s;
}

.service-footer h5 {
  margin: 0;
  color: #d4af37;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.arrow-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #071322;
  transition: .4s;
}

/* Hover */

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .35);
}

.service-card:hover img {
  transform: scale(1.12);
}

.service-card:hover .icon-box {
  transform: rotate(360deg);
}

.service-card:hover .arrow-box {
  transform: translateX(8px);
  background: #fff;
  color: #d4af37;
}

.service-card:hover .service-footer {
  background: #0d1d30;
}

/* Gold Shine */

.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -40%;
  width: 45%;
  height: 300%;
  background: rgba(255, 255, 255, .25);
  transform: rotate(25deg);
  transition: 1s;
  z-index: 2;
}

.service-card:hover::before {
  left: 140%;
}

/* Responsive */

@media(max-width:991px) {

  .service-card {
    height: 430px;
  }

  .service-overlay h3 {
    font-size: 24px;
  }

}

@media(max-width:576px) {

  .service-card {
    height: 370px;
  }

  .service-overlay {
    padding: 20px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .service-overlay h3 {
    font-size: 21px;
  }

  .service-overlay p {
    font-size: 14px;
    line-height: 24px;
  }

  .service-footer {
    height: 65px;
  }

  .service-footer h5 {
    font-size: 16px;
  }

  .arrow-box {
    width: 40px;
    height: 40px;
  }

  .read-btn {
    width: 140px;
    padding: 10px;
  }
}


/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: var(--dark);
  color: #fff;
  margin: 0 20px;
}

.experience-image {
  position: sticky;
  top: 80px;
  height: calc(90vh - 80px);
  overflow: hidden;
}

.experience-image img {
  object-fit: cover;
  height: 100%;
}

.exp-label {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.experience-content h2 {
  font-size: 42px;
  margin: 15px 0 30px;
}



.exp-tabs{
    position:relative;
    gap:20px;
}

/* Vertical Line */
.exp-tabs::before{
    content:"";
    position:absolute;
    left:14px;
    top:20px;
    bottom:20px;
    width:2px;
    background:#3c3c3c;
}

.exp-tabs .nav-item{
    position:relative;
}

.exp-tabs .nav-link{
    display:flex;
    align-items:center;
    gap:18px;
    width:100%;
    background:transparent;
    border:none;
    color:#fff;
    padding:0;
    text-align:left;
    font-size:18px;
    font-weight:600;
}

/* DOT */
.exp-tabs .dot{
    width:18px;
    height:18px;
    background:#666;
    border-radius:50%;
    border:3px solid #0b1329;
    z-index:2;
    transition:.3s;
}

.exp-tabs .nav-link.active .dot{
    background:var(--gold);
    box-shadow:0 0 15px rgba(255,193,7,.5);
}

.exp-tabs .nav-link span:last-child{
    color:#fff;
    transition:.3s;
}

.exp-tabs .nav-link.active span:last-child{
    color:var(--gold);
}

.exp-tabs .nav-link:hover .dot{
    background:var(--gold);
}

.exp-tabs .nav-link:hover span:last-child{
    color:var(--gold);
}

/* Right Side */
.tab-content h2{
    color:#fff;
    margin-bottom:20px;
}

.tab-content p{
    color:#ddd;
    line-height:1.9;
}


/* ==============hero banner============ */

/* index bannner carousel */




.law-banner {
  /* padding:15px; */
  overflow: hidden;
}

/* SLIDER BOX */

#lawSlider {
  /* border-radius:14px; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* IMAGES */

.law-slide-img {
  height: 78vh;
  object-fit: cover;
  filter: brightness(.65);
}

/* CAPTION */

.carousel-caption {
  text-align: left !important;
  max-width: 650px;
  left: 6% !important;
}

.carousel-caption span {
  background: rgba(255, 255, 255, .15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  backdrop-filter: blur(8px);
  color: #fff;
  letter-spacing: .5px;
}

.carousel-caption h1 {
  font-size: 45px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.carousel-caption p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* BUTTON */

.carousel-caption button {
  border: none;
  padding: 14px 32px;
  background: var(--gold);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s;
}

.carousel-caption button:hover {
  background: var(--color-primary);
  box-shadow: 0 0 50px var(--gold);
  transform: translateY(-10px);
}

/* FLIPKART STYLE ARROWS */

.law-arrow {
  width: auto;
  opacity: 1;
}

.law-arrow-box {
  width: 42px;
  height: 90px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  transition: .3s;
}

.law-arrow-box:hover {
  background: #f5f5f5;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev .law-arrow-box {
  border-radius: 0 10px 10px 0;
}

.carousel-control-next .law-arrow-box {
  border-radius: 10px 0 0 10px;
}

/* SMALL FLIPKART STYLE DOTS */

.carousel-indicators {
  bottom: 12px;
}

.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  border: none !important;
  background: #d6d6d6 !important;
  margin: 0 4px !important;
  opacity: 1 !important;
}

.carousel-indicators .active {
  background: #2874f0 !important;
  width: 22px !important;
  border-radius: 20px !important;
}

/* MOBILE */
@media(max-width:768px) {

  .law-slide-img {
    height: 52vh;
  }

  /* CENTER CONTENT */

  .carousel-caption {
    left: 50% !important;
    top: 50%;
    bottom: -106px !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    width: 90%;
    max-width: 90%;
    padding: 0 10px;
  }

  .carousel-caption span {
    font-size: 11px;
    padding: 6px 14px;
  }

  .carousel-caption h1 {
    font-size: 20px;
    line-height: 1.3;
    margin: 14px 0;
  }

  .carousel-caption p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center !important;
  }

  .carousel-caption button {
    padding: 10px 18px;
    font-size: 12px;
  }

  /* SMALL ARROWS */

  .law-arrow-box {
    height: 60px;
    width: 30px;
    font-size: 16px;
  }

  /* SMALL DOTS */

  .carousel-indicators button {
    width: 6px !important;
    height: 6px !important;
  }

  .carousel-indicators .active {
    width: 16px !important;
  }

}



/* index bannner carousel */


/* ==============hero banner============ */



/* ===== PRACTICE AREA SECTION ===== */
.practice-area {
  background: #fff;
}

.practice-heading h2 {
  font-size: 42px;
  color: var(--blue);
  margin-bottom: 10px;
}

.practice-line {
  width: 70px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 10px 0 20px;
}

.practice-heading p {
  max-width: 750px;
  color: #555;
  line-height: 1.8;
}

.practice-item {
  background: #f7f7f7;
  border-left: 5px solid var(--gold);
  padding: 18px 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0px 2px 4px #000;
}

.practice-item a {
  color: #000;
  width: 100%;
}

.practice-item p {
  color: #000;
  width: 100%;
}

/* .practice-item::before {
  content: "✔";
  color: black
} */

.practice-item:hover {
  background: var(--blue);
  transform: translateY(-4px);
}

.practice-item:hover::before,
.practice-item:hover a {
  color: #fff;
}

.practice-item:hover::before,
.practice-item:hover p {
  color: #fff;
}


/* ===== LAWYER TEAM SECTION ===== */
.section-title {
  font-size: 40px;
  color: var(--blue);
}

.section-line {
  width: 70px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 10px auto 0;
}

/* TEAM */
.team-card {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: .3s;
}

.team-card:hover {
  transform: translateY(-8px)
}

.team-img {
  position: relative
}

.team-img img {
  height: 320px;
  object-fit: cover;
  width: 100%
}

.team-social {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: var(--gold);
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
  transition: all 0.3s;

}

.team-card:hover .team-social {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.team-social a {
  color: #fff
}

.team-info {
  text-align: center;
  padding: 20px
}

.team-info h5 {
  color: #243E5C;
}

/* ===== TESTIMONIALS SECTION ===== */
:root {
  --primary: #0B1F3A;
  --secondary: #1E3A5F;
  --gold: #D4AF37;
  --white: #ffffff;
  --text: #d8d8d8;
}

/*==========================
 TESTIMONIAL SECTION
==========================*/

:root {
  --primary: #0B1F3A;
  --secondary: #17375E;
  --gold: #D4AF37;
  --white: #ffffff;
  --text: #d9d9d9;
}

/*======================
 TESTIMONIAL SECTION
======================*/

.testimonial-section {
  padding: 90px 0;
  background: linear-gradient(rgba(9, 27, 52, .92), rgba(9, 27, 52, .92)),
    url("../uploads/images/banner1.jpg") center center/cover fixed;
  overflow: hidden;
}

/* Heading */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.section-title h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
}

.line {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: auto;
  border-radius: 20px;
}

/*======================
 SLIDER
======================*/

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {

  display: flex;

  gap: 30px;

  width: max-content;

  animation: marquee 40s linear infinite;

}

.testimonial-slider:hover .testimonial-track {

  animation-play-state: paused;

}

@keyframes marquee {

  from {

    transform: translateX(0);

  }

  to {

    transform: translateX(-50%);

  }

}

/*======================
 CARD
======================*/

.testimonial-card {

  width: 350px;
  min-width: 350px;
  flex-shrink: 0;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, .12);

  border-radius: 20px;

  padding: 35px;

  transition: .4s;

  position: relative;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);

  margin-top: 20px;

}

.testimonial-card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(to right, var(--gold), var(--accent));

}

.testimonial-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, .45);

}

/* Quote */

.quote {

  width: 65px;

  height: 65px;

  background: rgba(212, 175, 55, .15);

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 20px;

}

.quote i {

  color: var(--gold);

  font-size: 28px;

}

/* Stars */

.stars {

  color: #FFD700;

  font-size: 18px;

  margin-bottom: 18px;

  letter-spacing: 3px;

}

/* Text */

.testimonial-card p {

  color: var(--text);

  line-height: 1.8;

  font-size: 16px;

  margin-bottom: 25px;

}

/* Client */

.client {

  display: flex;

  align-items: center;

  gap: 15px;

}

.client img {

  width: 70px;

  height: 70px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid var(--gold);

  transition: .4s;

}

.testimonial-card:hover .client img {

  transform: scale(1.08);

}

.client h4 {

  color: #fff;

  margin: 0;

  font-size: 18px;

}

.client span {

  color: var(--gold);

  font-size: 14px;

}

/*======================
 Responsive
======================*/

@media(max-width:992px) {

  .testimonial-card {

    width: 320px !important;

  }

  .section-title h2 {

    font-size: 38px;

  }

}

@media(max-width:768px) {

  .testimonial-card {

    width: 280px;

    padding: 25px;

  }

  .testimonial-track {

    animation-duration: 30s;

  }

  .section-title h2 {

    font-size: 30px;

  }

  .client img {

    width: 60px;

    height: 60px;

  }

}



/* ===== BLOG SECTION ===== */
.blog-section {
  background: #f7f7f7
}

.blog-card {
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: .3s
}

.blog-card:hover {
  transform: translateY(-8px)
}

.blog-img {
  position: relative;
  overflow: hidden
}

.blog-img img {
  width: 100%;
  height: 260px;
  object-fit: fill;
  transition: .5s
}

.blog-card:hover img {
  transform: scale(1.08)
}

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600
}

.blog-date strong {
  display: block;
  font-size: 20px
}

.blog-content {
  padding: 20px
}

.blog-category {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 20px;
  color: var(--blue);
  margin: 10px 0;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-content p.expanded {
  -webkit-line-clamp: unset;
}

.read-toggle {
  color: #007bff;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}

.blog-author {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

/* whatsapp icon at bottom */

/* Floating Icons */
.call-icon,
.whatsapp-icon {
  position: fixed;
  right: 20px;
  z-index: 9999;
}

.call-icon {
  bottom: 100px !important;
}


.whatsapp-icon {
  bottom: 30px;
}

.call-icon a,
.whatsapp-icon a {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff !important;
  font-size: 24px !important;
  position: relative;
  transition: all .4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

/* Call Button */
.call-icon a {
  background: linear-gradient(135deg, #007bff, #00b4ff) !important;
}

/* WhatsApp Button */
.whatsapp-icon a {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

/* Hover Effect */
.call-icon a:hover,
.whatsapp-icon a:hover {
  transform: translateY(-5px) scale(1.08);
  color: #fff;
}




@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Icon Animation */
.call-icon i,
.whatsapp-icon i {
  animation: bounce 1.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Mobile Responsive */
@media(max-width:768px) {

  .call-icon a,
  .whatsapp-icon a {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .call-icon {
    bottom: 90px;
  }

  .whatsapp-icon {
    bottom: 20px;
  }

}


/* WhatsApp and Call End  */

/* footer section */
.footer {
  background: var(--blue);
  color: #ccc;
}

.footer-logo {
  height: 55px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--white);
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}


/* About us page */

/* PAGE BANNER */
.page-banner {
  background: url("../uploads/images/banner.jpg") center / cover no-repeat;
  padding: 140px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 41, 0.6) 0%, rgba(11, 19, 41, 0.85) 100%);
  backdrop-filter: blur(3px);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

/* Heading fonts */
h1,
h2,
h3,
.page-banner h1,
.page-banner p {
  font-family: 'Playfair Display', serif;
}

/*==============================
        ABOUT SECTION
==============================*/

.about-section {
  background: #fff;
  overflow: hidden;
}

.about-tag {
  display: inline-block;
  background: #d4af37;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-title {
  font-size: 45px;
  font-weight: 700;
  color: #071322;
  margin: 20px 0;
  line-height: 1.3;
}

.about-line {
  width: 90px;
  height: 4px;
  background: #d4af37;
  margin-bottom: 25px;
}

.about-section p {
  color: #666;
  line-height: 30px;
  font-size: 16px;
}

/* Images */

.about-images {
  position: relative;
  min-height: 600px;
}

.img-main {
  width: 85%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.img-small {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

/* Experience Box */

.experience-box {
  position: absolute;
  left: 40px;
  bottom: 20px;
  background: #071322;
  color: #fff;
  padding: 25px 30px;
  border-left: 5px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.experience-box h2 {
  color: #d4af37;
  font-size: 42px;
  margin: 0;
  font-weight: 700;
}

.experience-box span {
  font-size: 15px;
  line-height: 24px;
}

/* Features */

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about-feature i {
  width: 60px;
  height: 60px;
  background: #d4af37;
  color: #111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.about-feature h5 {
  margin: 0;
  color: #071322;
  font-weight: 700;
}

.about-feature span {
  color: #777;
  font-size: 14px;
}

/* Button */

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #071322;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: .4s;
  font-weight: 600;
}

.about-btn:hover {
  background: #d4af37;
  color: #111;
}

/* Responsive */

@media(max-width:991px) {

  .about-images {
    min-height: auto;
  }

  .img-main {
    width: 100%;
    height: 420px;
  }

  .img-small {
    width: 180px;
    height: 220px;
  }

  .about-title {
    font-size: 34px;
  }

}

@media(max-width:576px) {

  .about-title {
    font-size: 28px;
  }

  .img-main {
    height: 320px;
  }

  .img-small {
    width: 140px;
    height: 180px;
    right: 10px;
  }

  .experience-box {
    left: 15px;
    padding: 15px 18px;
  }

  .experience-box h2 {
    font-size: 28px;
  }

  .about-feature {
    margin-bottom: 15px;
  }

  .about-feature i {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }

}



/* WHY SECTION */

.why-section {
  background: #f7f7f7;
}

.why-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  background-color: var(--gold);
  color: #fff;
}

.why-card:hover i {

  color: #fff;
}

.why-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

.why-card:hover .frmsubmit {
  color: var(--gold);
  background-color: #fff;
}

/* Background Image */
.why-card3::before {
  background: url(../uploads/images/wcu1\ \(1\).png) no-repeat right;
}

.why-card2::before {
  background: url(../uploads/images/wcu1\ \(3\).png) no-repeat right;
}

.why-card1::before {
  background: url(../uploads/images/wcu1\ \(2\).png) no-repeat right;
}

.why-card1::before,
.why-card2::before,
.why-card3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 50%;
  opacity: 0.08;
  /* low opacity */
  transition: 0.6s;
  z-index: 0;
}

/* Rotate on hover */
.why-card1:hover::before,
.why-card2:hover::before,
.why-card3:hover::before {
  transform: rotate(-20deg) scale(1.1);
}

/* Keep content above background */
.why-card1 *,
.why-card2 *,
.why-card3 * {
  position: relative;
  z-index: 2;
}

/* MISSION SECTION */
.mission-box {
  background: var(--blue);
  color: #fff;
  padding: 35px;
}

.mission-box h3 {
  color: var(--gold);
  margin-bottom: 10px;
}


/* about page */
.aimages {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: end;
}

.aimg1 {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  border-radius: 5px;
  border: 4px solid white;
  box-shadow: 0px 4px 12px rgb(95, 95, 95);
}

.aimg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 180px;
  border-radius: 5px;
  border: 4px solid white;
  box-shadow: 0px 4px 12px rgb(95, 95, 95);
  transform: translate(30px, 30px);
}

.aimg3 {
  position: absolute;
  top: 50%;
  left: 0;
  height: 180px;
  border-radius: 5px;
  border: 4px solid white;
  box-shadow: 0px 4px 12px rgb(95, 95, 95);
  transform: translate(-30px, -30px);
}


/* years of experience */

.years-content .col-lg-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.myyrs {
  border: 2px solid rgb(84, 84, 84);
  /* padding: 1rem; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.yrex {
  font-size: 12rem;
}

.years-content h2 {
  font-size: 2.25rem;
  margin-bottom: 0;
}



/* MISSION & VISION SECTION */

.mission-vision {
  background: #f7f7f7;
}

.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.mv-card h3 {
  color: var(--blue);
  margin-bottom: 15px;
}

.mv-card p {
  margin-bottom: 15px;
}

.mv-card ul {
  padding-left: 18px;
}

.mv-card ul li {
  margin-bottom: 8px;
}

/* background decoration */
@keyframes rota {
  from {
    transform: rotate(0deg) translate(40px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translate(40px) rotate(-360deg);
  }
}

.mission-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
  animation: rota 6s linear infinite;
}

.vision-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  background: var(--blue);
  opacity: 0.08;
  border-radius: 50%;
  animation: rota 6s linear infinite;
}


/* contact page */
.contactinfo {
  background-color: #000;
  color: #fff;
}

.contact-details h1 {
  margin-bottom: 30px;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-table td {
  padding: 15px 10px;
  vertical-align: top;
  transition: 0.3s;
}

.contact-table tr:hover td:last-child {
  color: var(--gold);
}

.contact-table .label {
  width: 160px;
  font-weight: 600;
  color: #c5c5c5;
}

.queryfrm {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.queryfrm input,
.queryfrm textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--gold);
  box-shadow: none;
  color: var(--gold);
}

.queryfrm input:focus-visible,
.queryfrm textarea:focus-visible {
  outline-color: var(--gold);
  border-radius: 0px !important;
  background-color: wheat;
}

.frmsubmit {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
  width: max-content;
  border-radius: 4px;
}


.backgroundimg {
  background: url(../uploads/images/banner1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.backgroundimg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.backgroundimg .container {
  position: relative;
  z-index: 2;
}

/* login page */

/* user dashboard */
.profile-card {
  max-width: 700px;
  margin: auto;

  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
  max-height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.profile-title {
  font-weight: 600;
  margin-bottom: 20px;
}





/* =======================service Detail Page================================ */

.law-page {
  background: #f8f9fc;
  padding: 80px 0;
}

.law-page h2 {
  font-size: 42px;
  font-weight: 700;
  color: #071322;
  margin-bottom: 15px;
}

.law-page h3 {
  color: #071322;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.law-page p {
  color: #666;
  line-height: 30px;
  font-size: 16px;
}

.practice-line {
  display: block;
  width: 90px;
  height: 4px;
  background: #d4af37;
  border-radius: 20px;
  margin-top: 15px;
}

/*==========================
        Left Content
==========================*/

.icon-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.icon-list li {
  margin-bottom: 18px;
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-list i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #d4af37;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

/*==========================
      Consultation Form
==========================*/

.sidebar-box {
  background: #071322;
  color: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
  position: sticky;
  top: 100px;
}

.sidebar-box h5 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 25px;
}

.sidebar-box .form-control {
  height: 55px;
  border: none;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: none;
}

.sidebar-box textarea.form-control {
  height: 140px;
  resize: none;
}

.sidebar-box .form-control:focus {
  border: 2px solid #d4af37;
  box-shadow: none;
}

.consult-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 50px;
  background: #d4af37;
  color: #111;
  font-weight: 700;
  transition: .4s;
}

.consult-btn:hover {
  background: #fff;
}

/*==========================
      Government Fees
==========================*/

.table {
  margin-top: 25px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.table thead {
  background: #071322;
  color: #fff;
}

.table th,
.table td {
  padding: 16px;
  vertical-align: middle;
}

.table tbody tr:hover {
  background: #fff8e4;
}

/*==========================
      Button
==========================*/

.login-btn {
  margin-top: 20px;
  background: #071322;
  color: #fff;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  transition: .4s;
}

.login-btn:hover {
  background: #d4af37;
  color: #111;
}

/*==========================
      Documents
==========================*/

.docreqs>div>div {

  background: #fff;

  padding: 30px 15px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

  transition: .4s;

  height: 100%;

}

.docreqs img {

  width: 70px;

  margin-bottom: 18px;

}

.docreqs div div {

  font-weight: 600;

  color: #071322;

}

.docreqs>div>div:hover {

  transform: translateY(-10px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, .15);

}

/*==========================
        How We Work
==========================*/

.howwewrk>.col>div {

  background: #071322;

  color: #fff;

  padding: 35px 20px;

  border-radius: 20px;

  height: 100%;

  position: relative;

  transition: .4s;

}

.howwewrk>.col>div:hover {

  transform: translateY(-10px);

  background: #d4af37;

  color: #111;

}

.howwewrk span:first-child {

  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #d4af37;

  color: #111;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;

  font-weight: 700;

  margin: 0 auto 20px;

}

.howwewrk>.col>div:hover span:first-child {

  background: #071322;

  color: #fff;

}

.howwewrk span:last-child {

  font-size: 16px;

  font-weight: 600;

  line-height: 28px;

}

/*==========================
      Responsive
==========================*/

@media(max-width:991px) {

  .law-page h2 {

    font-size: 32px;

  }

  .law-page h3 {

    font-size: 26px;

  }

  .sidebar-box {

    margin-top: 40px;

    position: relative;

    top: 0;

  }

  .howwewrk>.col {

    flex: 0 0 50%;

    margin-bottom: 20px;

  }

}

@media(max-width:576px) {

  .law-page {

    padding: 50px 0;

  }

  .law-page h2 {

    font-size: 26px;

  }

  .sidebar-box {

    padding: 20px;

  }

  .docreqs img {

    width: 55px;

  }

  .howwewrk>.col {

    flex: 0 0 100%;

  }
}


/*=====================================
    GOVERNMENT FEES SECTION
=====================================*/

.government-fees-section {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(11, 19, 41, .08);
  border: 1px solid rgba(197, 168, 128, .25);
}

.government-fees-section h5 {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.government-fees-section h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 70px;
  height: 4px;
  border-radius: 50px;
  background: var(--color-secondary);
}

/* Table */

.government-fees-section .table {
  margin: 25px 0;
  border-radius: 15px;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.government-fees-section .table thead {
  background: var(--color-primary);
}

.government-fees-section .table thead th {
  color: #fff;
  border: none;
  padding: 18px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

.government-fees-section .table tbody td {
  padding: 18px;
  text-align: center;
  border-color: #eef2f7;
  color: #444;
  transition: var(--transition);
}

.government-fees-section .table tbody tr:nth-child(even) {
  background: #fafafa;
}

.government-fees-section .table tbody tr:hover {
  background: rgba(42, 183, 202, .08);
}

.government-fees-section .table tbody td:last-child {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 18px;
}

/* Note */

.government-fees-section .text-muted {
  color: #6c757d !important;
  text-align: center;
  font-size: 14px;
}

/* Button */

.login-btn {
  margin-top: -0px;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--color-secondary);
}

.login-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11, 19, 41, .25);
}




/*=====================================
      DOCUMENTS REQUIRED SECTION
======================================*/

.docreqs {
  margin-top: 40px;
}

.docreqs .col-lg>div {
  background: #fff;
  border: 1px solid rgba(197, 168, 128, .25);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(11, 19, 41, .06);
  position: relative;
  overflow: hidden;
}

.docreqs .col-lg>div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.docreqs .col-lg>div:hover::before {
  transform: scaleX(1);
}

.docreqs .col-lg>div:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(11, 19, 41, .12);
  border-color: var(--color-secondary);
}

.docreqs img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: var(--transition);
}

.docreqs .col-lg>div:hover img {
  transform: scale(1.08) rotate(5deg);
}

.docreqs div div {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
}

/* Mobile */

@media (max-width:991px) {

  .docreqs .col-6 {
    margin-bottom: 15px;
  }

  .docreqs .col-lg>div {
    padding: 25px 15px;
  }

  .docreqs img {
    width: 65px;
    height: 65px;
  }

  .docreqs div div {
    font-size: 15px;
  }
}

@media (max-width:576px) {

  .docreqs img {
    width: 55px;
    height: 55px;
  }

  .docreqs .col-lg>div {
    border-radius: 15px;
    padding: 20px 12px;
  }

  .docreqs div div {
    font-size: 14px;
  }
}

/*=====================================
      COMPARISON TABLE
======================================*/

.trademark-comparison {
  background: #fff;
}

.section-title {
  color: var(--color-primary);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: auto;
}

.comparison-table {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 19, 41, .08);
  border: none;
}

.comparison-table thead {
  background: var(--color-primary);
}

.comparison-table thead th {
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  border: none;
}

.comparison-table tbody td {
  padding: 18px;
  vertical-align: middle;
  border-color: #edf2f7;
  transition: var(--transition);
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-primary);
  background: #fafafa;
  width: 220px;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fcfcfc;
}

.comparison-table tbody tr:hover {
  background: rgba(42, 183, 202, .08);
}

.comparison-table tbody td:nth-child(2) {
  color: #198754;
  font-weight: 500;
}

.comparison-table tbody td:nth-child(3) {
  color: #0d6efd;
  font-weight: 500;
}

/* Mobile */

@media(max-width:768px) {

  .section-title {
    font-size: 28px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .comparison-table tbody td:first-child {
    min-width: 150px;
  }
}


/*=====================================
          DISCLAIMER SECTION
======================================*/

.disclaimer-section {
  background: var(--color-bg);
}

.disclaimer-card {
  background: #fff;
  border-left: 6px solid var(--color-secondary);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(11, 19, 41, .08);
  transition: var(--transition);
}

.disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(11, 19, 41, .12);
}

.disclaimer-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 128, .15);
  color: var(--color-secondary);
  font-size: 28px;
  flex-shrink: 0;
}

.disclaimer-card h3 {
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
}

.disclaimer-card p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.disclaimer-card strong {
  color: var(--color-primary);
}

/* Responsive */

@media(max-width:768px) {

  .disclaimer-card {
    padding: 25px 20px;
  }

  .disclaimer-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .disclaimer-card h3 {
    font-size: 22px;
  }

  .disclaimer-card p {
    font-size: 15px;
  }
}


.company-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 80px 0;
}

.company-img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.company-section h2 {
  color: var(--color-primary);
  font-size: 42px;
  font-weight: 700;
}

.company-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.company-section h5 {
  color: var(--color-primary);
  margin-top: 20px;
}

.company-section ul {
  padding-left: 20px;
}

.company-section ul li {
  margin-bottom: 10px;
  color: #555;
}

/* Mobile */

@media(max-width:991px) {

  .company-section {
    min-height: auto;
    padding: 60px 0;
  }

  .company-img {
    max-height: 350px;
    margin-bottom: 30px;
  }

  .company-section h2 {
    font-size: 30px;
  }

}



/*=========================
      RERA SECTION
==========================*/

.rera-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}

.rera-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;

}

.rera-image img {
  /* max-width: 800px; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: top;
  display: block;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s;
}

.rera-image img:hover {
  transform: scale(1.03);
}

.rera-section h2 {
  color: var(--color-primary);
  font-size: 42px;
  font-weight: 700;
}

.rera-section p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

/* Mobile */

@media(max-width:991px) {

  .rera-section {
    min-height: auto;
    padding: 70px 0;
  }

  .rera-image {
    height: auto;
    margin-bottom: 30px;
  }

  .rera-image img {
    height: auto;
  }

  .rera-section h2 {
    font-size: 30px;
  }

}


/*=====================================
        REFUND SECTION
======================================*/

.refund-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  padding: 0 20px;
}

.refund-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.refund-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.refund-image img:hover {
  transform: scale(1.03);
}

.refund-section h2 {
  font-size: 42px;
  color: #fff;
}

.refund-section p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.refund-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.refund-section .login-btn {
  margin-top: 15px;
}

/* Mobile */

@media(max-width:991px) {

  .refund-section {
    min-height: auto;
    padding: 70px 0;
  }

  .refund-image {
    height: auto;
    margin-bottom: 30px;
  }

  .refund-image img {
    height: auto;
  }

  .refund-section h2 {
    font-size: 30px;
  }

  .refund-section p {
    font-size: 15px;
  }

}


/*=====================================
      DELAY POSSESSION SECTION
======================================*/

.delay-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}

.delay-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.delay-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.delay-image img:hover {
  transform: scale(1.03);
}

.delay-section h2 {
  color: var(--color-primary);
  font-size: 42px;
  font-weight: 700;
}

.delay-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
}

.delay-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media(max-width:991px) {

  .delay-section {
    min-height: auto;
    padding: 70px 0;
  }

  .delay-image {
    height: auto;
    margin-bottom: 30px;
  }

  .delay-image img {
    height: auto;
  }

  .delay-section h2 {
    font-size: 30px;
  }

  .delay-section p {
    font-size: 15px;
  }
}


/*=====================================
     UNFAIR PRACTICES SECTION
======================================*/

.unfair-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
}

.unfair-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.unfair-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.unfair-image img:hover {
  transform: scale(1.03);
}

.unfair-section h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.unfair-section p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.unfair-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width:991px) {

  .unfair-section {
    min-height: auto;
    padding: 70px 0;
  }

  .unfair-image {
    height: auto;
    margin-bottom: 30px;
  }

  .unfair-image img {
    height: auto;
  }

  .unfair-section h2 {
    font-size: 30px;
  }

  .unfair-section p {
    font-size: 15px;
  }

}


/*=====================================
      LOAN DISPUTE SECTION
======================================*/

.loan-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}

.loan-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.loan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.loan-image img:hover {
  transform: scale(1.03);
}

.loan-section h2 {
  color: var(--color-primary);
  font-size: 42px;
  font-weight: 700;
}

.loan-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
}

.loan-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width:991px) {

  .loan-section {
    min-height: auto;
    padding: 70px 0;
  }

  .loan-image {
    height: auto;
    margin-bottom: 30px;
  }

  .loan-image img {
    height: auto;
  }

  .loan-section h2 {
    font-size: 30px;
  }

  .loan-section p {
    font-size: 15px;
  }
}


/*=====================================
      PROJECT VERIFICATION SECTION
======================================*/

.project-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  padding: 0 20px;
}

.project-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.project-image img:hover {
  transform: scale(1.03);
}

.project-section h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.project-section p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.project-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width:991px) {

  .project-section {
    min-height: auto;
    padding: 70px 0;
  }

  .project-image {
    height: auto;
    margin-bottom: 30px;
  }

  .project-image img {
    height: auto;
  }

  .project-section h2 {
    font-size: 30px;
  }

  .project-section p {
    font-size: 15px;
  }
}


/*==============================
        RERA BENEFITS
===============================*/

.rera-benefits {
  padding: 100px 0;
  background: var(--color-bg);
}

.rera-benefits h2 {
  color: var(--color-primary);
  font-weight: 700;
}

.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 30px;
  height: 100%;
  text-align: center;
  border: 1px solid #e8edf5;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: var(--color-primary);
}

.benefit-card:hover h5,
.benefit-card:hover p {
  color: #fff;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: auto auto 20px;
  border-radius: 50%;
  background: rgba(197, 168, 128, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--color-secondary);
}

.benefit-card:hover .benefit-icon {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.benefit-card h5 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

@media(max-width:991px) {

  .rera-benefits {
    padding: 70px 0;
  }

  .benefit-card {
    padding: 25px;
  }

}


/*=====================================
        DEBT SETTLEMENT
======================================*/

.debt-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}

.debt-image {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 10px; */
  border-radius: 20px !important;
}

.debt-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: cover;
  object-position: left;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.debt-image img:hover {
  transform: scale(1.03);
}

.debt-section h2 {
  color: var(--color-primary);
  font-size: 42px;
  font-weight: 700;
}

.debt-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
}

.debt-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width:991px) {

  .debt-section {
    min-height: auto;
    padding: 70px 0;
  }

  .debt-image {
    height: auto;
    margin-bottom: 30px;
  }

  .debt-image img {
    height: auto;
  }

  .debt-section h2 {
    font-size: 30px;
  }

  .debt-section p {
    font-size: 15px;
  }
}



/*=====================================
     WHAT IS DEBT SETTLEMENT
======================================*/

.what-debt-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  padding: 0 20px;
}

.what-debt-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.what-debt-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.what-debt-image img:hover {
  transform: scale(1.03);
}

.what-debt-section h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.what-debt-section p {
  color: var(--color-text);
  line-height: 1.9;
  font-size: 16px;
}

.what-debt-section h5 {
  color: #fff;
}

.debt-list {
  padding-left: 20px;
}

.debt-list li {
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.8;
}

.debt-info-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media(max-width:991px) {

  .what-debt-section {
    min-height: auto;
    padding: 70px 0;
  }

  .what-debt-image {
    height: auto;
    margin-bottom: 30px;
  }

  .what-debt-image img {
    height: auto;
  }

  .what-debt-section h2 {
    font-size: 30px;
  }

  .what-debt-section p,
  .debt-list li {
    font-size: 15px;
  }

}

/*=====================================
        SECURED LOAN SECTION
======================================*/

.secured-loan-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}

.secured-loan-image {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 20px !important;
}

.secured-loan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .5s
}

.secured-loan-image img:hover {
  transform: scale(1.03);
}

.secured-loan-section h2 {
  color: var(--color-primary);
  font-size: 42px;
  font-weight: 700;
}

.secured-loan-section h5 {
  color: var(--color-primary);
  font-weight: 600;
}

.secured-loan-section p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.loan-list {
  padding-left: 20px;
}

.loan-list li {
  color: #555;
  margin-bottom: 10px;
  line-height: 1.8;
}

.secured-badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media(max-width:991px) {

  .secured-loan-section {
    min-height: auto;
    padding: 70px 0;
  }

  .secured-loan-image {
    height: auto;
    margin-bottom: 30px;
  }

  .secured-loan-image img {
    height: auto;
  }

  .secured-loan-section h2 {
    font-size: 30px;
  }

  .secured-loan-section p,
  .loan-list li {
    font-size: 15px;
  }

}

/* unsecured-loan-section   */

.unsecured-loan-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}


/*==============================
    PREMIUM LOAN CARD
===============================*/

.loan-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  transition: .4s;
}

.loan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .35);
}

.loan-card h2,
.loan-card h5 {
  color: #fff;
}

.loan-card p {
  color: var(--color-text);
  line-height: 1.9;
}

.loan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loan-card ul li {
  color: var(--color-text);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.loan-card ul li:last-child {
  border: none;
}

.loan-card i {
  color: var(--color-secondary);
  font-size: 18px;
}

.loan-badge {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.loan-card .login-btn {
  margin-top: 25px;
}

@media(max-width:991px) {

  .loan-card {
    padding: 25px;
  }

}

/*=====================================
        CONTACT SECTION
======================================*/

.contactinfo {
  padding: 100px 0;
  background: #f8fafc;
}

.glass-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .05);
  height: 100%;
  transition: .4s;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.glass-card h2 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.glass-card h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--color-secondary);
  display: block;
  margin-top: 12px;
  border-radius: 20px;
}

.contact-table {
  width: 100%;
}

.contact-table tr {
  border-bottom: 1px solid #ececec;
}

.contact-table td {
  padding: 18px 0;
  vertical-align: top;
}

.contact-table .label {
  width: 140px;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-table td:last-child {
  color: #666;
  line-height: 1.8;
}

.contact-table i {
  color: var(--color-secondary);
  font-size: 20px;
  margin-right: 10px;
}

.contact-map {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

@media(max-width:991px) {

  .contactinfo {
    padding: 70px 0;
  }

  .glass-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-map iframe {
    min-height: 350px;
  }

}


/*=====================================
        QUERY FORM SECTION
======================================*/

.query-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 80px 0;
}

.queryfrm {
  width: 100%;
  max-width: 750px;
  margin: auto;
  padding: 45px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.queryfrm input,
.queryfrm textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 20px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  outline: none;
  transition: .3s;
}

.queryfrm input:focus,
.queryfrm textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, .15);
}

.queryfrm textarea {
  resize: none;
}

.frmsubmit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: .3s;
}

.frmsubmit:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media(max-width:991px) {

  .query-section {
    min-height: auto;
    padding: 70px 0;
  }

  .queryfrm {
    padding: 25px;
  }

}

/* =====================User service Page style=========================== */
/* CARD */

.side-baar-juris {
  background: #212529;
}

.custom-top-100 {
  top: 100px;
}

.card-my-service {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-my-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.image-service {
  position: relative;
  /* height: 180px; */
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 100%;
}

.image-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.card-my-service:hover img {
  transform: scale(1.1);
}

/* BADGE */
.badge-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #28a745;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* CONTENT */
.service-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h5 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}

/* DURATION */
.service-duration {
  font-size: 14px;
  color: #777;
}

.service-duration i {
  margin-right: 5px;
  color: var(--gold);
}

/* PRICE */
.price {
  font-size: 18px;
  font-weight: bold;
  color: var(--gold);
  margin: 10px 0;
}

.price span {
  font-size: 22px;
}

/* DATE */
.start-end {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  column-gap: 1rem;
  flex-wrap: wrap;
  color: #666;
}

/* BUTTONS */
.btns-service {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btns-service button {
  flex: 1;
  padding: 6px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

/* CANCEL */
.btn-cancel {
  background: #f1f1f1;
}

.btn-cancel:hover {
  background: #ddd;
}

/* CONTINUE */
.btn-continue {
  background: var(--gold);
  color: #fff;
}

.btn-continue:hover {
  background: var(--darkblue);
}

/* VIEW LINK */
.view-service {
  margin-top: auto;
  text-align: center;
  margin-top: 15px;
}

.view-service a {
  text-decoration: none;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

.view-service a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .image-service {
    height: 150px;
  }

  /* .new-class{
    flex-direction: column-reverse;
    width: 100%;
  } */
}




/* ===== RESPONSIVE ===== */
/* TABLET */
@media (max-width: 992px) {


  .service-overlay {
    justify-content: start;
  }

  .service-card {
    padding: 0 !important;
  }

  .service-card img {
    height: 100%;
    object-fit: fill;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }

  .years-content .col-lg-4 {
    display: flex;
    align-items: start;
    justify-content: start;
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 576px) {

  .service-card {
    border-radius: 6px;
  }

  .service-card img {
    height: 220px;
  }

  .service-overlay {
    position: relative;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
  }

  .service-overlay h3 {
    font-size: 18px;
  }

  .service-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .service-overlay a {
    font-size: 14px;
    padding: 8px 18px;
  }

  .service-title {
    display: none;
  }

  .experience-content h2 {
    font-size: 30px;
  }

  .exp-tabs {
    /* flex-direction: column; */
    row-gap: 1rem;
    justify-content: space-around;
    /* gap: 10px; */
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .testimonials-section {
    background-attachment: scroll;
  }

  .testimonials-heading {
    text-align: left;
  }

  .test-line {
    margin-left: 0;
  }

  .aimg2,
  .aimg3 {
    display: none;
  }

  .yrex {
    font-size: 8rem;
  }

  .years-content h2 {
    font-size: 30px;
  }

  .frmsubmit {
    font-size: 14px;
    padding: 8px 18px;
  }

  .contact-table td {
    padding: 15px 0;

  }

  iframe {
    height: 300px;
  }
}

/* free-consult-fixed-div */
.free-consult-fixed-div {
  max-width: 280px;
  width: 100%;
  position: fixed;
  top: 50%;
  right: -248px;
  transform: translateY(-50%);
  /* transform: translate(-60px , -50%); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1021;
}

.free-consult-fixed-div h5 {
  writing-mode: vertical-lr;
  background-color: var(--gold);
  transform: rotate(180deg);
  height: max-content;
  padding: 1rem 0.25rem;
  color: #fff;
}

.free-consult-fixed-div.show {
  right: 0;
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark shadow */
  backdrop-filter: blur(5px);
  /* blur effect */
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1020;
}

/* Show overlay */
.blur-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* checkout section */
.checkout-section {
  background: #f8f9fa;
}

.checkout-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Summary */
.summary-box {
  position: sticky;
  top: 100px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}

.summary-item.total {
  font-weight: bold;
  font-size: 18px;
}

/* Payment */
.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}

.payment-option input {
  cursor: pointer;
}

/* Button */
.place-order-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.place-order-btn:hover {
  background: var(--darkblue);
}

/* thankyousection */
.thankyou-wrapper {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fb;
  padding: 20px;
}

/* Card */
.thankyousection {
  max-width: 500px;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease;
}

/* Icon Circle */
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  font-size: 36px;
  color: #28a745;
}

/* Text */
.thankyousection h1 {
  font-weight: 700;
  margin-bottom: 10px;
}

.thankyousection p {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Buttons */
.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.primary-btnn {
  background: #28a745 !important;
  color: #fff !important;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.primary-btnn:hover {
  background: #218838;
}

.back-home {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;

}

.back-home:hover {
  color: #000;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* Debt Settlement Page */

.finx-container {
  width: 100%;
  /* padding: 40px 20px; */
  background: white;
  overflow: hidden;
}

.finx-wrapper {
  /* max-width: 1100px; */
  margin: auto;
}

.finx-header {
  text-align: center;
  margin-bottom: 40px;
}

.finx-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2b49;
}

.finx-subtitle {
  color: #6b7280;
  margin-top: 10px;
}

.finx-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;

}

.finx-card:hover {
  transform: translateY(-5px);
}

.finx-card-situations {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 35px;
  color: #111;

  /* Image on left */
  background: url('../uploads/images/card1-debt.jpg') left/cover no-repeat;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 🔥 White gradient fade (left → right) */
.finx-card-situations::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to left,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.6) 35%,
      rgba(255, 255, 255, 0.9) 60%,
      #ffffff 100%);

  backdrop-filter: blur(4px);
  z-index: 0;
}

/* Keep content above */
.finx-card-situations * {
  position: relative;
  z-index: 1;
}


.finx-card-credit {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 35px;
  color: #111;

  /* Image on left */
  background: url('../uploads/images/card1-debt.jpg') left/cover no-repeat;

}

/* 🔥 White gradient fade (left → right) */
.finx-card-credit::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.6) 25%,
      rgba(255, 255, 255, 0.9) 40%,
      #ffffff 100%);

  backdrop-filter: blur(4px);
  z-index: 0;
}

/* Keep content above */
.finx-card-credit * {
  position: relative;
  z-index: 1;
}


.finx-card-legal {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 35px;
  color: #111;

  /* Image on left */
  background: url('../uploads/images/card1-debt.jpg') left/cover no-repeat;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 🔥 White gradient fade (left → right) */
.finx-card-legal::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  z-index: 0;
}

/* Keep content above */
.finx-card-legal * {
  position: relative;
  z-index: 1;
}

.finx-section-title {
  font-size: 22px;
  font-weight: bolder;
  margin-bottom: 15px;
  color: #111827;
}

.finx-text {
  color: #4b5563;
  margin-bottom: 10px;
}

.finx-highlight {
  margin-top: 15px;
  padding: 12px;
  background: #e0f2fe;
  border-left: 4px solid #0284c7;
  border-radius: 6px;
  color: #075985;
}

.finx-list {
  list-style: none;
  padding: 0;
}

.finx-list-item {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  color: #374151;
}

.finx-list-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: black;
  font-size: 14px;
}

.finx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.finx-grid-box {
  background: #f9fafb;
  padding: 15px;
  border-radius: 10px;
}

.finx-mini-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1f2933;
}


.finx2-container {
  padding: 20px 0;
  overflow: hidden;

}

.finx2-wrapper {
  width: 100%;
  margin: auto;
}

.finx2-header {
  text-align: center;
  margin-bottom: 40px;
}

.finx2-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
}

.finx2-subtitle {
  color: #64748b;
  margin-top: 10px;
}

.finx2-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background: linear-gradient(to bottom, #97b2d192, #ffffff);
}

.finx2-section-title {
  font-size: 22px;
  font-weight: bolder;
  margin-bottom: 15px;
  color: #0f172a;
}

.finx2-text {
  color: #475569;
  margin-bottom: 10px;
}

.finx2-list {
  list-style: none;
  padding: 0;
}

.finx2-item {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.finx2-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000000;
}

.finx2-table-wrap {
  overflow-x: auto;
}

.finx2-table {
  width: 100%;
  border-collapse: collapse;
}

.finx2-table th {
  background: #243E5C;
  color: white;
  padding: 12px;
}

.finx2-table td {
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.finx2-highlight {
  margin-top: 15px;
  padding: 12px;
  background: #ecfeff;
  border-left: 4px solid #06b6d4;
  border-radius: 6px;
}

.finx2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.finx2-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
}

.finx2-dark {
  background: #1e293b;
  color: white;
}

.finx2-dark h2,
.finx2-dark h3 {
  color: white;
}

.finx2-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #243E5C, #06b6d4);
  color: white;
  border-radius: 14px;
  margin-bottom: 25px;
}

.finx2-btn {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  background: white;
  color: #243E5C;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
}

.finx2-contact p {
  margin-bottom: 8px;
}



.finx3-open-btn {
  padding: 12px 24px;
  background: #243E5C;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}

/* Overlay */
.finx3-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.finx3-popup {
  background: var(--primary);
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  animation: finx3Fade 0.4s ease;
}

/* Animation */
@keyframes finx3Fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close */
.finx3-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;

}

/* Text */
.finx3-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.finx3-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 20px;
}

/* Form */
.finx3-group {
  margin-bottom: 15px;
}

.finx3-group input,
.finx3-group select,
.finx3-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.finx3-group input:focus,
.finx3-group select:focus,
.finx3-group textarea:focus {
  border-color: #243E5C;
}

/* Button */
.finx3-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #243E5C, #06b6d4);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}




/* Company Incorporation Page */





/* GLASS CARD */
.lux-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(36, 62, 92, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(36, 62, 92, 0.15);
}

/* Gradient Border */
.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #243E5C, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* SECTION TITLE */
.lux-title {
  font-weight: 700;
  color: #243E5C;
  margin-bottom: 25px;
}



/* LIST */
.lux-list li {
  margin-bottom: 8px;
}

/* TABLE */
.lux-table {
  border-radius: 15px;
  overflow: hidden;
  background: white;
}

/* TAG */
.lux-tag {
  background: #243E5C;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}








/* Responsive */
@media (max-width: 768px) {
  .finx-main-title {
    font-size: 26px;
  }

  .finx-grid {
    grid-template-columns: 1fr;
  }

  .finx-card {
    padding: 20px;
  }


  .finx2-title {
    font-size: 26px;
  }

  .finx2-grid {
    grid-template-columns: 1fr;
  }

  .finx2-card {
    padding: 20px;
  }
}


/* Responsive */
@media (max-width: 480px) {
  .finx3-popup {
    margin: 15px;
    padding: 20px;
  }
}



/* my style faq */

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--darkblue);

}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button {
  color: #fff;
  background-color: var(--darkblue);
}

.accordion-button::after {
  background-color: #fff;
  border-radius: 50%;
}

@media (max-width:576px) {
  .accordion-button {
    font-size: 14px;
  }
}

/* my style faq */






/* =========================
   FIXED FORM
========================= */

.captcha-box{
    display:flex;
    gap:10px;
    margin:5px 0;
}

#captchaCode{
    width:150px;
    text-align:center;
    font-size:20px;
    font-weight:bold;
    letter-spacing:5px;
    background:#f4f4f4;
    color:#000;
    user-select:none;
    pointer-events:none;
}

.refresh-btn{
    width:40px;
    height: 50px !important;
    border:none;
    background:var(--gold) !important;
    color:#fff !important;
    font-size:18px;
    cursor:pointer;
    border-radius:5px;
    box-shadow: 0 0 40px var(--color-bg);
}

#captchaInput{
    margin-bottom:15px;
}



.law-fixed-form {

  position: fixed;

  right: -260px;
  top: 50%;

  transform: translateY(-50%);

  width: 240px;

  background-color: var(--primary);

  padding: 16px;

  border-radius: 20px;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .12);

  z-index: 9999;

  transition: .4s ease;
}

.law-fixed-form.active {

  right: 10px;
}


/* HEADER */

.law-form-head {

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 14px;
}

.law-form-head h5 {

  font-size: 16px;
  color: var(--blue);
  font-weight: 700;
}


/* CLOSE BUTTON */

#lawCloseBtn {

  width: 26px;
  height: 26px;

  background: #f1f1f1;
  color: black !important;
  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 14px;

  transition: .3s;
}

#lawCloseBtn:hover {
  background: #e5e5e5;
}


/* INPUTS */

.law-fixed-form input,
.law-fixed-form textarea {

  width: 100%;

  padding: 11px 12px;

  margin-bottom: 10px;

  border: none;

  background: #f5f5f5;

  border-radius: 12px;

  outline: none;

  font-size: 12px;

  transition: .3s;
}

.law-fixed-form input:focus,
.law-fixed-form textarea:focus {

  background: #fff;

  border: 1px solid var(--gold);

  box-shadow:
    0 0 0 4px rgba(166, 106, 74, .08);
}


/* TEXTAREA */

.law-fixed-form textarea {

  height: 70px;

  resize: none;
}


/* BUTTON */

.law-fixed-form button {

  width: 100%;

  border: none;

  padding: 15px;

  border-radius: 12px;

  background: var(--gold);

  color: #fff;

  font-size: 13px;

  font-weight: 600;

  cursor: pointer;

  transition: .3s;
}

.law-fixed-form button:hover {

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(36, 62, 92, .18);
}


/* =========================
   QUERY BUTTON
========================= */

.law-query-btn {

  position: fixed;

  right: 0;
  top: 50%;

  transform:
    translateY(-50%);

  writing-mode: vertical-rl;

  background: var(--gold);

  color: #fff;

  padding: 14px 8px;

  border-radius:
    14px 0 0 14px;

  font-size: 12px;

  font-weight: 600;

  cursor: pointer;

  z-index: 9998;

  /* display: none; */

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .15);
}


/* .second-main{
  position: relative;
}
.second-drop{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: none;
  visibility: hidden;
  background-color: white;
  width: 100%;
  padding: 20px;
  border-radius: 24px;
}

.drop-hover:hover .second-drop{
  visibility: 1;
} */

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.testimonial-dots span.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.6);
}