h1,
h2 {
  color: #000;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}
p{
  color: black !important;
  line-height: 1.6;
  font-size: 16px;
}
/* :root {
  --nav-yellow: #e30b0b;
  --nav-orange: #e30b0b;
  --nav-dark: #1a1a1a;
} */

.clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* Standard property (fixes the warning) */
  line-clamp: 2;
  overflow: hidden;
}
.fixed-sidebar {
  position: sticky;
  top: 120px; /* adjust if navbar height differs */
  left: 0;
  width: 420px; /* NEVER use % with fixed sidebars */
  max-width: 33%;
}

.content-offset {
  margin-top:0;
  margin-left: 450px; /* slightly bigger than sidebar */
}

/* Tablet */
@media (max-width: 992px) {
  .fixed-sidebar {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    top: 0;
  }

  .content-offset {
    margin-left: 0;
  }
}

.nav-topbar-link:hover {
  color: #fff !important;
}
.nav-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: black;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
}

.nav-main {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
}

.nav-brand-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nav-yellow), var(--nav-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.nav-brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--nav-dark);
  display: block;
  line-height: 1.2;
}
.nav-brand-title span {
  color: var(--nav-yellow);
}
.nav-brand-tagline {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-menu-link {
  color: #333 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 2px 18px !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s;
}
.nav-menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nav-yellow), var(--nav-orange));
  border-radius: 3px 3px 0 0;
  transition: width 0.3s;
}
.nav-menu-link:hover::after,
.nav-menu-link.active::after {
  width: 70%;
}
.nav-menu-link:hover,
.nav-menu-link.active {
  color: var(--nav-orange) !important;
}
.nav-menu-link.active {
  font-weight: 700;
}

.nav-dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-dropdown-item i {
  width: 20px;
  color: var(--nav-orange);
  font-size: 16px;
}
.nav-dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 193, 7, 0.15),
    rgba(255, 152, 0, 0.08)
  );
  color: var(--nav-dark);
  transform: translateX(5px);
}
.nav-dropdown-item.active {
  background: linear-gradient(90deg, var(--nav-yellow), var(--nav-orange));
  color: #fff;
}
.nav-dropdown-item.active i {
  color: #fff;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;

  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(227, 11, 11, 0.35);
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(227, 11, 11, 0.5);
  color: #ffffff;
}

.nav-mobile-call {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-yellow);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.nav-mobile-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--nav-dark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-offcanvas {
  max-width: 300px;
  border: none;
}
.nav-offcanvas-header {
  background: linear-gradient(135deg, var(--nav-dark), #2d2d2d);
  padding: 20px;
}

.nav-offcanvas-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}
.nav-offcanvas-badges span {
  font-size: 10px;
  font-weight: 600;
  color: var(--nav-dark);
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-offcanvas-badges i {
  color: var(--nav-orange);
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--nav-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.nav-mobile-link i {
  color: var(--nav-orange);
  width: 24px;
}
.nav-mobile-link:hover,
.nav-mobile-link.active {
  background: rgba(255, 193, 7, 0.1);
  color: var(--nav-dark);
}
.nav-mobile-link.active {
  border-left: 4px solid var(--nav-orange);
}

.nav-accordion-item {
  border: none !important;
}
.nav-accordion-btn {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--nav-dark);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.nav-accordion-btn:not(.collapsed) {
  background: rgba(255, 193, 7, 0.1);
  color: var(--nav-orange);
}
.nav-accordion-btn:focus {
  box-shadow: none;
}
.nav-accordion-btn::after {
  filter: none;
}
.nav-accordion-btn i {
  color: var(--nav-orange);
  width: 24px;
}

.nav-accordion-body {
  background: #fafafa;
  padding: 8px 0;
}
.nav-mobile-sublink {
  display: block;
  padding: 12px 20px 12px 52px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.nav-mobile-sublink:last-child {
  border-bottom: none;
}
.nav-mobile-sublink:hover,
.nav-mobile-sublink.active {
  background: rgba(255, 193, 7, 0.15);
  color: var(--nav-dark);
}
.nav-mobile-sublink.active {
  border-left: 3px solid var(--nav-orange);
  font-weight: 600;
}

.nav-offcanvas-footer {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}
.nav-contact-btn {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  color: var(--nav-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}
.nav-contact-btn:hover {
  border-color: var(--nav-yellow);
  background: rgba(255, 193, 7, 0.05);
}

@media (max-width: 1199px) {
  .nav-menu-link {
    padding: 25px 14px !important;
    font-size: 13px;
  }
  .nav-cta-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .nav-brand-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 10px;
  }
  .nav-brand-title {
    font-size: 1.1rem;
  }
  .nav-mobile-call,
  .nav-mobile-toggle {
    width: 40px;
    height: 40px;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: transparent;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0000001e;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  z-index: 1;
}

.hero-shape-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: -80px;
}

.hero-shape-2 {
  width: 160px;
  height: 160px;
  bottom: 15%;
  right: -60px;
}

.hero-badge {
  background: #fec7c7;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.3;
}

.hero-highlight {
  color: #f59e0b;
}

.hero-text {
  max-width: 600px;
  font-size: 1rem;
}

.hero-form-icon {
  width: 60px;
  height: 60px;
}

.hero-form-wrapper {
  border-top: 4px solid #f50b42;
}

@media (min-width: 992px) {
  .hero-section {
    height: calc(100vh - 108px);
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-form-wrapper {
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 0.9375rem;
  }

  .hero-form-wrapper {
    padding: 1.25rem;
  }
}

/* Hero Section Perfect Spacing */
.service-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e30b0b 0%, #c40808 50%, #ff3b3b 100%);
}

.bg-gradient-yellow {
  background: linear-gradient(135deg, #e30b0b 0%, #c40808 50%, #ff3b3b 100%);
}

/* Buttons Perfect Spacing & Style */
.service-hero .btn {
  margin: 0 5px;
  min-height: 50px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.service-hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Service Points Better Spacing */
.service-points li {
  margin-bottom: 12px !important;
  border-left: 4px solid #e30b0b;
}

.service-points li:hover {
  background: #fff9e6;
  transform: translateX(8px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .service-hero .btn-lg {
    width: 100%;
    margin: 8px 0;
    padding: 12px 20px;
  }

  .service-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media (max-width: 992px) {
  .about-section .row {
    flex-direction: column-reverse; /* image upar, text neeche */
  }
  .about-section .col-lg-4,
  .about-section .col-lg-8 {
    max-width: 100%;
  }
  .about-title {
    font-size: 24px;
  }
  .about-text {
    font-size: 15px;
  }
  .about-points li {
    font-size: 14px;
  }
  .about-badge {
    font-size: 13px;
    padding: 5px 12px;
  }
  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* ===== Services Section Mobile ===== */
@media (max-width: 992px) {
  .section-services .single-service {
    padding: 30px 20px;
  }
  .section-services .icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  .section-services .single-service .title {
    font-size: 20px;
  }
  .section-services .single-service .description {
    font-size: 13px;
  }
  .learn-more {
    font-size: 14px;
  }
}

/*BreadCrumb*/

/*Breadcrumb Styles*/
.bread-section {
  background: linear-gradient(135deg, #e30b0b 0%, #b90808 50%, #ff3b3b 100%);
  height: 350px;
}

.bread-pattern {
  overflow: hidden;
}

.bread-circle {
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.bread-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #f4a460, #d2691e);
  top: -100px;
  left: -50px;
  box-shadow: 0 0 60px rgba(244, 164, 96, 0.4);
}

.bread-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 40% 40%, #ffd700, #ffb700);
  top: 50%;
  right: 10%;
  animation-delay: -5s;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
}

.bread-circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 50% 50%, #ff9800, #ff6f00);
  bottom: -30px;
  left: 20%;
  animation-delay: -10s;
  box-shadow: 0 0 40px rgba(255, 152, 0, 0.4);
}

.bread-circle-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 60% 60%, #ffe4b5, #ffdab9);
  top: -150px;
  right: -100px;
  animation-delay: -15s;
  opacity: 0.25;
  box-shadow: 0 0 80px rgba(255, 228, 181, 0.3);
}

.bread-circle-5 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 35%, #cd853f, #8b4513);
  bottom: 20%;
  right: 25%;
  animation-delay: -7s;
  box-shadow: 0 0 45px rgba(205, 133, 63, 0.4);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 30px) scale(0.9);
  }
  75% {
    transform: translate(40px, 20px) scale(1.05);
  }
}

.bread-overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.bread-title {
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bread-nav {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bread-item {
  color: rgba(0, 0, 0, 0.95);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.bread-item:hover {
  color: white;
  transform: translateY(-2px);
}

.bread-separator {
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
}

.bread-active {
  color: white;
  font-weight: 600;
}

@media (max-width: 768px) {
  .bread-section {
    height: 200px;
  }
  .bread-title {
    font-size: 2rem;
  }
  .bread-nav {
    padding: 10px 20px;
    font-size: 13px;
  }
  .bread-circle-1 {
    width: 200px;
    height: 200px;
  }
  .bread-circle-2 {
    width: 150px;
    height: 150px;
  }
  .bread-circle-3 {
    width: 100px;
    height: 100px;
  }
  .bread-circle-4 {
    width: 250px;
    height: 250px;
  }
  .bread-circle-5 {
    width: 120px;
    height: 120px;
  }
}

.abt-section {
  padding: 70px 20px;
  background: #ffffff;
}
.abt-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.abt-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.abt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dc354526;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.abt-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}
.abt-title span {
  color: #f59e0b;
}
.abt-text {
  font-size: 16px;
  color: black !important;
  line-height: 1.7;
  margin-bottom: 12px;
}
.abt-points {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.abt-points li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
}
.abt-points i {
  color: #10b981;
  margin-right: 6px;
}
.abt-btn:hover {
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .abt-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .abt-title {
    font-size: 24px;
  }
  .abt-text {
    font-size: 15px;
  }
  .abt-points li {
    font-size: 14px;
  }
}

.serv-section {
  background: #f8f9fd;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.serv-main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.serv-main-desc {
  color: #666;
  font-size: 15px;
}
.serv-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px;
  margin-top: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.35s ease;
  text-align: center;
}
.serv-card:hover {
  transform: translateY(-10px);
}
.serv-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: #dc3545;
  opacity: 0.12;
  border-radius: 50%;
  transition: 0.4s ease;
}
.serv-card:hover .serv-circle {
  transform: scale(1.4);
}
.serv-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}
.serv-card:hover .serv-icon {
  background: #111;
  transform: rotate(-5deg) scale(1.15);
}
.serv-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.serv-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s;
}
.serv-card:hover .serv-title,
.serv-card:hover .serv-desc {
  color: #111;
}
.serv-link {
  font-size: 15px;
  font-weight: 500;
  color: #dc3545;
  text-decoration: none;
  position: relative;
  display: inline-block;
  margin-top: 15px;
}
.serv-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #dc3545;
  transition: width 0.3s ease;
}
.serv-card:hover .serv-link::after {
  width: 100%;
}
@media (max-width: 992px) {
  .serv-main-title {
    font-size: 28px;
  }
  .serv-card {
    padding: 30px 20px;
  }
  .serv-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .serv-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .serv-title {
    font-size: 20px;
  }
  .serv-desc {
    font-size: 13px;
  }
}

.why-choose-section {
  background-color: #fdffda !important;
}

.why-choose-subtitle {
  max-width: 600px;
}

.why-choose-step-number {
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.why-choose-step-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-choose-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.why-choose-highlight-box {
  border-left: 4px solid var(--bs-warning);
}

.why-choose-strength-item {
  transition: transform 0.2s ease;
}

.why-choose-strength-item:hover {
  transform: translateX(5px);
}

.process-section {
  background: linear-gradient(145deg, #0f0f0f 0%, #b90808 50%, #e30b0b 100%);
  position: relative;
  overflow: hidden;
}

.process-card {
  flex: 1 1 200px;
  max-width: 240px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: #eb6d00;
}

.process-number {
  top: 8px;
  right: 12px;
  font-size: 1.9rem;
  color: transparent;
  -webkit-text-stroke: 2px #d77100;
  line-height: 1;
}

.process-icon-box {
  background: linear-gradient(135deg, #e30b0b 0%, #0f0f0f 100%);
  border: 4px solid #fff3cd;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.process-icon-box i {
  font-size: 1.25rem;
  color: #ffffff;
}

.process-card:hover .process-icon-box {
  transform: scale(1.1);
}

.process-arrow-wrap {
  flex-shrink: 0;
}

.process-arrow {
  opacity: 0.9;
  color: #212529;
}

.process-card-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #495057;
}

.text-body-secondary {
  color: #6c757d !important;
}

@media (max-width: 991px) {
  .process-card {
    max-width: 100%;
    flex: 1 1 45%;
  }
}

@media (max-width: 575px) {
  .process-card {
    flex: 1 1 100%;
  }

  .process-icon-box {
    width: 45px;
    height: 45px;
  }
}

/* FAQs Section */
.faq-icon {
  font-size: 100px;
  color: #ff8000;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: #fff;
  color: black !important;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #ff0000;
  font-weight: 700;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

/* Remove Bootstrap's default arrow completely */
.accordion-button::after {
  display: none !important;
}

/* Add Bootstrap icon using pseudo-element */
.accordion-button {
  position: relative;
  padding-right: 3rem;
}

.accordion-button::before {
  content: "\F229"; /* bi-caret-down-fill */
  font-family: "bootstrap-icons" !important;
  position: absolute;
  right: 1.5rem;
  color: #dc3545;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::before {
  transform: rotate(180deg);
}

.accordion-item {
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.accordion-body {
  padding: 1.25rem 1.5rem;
}

.faq-illustration {
  border-radius: 40px;
  animation: fadeInUp 0.6s ease-out;
}

.faq-illustration img {
  border-radius: 40px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* States Widget */
.st__section__title {
  position: relative;
  padding-bottom: 20px;
}
.st__section__title .display-6 {
  color: #1a1a1a;
  letter-spacing: -0.5px;
}
.st__section__title .circle {
  display: block;
  width: 60px;
  height: 4px;
  background: #ff8c00;
  margin: 15px auto 0;
  border-radius: 2px;
}
.st__service__box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}
.st__service__box:hover {
  border-color: #ff8c00;
  box-shadow: 0 4px 20px rgba(220, 0, 0, 0.1);
  transform: translateY(-4px);
}
.st__service__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.st__service__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.st__service__content {
  padding: 20px;
  text-align: center;
  background: #fff;
}
.state_title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  display: block;
}
.st__service__box:hover .state_title {
  color: #ff8c00;
}
.st-service-area a {
  text-decoration: none;
  display: block;
  height: 100%;
}
@media (max-width: 767px) {
  .st__service__content {
    padding: 15px;
  }
  .state_title {
    font-size: 16px;
  }
}

.footer-main {
  font-size: 14px;
  color: #374151;
  background-color: #f2f2f2 !important;
}
.footer-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(131, 126, 117, 0.04);
  animation: footer-float 12s infinite ease-in-out;
}
.footer-bubbles span:nth-child(1) {
  width: 120px;
  height: 120px;
  left: 5%;
  top: 20%;
}
.footer-bubbles span:nth-child(2) {
  width: 80px;
  height: 80px;
  right: 10%;
  top: 10%;
  animation-delay: 2s;
}
.footer-bubbles span:nth-child(3) {
  width: 150px;
  height: 150px;
  left: 40%;
  bottom: 10%;
  animation-delay: 4s;
}
.footer-bubbles span:nth-child(4) {
  width: 60px;
  height: 60px;
  right: 30%;
  bottom: 20%;
  animation-delay: 6s;
}
.footer-bubbles span:nth-child(5) {
  width: 100px;
  height: 100px;
  left: 70%;
  top: 35%;
  animation-delay: 8s;
}
@keyframes footer-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.footer-title {
  position: relative;
}
.footer-title::after {
  content: "";
  width: 32px;
  height: 2px;
  background: #f59e0b;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #374151;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #f59e0b;
  padding-left: 4px;
}
.footer-social-icon {
  border: 2px solid #00274f;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: 0.3s;
}
.footer-social-icon:hover {
  background: #f59e0b;
  color: #fff;
}
.footer-floating-row {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  pointer-events: none;
}
.footer-fab-wrapper {
  pointer-events: auto;
}
.footer-fab-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.footer-fab-icon:hover {
  transform: scale(1.1);
  color: #fff;
}
.footer-fab-call {
  background: #007bff;
}
.footer-fab-whatsapp {
  background: #25d366;
}
.footer-quote-btn {
  display: none;
  background: #dc3545;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  font-size: 14px;
}
@media (max-width: 991px) {
  .footer-floating-row {
    flex-direction: column-reverse;
    align-items: flex-end;
    bottom: 15px;
    right: 15px;
    left: auto;
    gap: 10px;
  }
  .footer-fab-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .footer-quote-btn {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .footer-fab-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .footer-quote-btn {
    font-size: 12px;
  }
}

/*Services Pages */
.home-section-title {
  color: #c76a00;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.home-icon-box {
  width: 60px;
  height: 60px;
  background-color: #ffd700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.home-feature-item {
  padding: 1.5rem;
  border-left: 3px solid #ff8c00;
  background-color: #fffaf0;
  margin-bottom: 1rem;
}

.home-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-price-badge {
  background-color: #000;
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
}

.home-service-list {
  list-style: none;
  padding-left: 0;
}

.home-service-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.home-service-list li:last-child {
  border-bottom: none;
}

.home-cta-section {
  background-color: #000;
  color: white;
}
