* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f3ee;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Navbar */
nav {
  background-color: #f8f3ee;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-50px);
  animation: navDrop 0.8s ease forwards;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;

  max-width: 1300px;
  margin: 0 auto;
}

@keyframes navDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  color: #0b2b24;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 0.9s ease forwards 0.3s;
}

.logo img {
  height: 42px;
  margin-right: 8px;
}

/* Hamburger Menu */
.menu-toggle {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1100;
}

.menu-toggle div {
  width: 28px;
  height: 3px;
  background: #0b2b24;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-links li {
  position: relative;
  list-style: none;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeUp 0.7s ease forwards;
}

.nav-links li:nth-child(1) {
  animation-delay: 0.4s;
}

.nav-links li:nth-child(2) {
  animation-delay: 0.5s;
}

.nav-links li:nth-child(3) {
  animation-delay: 0.6s;
}

.nav-links li:nth-child(4) {
  animation-delay: 0.7s;
}

.nav-links li:nth-child(5) {
  animation-delay: 0.8s;
}

.nav-links li:nth-child(6) {
  animation-delay: 0.9s;
}

.nav-links li:nth-child(7) {
  animation-delay: 1s;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #0b2b24;
  padding: 5px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.nav-links a:hover,
.nav-links .active {
  color: #b3834a;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 180px;
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu li {
  padding: 12px 18px;
}

.dropdown-menu li a {
  color: #0b2b24;
  font-weight: 500;
  display: block;
}

.dropdown-menu li:hover {
  background: #f8f3ee;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Appointment Button */
.appointment-btn {
  background: linear-gradient(135deg, #b3834a, #9a6c36);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.appointment-btn span {
  font-size: 18px;
  transition: transform 0.3s;
}

.appointment-btn:hover span {
  transform: translateX(5px);
}

.close-btn {
  display: none;
}
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 10px 10px;
  /* background: #fdf9f4; */
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 0;
}

/* Background Large Text */
.hero::after {
  content: "LAWYER";
  position: absolute;
  font-size: 14rem;
  color: rgba(0, 0, 0, 0.04);
  font-weight: bold;
  bottom: 40px;
  left: 20px;
  z-index: 0;
  letter-spacing: 10px;
}

/* Left Content */
.hero-content {
  max-width: 600px;
  z-index: 2;
  animation: fadeInLeft 1.5s ease forwards;
}

.hero-content h5 {
  color: #9a6a2e;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #09231d;
}

.hero-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  background: #9a6a2e;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #714c1d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn span {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Right Image Wrapper */
.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1.5s ease forwards;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 3;
}

/* Animated Border Shape */
.border-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 600px;
  border: 2px solid #9a6a2e;
  border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
  z-index: 1;
  animation: morph 8s infinite alternate ease-in-out;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  50% {
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(10deg) scale(1.05);
  }
  100% {
    border-radius: 70% 30% 60% 40% / 40% 70% 30% 60%;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
}

/* Smoke Effect */
.smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.smoke span {
  position: absolute;
  bottom: -100px;
  width: 80px;
  height: 80px;
  background: rgba(200, 200, 200, 0.15);
  border-radius: 50%;
  animation: rise 8s linear infinite;
  filter: blur(20px);
}

.smoke span:nth-child(1) {
  left: 10%;
  animation-duration: 10s;
  width: 60px;
  height: 60px;
}

.smoke span:nth-child(2) {
  left: 30%;
  animation-duration: 12s;
}

.smoke span:nth-child(3) {
  left: 50%;
  animation-duration: 9s;
  width: 100px;
  height: 100px;
}

.smoke span:nth-child(4) {
  left: 70%;
  animation-duration: 14s;
}

.smoke span:nth-child(5) {
  left: 90%;
  animation-duration: 11s;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-250px) scale(1.5);
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.law-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  background: #001f1d;
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.law-section a{
  text-decoration: none;
}
.law-card {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.6s ease, opacity 0.6s ease, background 0.3s ease;
  cursor: pointer;
}

.law-card:last-child {
  border-right: none;
}

.law-icon {
  font-size: 36px;
  flex-shrink: 0;
  color: #c89b5f;
}

.law-text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.law-text p {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

/* Hover Effect */
.law-card:hover {
  background: #062d2a;
  transform: translateY(-5px);
}

/* Animation when visible */
.law-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* about us */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 10px;
  gap: 50px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-in-out;
  max-width: 1300px;
  margin: 0 auto;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT SIDE IMAGE */
.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  display: block;
}

/* Case Badge */
.case-badge {
  position: absolute;
  right: 101px;
  top: 50%;
  bottom: 50%;
  background: #c49b66;
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 28px;
  font-weight: bold;
  animation: floatBadge 3s infinite ease-in-out;
  border: 10px solid #f8f3ee;
}

.case-badge span {
  font-size: 16px;
  font-weight: 400;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* RIGHT SIDE CONTENT */
.about-content {
  flex: 1;
  animation: fadeInRight 1.2s ease forwards;
  opacity: 0;
}

.about-section.visible .about-content {
  opacity: 1;
}

.about-content h4 {
  color: #c49b66;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #0c2c1d;
}

.about-content p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Collapsible */
.accordion {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.accordion-header:hover {
  color: #c49b66;
}

.accordion-header span {
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  color: #444;
  line-height: 1.6;
  padding-left: 5px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 10px 0 15px 0;
}

.accordion-item.active .accordion-header span {
  transform: rotate(90deg);
}

/* Button */
.about-btn {
  margin-top: 30px;
  display: inline-block;
  background: #c49b66;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #a17b50;
  transform: scale(1.05);
}

/* .about-btn::before {
  content: "➜ ";
} */
.Servces {
  /* background-color: red; */
  /* height: 500px; */
  background-image: url("https://html.geekcodelab.com/lawace/assets/images/service-list-bg-shape.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1.6;
}
.services-section {
  max-width: 1300px;
  margin: auto;
  padding: 80px 10px;
  text-align: left;
}

.services-header {
  margin-bottom: 40px;
}

.services-header h5 {
  color: #a47148;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 3rem;
  color: #0d2915;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-header p {
  max-width: 500px;
  color: #666;
  font-size: 15px;
}

.discover-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #a47148;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.discover-link::after {
  content: "→";
  margin-left: 5px;
  transition: 0.3s;
}

.discover-link:hover::after {
  margin-left: 10px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #a47148;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d2915;
}

.service-card p {
  color: #555;
  font-size: 14px;
}

.testimonial-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 10px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #012d36;
}

/* Swiper container */
.swiper {
  padding-bottom: 40px;
}

/* Card style */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease;
  border: 0.5px solid #111;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid #eee;
}

.testimonial-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  font-weight: bold;
  color: #012d36;
}

.testimonial-card .role {
  font-size: 14px;
  color: #c6972c;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.stars {
  color: #f1c40f;
  margin-top: 15px;
  font-size: 18px;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #9a6a2e;
}
/* teams */
.team-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 10px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.team-content h4 {
  color: #b17a4c;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #123123;
  margin-bottom: 20px;
  line-height: 1.2;
}

.team-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.team-content a {
  color: #b17a4c;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.team-content a:hover {
  color: #000;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.member-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.member-card.show {
  opacity: 1;
  transform: translateY(0);
}

.member-card img {
  width: 100%;
  display: block;
  border-radius: 15px 15px 0 0;
}

.member-info {
  padding: 15px;
  text-align: center;
}

.member-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0;
}

.member-info p {
  font-size: 14px;
  color: #666;
}

.social-icons {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a,
.social-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c6972c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.5);
}

.social-icons.show a {
  opacity: 1;
  transform: scale(1);
}

.social-toggle {
  background: #001f1d;
  opacity: 1 !important;
  transform: scale(1) !important;
  cursor: pointer;
}
.faq-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 60px 10px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
  max-width: 1300px;
  margin: 0 auto;
}

.faq-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Images */
.faq-images {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.faq-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.faq-images img:hover {
  transform: scale(1.03);
}

.faq-images img:first-child {
  grid-row: span 2;
}

/* Content */
.faq-content {
  flex: 1 1 50%;
}

.faq-content h5 {
  color: #b57a2a;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

.faq-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-item:hover {
  background: #f9f9f9;
  border-radius: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #0c1a13;
}

.faq-question span {
  font-size: 22px;
  color: #b57a2a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(90deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  padding: 0 5px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
  opacity: 1;
}

/* Button */
.faq-button {
  margin-top: 25px;
  display: inline-block;
  color: #b57a2a;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  border: 2px solid #b57a2a;
  padding: 10px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.faq-button:hover {
  background: #b57a2a;
  color: #fff;
}
footer {
  background: #041f1b;
  color: #fff;
  padding: 60px 8%;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  /* opacity: 0; */
  transform: translateY(60px);
  transition: all 0.8s ease-in-out;
}

.footer-container.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: #f9a826;
}

.footer-col p {
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 15px;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  transition: 0.3s;
}

.social-links a:hover {
  background: #f9a826;
  color: #000;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
  font-size: 15px;
}

.footer-col ul li a:hover {
  color: #f9a826;
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  line-height: 1.4;
  font-size: 15px;
}

.contact-item i {
  background: #f9a826;
  color: #000;
   width: 38px;
  height: 38px;
  border-radius: 50%;
  border-radius: 50%;
  font-size: 14px;
  min-width: 38px;
  text-align: center;
  display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #aaa;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-logo img {
  width: 40px;
}

.footer-bottom a {
  color: #f9a826;
  text-decoration: none;
}
/* Disclaimer Overlay */
.disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.disclaimer-box {
  background: #fff;
  max-width: 700px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease;
  /* scroll */
  max-height: 80vh;
  overflow-y: auto;
  /* add scroll bar */
  scrollbar-width: thin;
  scrollbar-color: #f9a826 #f0f0f0;


}

.disclaimer-box h2 {
  color: #f9a826;
  margin-bottom: 15px;
}

.disclaimer-box p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.disclaimer-box button {
  padding: 12px 25px;
  background: #f9a826;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.disclaimer-box button:hover {
  background: #8e0000;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Sidebar Mobile Style */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    /* right: -100%; */
    width: 260px;
    opacity: 0;
    max-height: 100vh; /* prevent overflow */
    overflow-y: hidden;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 25px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }

  .nav-links.open {
    right: 0;
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
  }

  /* Dropdown menu inside sidebar */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }

  /* Menu toggle */
  .menu-toggle {
    display: flex;
  }

  /* Appointment button inside sidebar */
  .appointment-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    justify-content: center;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 42px;
    font-weight: bold;
    color: #0b2b24;
    cursor: pointer;
    transition: color 0.3s ease;
    display: block;
  }

  .close-btn:hover {
    color: #b3834a;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 68px;
  }
  .hero::after {
    font-size: 6rem;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .border-shape {
    width: 320px;
    height: 420px;
  }
  .team-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-content h2 {
    font-size: 32px;
  }
}
/* Extra small screens (below 480px) */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 34px;
  }

  .nav-links {
    width: 220px; /* narrower sidebar */
    padding: 70px 20px 20px;
    gap: 15px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .appointment-btn {
    font-size: 13px;
    padding: 10px;
  }
}
/* Responsive Tweaks */
@media (max-width: 992px) {
  .law-card {
    padding: 25px 15px;
  }
  .law-text h3 {
    font-size: 16px;
  }
  .law-text p {
    font-size: 13px;
  }
  .law-icon {
    font-size: 32px;
  }
  .faq-section {
    flex-direction: column;
    padding: 40px 6%;
  }

  .faq-content h2 {
    font-size: 30px;
  }
  .footer-container {
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .law-section {
    grid-template-columns: 1fr; /* stack vertically */
  }
  .law-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .law-card:last-child {
    border-bottom: none;
  }
  .law-icon {
    font-size: 28px;
  }
  .law-text h3 {
    font-size: 15px;
  }
  .law-text p {
    font-size: 12px;
  }
  .faq-images {
    grid-template-columns: 1fr;
    display: none;
  }
}

@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
  }
  .case-badge {
    display: none;
    right: 50%;
    transform: translateX(50%);
  }
  .accordion-content {
    text-align: center;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2.2rem;
  }
  .services-section {
    padding: 10px 10px;
  }
  footer {
    padding: 40px 20px;
  }
  .footer-container {
    text-align: left;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col {
    width: 100%;
    text-align: left;
  }
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-links {
    justify-content: left;
  }
  .contact-item {
    /* justify-content: center; */
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
  .contact-info{
   text-align: left;
  }
  .footer-col h3::after {
    left: 0;
    bottom: -5px;
    width: 40px;
    transform: none;
  }
  .disclaimer-box {
    max-width: 80%;
    padding: 20px;
  }
}
   /* Floating Container */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 9999;
    }

    /* Common Button Style */
    .floating-buttons a {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.25);
      transition: transform 0.3s ease-in-out;
      animation: pulseBounce 2s infinite;
      
    }

    /* WhatsApp Button */
    .whatsapp {
      background: #25d366;
    }
.call-btn{
  font-size: 15px;
  font-weight: bold;
  background-color: #fff;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
    /* Call Button */
    .call {
      background: #007bff;
    }

    /* Hover Effect */
    .floating-buttons a:hover {
      transform: scale(1.2) rotate(8deg);
    }

    /* Continuous Animation */
    @keyframes pulseBounce {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      }
      25% {
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(0,0,0,0.3);
      }
      50% {
        transform: scale(0.95) translateY(-4px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.25);
      }
      75% {
        transform: scale(1.08) translateY(2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.35);
      }
    }

