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

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


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

ul,
li {
  list-style: none;
}

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


.floating-row {
  position: fixed !important;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1050;
}

.back-to-top {
  position: fixed !important;
}

/* FAB Button */
.fab-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e30613;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.fab-icon:hover {
  opacity: 0.85;
}

/* Hamburger Icon */
.icon-bar {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  margin: 5px 0;
}

/* FAB Options */
.fab-options {
  position: absolute;
  bottom: 70px;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% bottom;
  transition: all 0.3s ease;
}

.fab-wrapper:hover .fab-options {
  opacity: 1;
  transform: scale(1);
}

.fab-icon-holder {
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.3s ease;
}

.fab-icon-holder:hover {
  opacity: 0.85;
}

.call-btn {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.call-btn i {
  font-size: 32px;
}

.whatsapp-btn {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.whatsapp-btn i {
  font-size: 32px;
}

/* Tooltip Label */
.fab-label {
  position: relative;
  background-color: #000;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.fab-label::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-right: 15px solid #000;
  border-bottom: 10px solid transparent;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 110px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e30613;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 1051;
}

.back-to-top:hover {
  opacity: 0.85;
}

.fab-options li:hover .fab-label {
  display: block;
}

/* Quote Button */
.floating-btn {
  background: #e30613;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-btn a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.floating-btn a:hover {
  color: #fff;
  text-decoration: none;
}

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

.top-bar {
  background-color: var(--primary-red);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

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

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

/* Main Navbar */
.main-navbar {
  background-color: #c90606;
  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;
}

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



/* Action Buttons */
.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);
}

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

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

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

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

/* Hamburger Button */
.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 */
.fullscreen-menu {
  position: fixed;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: linear-gradient(135deg, #ffffff 0%, #e7e7e7 50%, #ececec 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;
}

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

/* For Firefox */
.fullscreen-menu {
  scrollbar-width: none; /* hides scrollbar */
}

/* For IE & old Edge */
.fullscreen-menu {
  -ms-overflow-style: none;
}

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

.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);
  }
}

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

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

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

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

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

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

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

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

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

.menu-section ul li a:hover {
  color: var(--primary-red);
  padding-left: 10px;
}

/* Contact Info */
.contact-info p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #101010;
}

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

.contact-info a:hover {
  color: var(--primary-red);
  padding-left: 10px;
}

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

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

.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);
}

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

  /* Optional scrollbar style for menu */
  .fullscreen-menu::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 4px;
  }

  /* Re-enable scrollbar in Firefox & Edge */
  .fullscreen-menu {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
  }
  .menu-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

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

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

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

/*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;
  display:flex;
   margin-top: 0px;
  padding:  1px;
  z-index: -2;
    transition: opacity 1s ease-in-out;
    align-items: start;
  filter: brightness(0.4);
  justify-content: center;
}


.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: 35%;
  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: 190px;
  }
  .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*/

.form-service-icon i {
  font-size: 30px;
  color: #d90429;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.btn-manual {
  background: #fff;
  border: 2px solid #d90429;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.btn-manual img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 5px;
}

.btn-manual a {
  color: #000;
  font-weight: 700;
  font-size: 10px;
  text-decoration: none;
  display: block;
}

.btn-manual:hover {
  background: #b8001f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-manual:hover a,
.btn-manual:hover .form-service-icon i {
  color: #fff;
}

.selected-btn {
  background-color: rgb(175, 0, 0);
  color: #fff;
  border-bottom: 5px solid #eeff00;
  box-shadow: 0 0 12px rgba(117, 0, 20, 0.884);
}

.selected-btn a,
.selected-btn .form-service-icon i {
  color: #fff;
}

.selected-label {
  display: none;
  background: #000;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  position: absolute;
  top: -8px;
  right: -8px;
}

.phone-mar {
  color: black;
  background: #fff;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  border: 3px solid #d90429;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: pulse 1.5s infinite ease-in-out;
}

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

.top-section {
  margin-top: -160px;
  position: relative;
  z-index: 9;
}

@media (min-width: 992px) {
  .col-lg-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

/*About Section*/
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
}

.about-image-card {
  height: 250px;
  transition: transform 0.3s ease;
  border-radius: 30px;
  border: 2px solid #ffe9c8;
  overflow: hidden;
  position: relative;
}

.about-image-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 1;
}

.about-image-card .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about-image-card .card-title {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  width: 90%;
  z-index: 2;
  font-weight: bold;
  color: #ffffff;
}

.about-container {
  border-top: 2px solid #d9230f;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 20px;
  position: relative;
}

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

.about-text {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.cta-button {
  background: red;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(220, 20, 60, 0.4);
  background: #fff200b7;
  color: black;
}

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

  .section-title {
    font-size: 2rem;
  }
}

/* Services Section */
.main-section {
  padding: 40px 0;
}

.section-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  border: 1px solid var(--primary-red);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 10px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(246, 255, 0, 0.482);
}

.service-card.active {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.service-icon {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.service-card.active .service-icon {
  color: white;
}

.service-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.service-card.active .service-title {
  color: white;
}

.content-wrapper-wrapper {
  border-radius: 15px;
  border: 2px solid red;
}

.content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.content-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: -50px;
  left: -50px;
  width: 70%;
  height: 80%;
  background: linear-gradient(
    135deg,
    rgba(186, 19, 0, 0.76) 0%,
    rgba(191, 19, 0, 0.829) 100%
  );
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  z-index: 2;
}

.content-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 4px 4px 0;
  z-index: 1;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.content-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn-view-more {
  background: transparent;
  border: 3px solid white;
  color: white;
  padding: 12px 45px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-view-more:hover {
  background: white;
  color: #dc3545;
}

@media (max-width: 991px) {
  .main-section {
    padding-bottom: 360px;
  }
  .content-overlay {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px !important;
    background: linear-gradient(
      135deg,
      rgba(255, 25, 0, 0.79) 0%,
      rgba(255, 25, 0, 0.829) 100%
    );
    color: white;
    border-radius: 4px;
    z-index: 2;
  }

  .content-image {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .content-overlay {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(255, 25, 0, 0.79) 0%,
      rgba(255, 25, 0, 0.829) 100%
    );
    color: white;
    padding: 20px 10px;
    border-radius: 4px;
    z-index: 2;
  }

  .content-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .service-card {
    height: auto;
    padding: 20px 15px;
  }
}

.content-wrapper {
  position: relative;
  animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-wrapper.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

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

.service-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Process section*/
.process-section {
  background: linear-gradient(135deg, #7b1717 0%, #8a2117 50%, #6e0909 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;
  }
}

/*testimonials section*/
.testimonial-section {
  padding: 40px 0;
}
.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 4rem;
  text-align: center;
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 2rem;
}
.quote-icon {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -20px;
  left: 10px;
}
.quote-icon svg {
  width: 100%;
  height: 100%;
}
.testimonial-text {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-left: 80px;
}
.customer-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 140px;
}
.customer-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dc3545;
}
.customer-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 0.25rem;
}
.customer-details p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}
.customer-details .relocation {
  font-weight: 600;
  color: #212529;
  margin-top: 0.25rem;
}
.segments-panel {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}
.segments-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}
.segment-item {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 1px solid #e9ecef;
}
.segment-item:hover {
  background: #fff9e6;
  border-color: #ffc107;
}
.segment-item.active {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}
.segment-item .plus-icon {
  width: 28px;
  height: 28px;
  border: 2px solid #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc3545;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.segment-item.active .plus-icon {
  border-color: white;
  color: white;
}
.segment-item:hover .plus-icon {
  border-color: #ffc107;
  color: #ffc107;
  transform: rotate(90deg);
}
.segment-item.active:hover .plus-icon {
  border-color: white;
  color: white;
}
@media (max-width: 991px) {
  .testimonial-text,
  .customer-info {
    padding-left: 0;
  }
  .quote-icon {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 0.5rem;
  }
  .segments-panel {
    margin-bottom: 3rem;
    position: relative;
    top: 0;
  }
}
@media (max-width: 576px) {
  .testimonials-title {
    font-size: 2rem;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

/* Achievements Section */
.achievement-section {
  background: linear-gradient(
    135deg,
    #3b0707 0%,
    #750000 25%,
    #c60000 50%,
    rgb(118, 0, 0) 75%,
    #8b0000 100%
  );
  padding: 40px 0;
}

.achievement-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 40px;
}

.achievement-item {
  text-align: center;
}

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

.achievement-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fcffb3;
  margin-bottom: 20px;
}

.achievement-description {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* 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);
  }
}



/* Background Image */
.footer-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}






/* Ensure content is above background */
.footer-bg .container {
  position: relative;
  z-index: 2;
}
.footer-text {
  color: rgb(217, 217, 217);
}

.footer-link {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgb(217, 217, 217);
}

.footer-link:hover {
  color: #ffbf00;
  text-decoration: none;
} 


/* 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);
}

/* Footer Links */



/* Contact Boxes */
.contact-box {
  transition: all 0.3s ease;
}

.contact-box:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  background-color: #480b0b;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  position: relative;
  z-index: 2;
}

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

.btn-warning:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Breadcrumb Section */

.breadcrumb-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(127, 7, 19, 0.95),
    rgba(33, 37, 41, 0.95)
  );
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.breadcrumb-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(154, 10, 24, 0.9) 0%,
    rgba(33, 37, 41, 0.7) 100%
  );
}

.content-area {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.page-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 0;
}

.accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), transparent);
  margin-bottom: 1.5rem;
}

.breadcrumb-nav {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

.breadcrumb-custom .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-custom .breadcrumb-item a:hover {
  color: var(--primary-red);
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--dark);
  font-weight: 500;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #dee2e6;
  padding: 0 0.75rem;
}

@media (max-width: 768px) {
  .breadcrumb-hero {
    height: 280px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-description {
    font-size: 1rem;
  }
}

/* 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;
}

.city-card {
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.city-content h2,
.city-content h3,
.city-content h4,
.city-content h5,
.city-content h6 {
  font-size: 32px;
  font-weight: 700;
}

/*Unique*/
.atp-hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 60px 0;
  min-height: 600px;
}

.atp-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.atp-header-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.atp-header-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
}

.atp-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0;
}

.atp-tab-item {
  padding: 12px 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: #999;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.atp-tab-item:hover {
  color: #dc143c;
}

.atp-tab-item.atp-active {
  color: #dc143c;
  border-bottom-color: #dc143c;
}

.atp-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.atp-text-content {
  flex: 1;
}

.atp-image-content {
  flex: 1;
  position: relative;
}

.atp-feature-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.atp-feature-icon {
  width: 60px;
  height: 60px;
  background: #ffd900c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.atp-feature-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc143c;
}

.atp-feature-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.atp-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dc143c;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.atp-learn-more:hover {
  gap: 12px;
  color: #a00000;
}

.atp-timeline-list {
  margin-top: 40px;
  padding-left: 30px;
  position: relative;
}

.atp-timeline-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #dc143c, #ffd700, #999);
}

.atp-timeline-item {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  animation: atp-slideIn 0.6s ease forwards;
}

.atp-timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.atp-timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.atp-timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.atp-timeline-item::before {
  content: "";
  position: absolute;
  left: -11.5px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #dc143c;
  border-radius: 50%;
  border: 3px solid #fff;
}

.atp-timeline-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.atp-timeline-desc {
  font-size: 0.95rem;
  color: #777;
}

.atp-features-scroller {
  margin-top: 50px;
  position: relative;
}

.atp-scroller-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.atp-scroller-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  width: 100%;
  transition: transform 0.5s ease;
}

.atp-scroller-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  height: 80px;
  border-left: 3px solid #ccc;
  padding-left: 20px;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.4s ease;
  cursor: pointer;
}

.atp-scroller-item.atp-active-scroll {
  opacity: 1;
  transform: scale(1);
  border-left-color: #ffd700;
}

.atp-scroller-icon {
  width: 50px;
  height: 50px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.atp-scroller-item.atp-active-scroll .atp-scroller-icon {
  background: #dc143c;
  color: white;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.atp-scroller-text {
  font-weight: 600;
  color: #999;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.atp-scroller-item.atp-active-scroll .atp-scroller-text {
  color: #dc143c;
  font-size: 1.1rem;
}

.atp-scroller-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.atp-scroller-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.atp-scroller-dot.atp-active-dot {
  background: #dc143c;
  transform: scale(1.3);
}

.atp-scroller-dot:hover {
  border-color: #ffd700;
}

.atp-vehicle-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: atp-fadeUp 0.8s ease forwards;
}

.atp-story-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #dc143c;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: atp-fadeUp 0.8s ease 0.2s forwards;
}

.atp-story-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

.atp-badge-plus {
  font-size: 1.5rem;
  margin-top: 5px;
}

@keyframes atp-slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes atp-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .atp-header-title {
    font-size: 2rem;
  }

  .atp-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .atp-tabs-nav {
    gap: 15px;
  }

  .atp-tab-item {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .atp-feature-name {
    font-size: 1.5rem;
  }
}

/* Additional CSS for new elements */
.atp-tab-content {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.atp-tab-content.atp-fade-out {
  opacity: 0;
}

/* Font Awesome icon styling */
.atp-feature-icon i {
  font-size: inherit;
}

.atp-timeline-title i {
  margin-right: 8px;
  color: inherit;
}

.atp-learn-more span i {
  font-size: 14px;
  vertical-align: middle;
}

.atp-badge-plus i {
  font-size: inherit;
}

/* Smooth animations for content switching */
@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.atp-tab-content[style*="display: block"] {
  animation: fadeInContent 0.4s ease-out;
}

/* Timeline items initial state for scroll animation */
.atp-timeline-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active tab indicator enhancement */
.atp-tab-item.atp-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px 2px 0 0;
}

/* Hover effect for story badge */
.atp-story-badge {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atp-story-badge:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.atp-story-badge:hover .atp-badge-plus {
  transform: rotate(90deg);
}

.atp-badge-plus {
  transition: transform 0.3s ease;
}

/* Learn more link hover animation */
.atp-learn-more span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.atp-learn-more:hover span {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .atp-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .atp-tab-item {
    display: inline-block;
    min-width: auto;
  }
}



.modal-xl {
  max-width: 95%;
}

.modal-content {
  border-radius: 16px;
}

  .header-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}



.header-link:hover {
  text-decoration: underline;
}

.social-links i {
  font-size: 18px;
  color: #fff;
}


.glass-quote {
  background: #A30000;
  backdrop-filter: blur(6px);
  color: #fff !important;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.glass-quote:hover {
  background: rgba(220, 53, 69, 1);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
  .top-bar {
    display: none !important;
  }
  .element {
    display: none !important;
  }

}

.footer-bg {
    background: hsl(356, 87%, 52%);
    width: 100%;
}

.footer-bottom {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.footer-bottom span {
    color: #ffc107;
}


.social-media{
  display:flex;
  gap:14px;
  margin-top:15px;
}

.social-media a{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.3s ease;
}

.social-media a:hover{
  transform:translateY(-4px);
  opacity:0.9;
}

.back-to-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e30613;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
}

.back-to-top:hover{
    opacity: 0.9;
}

.facebook{background:#1877f2;}
.instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);}
.youtube{background:#ff0000;}



/* FAB Icon Holder - SAME SIZE */
.fab-icon-holder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Icons inside buttons */
.fab-icon-holder img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Align items perfectly */
.fab-item {
  align-items: center;
}

/* Label styling */
.fab-label {
  margin-left: 12px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  white-space: nowrap;
}

/* Button colors */
.call-btn {
  background: #0d6efd; /* Bootstrap primary */
}

.whatsapp-btn {
  background: #25d366; /* WhatsApp green */
}

/* Responsive for mobile */
@media (max-width: 576px) {
  .fab-icon-holder {
    width: 46px;
    height: 46px;
  }

  .fab-icon-holder img {
    width: 45px;
    height: 45px;
  }

  .fab-label {
    font-size: 12px;
    padding: 5px 10px;
  }
}


      #mobileMenuOffcanvas a:hover {
        color: #dc3545 !important;
      }




        #desktopMenuModal a:hover {
          color: #dc3545 !important;
        }
        #desktopMenuModal .modal-dialog {
          display: flex;
          align-items: flex-start;
        }
    

.slider-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: visible;
    margin-bottom: 160px;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

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

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centered slide text */
.slide-content {
    background: rgba(0,0,0,0.4);
    height: 50%;
    width: 50%;
    border-radius: 18px;
    padding: 30px;
}

/* Bigger form */
.quote-overlay {
    position: absolute;
    left: 50%;
    bottom: -110px;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1100px;
    z-index: 20;
}

.quote-box {
    background: linear-gradient(135deg, #7a0000, #dc3545);
    color: #fff;
    border-radius: 18px;
}

/* Mobile */
@media (max-width: 767px) {
    .slider-container {
        min-height: 60vh;
        margin-bottom: 120px;
    }

    .slides-wrapper {
        height: 65vh;
    }

    .quote-overlay {
        width: 95%;
        bottom: -90px;
    }
    .slide-content {
    background: rgba(0,0,0,0.4);
    height: 30%;
    width: 80%;
    border-radius: 18px;
    padding: 30px;
}
}

/* Mobile view slider text fix */
@media (max-width: 576px) {
  .slide-content .fs-1 {
    font-size: 1.4rem !important; /* heading smaller */
    line-height: 1.3;
  }

  .slide-content .lead {
    font-size: 0.95rem; /* paragraph smaller */
  }

  .slide-content {
    
    padding: 0 10px;
  }
}




.service-img {
  max-height: 420px;       
  object-fit: cover;       
}




.faq-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #222;
}

.faq-question:hover {
    background: #fff5f5;
}

.faq-icon {
    width: 34px;
    height: 34px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: #6c757d;
    transition: all 0.4s ease;
}

.faq-card.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
    background: #198754;
}





.services-section {
  background: #fffaf2; 
  padding: 70px 0;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 15px;
  height: 100%;                
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE FIX */
.service-card img {
  width: 100%;
  height: 220px;               
  object-fit: cover;           
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TITLE */
.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: #222;
}

/* BUTTON */
.service-card .btn {
  margin-top: auto;
  border-radius: 30px;
  padding: 8px 22px;
}


@media (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
}


/* ===== Custom FAQ Styles ===== */
.faq-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #222;
}

.faq-question:hover {
    background: #fff5f5;
}

.faq-icon {
    width: 34px;
    height: 34px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: #6c757d;
    transition: all 0.4s ease;
}

.faq-card.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
    background: #198754;
}


.testimonial-wrapper {
  overflow-x: hidden;
}

.testimonial-row {
  flex-wrap: wrap;
}

/* Avatar */
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== MOBILE SLIDER ONLY ========== */
@media (max-width: 767px) {
  .testimonial-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .testimonial-row {
    flex-wrap: nowrap;
  }

  .testimonial-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .testimonial-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
}


    img {
    max-height: 520px;
    object-fit: cover;
}

