* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none !important;
}
p{
  text-align: justify;
}

.social a i {
  color: #FFFFFF;
}

/* COLORS */
:root {
  --gold: #A66A4A;
  --blue: #243E5C;
  --white: #FFFFFF;
  --darkblue: #825a44;
}


/* ===================================Dropdowns================================== */
/* ===================================Dropdowns================================== */


  /* Main Dropdown */
  .sc-nav-hover-box {
    position: relative;
    display: inline-block;
  }



  .sc-nav-hover-list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 999;
    
  }

  .sc-nav-hover-box:hover .sc-nav-hover-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Main Items */
  .sc-nav-hover-list>a,
  .sc-sub-hover-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
  }

  .sc-nav-hover-list>a:hover,
  .sc-sub-hover-btn:hover {
    background: #f5f5f5;
    color: var(--gold);
    font-weight: bold;
    border-radius: 10px;
  }

  /* Sub Dropdown */
  .sc-sub-hover-box {
    position: relative;
  }

  .sc-sub-hover-list {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: .3s;
    z-index: 99;
  }

  .sc-sub-hover-box:hover .sc-sub-hover-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .sc-sub-hover-list a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
  }

  .sc-sub-hover-list a:hover {
    background: #f5f5f5;
    color: var(--gold);
    border-radius: 10px;
  }

  @media (max-width:567px) {
    .sc-sub-hover-list{
      left: 0;
    }
  }


/* ===================================Dropdowns================================== */
/* ===================================Dropdowns================================== */

/* TOP HEADER */
.topestnav {
  color: #fff;
  background-color: var(--gold);
}

.top-header i {
  color: var(--white);
  cursor: pointer;
}

/* NAVBAR */
.nav-link {
  color: rgba(255, 255, 255, 1) !important;
}

.custom-nav {
  background: var(--blue);
}

.login-btn {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 6px 16px !important;
  border-radius: 4px !important;
}

.login-btn:hover {
  background: var(--gold);
  color: var(--white);
}



/* 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 ===== */
.intro-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0 20px;
}

.services-section {
  background: var(--blue);
  color: var(--white);
}


/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 320px;
  object-fit: fill;
  transition: transform 0.6s ease;
}

/* BOTTOM TITLE BAR */
.service-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  color: #fff;
  padding: 16px;
  font-weight: 600;
  text-align: left;
  z-index: 2;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  transform: translateY(100%);
  transition: 0.6s ease;
}

.service-overlay h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-overlay p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-overlay a {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
  width: max-content;
  border-radius: 4px;
}








.welcome {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.line {
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.intro-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
}


/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: #0f1f33;
  color: #fff;
}

.experience-image {
  position: sticky;
  top: 80px;
  height: calc(100vh - 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 .nav-link {
  border: 1px solid var(--gold);
  color: #fff;
  margin-right: 10px;
  padding: 10px 22px;
  /* margin-bottom: 10px; */
}

.exp-tabs .nav-link.active,
.exp-tabs .nav-link:hover {
  background: var(--gold);
  color: #fff;
}

.tab-content p {
  color: #ddd;
  line-height: 1.8;
  max-width: 600px;
}

.nav .nav-link.active {
  background: var(--gold);
}

.nav .nav-link:hover {
  background: var(--gold);
} 


/* ==============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: #2874f0;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
  }

  .carousel-caption button:hover {
    background: #0f5bd3;
  }

  /* 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 ===== */
.testimonials-section {
  position: relative;
  background-image: url("../uploads/images/banner1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 20px 20px;
  color: #fff;
}

/* DARK OVERLAY */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 62, 92, 0.85);
  z-index: 0;
}

.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* ===== HEADING ===== */
.testimonials-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-heading h2 {
  font-size: 42px;
  color: #fff;
}

.test-line {
  width: 70px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 12px auto 0;
}

/* ===== SLIDER ===== */
.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* ===== CARD ===== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 35px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 calc(33.333% - 20px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.testimonial-card i {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e6e6e6;
  margin-bottom: 15px;
}

.testimonial-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

/* ===== DOTS ===== */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease;
}

.testimonial-dots span.active {
  background: var(--gold);
  transform: scale(1.2);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 62, 92, 0.85);
  z-index: 0;
}

.testimonials-container {
  position: relative;
  z-index: 1;
}



/* ===== 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 */

.whatsapp-icon,
.call-icon {
  position: fixed;
  right: 30px;
}

.call-icon {
  bottom: 83px;
}

.whatsapp-icon {
  bottom: 30px;
}

.whatsapp-icon img,
.call-icon img {
  width: 50px;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

@media (max-width:576px) {

  .whatsapp-icon,
  .call-icon {
    right: 0.5rem;
  }
}

/* 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: 120px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 62, 92, 0.55);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 48px;
}

/* ABOUT SECTION */
.about-section h2 {
  font-size: 38px;
  color: var(--blue);
}

/* 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 */
.loginsec {
  /* background-color: rgba(0, 0, 0, 0.8); */
  background: url(../uploads/images/bgimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.formdiv {
  /* border: 1px solid rgba(0, 0, 0, 0.338); */
  box-shadow: 0 4px 16px grey;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  max-width: 450px;
}

.loginsec .formdiv .imgsec {
  border-radius: 0 0 50% 50%;
  background: var(--blue);

}

.loginsec .formdiv .imgsec img {
  max-width: 300px;
  width: 100%;
  padding: 2rem 2rem 3rem 2rem;
}

.imgsec {
  position: relative;
}

.cent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.cent i {
  color: var(--gold);
  background-color: #fff;
  font-size: 1.8rem;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid var(--gold);
}

.loginform {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.loginform input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: none;
  color: var(--gold);
}

.loginform input:focus-visible {
  outline-color: var(--gold);
  border-radius: 0px !important;
  background-color: wheat;
}

.acc {
  font-size: 14px;
  margin-top: 1rem;
  color: black !important;
}

#SignUp {
  display: none;
}

/* privacy policy */
.privacy-policy .container {
  background-color: #ebebeb;
  box-shadow: 0px 4px 16px grey;
  border-radius: 10px;
}

.page-banner {
  /* background: #000; */
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/bgimg.jpg); */
  background-size: cover;
  background-position: center;
}

.page-banner h1 {
  font-size: 42px;
  font-weight: 700;
}

.privacy-policy h2 {
  color: var(--gold);
  margin-top: 30px;
  font-size: 22px;
}

.privacy-policy p {
  color: #333;
  line-height: 1.7;
}

.privacy-policy ul {
  padding-left: 20px;
}

/* 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: #f8f8f8;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
}

.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li a {
  padding: 10px;
  border-top: 1px solid #eee;
  cursor: pointer;
  width: 100%;
  display: block;
  color: #000;
}

.expertise-list li a.active {
  background: var(--gold);
  color: #fff;
}

/* BUTTON */
.consult-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 5px 14px;
  transition: .3s ease;
}

.consult-btn:hover {
  transform: translateY(-5px);
}

/* IMAGE */

.main-service-img {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  object-fit: cover;
}

.main-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* LIST */
.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  margin-bottom: 8px;
}

.icon-list i {
  color: var(--gold);
  margin-right: 8px;
}

/* HIGHLIGHT */
.highlight-box {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-left: 3px solid var(--gold);
}

.highlight-box p {
  margin-bottom: 0;
}

/* STEPS */
.steps-service-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.steps-service-sub span {
  background: #243E5C;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.docreqs>.col-6>div {
  background-color: #fff;
  padding: 2rem 0;
  border-radius: 10px;
  transition: background-color 0.3s;
  text-align: center;
}

.docreqs>.col-6>div:hover {
  background-color: var(--gold);
  color: #fff;
}

.docreqs>.col-6>div img {
  transition: 0.6s;
  width: 100px;
}

.docreqs>.col-6>div:hover img {
  filter: brightness(0) invert(1);
  transform: scale(0.75);
}


.howwewrk .col div {
  border: 2px ridge #fff;
  background-color: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 2rem;
  height: 100%;
}

.howwewrk .col div span:first-child {
  font-size: 4rem;
  color: transparent !important;
  cursor: default;
  -webkit-text-stroke: 1px #fff;
  transition: all 0.3s;
}

.howwewrk .col div span:last-child {
  font-size: 14px;
}

.howwewrk .col div:hover span:first-child {
  color: white !important;
}

@media (max-width:992px) {
  .docreqs>.col-lg>div img {
    width: 50px;
  }

  .docreqs>.col-lg>div {
    padding: 1rem 0;
  }

  .howwewrk .col div span:first-child {
    font-size: 3rem;
  }

  .what-debt-settle {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* =====================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: 220px;
  }

  .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;
  /* background: linear-gradient(to bottom, #eef2ff, #ffffff); */
  /* font-family: 'Segoe UI', sans-serif; */
}

.finx2-wrapper {
  max-width: 1150px;
  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: #fff;
  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
========================= */

.law-fixed-form {

  position: fixed;

  right: -260px;
  top: 50%;

  transform: translateY(-50%);

  width: 240px;

  background: #fff;

  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;

  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: 12px;

  border-radius: 12px;

  background:
    linear-gradient(135deg,
      var(--blue),
      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;
} */
