* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Firefox Scrollbar Styling */
* {
  scrollbar-width: thin;
}

:root {
  --primary-red: #a30000;
  --red: #a4001b;
  --primary-yellow: #ded528;
  --text-dark: #333;
}


.text-danger{
  color: var(--red) !important;
}

.bg-danger{
  background-color: var(--red) !important;
}

.table-danger{
  --bs-table-bg: var(--red) !important;
}

body {
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
}

.bg-footer{
    background: rgb(161, 24, 38)
}

.bg-red {
  background-color: #e60008;
}

.display-7{
    font-size: 2rem;
    font-weight: 700;
}

.dark-red {
  color: #920005;
}

.bg-dark-red {
  background-color: #920005;
}

.border-dark-red {
  border-color: #920005 !important;
}

a {
  text-decoration: none;
  color: inherit;
}


.form-backgr {
  background-color: var(--red);
}

section:has([data-animate]) {
  overflow: hidden;
}

.faq-img-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-container {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1050;
  pointer-events: none;
}

/* Only enable pointer events on interactive elements */
.float-container .float-btn,
.float-container .float-back-top,
.float-container .float-quote-btn {
  pointer-events: auto;
}

/* Remove the wildcard selector that was causing the issue */
/* .float-container * {
  pointer-events: auto;
} */

/* ========================================
   CONTACT BUTTONS (Left Side)
   ======================================== */

.float-btn {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.float-btn-call {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.float-btn-call:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.float-btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c48 100%);
}

.float-btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.float-back-top {
  width: 44px;
  height: 44px;
  background: #fff;
  color: #e30613;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-back-top.float-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-back-top:hover {
  background: #e30613;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
}

/* ========================================
   QUOTE BUTTON
   ======================================== */

.float-quote-btn {
  background: linear-gradient(135deg, #e30613 0%, #c00510 100%);
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(227, 6, 19, 0.35);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.float-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.45);
  color: #fff;
}

.float-quote-text {
  display: flex;
  align-items: center;
}

.float-quote-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.float-quote-btn:hover .float-quote-arrow {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(3px);
}


@media (max-width: 575.98px) {
  .float-container {
    bottom: 15px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .float-quote-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .float-quote-arrow {
    width: 28px;
    height: 28px;
  }

  .float-back-top {
    width: 38px;
    height: 38px;
  }
}
/* Animations*/

/* === Base animation setup === */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* === Direction Animations === */
[data-animate="left"] {
  transform: translateX(-50px);
}
[data-animate="right"] {
  transform: translateX(50px);
}
[data-animate="top"] {
  transform: translateY(-50px);
}
[data-animate="bottom"] {
  transform: translateY(50px);
}

/* === When visible === */
[data-animate].show {
  opacity: 1;
  transform: translate(0, 0);
}

/* === Delay options === */
[data-delay="1"] {
  transition-delay: 0.3s;
}
[data-delay="2"] {
  transition-delay: 0.6s;
}
[data-delay="3"] {
  transition-delay: 0.9s;
}
[data-delay="4"] {
  transition-delay: 1.2s;
}

/* Menu Overlay */
/* Top Bar */
.top-bar {
    background-color: #ab0000;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #ffeb3b;
}

/* Main Navbar */
.main-navbar {
    background-color: #fff;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 80px;
    transition: transform 0.3s ease;
}

.phone-btn {
    color: #e31e24;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    color: #c01419;
    transform: translateY(-2px);
}

.quote-btn {
    background-color: #e70008;
    color: white;
    border: 2px solid #ffeb3b;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quote-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    border: 2px solid #ff0000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hamburger-btn {
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-btn i {
    font-size: 30px;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

/* Full Screen Menu - Enhanced */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
    display: flex;
    justify-content: center;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e31e24 0%, #ffeb3b 50%, #e31e24 100%);
}

/* Menu Content Container */
.menu-content-wrapper {
    width: 100%;
    max-width: 1400px;
    padding: 60px 40px;
    animation: fadeInUp 0.5s ease;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: 5fr 3fr 3fr 3fr;
    gap: 50px;
    margin-top: 30px;
}

/* Close Button */
.close-menu-btn {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1101;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    border: none;
}

.fullscreen-menu.active .close-menu-btn {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn i {
    font-size: 40px;
    color: #e31e24;
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.3));
}

.close-menu-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

.close-menu-btn:hover i {
    color: #000;
}

/* Menu Section Styling */
.menu-section {
    opacity: 0;
    animation: slidenav 0.6s ease forwards;
}

.fullscreen-menu.active .menu-section {
    opacity: 1;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }
.menu-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes slidenav {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-title {
    font-size: 26px;
    position: relative;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 8px;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 60px;
    background: #e31e24;
    border-radius: 2px;
}

.menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-section ul li {
    margin-bottom: 12px;
}

.menu-section ul li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.menu-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e31e24;
    transition: width 0.3s ease;
}

.menu-section ul li a:hover {
    color: #e31e24;
    padding-left: 10px;
}

.menu-section ul li a:hover::before {
    width: 100%;
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #e31e24 0%, #c01419 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.contact-info-section .menu-title {
    color: #fff;
}

.contact-info-section .menu-title::after {
    background: #ffeb3b;
}


.hero-gold {
  color: #ffd700;
}

.hero-btn-gold {
  background: #980000;
  color: #fbfbfb;
  font-weight: 600;
}

.hero-btn-gold:hover {
  background: #470000;
  color: #000;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
}

.hero-input-icon {
  background-color: #fff8dc;
  border-right: none;
}

.hero-form-input {
  border-left: none;
}

.hero-form-input:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.contact-info p,
.contact-info a {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.contact-info a:hover {
    color: #ffeb3b;
    padding-left: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #ffeb3b;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background-color: #ffeb3b;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.4);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-content-wrapper {
        padding: 40px 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .close-menu-btn {
        top: 20px;
        right: 20px;
    }

    .close-menu-btn i {
        font-size: 35px;
    }

    .menu-title {
        font-size: 22px;
    }

    .phone-btn {
        font-size: 16px;
    }

    .quote-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .contact-info-section {
        padding: 20px;
    }
}


/*Slider*/
.slider-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 115px);
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -10;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: start;
  justify-content: center;
}

.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide-content {
  margin-top: 60px;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
  animation: slideUp 0.8s ease-out;
}

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

.slide-icon {
  font-size: 80px;
  margin-bottom: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.slide-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.slide-btn {
  padding: 15px 40px;
  font-size: 18px;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slide-btn:hover {
  background: white;
  color: #667eea;
  transform: scale(1.05);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(255, 255, 255, 0.073);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 30px;
}

.nav-arrow.right {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom:40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 40px;
  border-radius: 10px;
}

.features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.feature-item i {
  font-size: 24px;
}

@media (max-width: 768px) {
  .slider-container {
    height: calc(100vh - 260px);
  }

  .slide {
    align-items: start;
  }
  .slide-content {
    margin-top: 80px;
  }
  .slide-title {
    font-size: 34px;
  }

  .slide-description {
    font-size: 16px;
  }

  .slider-dots {
    bottom: 310px;
  }
  .slide-icon {
    font-size: 60px;
  }

  .nav-arrow {
    display: none;
  }

  .nav-arrow.left {
    left: 15px;
  }

  .nav-arrow.right {
    right: 15px;
  }
}

@media (max-width: 392px) {
  .slide-content {
    margin-top: 40px;
  }
  .slider-container {
    height: calc(100vh - 260px);
  }
  .slide-title {
    font-size: 28px;
  }

  .slide-description {
    font-size: 16px;
  }
}

@media (max-width: 376px) {
  .slider-container {
    height: calc(100vh - 100px);
  }
}


/* Form Section - Positioned as overlay on slider */
.slider-form-section {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999; /* Higher than carousel */
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 767.98px) {
    .slider-form-section {
        width: 95%;
        top: 95%;
    }
}

@media (max-width: 415px) {
    .slider-form-section {
        width: 95%;
        top: 75% !important;
    }
}

@media (max-width: 376px) {
  .slider-form-section {
        width: 95%;
        top: 90% !important;
    }
}

/* Form Enhancements */
.form-control:focus {
    border-color: #a30010;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.input-group-text {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #dee2e6;
}

.btn-submit {
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    margin-top: 40px;
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: #dc143c;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.08);
    transform: translateY(-5px);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: #fff9e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #dc143c;
    transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
    background: #dc143c;
    color: #ffffff;
}

.about-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-card-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.about-content {
    padding-left: 40px;
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #dc143c;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: #fff9e6;
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: #dc143c;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc143c;
    color: #ffffff;
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-button:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateX(5px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin-top: 120px;
        padding: 60px 0;
    }

    .about-grid {
        gap: 0;
    }
    .about-card {
      padding: 5px 6px;
    }
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        padding-left: 0;
    }
}

    /* Testimonial Section */
.testimonial-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff9e6 50%, #f8f9fa 100%);
}
.testimonial-bg-pattern {
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(255, 193, 7, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 152, 0, 0.03) 0%,
      transparent 30%
    );
  z-index: 1;
}
.testimonial-accent-left {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), transparent);
  border-radius: 50%;
  top: 10%;
  left: -150px;
  filter: blur(50px);
  z-index: 0;
}
.testimonial-accent-right {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), transparent);
  border-radius: 50%;
  bottom: 10%;
  right: -100px;
  filter: blur(50px);
  z-index: 0;
}

.testimonial-badge {
  background: linear-gradient(135deg, #e31e24, #f60007);
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.testimonial-text-highlight {
  background: linear-gradient(135deg, #e31e24, #f60007);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  border-radius: 2px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.testimonial-quote-icon {
  top: 15px;
  right: 20px;
  color: rgba(255, 193, 7, 0.15);
  line-height: 1;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
  color: rgba(255, 193, 7, 0.3);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-rating i {
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  color: #6c757d;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author-name {
  color: #212529;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-author-name {
  color: #fff;
}

.testimonial-author-location {
  color: #6c757d;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-author-location {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border: 3px solid #ffc107;
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}

.testimonial-cta-box {
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.testimonial-cta-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.testimonial-btn {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border: none;
  color: #000;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: linear-gradient(135deg, #ff9800, #e68900);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.35);
}

@media (max-width: 767.98px) {
  .testimonial-cta-box {
    flex-direction: column;
    text-align: center;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
  }

  .testimonial-cta-icon {
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }

  .testimonial-cta-box .text-start {
    text-align: center !important;
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }

  .testimonial-card {
    padding: 1.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .testimonial-author-img {
    width: 45px;
    height: 45px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

/* Process section*/
.process-section {
  background: linear-gradient(135deg, #000000 0%, #460000 25%, #8e0000 75%, #a87e00 100%);
  padding: 20px 0;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.process-steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-icon-wrapper {
  width: 90px;
  height: 90px;
  border: 3px solid rgba(251, 255, 0, 0.692);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  background: rgba(215, 226, 0, 0.05);
  backdrop-filter: blur(10px);
}
.step-item:hover .step-icon-wrapper {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.step-item:hover .step-icon {
  color: rgba(255, 255, 255, 0.9);
}

.step-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 0, 0.701);
}
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.arrow-separator {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin: 0 -0.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .process-steps {
    flex-direction: column;
  }
  .arrow-separator {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  .process-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  .process-title {
    font-size: 1.75rem;
  }
  .step-icon-wrapper {
    width: 75px;
    height: 75px;
  }
  .step-icon {
    font-size: 2rem;
  }
  .step-title {
    font-size: 1.25rem;
  }
}

/* Achievement Section - Minimalistic */
.achievement-section {
  background: #700000;
  padding: 70px 0;
}

.achievement-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.achievement-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 50px 30px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.achievement-number {
  font-size: 4rem;
  font-weight: 800;
  color: #920000;
  margin-bottom: 15px;
  line-height: 1;
}

.achievement-number::after {
  content: '+';
  color: #920000;
}

.achievement-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .achievement-section {
    padding: 50px 0;
  }
  
  .achievement-title {
    font-size: 2rem;
  }
  
  .achievement-number {
    font-size: 3rem;
  }
  
  .achievement-item {
    padding: 40px 20px;
  }
}

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

.accordion-button {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #fd0d0d;
  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 and add Font Awesome icons */
.accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none !important;
  color: #fd0d0d;
  font-size: 1rem;
  width: auto;
  height: auto;
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  background-image: none !important; /* Also remove it for the open state */
}

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

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

.faq-illustration {
  animation: fadeInUp 0.6s ease-out;
}

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

.serv-service-badge {
  background: linear-gradient(135deg, #e31e24, #f60007);
  letter-spacing: 1px;
}

.serv-icon {
  background: linear-gradient(135deg, #e31e24, #f60007);
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  margin: -40px auto 1rem;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}

.serv-view-btn {
  background: linear-gradient(135deg, #e31e24, #f60007);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
  letter-spacing: 0.5px;
}

.serv-view-btn:hover {
  background: linear-gradient(135deg, #f60007, #e31e24);
  box-shadow: 0 6px 16px rgba(227, 30, 36, 0.4);
  transform: translateY(-2px);
}

.serv-accent-bar {
  height: 4px;
  background: linear-gradient(135deg, #e31e24, #f60007);
  width: 50px;
}

.serv-card {
  transition: all 0.3s ease;
}

.serv-card:hover {
  transform: translateY(-10px);
}

.serv-card-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/*Gallery page*/
.gallery-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #000;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.4);
}

.gallery-img {
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-modal-close{
    right: 20%;
    top: -10%;
}

.gallery-close-btn {
    background-color: #FFD700;
    opacity: 1;
    border-radius: 50%;
    padding: 0.75rem;
    margin: 1rem;
}

.gallery-close-btn:hover {
    background-color: #FFA500;
    transform: scale(1.1);
}

.gallery-modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991.98px) {
  .gallery-modal-close{
        right: 0%;
        top: 0%;
    }

}

/* Footer Section */
.footlink-section {
    background-color: #680000;
}

.footlink-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footlink-item:hover {
    color: #c8ff00;
    padding-left: 5px;
}

.footlink-item::before {
    content: "›";
    margin-right: 6px;
    color: #ffc107;
}
.footer-bg {
    background: #000;
    color: #ddd;
}
.footer-overlay {
    display: none;
}
.footer-bg p,
.footer-bg .footer-text {
    color: #ccc;
}
/* Footer links */
.footer-links li{
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-links li a {
    color: #bbb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}
.footer-links li a i {
    color: #f5c542;
    font-size: 12px;
}
.footer-links li a:hover {
    color: #fff;
    padding-left: 6px;
}
/* Contact Boxes */
.contact-box {
    background: #111 !important;
    border: 1px solid #222;
}

.contact-box i {
    color: #f5c542;
}

.footer-link {
    color: #ccc;
}

.footer-link:hover {
    color: #fff;
}

/* Footer bottom */
.footer-bottom {
    background: rgb(119, 0, 0);
    border-top: 1px solid #222;
}

.fab-options {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: none;
}

.fab-wrapper:hover .fab-options {
    display: block;
}

/* FAB icon holders */
.fab-icon-holder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* FAB Labels */
.fab-label {
    background: #111;
    border-radius: 6px;
    border: 1px solid #333;
}
i.fas,
i.fab {
    vertical-align: middle;
}

/* Social Icons */
.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #9a7400;
  border-color: #ffc107;
  color: #ffffff;
  transform: scale(1.1);
}


/* Breadcrumb Hero Section */
.breadcrumb-hero {
    background: linear-gradient(135deg, #320000 0%, #450000 25%, #690000 50%, #750000 75%, #8B0000 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 215, 0, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 215, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 215, 0, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 215, 0, 0.05) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    pointer-events: none;
}

.breadcrumb-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb-hero .content-area {
    position: relative;
    z-index: 1;
}

.breadcrumb-hero .accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c8ff00 0%, #FFD700 50%, #848b00 100%);
    margin-bottom: 20px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: slideIn 0.6s ease-out;
}

.breadcrumb-hero .page-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-hero .page-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: black;
    padding: 15px 0;
    border-top: 3px solid #8B0000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    align-items: center;
    position: relative;
    z-index: 1;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding: 0 12px;
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.breadcrumb-item a {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid transparent;
    position: relative;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
    z-index: -1;
}

.breadcrumb-item a:hover {
    color: #FFFFFF;
    border-color: rgba(139, 0, 0, 0.5);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.breadcrumb-item a:hover::before {
    opacity: 1;
}

.breadcrumb-item a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.breadcrumb-item a:hover i {
    transform: scale(1.1);
}

.breadcrumb-item.active {
    color: #FFFFFF;
    font-weight: 500;
    padding: 5px 10px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    border-radius: 4px;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

/* Animations */
@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-hero {
        padding: 60px 0 40px;
    }
    
    .breadcrumb-hero .page-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .breadcrumb-hero .page-description {
        font-size: 14px;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
    
    .breadcrumb-item a span {
        display: none;
    }
    
    .breadcrumb-item a i {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .breadcrumb-hero .page-title {
        font-size: 28px;
    }
    
    .breadcrumb-nav {
        padding: 12px 0;
    }
}

/* Service Page */
.page-title-bar {
  background-color: #920005;
}

.btn-brand-red {
  background-color: #920005;
  border-color: #dc3545;
  color: white;
}

.btn-brand-red:hover {
  background-color: #bb2d3b;
  border-color: #920005;
  color: white;
}

.btn-brand-yellow {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
}

.btn-brand-yellow:hover {
  background-color: #ffca2c;
  border-color: #ffca2c;
  color: #000;
}

.text-brand-red {
  color: #920005;
}

.border-brand-red {
  border-color: #dc3545 !important;
}

.service-page-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/*States*/
.st__service__box {
  position: relative;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.st__service__box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #ddff00;
}

.st__service__thumb {
  position: relative;
}

.st__service__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.st__service__box:hover .st__service__thumb img {
  transform: scale(1.1);
}

.st__service__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.st__service__box:hover .st__service__thumb::after {
  opacity: 1;
}

.st__service__content {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(45deg, #ff0000, #ff0000);
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 2;
}

.st__service__box:hover .st__service__content {
  bottom: 35%;
  transform: translateX(-50%);
  background: transparent;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  border-radius: 0;
}

.state_title {
  text-wrap-mode: nowrap;
}


/* Card Base */
.city-card {
    background: #ffffff;
    border: 2px solid #ff0000;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Icon */
.city-icon {
    font-size: 32px;
    color: #dc3545;
    transition: transform 0.3s ease;
}

/* Text */
.city-text {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
}

.city-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover Effect */
.city-card-link:hover .city-card {
    transform: translateY(-6px);
    border-color: #ffc107;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.city-card-link:hover .city-icon {
    transform: translateX(4px);
    color: #ffc107;
}

.city-card-link:hover .city-name {
    color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .city-icon {
        font-size: 28px;
    }
    
    .city-text {
        font-size: 14px;
    }
    
    .city-name {
        font-size: 16px;
    }
}

/* Service Pages */
/* Brand Colors */
.text-home-brand-red {
    color: #8B0000 !important;
}

.bg-home-brand-red {
    background-color: #8B0000 !important;
}

.btn-home-brand-red {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #fff;
}

.btn-home-brand-red:hover {
    background-color: #6B0000;
    border-color: #6B0000;
    color: #fff;
}

/* Image Container */
.home-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.home-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-image-container:hover img {
    transform: scale(1.02);
}

/* Client Cards */
.home-client-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.home-client-card:hover {
    border-color: #8B0000;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
    transform: translateY(-5px);
}

.home-client-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B0000, #6B0000);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Info Box */
.home-info-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-left: 4px solid #8B0000;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Feature Cards */
.home-feature-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.home-feature-card:hover {
    border-color: #8B0000;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
    transform: translateY(-5px);
}

.home-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B0000, #6B0000);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

/* Material Cards */
.home-material-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

.home-material-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Item Badge */
.home-item-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Process List */
.home-process-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-process-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.home-process-item:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-left: 1.25rem;
}

.home-process-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #8B0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.home-process-text {
    font-weight: 500;
    color: #212529;
}

/* Location Cards */
.home-location-card {
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.home-location-card:hover {
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.home-location-card-highlight {
    background: #8B0000;
    color: #fff;
}

.home-location-card-highlight:hover {
    background: #6B0000;
}

/* Fragile Cards */
.home-fragile-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.home-fragile-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.home-fragile-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ffc107;
    color: #212529;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Success Box */
.home-success-box {
    background: #d1e7dd;
    border: 1px solid #badbcc;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Solution Box */
.home-solution-box {
    background: linear-gradient(135deg, #8B0000, #6B0000);
    padding: 2rem;
    border-radius: 0.75rem;
}

/* Problem Cards */
.home-problem-card {
    background: #fff;
    border: 1px solid #f8d7da;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.home-problem-card:hover {
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
    transform: translateY(-3px);
}

.home-problem-icon {
    width: 60px;
    height: 60px;
    background: #f8d7da;
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Testimonial Cards */
.home-testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.home-testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.home-testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #f8f9fa;
}

.home-testimonial-rating {
    font-size: 1rem;
}

.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #8B0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Stats Section */
.home-stats-section {
    background: linear-gradient(135deg, #8B0000 0%, #5a0000 100%);
}

.home-stat-card {
    padding: 2rem;
}

/* CTA Section */
.home-cta-section {
    background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%);
}

/* Contact Icon */
.home-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #8B0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

/* Accordion */
.home-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(139, 0, 0, 0.08);
    color: #8B0000;
    box-shadow: none;
}

.home-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.25);
}

.home-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.home-accordion .accordion-item {
    border: none;
    background: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .home-feature-card {
        padding: 1.5rem;
    }
    
    .home-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .home-fragile-card {
        padding: 1rem;
    }
    
    .home-testimonial-card {
        padding: 1.5rem;
    }
    
    .home-client-card {
        padding: 1rem;
    }
    
    .home-client-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .home-process-item {
        padding: 0.625rem 0.875rem;
    }
    
    .home-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .home-stat-card .display-4 {
        font-size: 2.5rem;
    }
    
    .home-client-card p {
        font-size: 0.875rem;
    }
    
    .home-problem-card p {
        font-size: 0.875rem;
    }
}


/* Moving PRocess Page */
    /* Section Heading */
.move-section-heading {
    color: #800000;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

/* Process Card */
.move-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FFD700;
}

.move-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128,0,0,0.15);
}

.move-step-number {
    flex-shrink: 0;
}

.move-step-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #800000 0%, #5a0000 100%);
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 10px;
}

.move-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.move-step-icon i {
    font-size: 1.8rem;
    color: #800000;
}

.move-step-title {
    color: #000000;
    font-weight: 600;
    font-size: 1.5rem;
}

.move-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.move-step-list li {
    padding: 8px 0;
    color: #6c757d;
}

.move-step-list i {
    color: #FFD700;
}

/* Timeline */
.move-timeline-container {
    position: relative;
    padding: 20px 0;
}

.move-timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FFD700;
}

.move-timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 40px;
}

.move-timeline-item:last-child {
    padding-bottom: 0;
}

.move-timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #800000;
    border-radius: 50%;
    z-index: 1;
}

.move-timeline-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 3px solid #FFD700;
}

.move-timeline-badge {
    display: inline-block;
    background: #800000;
    color: #FFD700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.move-timeline-content h4 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Feature Box */
.move-feature-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.move-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(128,0,0,0.12);
}

.move-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #800000 0%, #5a0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.move-feature-icon i {
    font-size: 2rem;
    color: #FFD700;
}

.move-feature-box h5 {
    color: #000000;
    font-weight: 600;
}

/* CTA Section */
.move-cta-section {
    background: linear-gradient(135deg, #800000 0%, #5a0000 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.move-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.05) 10px,
        rgba(0,0,0,0.05) 20px
    );
}

.move-btn-primary {
    background: #FFD700;
    border-color: #FFD700;
    color: #800000;
    font-weight: 600;
}

.move-btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #800000;
}

.move-btn-outline {
    border-color: #ffffff;
    color: #ffffff;
    font-weight: 600;
    background: transparent;
}

.move-btn-outline:hover {
    background: #ffffff;
    color: #800000;
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .move-section-heading {
        font-size: 1.75rem;
    }
    
    .move-timeline-container::before {
        left: 10px;
    }
    
    .move-timeline-marker {
        left: 0;
    }
    
    .move-timeline-item {
        padding-left: 60px;
    }
}

@media (max-width: 767px) {
    .move-card {
        padding: 20px;
    }
    
    .move-step-number span {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}