body {
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}
/* Center mobile dropdown menu items */
@media (max-width: 991px) {
  .navbar-collapse .navbar-nav {
    text-align: center; /* center the links */
  }

  .navbar-collapse .nav-link {
    display: block;
    margin: 0.5rem 0;
    border-radius: 0.5rem; /* rounded corners */
    transition: background-color 0.3s ease;
  }

  /* Hover effect: light red faded */
  .navbar-collapse .nav-link:hover {
    background-color: rgba(194, 103, 103, 0.2);
    color: #000 !important;
  }
}
.hero-section {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* SCROLLING IMAGE ROW */
.scroll-wrapper {
  width: 90%; /* reduced from 100% */
  height: 120%; /* increased height */
  overflow: hidden;
}

.scroll-track {
  display: flex;
  width: max-content;
}

.scroll-track img {
  width: 320px;
  height: 250px;
  object-fit: cover;
  margin-right: 4px;
}

/* LEFT SCROLL */
.scroll-left {
  animation: scrollLeft 35s linear infinite;
}

/* RIGHT SCROLL */
.scroll-right {
  animation: scrollRight 35s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .scroll-track img {
    width: 220px;
    height: 150px;
  }

  .hero-text h1 {
    font-size: 1.4rem;
  }
}

.info-section {
  background: #fff;
}

.section-title {
  max-width: 900px;
  margin: auto;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
}

.section-title strong {
  font-weight: 700;
}

/* CARD */
.info-card {
  background: #fff;
  border-radius: 6px;
  padding: 70px 30px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  height: 100%;
}

/* ICON */
.icon-circle {
  width: 60px;
  height: 60px;
  background: #9c0f0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.icon-circle i {
  color: #fff;
  font-size: 22px;
}

/* TEXT */
.info-card h4 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* LINK */
.card-link {
  display: inline-block;
  margin-top: 20px;
  color: #9c0f0f;
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.1rem;
  }
}

.solve-problems {
  background: #fff;
}

/* TITLE */
.solve-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.title-line {
  flex: 1;
  height: 1px;
  background: #d6d6d6;
}

/* TEXT */
.solve-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* INLINE LINKS */
.inline-link {
  color: #9c0f0f;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/* LIST TITLES */
.list-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* PRACTICE LIST */
.practice-list {
  list-style: none;
  padding-left: 0;
}

.practice-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.practice-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
}

/* LIST LINKS */
.practice-list a {
  color: #9c0f0f;
  text-decoration: none;
  font-size: 15px;
}

.practice-list a:hover {
  text-decoration: underline;
}

/* BUTTON */
.btn-practice {
  background: #9c0f0f;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-practice:hover {
  background: #7f0c0c;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solve-title {
    font-size: 1.4rem;
  }
}

.social-connect {
  background: #fff;
  text-align: center;
}

/* DIVIDERS */
.social-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}

/* TITLE */
.social-title {
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ICON GRID */
.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 35px;
  justify-content: center;
  max-width: 260px;
  margin: auto;
}

/* ICON STYLE */
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* HOVER EFFECT */
.social-icon:hover {
  transform: translateY(-3px);
  background: #9c0f0f;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .social-title {
    font-size: 1rem;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

.team-images-section {
  background: #fff;
}

/* IMAGE WRAPPER */
.image-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}

/* IMAGE */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* SUBTLE HOVER (OPTIONAL BUT NICE) */
.image-box:hover img {
  transform: scale(1.03);
}

/* RESPONSIVE SPACING */
@media (max-width: 768px) {
  .team-images-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.what-we-do {
  background: #fff;
}

/* TITLE */
.what-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.title-line {
  flex: 1;
  height: 1px;
  background: #d6d6d6;
}

/* INTRO */
.what-intro {
  font-size: 16px;
  color: #333;
}

/* LIST */
.what-list {
  list-style: disc;
  padding-left: 20px;
}

.what-list li {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

/* RED EMPHASIS */
.what-list span {
  color: #9c0f0f;
  font-weight: 600;
}

/* FOOTER TEXT */
.what-footer {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* LINKS */
.inline-link {
  color: #9c0f0f;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .what-title {
    font-size: 1.4rem;
  }
}
.attorneys-section {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  white-space: nowrap;
}

.section-title::after {
  content: "";
  height: 1px;
  background: #ccc;
  flex-grow: 1;
  margin-left: 20px;
}

.attorney-card {
  text-align: center;
}

.attorney-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
}

.attorney-name {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

@media (max-width: 767px) {
  .attorney-card img {
    height: 220px;
  }
}
.review-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.review-stars {
  color: #c40000;
  font-size: 28px;
  margin-bottom: 25px;
}

.review-text {
  font-size: 22px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #000;
}

.review-author {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
}

.review-btn {
  background: #b30000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-btn:hover {
  background: #8f0000;
  color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(70%);
}

@media (max-width: 768px) {
  .review-text {
    font-size: 18px;
  }
}
.footer {
  background: linear-gradient(to bottom, #1f1f1f, #2b2b2b);
  color: #ddd;
  padding: 70px 0 0;
  font-size: 15px;
}

.footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
}

.footer a:hover {
  color: #fff;
}

.footer .location-title {
  font-weight: 700;
  color: #fff;
  margin-top: 15px;
}

.footer .search-box {
  display: flex;
  margin-top: 15px;
}

.footer .search-box input {
  background: #333;
  border: none;
  padding: 10px;
  color: #fff;
  flex: 1;
}

.footer .search-box button {
  background: #fff;
  border: none;
  padding: 10px 15px;
}

.footer .search-box button i {
  color: #000;
}

.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 18px;
}

.social-icons .facebook {
  background: #1877f2;
}
.social-icons .instagram {
  background: #e1306c;
}
.social-icons .tiktok {
  background: #000;
}
.social-icons .x {
  background: #000;
}
.social-icons .youtube {
  background: #ff0000;
}
.social-icons .linkedin {
  background: #0a66c2;
}

.footer-bottom {
  background: #2f2f2f;
  margin-top: 50px;
  padding: 15px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
