:root {
  --primary-color: #dc3545;
  --light-color: rgb(255, 255, 255);
}

body {
  font-family: sans-serif;
  color: #000000;
  overflow-x: hidden;
}

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



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

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

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

[data-animate].show {
  opacity: 1;
  transform: translate(0, 0);
}

[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;
}

.nav-top-bar {
  background-color: #bf0000;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.nav-top-bar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
}

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

.nav-main-navbar {
  background-color: #fff;
  padding-top: 4px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.nav-logo-menu img {
  height: 100px;
  transition: transform 0.3s ease;
}


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

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

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

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

.nav-quote-btn {
  background-color: #e31e24;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-quote-btn:hover {
  background-color: #c01419;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

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

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

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

.nav-fullscreen-menu {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.nav-fullscreen-menu::-webkit-scrollbar {
  display: none;
}

.nav-fullscreen-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.nav-menu-content {
  padding-inline: 40px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  animation: fadeInUp 0.5s ease;
}

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

.nav-close-menu-btn {
  top: 40px;
  right: 50px;
  z-index: 1001;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.nav-close-menu-btn i {
  color: #bf0000;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

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


.nav-close-menu-btn:hover i {
  color: #bf0000;
  text-shadow: 0 0 15px rgba(227, 30, 36, 0.6);
}

.nav-menu-title {
  font-size: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #101010;
  font-weight: 700;
  display: block;
}

.nav-menu-title::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 4px;
  width: 30%;
  background: #e70000;
}

.nav-menu-section ul li {
  margin-top: 10px;
}

.nav-menu-section ul li a {
  color: #101010;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
}

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

.nav-contact-info p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #101010;
}

.nav-contact-info a {
  color: #101010;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
}

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

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

.nav-social-icons a {
  width: 40px;
  height: 40px;
  background-color: #e31e24;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-social-icons a:hover {
  background-color: #ffeb3b;
  color: #1a1a1a;
  border-color: #e31e24;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

@media (max-width: 768px) {
  .nav-fullscreen-menu {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-inline: 40px;
  }
  .nav-fullscreen-menu::-webkit-scrollbar {
    display: block;
    width: 8px;
  }

  .nav-fullscreen-menu::-webkit-scrollbar-thumb{
    background: #e63946;
    border-radius: 4px;
  }

  .nav-fullscreen-menu {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
  }
  .nav-menu-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

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

  .nav-phone-btn,
  .nav-track-btn {
    font-size: 14px;
  }

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


/* Carousel container needs relative positioning */
#carouselExampleInterval {
    position: relative;
    height: calc(100vh - 122px);
}

@media (max-width: 767.98px) {
    #carouselExampleInterval {
        height: 70vh;
        min-height: 400px;
    }
    .slider-img {
      filter: brightness(0.6);
  }
}

/* Slider Image */
.slider-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Slider Overlay */
.slider-overlay {
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 5;
}

.slider-control-icon {
    font-size: 3rem;
    color: white;
}

@media (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .slider-control-icon {
        font-size: 2rem;
    }
}


.slider-btn{
    background-color: #bf0000;
    color: white;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.background-red {
    background-color: #bf0000;
}

/* Form Section - Positioned as overlay on slider */
.slider-form-section {
    position: absolute;
    top: 115%;
    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: 105%;
    }
}

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

@media (max-width: 376px) {
  .slider-form-section {
        width: 95%;
        top: 150% !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 {
    position: relative;
    overflow: hidden;
    padding-top: 260px !important;
}

.about-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
}
  @media (max-width: 767.98px) {

    .about-section {
        padding-top: 480px !important;
    }
}


.testimonial-box {
  transition: all 0.3s ease-in-out;
}

.testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #dc3545;
  color: white;
}

.testimonial-box:hover i {
  color: #fff !important;
}


/* Service Page Styles */
.serv-service-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.serv-section-tag {
    color: #b82500ff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.serv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.serv-title-underline {
    width: 60px;
    height: 4px;
    background-color: #dc3545;
    margin-bottom: 20px;
}

.serv-section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 40px;
}

.serv-service-card {
  background-color: white;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.serv-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #dc3545;
  transition: width 0.4s ease;
  z-index: -1;
}

.serv-service-card:hover::before {
  width: 100%;
}

.serv-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-color: #dc3545;
}

.serv-service-card:hover .serv-service-title {
  color: white;
}

.serv-service-card:hover .serv-service-icon {
  background-color: white;
  color: #dc3545;
}

.serv-service-icon {
  background-color: #dc3545;
  color: white;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.serv-service-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.serv-logo-placeholder {
    width: 200px;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-weight: 600;
    margin: 0 auto;
}

.serv-logo-placeholder img{
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .serv-section-title {
      font-size: 2rem;
  }
  
  .serv-logo-placeholder {
      margin-bottom: 30px;
  }
}



.table thead {
background: linear-gradient(175deg, var(--primary-red) 0%, var(--dark-red) 100%);
color: white;
}

.form-control:focus {
border-color: var(--primary-red);
box-shadow: 0 0 0 0.2rem rgba(203, 1, 4, 0.25);
}

.faq-text {
  color: var(--light-color);
}
.card.bg-danger,
.accordion-button.bg-danger {
  color: #fff !important;
}
#floatingButtons {
  z-index: 9998 !important;
}
.floating-line {
  height: 3px;
  width: 30px;
  border-radius: 10px;
}
.footer-btn {
  width: 60px;
  height: 60px;
}
.certified .certified-image-container {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
}
.certified-image-container img {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.certified-image-container:hover img {
  transform: rotateY(360deg);
}
.scroll-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.scroll-slide-up.show {
  opacity: 1;
  transform: translateY(0);
}
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease-out;
}
.scroll-slide-left.show {
  opacity: 1;
  transform: translateX(0);
}
.hover-pop {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-pop:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.brand {
  overflow: hidden;
}
.logo-slider {
  position: relative;
}
.logo-slide-track {
  display: flex;
  width: calc(250px * 28);
  animation: slide 25s linear infinite;
}
.logo-slide-track img {
  width: 150px;
  margin: 0 30px;
  object-fit: contain;
  transition: 0.3s;
}
.logo-slide-track img:hover {
  transform: scale(1.1);
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.pulse {
  display: inline-block;
  animation: pulseAnim 1.2s infinite ease-in-out;
}
@keyframes pulseAnim {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}
/* Breadcrumb Custom Styles */
.breadcrumb-section {
    position: relative;
    padding: 3rem 0;
    z-index: 5;
}

.breadcrumb-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.breadcrumb-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Custom Breadcrumb Styling */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.custom-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.custom-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    position: relative;
}

.custom-breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.custom-breadcrumb-item a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.custom-breadcrumb-item a:hover::after {
    width: 100%;
}

.custom-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.25rem;
    font-size: 0.85rem;
}

.custom-breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 2rem 0;
    }

    .breadcrumb-content {
        margin-top: 1rem;
    }

    .breadcrumb-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .custom-breadcrumb {
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        gap: 0.35rem;
    }

    .custom-breadcrumb-item {
        font-size: 0.85rem;
    }

    .custom-breadcrumb-item a {
        padding: 0.2rem 0.4rem;
    }

    .custom-breadcrumb-separator {
        font-size: 0.75rem;
        margin: 0 0.15rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .custom-breadcrumb {
        font-size: 0.8rem;
    }

    .custom-breadcrumb-item {
        font-size: 0.8rem;
    }

    .custom-breadcrumb-item a {
        padding: 0.15rem 0.3rem;
    }
}
.service_form{
  margin-top: -100px;
  z-index: 120;
  position: relative;
  background-color: white;
}


.choose-image {
  width: 90%;
  margin-left: 5%;
}
.content {
  text-align: justify !important;
}
.Branchcard {
  transition: transform 0.3s, box-shadow 0.3s;
}
.Branchcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.search-container {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.no-results {
  text-align: center;
  padding: 40px;
  color: #6c757d;
}
.branch-count {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 10px;
}
.highlight {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
}
.Branchcard-title {
  color: #dc3545;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}


.floating-buttons{
  z-index: 9999 !important;
}