:root {
  --primary-green: #1D510D;
  --primary-orange: #D16E11;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-text: #212529;
  --form-color: #FD9801;
}

.text-green {
  color: var(--primary-green, #28a745) !important;
}

.text-orange {
  color: var(--primary-orange, #ff6600) !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
.card-title,
.accordion-button {
  color: var(--primary-green);
}



html {
  overflow-y: scroll;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}


body {
  -ms-overflow-style: none;
  overflow-x: hidden;
}

.fa-question-circle,
.fa-star,
.fa-handshake,
.fa-phone-alt,
.contact-btn {
  color: var(--primary-orange);
}


.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 240px;
  padding-bottom: 120px;
  margin-top: -9rem;
  z-index: 1;
}

* {
  scroll-behavior: inherit !important;
}

/* FORM */
.contact-form {
  box-shadow: 0 5px 15px rgba(44, 43, 43, 0.1);
  transition: box-shadow 0.3s ease;
  border: none !important;
}

.input-group-text {
  transition: all 0.3s;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
}

ul {
  margin: 0;
  padding: 0;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-weight: 500;

  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}




.brances.py-100 {
  padding: 100px 0;
  background-color: #f8f9fa;
}

/* City Card Styling */
.city-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

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

/* Image Container (if you add background image) */
.city-card .image-overlay {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Gradient Overlay */
.city-card .image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.city-card:hover .image-overlay::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

/* City Name Styling */
.city-name {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 1rem 0;
  padding: 0 1.25rem;
  position: relative;
}



.city-card:hover .city-name::after {
  width: 60px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .city-card .image-overlay {
    height: 150px;
  }

  .city-name {
    font-size: 1.2rem;
  }
}


.btn {
  background-color: var(--primary-orange);
  color: var(--white);
  border: none;
}

.btn:hover {
  background-color: #dc9251;
  color: var(--white);
}



/* Top Bar Styles */
.top-bar {
  background-color: black;
  padding: 8px 0;
  font-size: 18px;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: white;
  transition: all 0.3s ease;
}

/* Scrolled State */
.scrolled .top-bar {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.utility-links a {
  color: var(--form-color);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.utility-links div .getquote {
  background-color: black;
  border: none;
  color: var(--form-color);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.utility-links a:hover {
  color: var(--primary-orange);
}

.utility-links .social-icon {
  font-size: 18px;
  margin-left: 10px;
  color: var(--white);
}

/* Navigation Styles */

/* Header Container */
#masthead {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

/* Top Bar with Social Icons and Action Buttons */
.elementor-element-6c5b40a {
  background-color: #f8f8f8;
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Social Icons */
.elementor-widget-icon .elementor-icon {
  color: #555;
  margin: 0 10px;
  transition: color 0.3s;
}

.elementor-widget-icon .elementor-icon:hover {
  color: #e74c3c;
}

/* Action Buttons (Track Shipment, Get Live Quote) */
.elementor-icon-list-items {
  display: flex;
  gap: 20px;
  margin-right: 20px;
}

.elementor-icon-list-item a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.elementor-icon-list-item a:hover {
  color: #e74c3c;
}

.elementor-icon-list-icon {
  margin-right: 8px;
}

/* Main Header Content */
.elementor-element-1bb437f {
  padding: 15px 0;
}

/* Logo */
.elementor-element-518cf57 img {
  max-height: 80px;
  width: auto;
}

/* Navigation Menu */

.navbar {
  transition: all 0.3s ease;
  padding: 2px 0;

}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;

  z-index: 1000;
  padding: 2px 0;
}

.navbar.sticky .navbar-brand,
.navbar.sticky .nav-link,
.navbar.sticky .dropdown-toggle {
  color: var(--dark-text) !important;
}

/* Remove all borders and focus outlines */
.custom-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.25rem 0.5rem;
  /* Adjust padding as needed */
}

/* Remove the focus ring when clicked */
.custom-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Customize the toggler icon color */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 2.5em;
}

/* Optional: Add hover effect */
.custom-toggler:hover {
  opacity: 0.8;
}

.navbar.sticky .call-btn {
  background-color: var(--form-color);
}



/* Nav Links */
.navbar-nav {
  gap: 2rem;
}


.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-text);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-orange);
}

.nav-link.dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}


.nav-item.dropdown .nav-link.dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Call Button */
.call-btn {
  background-color: var(--primary-orange);
  color: white !important;
  border-radius: 6px;
  padding: 8px 15px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.call-btn:hover {
  transform: translateY(-2px);

}

/* Mobile Styles */
@media (max-width: 992px) {
  .navbar-collapse {
    padding: 20px 0;
    background-color: #fff;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    margin-bottom: 15px;
  }

  .nav-item {
    margin-bottom: 5px;
  }

  .dropdown-menu {
    margin-left: 15px;
    width: calc(100% - 30px);
    box-shadow: none;
  }

  .call-btn {
    width: 100%;
    text-align: center;
  }

  .navbar.sticky .navbar-collapse {
    background-color: var(--white);
  }

  .navbar.sticky .dropdown-menu {
    background-color: #c3bdbd;
  }

  .navbar.sticky .dropdown-item {
    color: var(--dark-text);
  }

  .navbar.sticky .dropdown-item:hover {
    background-color: #444;
    color: var(--primary-orange);
  }
}

/* Scroll Behavior */
html {
  scroll-padding-top: 70px;
}



/* Gradient Section */
.gradient-section {
  background: linear-gradient(180deg, #0B6318 0%, #061831 87%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

/* Text Styling */
.gradient-section h1 {
  font-weight: 700;
  line-height: 1.2;
}

.gradient-section .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Button Styling */
.gradient-section .btn-light {
  background-color: white;
  color: #0B6318;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.gradient-section .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.image-container img {
  object-fit: cover;
  height: 100%;
  min-height: 400px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gradient-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .gradient-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .gradient-section h1 {
    font-size: 2rem;
  }

  .gradient-section .lead {
    font-size: 1.1rem;
  }

  .image-container img {
    min-height: 300px;
  }
}



/* Why Choose Us Section */

.features-section {
  padding: 20px 0;
  background-color: #fff;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff9f9f7;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #d97706;
  /* Matching the orange heading */
  margin-bottom: 40px;
  text-align: center;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;

}

.feature-icon i {
  font-size: 28px;
  color: #d97706;
  min-width: 40px;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-text);
}

.feature-content p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}


/* Contact Section Styles in Home + Map */
.company-contact-wrapper {
  padding: 30px 0;

}

.contact-details-box {

  border-radius: 10px;
  overflow: hidden;

}

.contact-info-panel {
  padding: 40px;
  background-color: var(--primary-green);
  color: white;
  height: 100%;
}

.contact-info-panel .section-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: white;
}

.contact-method {
  margin-bottom: 20px;
}

.contact-method .label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-method address,
.contact-method .detail {
  margin-bottom: 0;
  font-style: normal;
}

.contact-link {

  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-link:hover {
  opacity: 0.8;

  text-decoration: none !important;
}

.location-map {
  height: 100%;
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-panel {
    padding: 30px;
  }

  .location-map {
    min-height: 300px;
  }
}

/* .services-section in Home */
.services-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-green);
}

.service-container {
  margin-bottom: 40px;

  overflow: hidden;

}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  font-weight: 600;
}

.service-content p {
  color: var(--dark-text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.service-image {
  height: 100%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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


.service-container:nth-child(even) .row {
  flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-container {
    margin-bottom: 40px;
  }

  .service-container .row {
    flex-direction: column !important;
  }

  .service-image {
    height: 300px;
  }

  .section-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}


/* Flip Box icon Styles */
.flip_box {
  transition: transform 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

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

.flip_img {
  width: 200px;
  /* Set a uniform width */
  height: 150px;
  /* Set a uniform height */
  object-fit: cover;
  /* Ensures consistent appearance */
  margin-bottom: 15px;
  transition: transform 0.6s ease-in-out;
}

.flip_box:hover .flip_img {
  transform: rotateY(360deg);
}

.reason p {
  color: black;
}

.reason span {
  color: black;
  font-weight: 700;
}

.reeed {
  color: #33b6ff;
}


/*About  Hero Section */
.about-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.about-title {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-weight: 300;
}

/* Introduction */
.about-intro {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Features Section */
/* .features-section {
  margin-bottom: 4rem;
} */

.section-heading {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-orange);
  margin: 1rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  color: var(--primary-orange);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #222;
  margin-bottom: 1rem;
}

/* Promise Section */
.promise-section {
  background-color: var(--primary-orange);
  color: white;
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.promise-intro {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.promise-list {
  list-style: none;
  padding: 0;
}

.promise-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.promise-list i {
  position: absolute;
  left: 0;
  color: white;
}

/* CTA Section */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.cta-left,
.cta-right {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-right {
  background: #f8f9fa;
}

.cta-section h3 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-btn {
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn i {
  margin-right: 0.5rem;
}

.cta-btn.primary {
  background: var(--primary-orange);
  color: white;
}

.cta-btn.primary:hover {
  background: #e67300;
}

.cta-btn.secondary {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.cta-btn.secondary:hover {
  background: var(--primary-orange);
  color: white;
}

/* Address Section */
.address-section {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.address-section h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

address {
  font-style: normal;
}

address i {
  color: var(--primary-orange);
  margin-right: 0.5rem;
}


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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .promise-section::before {
    width: 150px;
    height: 150px;
  }
}

/* Pricing Section Styles */

.pricing-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
  background-image: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  /* color: #2c3e50; */
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF7F2A, #FF5722);
  margin: 0 auto;
  border-radius: 2px;
}

/* Defer non-critical CSS */
@media (min-width: 768px) {
  .pricing-table-container {
    margin: 40px 0;
  }
}

/* Special Offers Section */

.special-offers {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
  border-left: 4px solid #FF6B35;
}

.special-offers h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.special-offers h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #FF6B35;
}

.special-offers ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.special-offers li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.5;
}

.special-offers li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background-color: #FF6B35;
  border-radius: 50%;
}

.special-offers p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 107, 53, 0.08);
  border-radius: 6px;
  border-left: 3px solid #FF6B35;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .special-offers {
    padding: 1.5rem;
  }

  .special-offers h3 {
    font-size: 1.3rem;
  }

  .special-offers li {
    font-size: 0.95rem;
  }

  .special-offers p {
    font-size: 0.9rem;
  }
}

/* CTA Button Container */
.cta-container {
  text-align: center;
  margin-top: 1.5rem;
}

/* Primary Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {

  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .special-offers {
    padding: 1rem;
  }

  .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* MOVING PROCESS SECTION STYLES */

.moving-process {
  background-color: #f8f9fa;
  padding: 30px 0;
  box-sizing: border-box;
}

.moving-process .text-orange {
  color: var(--primary-orange);
}

/* PROCESS STEP CARDS */
.process-step {
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  background-color: var(--primary-orange);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CARD TITLES */
.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.process-step:hover .step-title {
  color: var(--white);
}

/* CARD TEXT */
.process-step .card-body p {
  color: var(--primary-green);
}

.process-step:hover .card-body p {
  color: var(--white);
}

/* STEP NUMBER BADGES */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.process-step:hover .step-badge {
  background-color: var(--white);
  color: var(--primary-orange);
  border: 2px solid white;
}

/* BUTTON STYLING */
.btn-primary {
  background-color: var(--primary-orange);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: var(--white);
}

.btn-primary:hover {
  background-color: #e67300;
  /* Slightly darker orange */
}


@media (max-width: 991.98px) {
  .moving-process {
    padding: 40px 0;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-badge {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .process-step {
    margin-bottom: 1.5rem;
  }

  .step-title {
    font-size: 1.1rem;
  }
}

/* testimonals */
.testimonials-section {
  position: relative;
}

.testimonial-slider {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  transition: transform 0.3s ease;
  min-width: calc(100% - 20px);
}

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

.quote-icon {
  font-size: 2rem;
  opacity: 0.2;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #0d6efd;
  transform: scale(1.2);
}

.rating {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.scroll-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-hidden::-webkit-scrollbar {
  display: none;
}




@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    min-width: calc(33.333% - 20px);
  }
}

/* FAQ Section */


.accordion-button {
  background-color: var(--light-bg);
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #1D510D;
  box-shadow: none;
}

.accordion-button:focus {
  /* border-color: #D16E11;      */
  box-shadow: 0 0 0 0.25rem rgba(209, 110, 17, 0.15);
  outline: none;
}


.divider {
  background-color: var(--primary-orange);
  height: 3px;
  width: 80px;
}


/* About Section Page */


/*  Form Card */

.quote-form-card {
  background-color: var(--form-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Card Title */
.quote-form-card .card-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}


.quote-form-card .form-label {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Form Inputs */
.quote-form-card .form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #333;
}

.quote-form-card .form-control:focus {
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Small Input Variant */
.quote-form-card .form-control-sm {
  padding: 0.35rem 0.65rem;
}

/* Validation Feedback */
.quote-form-card .invalid-feedback {
  color: #FFEAE3;
  font-size: 0.75rem;
}

.quote-form-card .btn-light {
  background-color: white;
  color: #FF6B35;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.quote-form-card .btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-1px);
}



.our-roots-card {
  border: none !important;
  background: #f9f6f6;
  border-radius: 12px;
}

.our-roots-card .card-body {
  padding: 2rem;
}

.our-roots-card .card-title {
  color: var(--primary-green);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}


.our-roots-card h4 {
  color: var(--primary-green);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}


.our-roots-card .bg-primary {
  background-color: #f8f9fa !important;
  color: #333 !important;
  border-left: 4px solid var(--primary-green);
}

.our-roots-card .card-text {
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .our-roots-card .card-body {
    padding: 1.5rem;
  }

  .our-roots-card .card-title {
    font-size: 1.5rem;
  }
}


.about-section1 {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 30px 0;
  box-sizing: border-box;
}

.about-section1 h2,
.about-section1 h4 {
  color: var(--white);
}



.about-section1 .img-fluid {
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);/
}


.about-section1 .ps-lg-4 {
  padding-left: 2rem;
}

.about-section1 .mb-4 {
  margin-bottom: 1.5rem !important;
}


@media (max-width: 991.98px) {
  .about-section1 .ps-lg-4 {
    padding-left: 0;
    padding-top: 2rem;
  }
}

/* Benefits Card */
.benefits-card {
  border-radius: 15px;
  color: var(--white);
}

.benefits-card .card-header {
  background-color: var(--primary-green);
  color: var(--white) !important;
  border-radius: 15px 15px 0 0;
}

.benefits-card .card-header h3 {
  color: var(--white);
}

.benefits-card .badge {
  background-color: var(--primary-orange);
}

/* Promise Card */

.promise-card {
  background: linear-gradient(135deg, #fbb07a 0%, #f4a454 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

}

.promise-pattern {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.card-body {
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(44, 43, 43, 0.1);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: white;
}

.fs-5 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.promise-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.promise-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.promise-list li:last-child {
  margin-bottom: 0;
}

.promise-list i {
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: white;
  font-size: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .promise-card {
    border-radius: 8px;
  }

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

  .fs-5 {
    font-size: 1.1rem;
  }

  .promise-list li {
    font-size: 1rem;
    padding-left: 2rem;
  }

  .promise-pattern {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .card-body {
    padding: 1.5rem !important;
  }

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

  .section-title::after {
    width: 40px;
    bottom: -8px;
  }
}


















/* Contact Section Page */
.instant-quote-form {
  width: 100%;
  background: var(--form-color);
  border-radius: 10px;
  overflow: hidden;
}

.instant-quote-form .card-body {
  padding: 2rem;
}

.instant-quote-form .card-title {
  color: var(--dark-text);
  font-size: 1.5rem;
  font-weight: 600;
}

.instant-quote-form .form-label {
  color: var(--dark-text);
  font-weight: 500;
}

.instant-quote-form .form-control {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
}

.instant-quote-form .btn-primary {
  background-color: #FF6B35;
  border: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .instant-quote-form .card-body {
    padding: 1.5rem;
  }
}



/* Content Section */
.col-lg-8 h1.display-4 {
  color: var(--form-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.col-lg-8 .lead {
  color: var(--dark-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Call Button */
.btn-primary {
  background-color: #FF6B35;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e05a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.connect-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.connect-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.connect-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.connect-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1D510D;
}

.connect-line {
  height: 3px;
  width: 80px;
  background: #D16E11;
  margin: 0.5rem auto;
}

/* Connect Boxes */
.connect-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.connect-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.connect-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.connect-symbol {
  color: #D16E11;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.connect-item h3 {
  color: #1D510D;
  margin-bottom: 1rem;
}

.connect-url {
  color: #D16E11;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.connect-url:hover {
  color: #b85d0a;
  text-decoration: underline;
}

.connect-info {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Details Boxes */
.details-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.details-item {
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  height: 100%;
}

.details-item:hover {
  transform: translateY(-3px);
}

.quote-item {
  background-color: #F1F8E9;
  border-left: 4px solid #1D510D;
}

.badge-item {
  background-color: #E8F4FD;
  border-left: 4px solid #3A7CA5;
}

.details-item h4 {
  color: #1D510D;
  margin-bottom: 1rem;
}

.btn-estimate {
  background-color: #D16E11;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Network Section */
.network-section {
  text-align: center;
  margin-top: 2rem;
}

.network-section h4 {
  color: #1D510D;
  margin-bottom: 1rem;
}

.network-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.network-icons a {
  color: #3A7CA5;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.network-icons a:hover {
  transform: scale(1.2);
}

/* End Action */

.end-action {
  background-color: var(--primary-green);
  position: relative;
  overflow: hidden;
}

/* .end-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF6B35, #0B6318);
} */

.trust-note i {
  color: #FF6B35;
  transition: transform 0.3s ease;
}

.trust-note:hover i {
  transform: scale(1.1);
}

.trust-note p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--white);
}

.btn-action .btn {
  background-color: #FF6B35;
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-action i {
  color: var(--white);
}

.btn-action .btn:hover {
  background-color: #e05a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.assurance {
  background-color: white;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 1rem;
}

.assurance i {
  color: #0B6318;
}

.assurance p {
  font-size: 0.95rem;
  margin: 0;
  color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .end-action {
    padding: 3rem 0 !important;
  }

  .trust-note p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .btn-action .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .assurance {
    padding: 0.5rem 1rem;
  }
}


/* Our Services Scetion Page */
/* Home Shifting Page */
.moving-process-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.moving-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551524559-8af4e6624178?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.section-title {
  color: var(--primary-orange);
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--dark-text);
  font-size: 1.1rem;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-icon-wrapper {
  position: relative;
  padding: 20px;
}

.step-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.05);
}

.icon-svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.step-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #3498db, #2ecc71);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--form-color);
  line-height: 1;
}

.step-title {
  color: var(--primary-green);
  font-weight: 600;
  padding-right: 60px;
}

.step-description {
  color: var(--dark-text);
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .icon-svg {
    width: 30px;
    height: 30px;
  }

  .step-content {
    margin-top: 20px;
  }

  .step-number {
    font-size: 2rem;
  }
}

/* .moving-tips-container {
    background-color: #f8f9fa;
    background-image: linear-gradient(to bottom, rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), 
                      url('https://images.unsplash.com/photo-1554469384-e58fac16e23a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
} */

.icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  transition: transform 0.3s ease;
}

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


/* Responsive adjustments */
@media (max-width: 992px) {
  .display-4 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}


/* Car Page */

.hero-section {
  background-color: #f8f9fa;
  padding: 30px 0;
}

.service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin-bottom: 30px;
  height: 100%;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.contact-section {
  background-color: #007BFF;
  color: white;
  padding: 40px 0;
}

.price-table {
  margin: 40px 0;
}

.table th {
  background-color: var(--primary-green);
  color: white;
}

.benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.benefits-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.benefits-list li i {
  color: var(--form-color);
  margin-right: 10px;
}

/* Your existing table styles */

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  margin: 20px 0;
  min-width: 600px;
  /* Minimum width to maintain structure */
}

.custom-table th,
.custom-table td {
  text-align: left;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.custom-table th {
  background-color: #007BFF;
  color: white;
  font-size: 16px;
}

.custom-table td {
  font-size: 14px;
  color: var(--dark-text);
}

/* Horizontal scrolling container */
.horizontal-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;

  border-radius: 4px;

}

/* Scrollbar styling */
.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}



/* Bike Transportation */

.bike-preparation-section {
  background-color: #f9f9f9;

}

.bike-preparation-section h2 {

  font-size: 2rem;
}

.bike-preparation-section h3 {
  color: var(--dark-text);
  font-size: 1.5rem;
  margin-top: 2rem;
}

.bike-preparation-section p,
.bike-preparation-section li {
  font-size: 1rem;
  line-height: 1.7;
}

.custom-ol,
.custom-ul {
  padding-left: 1.2rem;
}

.custom-ol li {
  margin-bottom: 0.8rem;
}

.custom-ul li {
  list-style-type: disc;
  margin-bottom: 0.6rem;
}



eagle-container {
  margin: 10px;
  /* padding: 2rem 1rem; */
}

/* ====== Safety Measures Section ====== */
.eagle-safety-section {
  background-color: var(--eagle-white);
  border-radius: 10px;
  box-shadow: var(--eagle-shadow);
  margin-bottom: 3rem;
  overflow: hidden;
}



.eagle-section-header i {
  margin-right: 0.75rem;
}

.eagle-section-content {
  padding: 2rem;
}

.eagle-subheader {
  color: var(--primary-orange);
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 86, 179, 0.1);
  font-size: 1.5rem;
}

/* Feature Cards */
.eagle-feature-card {
  background: rgb(252, 248, 248);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;

  border-left: 4px solid var(--eagle-yellow);
  transition: all 0.3s ease;
  height: 100%;
}

.eagle-feature-card:hover {
  transform: translateY(-5px);

}

.eagle-feature-icon {
  font-size: 2rem;
  color: var(--form-color);
  margin-bottom: 1rem;
}

.eagle-feature-title {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

@media (max-width: 992px) {

  .eagle-feature-card,
  .eagle-service-card {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .eagle-section-header {
    padding: 1.25rem;
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .eagle-section-header i {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .eagle-section-content {
    padding: 1.5rem;
  }

  .eagle-subheader {
    font-size: 1.3rem;
    text-align: center;
  }

  .eagle-service-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .eagle-container {
    padding: 1.5rem 0.75rem;
  }

  .eagle-feature-card,
  .eagle-service-card {
    padding: 1rem;
  }

  .eagle-service-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}


.packing-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.bg-gradient-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.material-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.material-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: white !important;
}

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


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

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

.price-factors li,
.savings-tips li {
  padding: 12px 15px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.price-factors li:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

.savings-tips li:hover {
  background-color: rgba(25, 135, 84, 0.05);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;

}

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


.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.packing-card .icon-box {
  width: 70px;
  height: 70px;
}

/* Interstate Shifting Services Page */
.rounded-circle {
  background-color: var(--primary-orange);
}


/* Custom CSS for Customer Support Section */
.customer-support-section {
  background-color: #f8f9fa;
}


.divider {
  width: 80px;
  height: 3px;
  margin-top: 15px;
}

.support-card {
  background-color: #f8f9fa;
  border-left: 3px solid #0d6efd;
  transition: transform 0.3s ease;
}

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

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.support-hours {
  border: 1px dashed #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-right: 1rem !important;
  }

  .support-card,
  .contact-card {
    padding: 1.5rem !important;
  }
}



/* Main Section Styles */
.moving-process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Arial', sans-serif;
  color: #333;
}

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

/* Process Intro */
.process-intro {
  text-align: center;
  margin-bottom: 2rem;

}

.process-intro h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.process-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Process Steps */
.process {
  display: flex;
  flex-direction: row ;
  /* gap: 3rem; */
  margin-bottom: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-content {
  flex: 1;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-list {
  padding-left: 1.5rem;
}

.step-list li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.step-list strong {
  color: #008000;
  font-weight: 600;
}

.step-icon {
  background-color: #f0f7f0;
  padding: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-top: 1rem;
}

.process-icon {
  width: 40px;
  height: 40px;
  fill: #008000;
}

/* Process Summary */
.process-summary {
  text-align: center;
  background-color: #f0f7f0;
  padding: 3rem 2rem;
  border-radius: 8px;
  position: relative;
  margin-top: 2rem;
}

.process-summary h3 {
  font-size: 1.8rem;
  color: #008000;
  margin-bottom: 1.5rem;
}

.process-summary p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.summary-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.summary-icon .process-icon {
  width: 30px;
  height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    gap: 1rem;
  }

  .step-icon {
    margin: 0 auto;
  }

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

  .process-intro h3,
  .process-summary h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .moving-process {
    padding: 1.5rem;
  }

  .step-content {
    padding: 1.5rem;
  }

  .step-list li {
    font-size: 1rem;
  }
}

























/* Footer */



/* Offices Header Section */
.footer-offices-header {
  background-color: #f0f0f8;
  /* Light purple background */
  padding: 2rem 0;
}

.footer-heading {
  color: #4B0300;
  font-weight: 700;
  font-size: 1.875rem;

  margin: 0;
}

/* Offices Grid Section */
.footer-offices-grid {
  background-color: var(--white);
  padding: 1rem 0;
}

.footer-offices-grid ul {
  list-style: none;
  padding-left: 0;
}

.footer-offices-grid li {
  margin-bottom: 0.5rem;
}

.footer-offices-grid a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-offices-grid a:hover {
  color: #6B0000;
  text-decoration: underline;
}

.footer-offices-grid i {
  color: #6B0000;
  /* Red icons */
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Company Info Section */
.footer-company-info {
  background-color: #ccf7d3;
  /* Light green background */
  padding: 2rem 0;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* .footer-logo {
  max-width: 250px;
  height: 100vw;
  margin-bottom: 1rem;
} */

.footer-company-name {
  font-weight: 700;
  margin: 0;
}

.footer-company-link {
  color: #020F49;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
  line-height: 1.4;
  display: inline-block;
  padding: 0 0.5rem;
}

.footer-company-link:hover {
  color: #6B0000;
}

/* Footer Sections */
.footer-quick-links,
.footer-services,
.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-section-title {
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: #000;
}

.footer-link-list {
  list-style: none;
  padding-left: 0;
}

.footer-link-list li {
  margin-bottom: 0.5rem;
}

.footer-link-list a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  color: #6B0000;
}

.footer-link-list i {
  color: #6B0000;
  /* Red icons */
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Copyright Section */
.copyright-section {
  background-color: #b89292;

  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .footer-logo-col {
    margin-bottom: 2rem;
  }

  .footer-section-title {
    text-align: center;
  }

  .footer-link-list a {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer-offices-grid .col-sm-6 {
    margin-bottom: 1.5rem;
  }

  .footer-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .footer-heading {
    font-size: 1.25rem;
  }

  .footer-section-title {
    font-size: 1.125rem;
  }
}



/* Scroll to Top Button Styling */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #007BFF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:active {
  transform: translateY(0);
}

.scroll-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.scroll-top-arrow {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-top-btn {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-top-arrow {
    width: 16px;
    height: 16px;
  }
}