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

body {
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.stateimage{
  height: 210px;
  width: 260px;
}

.bg-danger {
  background-color: #8b0000 !important;
}

.text-danger {
  color: #8b0000 !important;
}

/* Improved Typography */
p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}

h5,
h6 {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Reduced Spacing for Better Layout */
.py-5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 1.25rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

/* Form Elements - Larger Font */
.form-control,
.form-select {
  font-size: 15px;
  padding: 0.65rem 0.85rem;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Buttons - Larger Text */
.btn {
  font-size: 15px;
  padding: 0.65rem 1.5rem;
  font-weight: 500;
}

.btn-lg {
  font-size: 16px;
  padding: 0.75rem 1.75rem;
}

/* Trust Badges - Larger Text */
.trust-badge small,
.badge small,
small {
  font-size: 13px;
}

.bg-footer {
  background: #1f2937;
  color: #ffffff;
}

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

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

ul,
li {
  list-style: none;
}

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

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

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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 Buttons */
/* Floating Container */
.floating-row {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1050;
}

/* FAB Button */
.fab-icon {
  width: 30px;
  height: 30px;
  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: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

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

.call-btn {
  background-color: #007bff;
}

.whatsapp-btn {
  background-color: #25d366;
}

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

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

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

/* ==========================================
   NEW NAVIGATION STYLES - BIGGER ELEMENTS
   ========================================== */

/* Top Navigation Bar */
.top-nav-bar {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  color: #fff;
  font-size: 14px;
  height: 30px;
  display: flex;
  align-items: center;
}

/* Company Name Moving Animation - CSS Only (No Marquee) */
.top-nav-company-wrapper {
  max-width: 300px;
  overflow: hidden;
  position: relative;
}

.top-nav-company-moving {
  display: inline-flex;
  animation: scroll-company-name 4s linear infinite;
}

.top-nav-company-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  padding-right: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes scroll-company-name {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover
.top-nav-company-wrapper:hover .top-nav-company-moving {
    animation-play-state: paused;
} */

.top-nav-links ul {
  margin: 0;
  padding: 0;
}

.top-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

.top-nav-link:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.top-nav-link i {
  font-size: 16px;
}

.top-nav-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 300;
}

/* Main Navigation Bar */
.main-navbar {
  padding: 0;
  transition: all 0.3s ease;
}

.main-nav-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  color: #8b0000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Phone Link - BIGGER */
.phone-link {
  background: transparent;
  padding: 8px 18px;
  transition: all 0.3s ease;
}

.phone-icon {
  /* font-size: 24px; */
  color: #8b0000;
}

.phone-number {
  /* font-size: 18px; */
  font-weight: 600;
  color: #8b0000;
  letter-spacing: 0.5px;
}

/* .phone-link:hover {
  background: #8b0000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
} */

/* z */

/* Track Shipment Button - BIGGER */
.btn-track {
  background: transparent;
  border: 2px solid #8b0000;
  color: #8b0000;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-track i {
  font-size: 18px;
}

.btn-track:hover {
  background: #8b0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(139, 0, 0, 0.3);
}

/* Request Quote Button - BIGGER */
.btn-quote {
  background: #8b0000;
  border: 2px solid #8b0000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.4);
}

/* Hamburger Menu Button - BIGGER & ALWAYS VISIBLE */
.hamburger-menu-btn {
  width: 38px;
  height: 30px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1050;
  transition: all 0.3s ease;
}

.hamburger-menu-btn span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #8b0000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

.hamburger-menu-btn:hover span {
  background-color: #b71c1c;
}

.hamburger-menu-btn:focus {
  outline: 2px solid #8b0000;
  outline-offset: 3px;
}

.hamburger-menu-btn:active span {
  background-color: #5a0c14;
}

/* ==========================================
   FULLSCREEN OFFCANVAS MENU
   ========================================== */

.fullscreen-menu {
  width: 100% !important;
  max-width: 100% !important;
}

.fullscreen-menu .offcanvas-header {
  background: #fff;
  padding: 20px 30px;
}

.fullscreen-menu-logo {
  height: 60px;
  width: auto;
}

.btn-close-custom {
  background: #8b0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.btn-close-custom:hover {
  background: #b71c1c;
  transform: scale(1.05);
}

.fullscreen-menu .offcanvas-body {
  background: #f8f9fa;
  overflow-y: auto;
}

/* Menu Section Heading */
.menu-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: #8b0000;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 3px solid #8b0000;
  margin-bottom: 0;
}

.menu-section-heading i {
  color: #8b0000;
  font-size: 20px;
}

/* Menu Section List */
.menu-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-section-list li {
  margin-bottom: 0;
}

.menu-section-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: #4b5563;
  text-decoration: none;
  font-size: 15px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: #fff;
  margin-bottom: 2px;
  border-radius: 4px;
}

.menu-section-link:hover {
  color: #8b0000;
  background: #fff5f5;
  border-left-color: #8b0000;
  padding-left: 20px;
}

.menu-section-link i {
  color: #8b0000;
  font-size: 16px;
}

.menu-section-link .bi-chevron-right {
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-section-link:hover .bi-chevron-right {
  opacity: 1;
}

/* CTA Link in Quick Links */
.menu-section-link-cta {
  background: #8b0000;
  color: #fff;
  border-left-color: #8b0000;
}

.menu-section-link-cta i {
  color: #fff;
}

.menu-section-link-cta:hover {
  background: #b71c1c;
  color: #fff;
}

/* Social Icon Buttons */
.social-icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8b0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: #1f2937;
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Buttons in Footer */
.fullscreen-menu .btn-outline-dark {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
}

.fullscreen-menu .btn-outline-dark:hover {
  background: #8b0000;
  border-color: #8b0000;
  color: #fff;
}

/* Sticky Navigation */
.main-navbar.sticky-top {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   RESPONSIVE NAVIGATION - LARGER SIZES
   ========================================== */

@media (max-width: 1199px) {
  .brand-name {
    font-size: 20px;
  }

  .main-nav-logo {
    height: 75px;
  }

  .phone-link {
    padding: 10px 20px;
  }

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

  .fullscreen-menu-logo {
    height: 50px;
  }
}

@media (max-width: 991px) {
  .top-nav-bar {
    font-size: 14px;
  }

  .top-nav-link {
    font-size: 14px;
    padding: 4px 0;
  }

  .top-nav-link i {
    font-size: 14px;
  }

  .main-nav-logo {
    height: 70px;
  }

  .brand-name {
    font-size: 18px;
  }

  .fullscreen-menu .offcanvas-body {
    padding: 20px !important;
  }

  .menu-section-heading {
    font-size: 16px;
  }

  .menu-section-link {
    padding: 9px 12px;
    font-size: 14px;
  }

  .fullscreen-menu-logo {
    height: 45px;
  }
}

@media (max-width: 767px) {
  .top-nav-bar {
    text-align: center;
  }

  .top-nav-bar .container {
    padding: 0;
  }

  .top-nav-bar .d-flex {
    justify-content: center;
  }

  .top-nav-company-wrapper {
    display: none !important;
  }

  .top-nav-links {
    margin: 0 auto;
  }

  .top-nav-links ul {
    justify-content: center;
    gap: 12px !important;
  }

  .top-nav-link span {
    display: none;
  }

  .top-nav-link i {
    font-size: 18px;
    margin: 0;
  }

  .top-nav-separator {
    display: none !important;
  }

  .main-nav-logo {
    height: 65px;
  }

  .hamburger-menu-btn {
    width: 36px;
    height: 28px;
  }

  .fullscreen-menu .row.g-4 {
    gap: 30px !important;
  }

  .menu-section-heading {
    font-size: 15px;
  }

  .fullscreen-menu-logo {
    height: 50px;
  }
}

@media (max-width: 575px) {
  .main-navbar .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .main-nav-logo {
    height: 65px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hamburger-menu-btn {
    width: 32px;
    height: 26px;
  }

  .hamburger-menu-btn span {
    height: 3px;
  }
}


/*NAVBAR STYLES */
/* Logos */
.nav-logo {
  height: 60px;
  width: auto;
}

.menu-logo {
  height: 50px;
  width: auto;
}

@media (min-width: 992px) {
  .menu-fullscreen .offcanvas-body {
    overflow: hidden;
  }
}

/* Menu Heading */
.menu-heading {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 3px solid #8b0000;
  margin-bottom: 0;
}

.menu-heading i {
  color: #8b0000;
}

/* Menu List */
.menu-list li a {
  display: block;
  padding: 8px 0;
  padding-left: 12px;
  color: #4b5563;
  text-decoration: none;
  font-size: 15px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.menu-list li a:hover {
  color: #8b0000;
  padding-left: 20px;
  border-left-color: #8b0000;
}

/* Quick Links */
.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-link:hover {
  background: #fef2f2;
  border-color: #8b0000;
  color: #8b0000;
  transform: translateX(5px);
}

.quick-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #6b7280;
  transition: all 0.2s ease;
}

.quick-link:hover .quick-icon {
  background: #8b0000;
  border-color: #8b0000;
  color: #fff;
}

/* CTA Quick Link */
.quick-link-cta {
  background: #8b0000;
  border-color: #8b0000;
  color: #fff;
}

.quick-link-cta .quick-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  color: #fff;
}

.quick-link-cta:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.quick-link-cta:hover .quick-icon {
  background: #fff;
  color: #8b0000;
}

/* Social Buttons */
.social-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8b0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: #1f2937;
  color: #fff;
  transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px) {
  .menu-heading {
    font-size: 15px;
  }

  .menu-list li a {
    font-size: 14px;
    padding: 7px 0;
    padding-left: 10px;
  }

  .quick-link {
    padding: 10px 14px;
  }

  .quick-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .nav-logo {
    height: 90px;
    width: 100%;
  }

  .menu-logo {
    height: 42px;
  }
}

/*Slider*/
.hero-slider {
  height: calc(100vh - 115px);
  min-height: 550px;
}

.slide-item {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.carousel-item.active .slide-bg {
  transform: scale(1.1);
}

.slide-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.slide-content-wrapper.fade-in {
  animation: contentFadeIn 1s ease-out;
}

@keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
}

.brand-accent {
  color: #dc2626;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.slider-nav-btn {
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.slider-nav-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: scale(1.15);
}

.carousel-indicators {
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  margin-bottom: 80px !important;
}

.carousel-indicators .active {
  width: 45px;
  border-radius: 5px;
  background: #dc2626;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.text-shadow-strong {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
  .hero-slider {
    height: 75vh;
    min-height: 500px;
  }

  .slider-nav-btn {
    width: 45px;
    height: 45px;
  }

  .slide-item::before {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%);
  }
}

@media (max-width: 576px) {
  .hero-slider {
    min-height: 450px;
  }
}

/*Form*/
.slider-form-container {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: -80px;
  z-index: 3;
}

@media (max-width: 768px) {
  .slider-form-container {
    margin-top: -35px;
  }

  .carousel-indicators [data-bs-target] {
    margin-bottom: 50px !important;
  }
}

.slider-form-header {
  background-color: #8b0000;
  padding: 10px 15px;
}

.slider-form-body {
  padding: 15px;
}

.slider-form-icon-wrap {
  position: relative;
}

.slider-form-icon-wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b0000;
  font-size: 14px;
}

.slider-form-icon-wrap .form-control {
  padding-left: 32px;
  font-size: 13px;
  height: 36px;
}

.slider-form-icon-wrap textarea.form-control {
  height: auto;
}

.slider-form-icon-wrap .form-control:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 0.15rem rgba(139, 0, 0, 0.2);
}

.slider-form-icon-wrap i.slider-form-ta-icon {
  top: 12px;
  transform: none;
}

.slider-form-btn-submit {
  background-color: #8b0000;
  border-color: #8b0000;
  font-size: 13px;
}

.slider-form-btn-submit:hover {
  background-color: #6b0000;
  border-color: #6b0000;
}

.slider-form-btn-clear {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #666;
  font-size: 13px;
}

.slider-form-btn-clear:hover {
  background-color: #f5f5f5;
  color: #000;
}

.slider-form-phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.slider-form-phone-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.slider-form-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Footer Section */

/* Footer Background */
.footer-bg {
  background-color: #2d3748;
}

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

/* Footer Overlay */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 39, 54, 0.95);
  z-index: 1;
}

/* 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 */
.footer-links li {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.892);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffbf00;
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.6rem;
  opacity: 0.7;
}

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

.contact-box:hover {
  background-color: rgba(0, 0, 0, 0.4);
  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 - Hero Style */

.breadcrumb-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #8b0000 0%, #4a0000 50%, #2d2d2d 100%);
  background-size: cover;
  background-position: center;
}

.breadcrumb-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(139, 0, 0, 0.9) 0%,
      rgba(45, 45, 45, 0.85) 100%);
  z-index: 1;
}

.breadcrumb-hero .container {
  position: relative;
  z-index: 2;
}

.content-area {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.page-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 0;
  font-weight: 400;
}

.accent-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-yellow) 0%,
      rgba(222, 213, 40, 0.3) 100%);
  margin-bottom: 1.25rem;
}

.breadcrumb-nav {
  background: #f8f9fa;
  padding: 0.875rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e9ecef;
}

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

/* Responsive Breadcrumb Hero */
@media (max-width: 991px) {
  .breadcrumb-hero {
    padding: 50px 0;
  }

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

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

@media (max-width: 767px) {
  .breadcrumb-hero {
    padding: 40px 0;
  }

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

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

  .accent-line {
    width: 80px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-hero {
    padding: 35px 0;
  }

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

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

  .accent-line {
    width: 70px;
    height: 2.5px;
  }
}

.breadcrumb-custom .breadcrumb-item {
  font-size: 0.9375rem;
  color: #495057;
}

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

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

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

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #adb5bd;
  padding: 0 0.625rem;
  font-weight: 400;
}

/* Service Pages - Common Styles */
.city-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.city-card:hover {
  transform: translateY(-5px);
  border-color: #8b0000;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.city-card i {
  font-size: 1.25rem;
}

.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.8) 50%,
      rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats .stat-item {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.quote-form-card {
  animation: fadeInRight 0.8s ease-out 0.3s both;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-form-card .form-control,
.quote-form-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

.quote-form-card .btn-danger {
  background: linear-gradient(135deg, #8b0000 0%, #c82333 100%);
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.quote-form-card .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

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

.service-detail-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .quote-form-card {
    margin-top: 30px;
  }
}

/* About Page - Achievements & Work Process */
.achievement-icon i,
.card:hover .achievement-icon i {
  transition: transform 0.3s ease;
}

.card:hover .achievement-icon i {
  transform: scale(1.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Service Pages & About Pages - Inline Style Replacements
   ============================================ */

/* Service Page Heading Styles */
.service-heading {
  color: #8b0000;
  font-size: 2rem;
}

.service-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.section-heading-primary {
  font-size: 2rem;
  color: #333;
}

/* Quote Form Styles */
.quote-form-border {
  border: 1px solid #e9ecef;
}

.quote-form-title {
  font-size: 1.5rem;
}

.quote-form-label {
  font-size: 14px;
  font-weight: 500;
}

.quote-form-input,
.quote-form-select {
  font-size: 15px;
}

.btn-quote-primary {
  background-color: #0c5c8c;
  border: none;
  padding: 0.75rem;
  font-size: 16px;
}

.btn-quote-primary:hover {
  background-color: #094567;
}

.trust-badge-text {
  font-size: 13px;
}

/* Process Step Badges */
.process-step-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* List Icon Bullets */
.list-bullet-icon {
  font-size: 0.5rem;
}

/* Progress Bar Timeline */
.progress-timeline {
  height: 50px;
}

.progress-step-20 {
  width: 20%;
}

.progress-step-30 {
  width: 30%;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
}

/* Achievement & Work Process Cards */
.achievement-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.achievement-heading {
  color: #8b0000;
  font-size: 2rem;
}

.achievement-stat {
  color: #8b0000;
  font-size: 2.25rem;
}

.achievement-description {
  font-size: 15px;
  font-weight: 500;
}

.recognition-card {
  border-left: 4px solid #8b0000;
}

.recognition-title {
  font-size: 1.15rem;
}

.recognition-description {
  font-size: 14px;
}

.stat-bar-gradient {
  background: linear-gradient(135deg, #8b0000 0%, #b02a37 100%);
}

.stat-bar-value {
  font-size: 1.75rem;
}

.stat-bar-label {
  font-size: 14px;
}

/* Work Process Styles */
.process-card {
  transition: transform 0.3s ease;
}

.process-step-circle {
  width: 60px;
  height: 60px;
  border: 3px solid #8b0000;
}

.process-step-number {
  color: #8b0000;
  font-size: 1.5rem;
}

.process-icon {
  color: #8b0000;
}

.process-title {
  font-size: 1.15rem;
}

.process-description {
  font-size: 15px;
  line-height: 1.6;
}

.process-card-border {
  border-top: 4px solid #8b0000;
}

.process-circle-small {
  width: 50px;
  height: 50px;
  background-color: rgba(220, 53, 69, 0.1);
}

.process-number-small {
  color: #8b0000;
  font-size: 1.25rem;
}

.highlight-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.highlight-title {
  color: #8b0000;
}

.check-icon {
  color: #28a745;
  font-size: 1.25rem;
}

.highlight-text {
  font-size: 15px;
}

/* ============================================
   Cities Coverage Section
   ============================================ */

.city-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  margin: 5px;
  transition: all 0.3s ease;
}

.city-badge:hover {
  background-color: #fff5f5;
  border-color: #8b0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
  color: #8b0000;
}

.city-badge i {
  font-size: 14px;
}

.city-badge-more {
  background-color: #8b0000;
  color: #fff;
  border-color: #8b0000;
  font-weight: 600;
}

.city-badge-more:hover {
  background-color: #b02a37;
  border-color: #b02a37;
  color: #fff;
  transform: translateY(-2px);
}

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

.network-badge {
  background-color: rgba(220, 53, 69, 0.1);
  color: #8b0000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 30px;
}

.cities-footer-text {
  margin-top: 40px;
  text-align: center;
  color: #6c757d;
  font-size: 15px;
}

.cities-footer-text a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 600;
}

.cities-footer-text a:hover {
  text-decoration: underline;
}

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

/* Operational Standards Section */
.operational-standards-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.standard-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.standard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.standard-card .icon-wrapper {
  transition: transform 0.3s ease;
}

.standard-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.operational-details {
  border-left: 4px solid var(--primary-red);
  background: linear-gradient(to right, #fff, #f8f9fa);
}

/* Continuous Improvement Section */
.continuous-improvement-section .card {
  transition: all 0.3s ease;
}

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

.improvement-icon {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
}

/* Identity Section */
.identity-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-red), var(--red));
  border-radius: 2px;
  margin-top: 10px;
}

.identity-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
}

.identity-features li {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.3s ease;
}

.identity-features li:hover {
  transform: translateX(5px);
  color: var(--primary-red);
}

.identity-features li i {
  font-size: 1.2rem;
}

.identity-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
}

.identity-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.identity-image-wrapper:hover::before {
  opacity: 1;
}

.identity-image-wrapper img {
  border-radius: 15px;
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
}

.identity-image-wrapper:hover img {
  transform: scale(1.05);
}

.commitment-excellence-card {
  margin-top: 3rem;
  position: relative;
}

.commitment-excellence-card .card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-left: 5px solid var(--primary-red);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.commitment-excellence-card .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.05), transparent);
  transition: left 0.6s ease;
}

.commitment-excellence-card .card:hover::before {
  left: 100%;
}

.commitment-excellence-card .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
  border-left-width: 8px;
}

.excellence-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
  transition: all 0.4s ease;
  animation: pulse 2s ease-in-out infinite;
}

.excellence-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.commitment-excellence-card .card:hover .excellence-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 5px 30px rgba(139, 0, 0, 0.5);
  }
}

.commitment-excellence-card h3 {
  color: #2c3e50;
  font-size: 1.75rem;
  position: relative;
}

.commitment-excellence-card p {
  color: #5a6c7d;
  line-height: 1.8;
}

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

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


/* Looking Ahead Section */
.looking-ahead-section .card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.company-profile-box {
  border-left: 5px solid var(--primary-red);
  background: linear-gradient(to right, #fff, #f8f9fa);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-stat {
  transition: all 0.3s ease;
}

.feature-stat:hover {
  transform: translateY(-5px);
}

.feature-stat i {
  transition: transform 0.3s ease;
}

.feature-stat:hover i {
  transform: rotate(360deg);
}

/* Company Values Section */
.company-values-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.value-card .card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.value-card .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-red), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card .card:hover::before {
  transform: scaleX(1);
}

.value-card .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Responsive Design for About Page Sections */
@media (max-width: 991px) {
  .identity-content {
    margin-bottom: 30px;
  }

  .operational-standards-section h2 {
    font-size: 1.75rem;
  }

  .identity-section h2 {
    font-size: 1.75rem;
  }

  .commitment-excellence-card h3 {
    font-size: 1.5rem;
  }

  .excellence-icon {
    width: 70px;
    height: 70px;
  }

  .excellence-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .standard-card {
    margin-bottom: 15px;
  }

  .operational-standards-section .lead {
    font-size: 1rem;
  }

  .improvement-icon {
    padding: 15px;
  }

  .improvement-icon i {
    font-size: 2rem;
  }

  .identity-section .card .row {
    flex-direction: column-reverse;
  }

  .feature-stat h3 {
    font-size: 1.5rem;
  }

  .value-card {
    margin-bottom: 20px;
  }

  .commitment-excellence-card {
    margin-top: 2rem;
  }

  .commitment-excellence-card .card-body {
    padding: 2rem 1.5rem !important;
  }

  .commitment-excellence-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem !important;
  }

  .commitment-excellence-card p {
    font-size: 0.95rem;
  }

  .excellence-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .excellence-icon i {
    font-size: 1.75rem;
  }

  .identity-features li {
    font-size: 0.95rem;
  }

  .identity-content p {
    font-size: 1rem;
  }

  .identity-image-wrapper {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575px) {

  .operational-standards-section h2,
  .continuous-improvement-section h2,
  .identity-section h2,
  .looking-ahead-section h2,
  .company-values-section h2 {
    font-size: 1.5rem;
  }

  .standard-card h5 {
    font-size: 1rem;
  }

  .standard-card .icon-wrapper i {
    font-size: 2rem;
  }

  .company-profile-box {
    padding: 20px;
  }

  .value-icon i {
    font-size: 2rem;
  }
}

.operational-standards-section h2,
.continuous-improvement-section h2,
.identity-section h2,
.looking-ahead-section h2,
.company-values-section h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.operational-standards-section p,
.continuous-improvement-section p,
.identity-section p,
.looking-ahead-section p,
.company-values-section p {
  color: #6c757d;
  line-height: 1.8;
}

/* Print Styles */
@media print {

  .operational-standards-section,
  .continuous-improvement-section,
  .identity-section,
  .looking-ahead-section,
  .company-values-section {
    page-break-inside: avoid;
  }

  .standard-card,
  .value-card {
    box-shadow: none;
  }
}

/* Performance Optimization - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .standard-card,
  .value-card .card,
  .identity-image img,
  .feature-stat,
  .continuous-improvement-section .card {
    transition: none;
  }

  .standard-card:hover,
  .value-card .card:hover,
  .identity-image img:hover,
  .feature-stat:hover,
  .continuous-improvement-section .card:hover {
    transform: none;
  }
}

/* ===================================
   About Section Pages - Additional Styles
   =================================== */

/* Awards Page */
.award-card {
  transition: all 0.3s ease;
}

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

.award-icon {
  transition: transform 0.3s ease;
}

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

/* Careers Page */
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: #fff;
  color: #8b0000;
  border: 3px solid #8b0000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.culture-icon {
  transition: transform 0.3s ease;
}

.culture-icon:hover {
  transform: scale(1.1);
}

/* FAQ Page */
.nav-pills .nav-link {
  color: #666;
  border-radius: 50px;
  padding: 10px 20px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background-color: #f8f9fa;
}

.nav-pills .nav-link.active {
  background-color: #8b0000;
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: #8b0000;
  color: #fff;
}

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

/* IBA Approved Page */
.bank-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.bank-card:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Testimonials Page */
.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.stat-card {
  transition: transform 0.3s ease;
}

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

.video-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-placeholder:hover img {
  transform: scale(1.05);
}

.video-placeholder i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover i {
  opacity: 1;
}

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

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

/* Why Choose Us Page */
.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card:hover .icon-box {
  transform: rotate(5deg) scale(1.05);
}

.service-feature {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-feature:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-feature i {
  transition: transform 0.3s ease;
}

.service-feature:hover i {
  transform: scale(1.1);
}

.counter-item {
  padding: 20px;
}

.certification-list .fa-2x {
  flex-shrink: 0;
}

/* Common Utility Classes */
.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #ffc107);
  margin: 0 auto;
}

.step-number-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.approach-steps .step-item {
  transition: transform 0.3s ease;
}

.approach-steps .step-item:hover {
  transform: translateX(10px);
}

.approach-steps .step-item:hover .step-number-badge {
  transform: scale(1.1);
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .nav-pills {
    flex-wrap: wrap;
  }

  .nav-pills .nav-link {
    margin: 5px;
    font-size: 0.9rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .display-3 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-box i {
    font-size: 2rem;
  }

  .video-placeholder img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-hero .page-title {
    font-size: 1.8rem;
  }

  .breadcrumb-hero .page-description {
    font-size: 0.95rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4,
  h5 {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .avatar-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {

  .breadcrumb-nav,
  .btn,
  .nav-pills {
    display: none;
  }

  .breadcrumb-hero {
    background: #fff;
    color: #000;
  }

  .card {
    box-shadow: none;
    border: 1px solid #dee2e6;
  }
}

.footer-dark {
  background-color: #222222;
}

.footer-dark a {
  text-decoration: none;
  color: #cbd5e0;
  transition: color 0.3s ease;
}

.footer-dark a:hover {
  color: #ff0000 !important;
  text-decoration: underline !important;
}

.footer-dark h5,
.footer-dark h6 {
  color: #ffffff;
}

.footer-dark .text-light-emphasis {
  color: #cbd5e0;
}

.footer-logo {
  max-height: 60px;
  width: auto;
}

.footer-dark .btn-outline-light {
  border-color: #718096;
  color: #cbd5e0;
}

.footer-dark .btn-outline-light:hover {
  background-color: #00000098;
  border-color: #ffffff;
  color: #ffffff;
}

.footer-dark .badge {
  background-color: #4a5568;
  color: #e2e8f0;
}

.footer-dark .border-secondary {
  border-color: #4a5568;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer Responsive */
@media (max-width: 991px) {
  .footer-dark .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {

  .footer-dark h5,
  .footer-dark h6 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-dark .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer-logo {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .footer-dark .py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-dark .d-flex.gap-3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* HOME PAGE STYLES */

/* About Section */
.section-padding {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

.badge-custom {
  background: #ffe5e5;
  color: #8b0000;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
}

.heading-primary {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-primary .text-red {
  color: #8b0000;
}

.text-muted-custom {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.7;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.achievement-item i {
  color: #8b0000;
  font-size: 18px;
}

.achievement-item span {
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.gradient-card-red {
  background: linear-gradient(135deg, #8b0000, #c82333);
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
  margin-bottom: 15px;
}

.card-white {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.card-white:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.icon-box-white {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.2);
}

.icon-box-red {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #ffe5e5;
  color: #8b0000;
}

.card-title {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.card-text-muted {
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.gradient-card-red h3 {
  font-weight: 700;
  font-size: 1.25rem;
}

.gradient-card-red p {
  opacity: 0.9;
  font-size: 0.875rem;
}

/* Services Section - New Design */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

.section-badge {
  background: #ffe5e5;
  color: #8b0000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header-services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.section-header-services p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service Box - Horizontal Design */
.service-box {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 70px;
}

.service-box:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
}

.service-icon-wrapper {
  background: #8b0000;
  color: white;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 70px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-box:hover .service-icon-wrapper {
  background: #c82333;
}

.service-icon-wrapper i {
  font-size: 24px;
}

.service-text {
  flex-grow: 1;
  padding: 0 20px;
  font-size: 17px;
  font-weight: 600;
  color: #212529;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #8b0000 0%, #c82333 100%);
  transition: width 0.4s ease-in-out;
  z-index: 1;
}

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

.service-box:hover .service-text {
  color: white;
}

.service-box:hover .service-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
}

/* Map Wrapper */
.map-wrapper {
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
}

.cta-btn-services {
  padding: 15px 40px;
  border-radius: 12px;
  background: #8b0000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.cta-btn-services:hover {
  background: #c82333;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
  color: #fff;
}

/* ARC Packers and Movers - Process Section */

.process-section {
  background: #8b0000;
  min-height: 300px;
  max-height: 400px;
}

.process-section .circle {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-section .circle.c1 {
  width: 150px;
  height: 150px;
  top: 20px;
  left: 20px;
}

.process-section .circle.c2 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 35%;
}

.process-section .circle.c3 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  right: -30px;
}

.process-badge {
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  letter-spacing: 1px;
}

.text-white-85 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-40 {
  color: rgba(255, 255, 255, 0.40) !important;
}

.text-arc-red {
  color: #dc2626 !important;
}

.process-card {
  background: #212529;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: #dc2626;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.process-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.process-connector {
  width: 24px;
  height: 2px;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.arc-highlight {
  color: #ffc107;
}

@media (max-width: 992px) {
  .process-section {
    max-height: none;
  }

  .process-connector {
    display: none;
  }
}

/* Why Us Section */
.why-us-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-soft-bg {
  position: absolute;
  top: 0;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%,
      rgba(220, 53, 69, 0.08),
      transparent 60%);
  filter: blur(12px);
  z-index: 0;
}

.why-badge {
  background: #ffe5e5;
  color: #d62828;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
}

.why-title {
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 18px 0 12px 0;
}

.why-title .text-red {
  color: #d62828;
}

.why-text {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.why-pill {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 14px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.why-pill i {
  color: #d62828;
}

.why-exp {
  background: linear-gradient(135deg, #d62828, #c02020);
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 18px 38px rgba(214, 40, 40, 0.25);
}

.why-exp .years {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.why-exp small {
  opacity: 0.85;
}

.why-card {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  height: 100%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d62828, #c02020);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(214, 40, 40, 0.3);
}

.why-card h6 {
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.why-card p {
  color: #4b5563;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  padding: 40px 0;
  background: #670009;
  position: relative;
  overflow: hidden;
}

.bg-blur {
  position: absolute;
  border-radius: 50%;
  background: rgb(255, 0, 25);
  filter: blur(90px);
}

.stat-card {
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(220, 53, 69, 0.08);
  transition: 0.4s;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(220, 53, 69, 0.18);
  border-color: rgba(220, 53, 69, 0.35);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: rgba(220, 53, 69, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #8b0000;
  transition: 0.3s;
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, #8b0000, #c82333);
  color: #fff;
  transform: scale(1.15);
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: #8b0000;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testi-blur {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.08);
  filter: blur(90px);
  bottom: 0;
  left: 0;
}

.testi-card {
  transition: 0.35s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(220, 53, 69, 0.16);
  border-color: rgba(220, 53, 69, 0.35);
}

.testi-quote {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 40px;
  color: rgba(220, 53, 69, 0.2);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b0000, #c82333);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b0000, #c82333);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f8f9fa;
  margin-left: -10px;
}

/* Additional Home Page Classes */
.why-us-container {
  z-index: 1;
}

.why-exp-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.4);
}

.bg-blur-top-right {
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
}

.bg-blur-bottom-left {
  bottom: 0;
  left: 0;
  width: 380px;
  height: 380px;
}

.stats-badge {
  background: rgba(0, 0, 0, 0.451);
  color: #ffffff;
  border: none;
}

.testimonials-badge {
  background: rgba(220, 53, 69, 0.12);
  color: #8b0000;
  border: none;
}

.testi-card {
  border-color: rgba(220, 53, 69, 0.15);
}

.trust-avatars-container {
  margin-right: 6px;
}

/* About Section Image */
.about-image-wrapper {
  animation: fadeInRight 0.8s ease;
}

.about-image-wrapper img {
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Hover Lift Effect */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Icon Box Styles */
.icon-box-red {
  background: linear-gradient(135deg, #8b0000 0%, #c82333 100%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Gradient Card */
.gradient-card-red {
  background: linear-gradient(135deg, #8b0000 0%, #bd2130 100%);
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
  transition: all 0.3s ease;
}

.gradient-card-red:hover {
  box-shadow: 0 12px 32px rgba(220, 53, 69, 0.4);
  transform: translateY(-5px);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Home Page Responsive Styles */
@media (max-width: 992px) {
  .process-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-header-services h2 {
    font-size: 2rem;
  }

  .section-header-services p {
    font-size: 1rem;
  }

  .heading-primary {
    font-size: 1.75rem;
  }

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



  .booking-form .btn-light {
    margin-top: 1rem;
  }

  .service-box {
    height: auto;
    min-height: 60px;
  }

  .service-text {
    font-size: 15px;
    padding: 15px;
  }

  .service-icon-wrapper {
    min-width: 60px;
    height: 60px;
  }

  .map-wrapper {
    margin-top: 2rem;
    padding: 15px;
  }

  .map-wrapper img {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .service-box {
    height: auto;
  }

  .service-text {
    font-size: 14px;
  }

  .section-header-services h2 {
    font-size: 1.5rem;
  }
}

/* Base FAB wrapper */
.fab-wrapper {
  position: fixed;
  left: 12px;
  z-index: 9999;
}

/* Shared button style (same on mobile & desktop) */
.fab-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  /* minimum height */
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  /* IMPORTANT FIX */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

/* ICON FIX (THIS SOLVES IT) */
.fab-icon {
  font-size: 16px;
  line-height: 1;
  /* IMPORTANT */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  /* IMPORTANT */
}

/* Call button */
.fab-call {
  bottom: 90px;
}

.fab-call a {
  background: linear-gradient(135deg, #dc3545, #b02a37);
}

/* WhatsApp button */
.fab-whatsapp {
  bottom: 35px;
}

.fab-whatsapp a {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Subtle hover */
.fab-wrapper a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FOOTER STYLES - Fully Responsive
   ======================================== */

/* Footer Base Styling */
.footer-dark {
  position: relative;
  overflow: hidden;
}

.footer-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Footer Links Styling */
.footer-links {
  padding-right: 10px;
}

/* Footer Link Hover Effects */
.footer-link {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  padding-left: 5px;
}

.footer-link:hover {
  color: #ffd700 !important;
  padding-left: 10px;
}

.footer-link i {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-link:hover i {
  opacity: 1;
}

/* Footer Contact Links */
.footer-contact-link {
  transition: all 0.3s ease;
  word-break: break-word;
}

.footer-contact-link:hover {
  color: #ffd700 !important;
  text-decoration: underline !important;
}

/* Footer Social Icons */
.footer-social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  padding: 0;
}

.footer-social-icon:hover {
  background-color: #fff !important;
  color: #b11226 !important;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer Cities Badges */
.footer-dark .badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.footer-dark .badge:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom Links */
.footer-bottom-link {
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.footer-bottom-link:hover::after {
  width: 100%;
}

.footer-bottom-link:hover {
  color: #ffd700 !important;
}

/* Footer Section Headings */
.footer-dark h5 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px !important;
}

.footer-dark h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, transparent);
  border-radius: 2px;
}

/* Footer Company Logo/Name */
.footer-dark h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {

  .footer-dark .col-lg-3,
  .footer-dark .col-lg-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Tablets and Medium Devices (768px to 991px) */
@media (max-width: 991px) {
  .footer-dark h5 {
    font-size: 1.1rem;
    margin-bottom: 15px !important;
  }

  .footer-dark h3 {
    font-size: 1.5rem;
  }

  .footer-links {
    max-height: 300px;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
  }
}

/* Small Tablets (768px and below) */
@media (max-width: 767px) {
  .footer-dark .row>div {
    margin-bottom: 30px;
  }

  .footer-dark .row>div:last-child {
    margin-bottom: 0;
  }

  .footer-dark h5::after {
    width: 40px;
    height: 2px;
  }

  .footer-bottom-link {
    font-size: 0.85rem;
  }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
  .footer-dark h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .footer-dark h5 {
    font-size: 1rem;
    text-align: center;
  }

  .footer-dark h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-dark p,
  .footer-dark ul {
    text-align: center;
  }

  .footer-dark .d-flex.gap-2 {
    justify-content: center !important;
  }

  .footer-links {
    max-height: 250px;
    padding-right: 0;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .footer-social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .footer-contact-link {
    font-size: 0.85rem;
  }

  .footer-dark .badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .footer-dark .mb-3 {
    justify-content: center !important;
    text-align: center;
  }

  .footer-bottom-link {
    font-size: 0.8rem;
  }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
  .footer-dark h3 {
    font-size: 1.1rem;
  }

  .footer-dark h5 {
    font-size: 0.95rem;
  }

  .footer-link {
    font-size: 0.75rem;
  }

  .footer-dark .badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .footer-social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .footer-dark {
    background: #fff !important;
    color: #000 !important;
  }

  .footer-dark a {
    color: #000 !important;
  }

  .footer-social-icon {
    display: none;
  }
}

/* Smooth Scrolling for Footer Links */
.footer-links li a {
  scroll-behavior: smooth;
}

/* Accessibility: Focus States */
.footer-link:focus,
.footer-contact-link:focus,
.footer-social-icon:focus,
.footer-bottom-link:focus {
  outline: 2px solid #ffd700;
  outline-offset: 3px;
  border-radius: 3px;
}

/* Loading Animation for Footer (Optional) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-dark .row>div {
  animation: fadeInUp 0.6s ease-out backwards;
}

.footer-dark .row>div:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-dark .row>div:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-dark .row>div:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-dark .row>div:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-dark .row>div:nth-child(5) {
  animation-delay: 0.5s;
}


/* ========================================
   TEMPLATE COMPONENT STYLES
   ======================================== */

/* Topbar Background */
.topbar-bg {
  background: #f3f3f3;
}

/* Footer Gradient Background */
.footer-gradient {
  background: linear-gradient(135deg, #7a0f1a, #b11226, #5a0c14);
  color: #fff;
}

/* Footer Container Max Width */
.footer-container {
  max-width: 1400px;
}

/* Home Page Icon Circles */
.icon-circle-danger {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

/* Home Page Flex Box */
.flex-width-300 {
  width: 300px;
}

/* Modal Styles */
.modal-rounded {
  border-radius: 15px;
  overflow: hidden;
}

.modal-gradient-red {
  background: linear-gradient(107.2deg, rgb(150, 15, 15) 10.6%, rgb(247, 0, 0) 91.1%);
}

.modal-title-white {
  color: white;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.modal-close-red {
  color: red;
  font-size: 30px;
  margin-right: 15px;
}

.label-white {
  color: white;
  display: block;
}

.file-input-white {
  color: white;
}

/* Button Styles */
.btn-warning-custom {
  background-color: #FBA707;
  border: none;
  color: white;
}

.btn-warning-custom:hover {
  background-color: #e09506;
  color: white;
}

.btn-clear-custom {
  background-color: white;
  color: #A0A0A0;
  border: 1px solid #ddd;
}

.btn-clear-custom:hover {
  background-color: #f8f9fa;
  color: #666;
}

.btn-orange-custom {
  background: #f4854a;
  color: white;
  border: none;
  width: 100%;
  font-size: 100%;
  font-weight: bold;
}

.btn-orange-custom:hover {
  background: #e07439;
  color: white;
}

/* Review Card Styles */
.review-name-badge {
  color: white;
  background-color: black;
  padding: 5px;
  border-radius: 5px;
}

.review-star-saver {
  color: black;
}

.review-title-bold {
  font-weight: bold;
  color: black;
  margin-top: 5px;
}

.review-text-black {
  color: black;
}

.review-email-bold {
  font-weight: bold;
  color: black;
}

.review-date-yellow {
  color: #fab504;
}

.review-reply-section {
  padding-top: 20px;
  color: black;
}

.review-reply-bold {
  font-weight: bold;
}

.review-reply-text {
  text-align: right;
}

/* Breadcrumb Background */
.site-breadcrumb-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Feature Section Background */
.feature-bg-location {
  min-height: 50vh;
  background-image: url('../images/location/location-background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Search Container Padding */
.search-container-padding {
  padding: 70px 20px 200px 20px;
}

/* Alert and Status Messages */
.alert-loading {
  color: red;
}

.alert-success-text {
  color: green;
}

.validation-error-bg {
  background: red !important;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

/* Email Template Styles */
.email-template-box {
  padding: 30px;
  background: #e6e6e6;
  font-size: 18px !important;
  border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .flex-width-300 {
    width: 100%;
  }

  .icon-circle-danger {
    width: 40px;
    height: 40px;
  }

  .search-container-padding {
    padding: 40px 15px 100px 15px;
  }
}

@media (max-width: 576px) {
  .modal-title-white {
    font-size: 18px;
  }

  .modal-close-red {
    font-size: 24px;
    margin-right: 10px;
  }
}



/* ==========================================
   PET RELOCATION PAGE STYLES
   ========================================== */

/* Hero Section */
.pet-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.pet-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>");
  background-size: cover;
  opacity: 0.3;
}

.pet-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pet-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.pet-hero-features {
  color: #fff;
  font-size: 1.05rem;
}

.pet-hero-features i {
  font-size: 1.2rem;
}

.pet-hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.pet-hero-image {
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.pet-hero-image:hover {
  transform: scale(1.02);
}

/* Breadcrumb Navigation */
.pet-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.pet-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.pet-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pet-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.pet-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.pet-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* Content Section */
.pet-content-section {
  background: #f8f9fa;
}

/* About Card */
.pet-about-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pet-about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.pet-about-image-wrapper img {
  transition: transform 0.3s ease;
}

.pet-about-image-wrapper:hover img {
  transform: scale(1.05);
}

.pet-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.pet-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.pet-content-text p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pet-content-text .lead {
  font-size: 1.15rem;
  color: #374151;
  font-weight: 500;
}

/* Why Choose Us */
.pet-why-choose {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pet-subsection-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pet-feature-item {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #8b0000;
  transition: all 0.3s ease;
}

.pet-feature-item:hover {
  background: #fff5f5;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.pet-feature-item i {
  color: #8b0000;
  font-size: 32px;
  flex-shrink: 0;
}

.pet-feature-item h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pet-feature-item p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Enhanced Feature Items */
.pet-feature-item-enhanced {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pet-feature-item-enhanced:hover {
  border-color: #8b0000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
}

.pet-feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.pet-feature-item-enhanced h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.pet-feature-item-enhanced p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Process Card */
.pet-process-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pet-process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pet-step {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.pet-step:hover {
  background: #fff5f5;
  transform: translateX(5px);
}

.pet-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pet-step-content h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pet-step-content p {
  color: #6b7280;
  margin-bottom: 0;
}

/* Services Included */
.pet-services-included {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pet-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pet-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #374151;
  font-size: 1.05rem;
  border-bottom: 1px solid #f3f4f6;
}

.pet-checklist li:last-child {
  border-bottom: none;
}

.pet-checklist li i {
  color: #22c55e;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Contact Form */
.pet-contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.sticky-form {
  position: sticky;
  top: 100px;
}

.pet-form-header {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  padding: 2rem;
  color: #fff;
}

.pet-form-header h4 {
  font-weight: 700;
  font-size: 1.5rem;
}

.pet-form-header p {
  opacity: 0.95;
  font-size: 0.95rem;
}

.pet-form-body {
  padding: 2rem;
}

.pet-form-body .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.pet-form-body .form-control,
.pet-form-body .form-select {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pet-form-body .form-control:focus,
.pet-form-body .form-select:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.pet-submit-btn {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  border: none;
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pet-submit-btn:hover {
  background: linear-gradient(135deg, #b71c1c, #8b0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.3);
}

/* Contact Info */
.pet-contact-info {
  padding: 0 2rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.pet-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f3f4f6;
}

.pet-info-item:last-child {
  border-bottom: none;
}

.pet-info-item i {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  color: #8b0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pet-info-item small {
  display: block;
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.pet-info-item a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pet-info-item a:hover {
  color: #8b0000;
}

/* Features Section */
.pet-features-section {
  background: #fff;
}

.pet-badge {
  display: inline-block;
  background: #fef2f2;
  color: #8b0000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.pet-features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pet-features-subtitle {
  color: #6b7280;
  font-size: 1.15rem;
}

.pet-feature-card {
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

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

.pet-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #8b0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.pet-feature-card:hover .pet-feature-icon {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  color: #fff;
  transform: scale(1.1);
}

.pet-feature-card h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.pet-feature-card p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.pet-cta-section {
  background: #f8f9fa;
  padding: 60px 0;
}

/* Pet Gallery Section */
.pet-gallery-section {
  position: relative;
}

.pet-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.pet-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pet-gallery-item:hover img {
  transform: scale(1.1);
}

.pet-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pet-gallery-item:hover .pet-gallery-overlay {
  opacity: 1;
}

.pet-gallery-overlay i {
  font-size: 3rem;
  color: #fff;
  animation: heartbeat 1s infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.pet-cta-card {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
}

.pet-cta-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pet-cta-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.pet-cta-btn {
  background: #fff;
  color: #8b0000;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pet-cta-btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.pet-cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pet-cta-btn-secondary:hover {
  background: #fff;
  color: #8b0000;
  transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE PET RELOCATION PAGE
   ========================================== */

@media (max-width: 991px) {
  .pet-hero-title {
    font-size: 2.5rem;
  }

  .pet-hero-subtitle {
    font-size: 1.1rem;
  }

  .pet-section-title {
    font-size: 1.75rem;
  }

  .pet-subsection-title {
    font-size: 1.5rem;
  }

  .pet-features-title {
    font-size: 2rem;
  }

  .sticky-form {
    position: static;
  }
}

@media (max-width: 767px) {
  .pet-hero-section {
    padding: 40px 0;
  }

  .pet-hero-title {
    font-size: 2rem;
  }

  .pet-hero-subtitle {
    font-size: 1rem;
  }

  .pet-about-card,
  .pet-why-choose,
  .pet-process-card,
  .pet-services-included {
    padding: 1.5rem;
  }

  .pet-section-title {
    font-size: 1.5rem;
  }

  .pet-subsection-title {
    font-size: 1.35rem;
  }

  .pet-feature-item {
    padding: 15px;
  }

  .pet-step {
    flex-direction: column;
    text-align: center;
  }

  .pet-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin: 0 auto;
  }

  .pet-features-title {
    font-size: 1.75rem;
  }

  .pet-feature-card {
    padding: 1.5rem;
  }

  .pet-cta-card {
    padding: 2rem;
    text-align: center;
  }

  .pet-cta-title {
    font-size: 1.5rem;
  }

  .pet-cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .pet-cta-btn,
  .pet-cta-btn-secondary {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

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

  .pet-icon-box {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .pet-form-body {
    padding: 1.5rem;
  }

  .pet-contact-info {
    padding: 0 1.5rem 1.5rem;
  }
}

/* ==========================================
   PACKERS MOVERS PAGE STYLES
   ========================================== */

/* Hero Section */
.pm-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pm-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.pm-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

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

.pm-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pm-hero-title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pm-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.35rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.pm-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pm-hero-features li {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-hero-features li i {
  color: #ffd700;
  font-size: 1.3rem;
}

.pm-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.pm-btn-primary {
  background: #fff;
  color: #8b0000;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pm-btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.pm-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pm-btn-secondary:hover {
  background: #fff;
  color: #8b0000;
  transform: translateY(-2px);
}

.pm-hero-image {
  position: relative;
  z-index: 2;
}

.pm-hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb */
.pm-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.pm-breadcrumb-nav .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.pm-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pm-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.pm-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.pm-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* Content Section */
.pm-content-section {
  background: #f8f9fa;
}

/* About Card */
.pm-about-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pm-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.pm-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.pm-content-text p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pm-content-text .lead {
  font-size: 1.15rem;
  color: #374151;
  font-weight: 500;
}

.pm-content-text strong {
  color: #8b0000;
  font-weight: 600;
}

/* Services Card */
.pm-services-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pm-subsection-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pm-service-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid #8b0000;
}

.pm-service-item:hover {
  background: #fff5f5;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
}

.pm-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 1rem;
}

.pm-service-content h4 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.pm-service-content p {
  color: #6b7280;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pm-service-link {
  color: #8b0000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.pm-service-link:hover {
  color: #b71c1c;
  gap: 8px;
}

.pm-service-link i {
  transition: transform 0.3s ease;
}

.pm-service-link:hover i {
  transform: translateX(5px);
}

/* Why Choose Us */
.pm-why-choose {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pm-feature-item {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #8b0000;
  transition: all 0.3s ease;
}

.pm-feature-item:hover {
  background: #fff5f5;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.pm-feature-item i {
  color: #8b0000;
  font-size: 32px;
  flex-shrink: 0;
}

.pm-feature-item h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pm-feature-item p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Process Card */
.pm-process-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pm-process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pm-step {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.pm-step:hover {
  background: #fff5f5;
  transform: translateX(5px);
}

.pm-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.pm-step-content h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pm-step-content p {
  color: #6b7280;
  margin-bottom: 0;
}

/* Service Areas */
.pm-service-areas {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pm-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 1.5rem;
}

.pm-area-link {
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pm-area-link:hover {
  background: #8b0000;
  color: #fff;
  border-color: #8b0000;
  transform: translateY(-2px);
}

/* Contact Form */
.pm-contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.sticky-form {
  position: sticky;
  top: 100px;
}

.pm-form-header {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  padding: 2rem;
  color: #fff;
}

.pm-form-header h4 {
  font-weight: 700;
  font-size: 1.5rem;
}

.pm-form-header p {
  opacity: 0.95;
  font-size: 0.95rem;
}

.pm-form-body {
  padding: 2rem;
}

.pm-form-body .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.pm-form-body .form-control,
.pm-form-body .form-select {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pm-form-body .form-control:focus,
.pm-form-body .form-select:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.pm-submit-btn {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  border: none;
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pm-submit-btn:hover {
  background: linear-gradient(135deg, #b71c1c, #8b0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.3);
}

/* Contact Info */
.pm-contact-info {
  padding: 0 2rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.pm-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f3f4f6;
}

.pm-info-item:last-child {
  border-bottom: none;
}

.pm-info-item i {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  color: #8b0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pm-info-item small {
  display: block;
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.pm-info-item a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pm-info-item a:hover {
  color: #8b0000;
}

.pm-info-item span {
  color: #1f2937;
  font-weight: 600;
}

/* Features Section */
.pm-features-section {
  background: #fff;
}

.pm-features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pm-features-subtitle {
  color: #6b7280;
  font-size: 1.15rem;
}

.pm-feature-card {
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

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

.pm-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #8b0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.pm-feature-card:hover .pm-feature-icon {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  color: #fff;
  transform: scale(1.1);
}

.pm-feature-card h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.pm-feature-card p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.pm-cta-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.pm-cta-card {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
}

.pm-cta-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pm-cta-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.pm-cta-btn {
  background: #fff;
  color: #8b0000;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pm-cta-btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.pm-cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pm-cta-btn-secondary:hover {
  background: #fff;
  color: #8b0000;
  transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE PACKERS MOVERS PAGE
   ========================================== */

@media (max-width: 991px) {
  .pm-hero-section {
    padding: 60px 0;
  }

  .pm-hero-title {
    font-size: 2.5rem;
  }

  .pm-hero-subtitle {
    font-size: 1.1rem;
  }

  .pm-section-title {
    font-size: 1.75rem;
  }

  .pm-subsection-title {
    font-size: 1.5rem;
  }

  .pm-features-title {
    font-size: 2rem;
  }

  .sticky-form {
    position: static;
    margin-top: 2rem;
  }

  .pm-hero-buttons {
    flex-direction: column;
  }

  .pm-btn-primary,
  .pm-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .pm-hero-section {
    padding: 40px 0;
  }

  .pm-hero-title {
    font-size: 2rem;
  }

  .pm-hero-subtitle {
    font-size: 1rem;
  }

  .pm-hero-features li {
    font-size: 1rem;
  }

  .pm-about-card,
  .pm-services-card,
  .pm-why-choose,
  .pm-process-card,
  .pm-service-areas {
    padding: 1.5rem;
  }

  .pm-section-title {
    font-size: 1.5rem;
  }

  .pm-subsection-title {
    font-size: 1.35rem;
  }

  .pm-service-item,
  .pm-feature-item {
    padding: 15px;
  }

  .pm-step {
    flex-direction: column;
    text-align: center;
  }

  .pm-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin: 0 auto;
  }

  .pm-areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .pm-features-title {
    font-size: 1.75rem;
  }

  .pm-feature-card {
    padding: 1.5rem;
  }

  .pm-cta-card {
    padding: 2rem;
    text-align: center;
  }

  .pm-cta-title {
    font-size: 1.5rem;
  }

  .pm-cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .pm-cta-btn,
  .pm-cta-btn-secondary {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

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

  .pm-icon-box {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .pm-service-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .pm-form-body {
    padding: 1.5rem;
  }

  .pm-contact-info {
    padding: 0 1.5rem 1.5rem;
  }

  .pm-areas-grid {
    grid-template-columns: 1fr;
  }

  .process-carddds {
    width: 300px !important;

  }
}

/* ==========================================
   PET RELOCATION QUOTE FORM (NEW DESIGN)
   ========================================== */

.pet-quote-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.pet-quote-form-header {
  background: #fff;
  padding: 1.75rem 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.pet-quote-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.pet-quote-form-body {
  padding: 1.25rem;
}

.pet-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
  display: block;
}

.pet-form-input,
.pet-form-select {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  color: #374151;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
}

.pet-form-input:focus,
.pet-form-select:focus {
  border-color: #0369a1;
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1);
  outline: none;
}

.pet-form-input::placeholder {
  color: #9ca3af;
}

.pet-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.pet-quote-btn {
  background: #0369a1;
  color: #fff;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.pet-quote-btn:hover {
  background: #0c4a6e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
  color: #fff;
}

.pet-quote-footer {
  background: #f9fafb;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.pet-quote-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
}

.pet-quote-stat:last-child {
  margin-bottom: 0;
}

.pet-quote-stat i {
  color: #0369a1;
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

.pet-quote-stat span {
  font-weight: 500;
}

/* Responsive adjustments for quote form */
@media (max-width: 991px) {
  .pet-quote-form-card {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .pet-quote-title {
    font-size: 1.25rem;
  }

  .pet-quote-form-body {
    padding: 1.25rem;
  }

  .pet-form-input,
  .pet-form-select {
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
  }

  .pet-quote-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .pet-quote-footer {
    padding: 1rem 1.25rem;
  }

  .pet-quote-stat {
    font-size: 0.85rem;
  }
}

/* ==========================================
   Heavy Machinery Transport Page Styles
   ========================================== */
.hm-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hm-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>");
  background-size: cover;
  opacity: 0.3;
}

.hm-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hm-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.hm-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.hm-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.hm-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hm-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.hm-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.hm-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* ==========================================
   Transport Services Page Styles
   ========================================== */
.ts-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.ts-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>");
  background-size: cover;
  opacity: 0.3;
}

.ts-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ts-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.ts-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.ts-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.ts-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ts-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.ts-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.ts-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* ==========================================
   Bike Transportation Page Styles
   ========================================== */
.bt-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.bt-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>");
  background-size: cover;
  opacity: 0.3;
}

.bt-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bt-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.bt-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.bt-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.bt-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bt-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.bt-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.bt-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* Responsive Styles for Service Pages */
@media (max-width: 991px) {

  .hm-hero-title,
  .ts-hero-title,
  .bt-hero-title {
    font-size: 2.25rem;
  }

  .hm-hero-subtitle,
  .ts-hero-subtitle,
  .bt-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {

  .hm-hero-section,
  .ts-hero-section,
  .bt-hero-section {
    padding: 40px 0;
  }

  .hm-hero-title,
  .ts-hero-title,
  .bt-hero-title {
    font-size: 1.75rem;
  }

  .hm-hero-subtitle,
  .ts-hero-subtitle,
  .bt-hero-subtitle {
    font-size: 1rem;
  }

  .hm-breadcrumb-nav,
  .ts-breadcrumb-nav,
  .bt-breadcrumb-nav {
    padding: 12px 0;
  }
}

/* ==========================================
   Video Gallery Page Styles
   ========================================== */
.vg-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.vg-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>");
  background-size: cover;
  opacity: 0.3;
}

.vg-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.vg-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.vg-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.vg-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.vg-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.vg-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.vg-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.vg-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* Video Card Styles */
.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-card:hover .play-button i {
  color: #8b0000;
  transform: scale(1.2);
}

.video-info {
  padding: 1.5rem;
}

.video-info h5 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.video-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Responsive Styles for Video Gallery */
@media (max-width: 991px) {
  .vg-hero-title {
    font-size: 2.25rem;
  }

  .vg-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .vg-hero-section {
    padding: 40px 0;
  }

  .vg-hero-title {
    font-size: 1.75rem;
  }

  .vg-hero-subtitle {
    font-size: 1rem;
  }

  .vg-breadcrumb-nav {
    padding: 12px 0;
  }

  .play-button i {
    font-size: 3rem;
  }

  .video-info {
    padding: 1.25rem;
  }

  .video-info h5 {
    font-size: 1rem;
  }
}

/* ==========================================
   About Page Styles
   ========================================== */
.about-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>");
  background-size: cover;
  opacity: 0.3;
}

.about-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.about-breadcrumb-nav {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.about-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.about-breadcrumb-nav .breadcrumb-item a {
  color: #8b0000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-breadcrumb-nav .breadcrumb-item a:hover {
  color: #b71c1c;
}

.about-breadcrumb-nav .breadcrumb-item.active {
  color: #666;
}

.about-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #999;
}

/* About Badge */
.about-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(139, 0, 0, 0.1);
  color: #8b0000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
}

/* About Image Wrapper */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

/* About Services Section */
.about-services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.service-feature-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #8b0000, #b71c1c);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-feature-card:hover::before {
  transform: scaleX(1);
}

.service-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
  border-color: rgba(139, 0, 0, 0.1);
}

.service-feature-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.service-feature-card:hover .service-feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(139, 0, 0, 0.4);
}

/* About Stat Card */
.about-stat-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.about-stat-card .stat-icon {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 10px;
}

.about-stat-card .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 5px;
}

.about-stat-card .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* Why Choose Card */
.why-choose-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
}

.why-choose-card:hover {
  border-color: #8b0000;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 0, 0, 0.15);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
}

/* Mission Vision Page Styles */

/* Hero Section */
.mission-vision-hero-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--red) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.mission-vision-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
  opacity: 0.1;
}

.mission-vision-hero-section .hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mission-vision-hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Breadcrumb Navigation */
.mv-breadcrumb-nav {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mv-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
}

.mv-breadcrumb-nav .breadcrumb-item a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.mv-breadcrumb-nav .breadcrumb-item.active {
  color: var(--primary-red);
  font-weight: 600;
}

.mv-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: #adb5bd;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--red));
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* Section Heading */
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
}

/* Mission Section */
.mission-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
}

.mission-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-image-wrapper:hover::before {
  opacity: 1;
}

.mission-image-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 15px;
}

.mission-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Mission Feature Card */
.mission-feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.mission-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.mission-feature-card .feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-red), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mission-feature-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Vision Section */
.vision-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
}

.vision-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vision-image-wrapper:hover::before {
  opacity: 1;
}

.vision-image-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 15px;
}

.vision-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Vision List */
.vision-list li {
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.vision-list li:hover {
  background: #f8f9fa;
  transform: translateX(10px);
}

/* Core Values Section */
.core-value-card .card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.core-value-card .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-red), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.core-value-card .card:hover::before {
  transform: scaleX(1);
}

.core-value-card .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
  border-color: rgba(139, 0, 0, 0.1);
}

.value-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.core-value-card:hover .value-icon-box {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.4);
}

/* Commitment Section */
.commitment-card .card {
  background: #fff;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.commitment-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-red), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

/* CTA Section */
.mv-cta-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--red) 100%);
  position: relative;
  overflow: hidden;
}

.mv-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
  opacity: 0.1;
}

.mv-cta-section .btn-light {
  background: #fff;
  color: var(--primary-red);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mv-cta-section .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
  .mission-vision-hero-section {
    padding: 80px 0 50px;
  }

  .mission-vision-hero-section .hero-title {
    font-size: 2.5rem;
  }

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

  .mission-feature-card,
  .core-value-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .mission-vision-hero-section {
    padding: 60px 0 40px;
  }

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

  .mission-vision-hero-section .hero-subtitle {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .mission-image-wrapper,
  .vision-image-wrapper {
    margin-bottom: 2rem;
  }

  .value-icon-box {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .commitment-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .mv-cta-section h2 {
    font-size: 1.75rem;
  }

  .mv-cta-section .btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

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

  .service-feature-card {
    padding: 30px;
  }

  .service-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about-hero-section {
    padding: 40px 0;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-breadcrumb-nav {
    padding: 12px 0;
  }

  .about-section-title {
    font-size: 1.75rem;
  }

  .service-feature-card {
    padding: 25px;
  }

  .service-feature-icon-wrapper {
    width: 65px;
    height: 65px;
    font-size: 1.75rem;
  }

  .why-choose-card {
    padding: 25px;
  }

  .why-choose-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .mission-vision-card {
    padding: 30px;
  }

  .mv-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

.st__service__box {
  position: relative;
}

.state_title {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px !important;
  font-weight: 700;
  color: white;
  width: 100%;
  background: #8b0000;
  text-align: center !important;
  text-transform: capitalize;
}

.backgroundfilter {
  filter: brightness(0.8);
}

.text-justify {
  text-align: justify !important;
}

.border-danger {
  border-color: #8b0000 !important;
}

.display-10 {
  font-size: 250px !important;
}

.process-step-number {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #8b0000;
  /* Bootstrap danger */
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-description {
  max-width: 600px;
}

.step-number {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #8b0000;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}