/* heading text */
.text-headings {
  color: #081f4e;
}

/* Top Header */
.top-header {
  background-color: #081f4e;
  font-size: 14px;
}

.top-header a {
  color: white;
  margin-left: 10px;
}

.top-header i {
  margin-right: 5px;
}

/* Main Navbar */
.navbar {
  background-color: #ffffff;
}

.navbar-brand {
  color: #c60101 !important;
  font-weight: bold;
}

.nav-link {
  color: rgb(0, 0, 0) !important;
  margin-left: 15px;
}

.nav-link.active,
.nav-link:hover {
  color: #c60101 !important;
}

.btn-quote {
  background-color: #c60101;
  color: white;
  padding: 5px 15px;
  border-radius: 3px;
  margin-left: 20px;
}

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

/* breadcrumb css */
/* Page Title Background */
.page-title {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  z-index: -1;
}

/* Container */
.auto-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Heading */
.page-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  text-transform: capitalize;
}

/* Breadcrumb */
.bread-crumb {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.bread-crumb li {
  position: relative;
  color: #fff;
}

.bread-crumb li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.bread-crumb li a:hover {
  color: #c60101;
  /* Your red theme */
}

.bread-crumb li:not(:last-child)::after {
  content: "\f105";
  /* Font Awesome angle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  margin: 0 6px;
}

/* ABOUT US CSS */
:root {
  --primary-color: #081f4e;
  /* Dark Navy */
  --secondary-color: #c60101;
  /* Bright Red */
}

.about-section {
  padding: 60px 0;
}

.about-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.stats-box {
  background-color: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.stats-box:hover {
  transform: translateY(-5px);
  border: 1px solid var(--secondary-color);
}

.stats-box h3 {
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 800;
}

.stats-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

.stats-box i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.list-section ul {
  padding-left: 20px;
}

.list-section li {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.contact-section {
  background-color: var(--primary-color);
  color: #fff;
  padding: 50px 0;
  text-align: center;
  border-radius: 8px;
}

.contact-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-section a.btn-theme {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-section a.btn-theme:hover {
  background-color: #a50000;
}

/* Home Relocation css */

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
}

.relocation-image img {
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s;
}

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

.highlight-box {
  background-color: var(--accent-color);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlight-box i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #fff;
}

.service-list li::marker {
  color: var(--accent-color);
}

.btn-theme {
  background-color: var(--accent-color) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 10px 25px !important;
  font-weight: 600 !important;
  transition: 0.3s ease !important;
}

.btn-theme:hover {
  background-color: #a60000 !important;
  transform: scale(1.05) !important;
}


/* branches css */

/* Section Background and Title */
.branches-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  color: #081f4e;
  font-weight: 700;
  font-size: 32px;
}

/* Card Style */
.location-card {
  display: block;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  padding: 10px;
  text-decoration: none;
  height: 100%;
}

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

.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.location-card h5 {
  margin-top: 12px;
  font-size: 16px;
  color: #081f4e;
  font-weight: 600;
  transition: color 0.3s ease;
}

.location-card:hover h5 {
  color: #c60101;
}

/* Responsive image fix for small screens */
@media (max-width: 576px) {
  .location-card img {
    height: 140px;
  }

  .location-card h5 {
    font-size: 15px;
  }
}


/* logistic  part css*/

.logistic-img {
  width: 50%;
  height: 50%;
}

.text-primary {
  color: #081f4e !important;
}

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

hr {
  border-top: 3px solid #c60101;
}

/* TRANSPARENT DEAL CSS */

.text-primary {
  color: #081f4e !important;
}

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


/* CONTACTS PAGE CSS */

.heading {
  color: var(--primary-color);
}

/* Section Styling */
.contact-us-section {
  background-color: #fff;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.contact-info i {
  color: var(--primary-color);
}

/* Social Icons */
.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

/* Input Fields */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(198, 1, 1, 0.25);
}

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

.btn-danger:hover {
  background-color: #a10000;
}

/* WHY CHOOSE US CSS */

.why-greatway-section {
  background-color: #ffffff;
}

.greatway-heading {
  color: #081f4e;
  font-size: 2rem;
  font-weight: 700;
}

.greatway-subheading {
  color: #c60101;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.greatway-title {
  color: #081f4e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.greatway-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.greatway-divider {
  width: 80px;
  height: 3px;
  background-color: #c60101;
  border: none;
}

.greatway-img {
  padding-left: 85px;
  width: 68%;
  height: auto;
}

/* SLIDER CSS */




.hero-slide {
  height: 90vh;
  background-size: contain;
  background-position: center;
  position: relative;
  color: white;
}

.hero-text-left {
  background-color: rgba(8, 31, 78, 0.6);
  /* semi-transparent overlay with your theme primary color */
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
}

.hero-text-left h1 {
  font-size: 3rem;
}

.hero-text-left p {
  font-size: 1.25rem;
}

.btn-danger {
  background-color: #c60101;
  border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slide {
    height: 50vh;
    background-size: contain;
    /* ensures full image is visible */
    background-repeat: no-repeat;
    /* avoids image tiling */
    background-position: center;
    /* centers the image */
    background-color: #f8f9fa;
    height: auto;
    min-height: 150px;
  }

  .hero-text-left {
    padding: 20px;
    max-width: 100%;
  }

  .hero-text-left h1 {
    font-size: 2rem;
  }

  .hero-text-left p {
    font-size: 1rem;
  }
}



/* NAVIGATION CSS */





.mr-3 {
  margin-right: 12px
}

/* Theme colors */
:root {
  --primary-color: #081f4e;
  /* dark navy */
  --accent-color: #c60101;
  /* bright red */
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Top Bar */
.ca-header-top {
  background-color: #081f4e;
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding-top: 7px;
  height: 35px;
}

.ca-header-top a {
  color: white;
  text-decoration: none;
}

.ca-header-top-icon i {
  font-size: 20px;
}

/* Navigation Section */



.ca-header-area {
  background-color: white;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 999;
}

.ca-main-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.ca-main-menu ul li {
  position: relative;
}

.ca-main-menu ul li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px;
  transition: all 0.3s ease;
}
.ca-main-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

@media (max-width: 1400px) {
   
  .ca-main-menu ul li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 3px;
    transition: all 0.3s ease;
  }
  /* .ca-main-menu ul li ul.sub-menu li a {
  padding: 10px 20px;
  color: var(--primary-color);
  font-size: 11px;
} */
}
@media (max-width: 1200px) {
   
  .ca-main-menu ul li a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 2px;
    transition: all 0.3s ease;
  }
  /* .ca-main-menu ul li ul.sub-menu li a {
  padding: 10px 20px;
  color: var(--primary-color);
  font-size: 11px;
} */
}

.ca-main-menu ul li a:hover,
.ca-main-menu ul li:hover>a {
  color: var(--accent-color);
}

/* Sub Menu */
.ca-main-menu ul li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  display: none;
  z-index: 9999;
  min-width: 220px;
}

.ca-main-menu ul li:hover ul.sub-menu {
  display: block;
}

.ca-main-menu ul li ul.sub-menu li {
  display: block;
}

.ca-main-menu ul li ul.sub-menu li a {
  padding: 10px 20px;
  color: var(--primary-color);
  font-size: 13px;
}

.ca-main-menu ul li ul.sub-menu li a:hover {
  color: var(--accent-color);
}

/* Get A Quote Button */
.ca-btn-primary {
  background-color: var(--accent-color);
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.ca-btn-primary:hover {
  background-color: var(--primary-color);
  color: white;
}


/* Contact Info in Offcanvas */
.ca-offcanvas-contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ca-offcanvas-contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ca-offcanvas-contact-info a:hover {
  color: var(--accent-color);
}

.ca-offcanvas-contact-info i {
  font-size: 16px;
  color: var(--accent-color);
}

/* Social Media Icons */
.ca-offcanvas-social ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.ca-offcanvas-social ul li a {
  font-size: 18px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.ca-offcanvas-social ul li a:hover {
  color: var(--accent-color);
}


/* Offcanvas Base */
.ca-offcanvas {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  z-index: 9999999;
  transition: right 0.3s ease-in-out;
  padding: 20px;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.ca-offcanvas.open {
  right: 0;
}

.ca-offcanvas-close-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
}

/* Nav Menu */
.ca-offcanvas-menu-1 ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ca-offcanvas-menu-1 ul li {
  border-bottom: 1px solid #e4e4e4;
}

.ca-offcanvas-menu-1 ul li a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.2s ease-in-out;
}

.ca-offcanvas-menu-1 ul li a:hover {
  color: var(--accent-color);
}

/* Dropdown Menu */
.ca-offcanvas-menu-1 details summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 12px 0;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ca-offcanvas-menu-1 details summary i {
  font-size: 14px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Rotate icon on open */
.ca-offcanvas-menu-1 details[open] summary i {
  transform: rotate(180deg);
  color: var(--accent-color);
}

/* Hover icon color */
.ca-offcanvas-menu-1 details summary:hover i {
  color: var(--accent-color);
}

.ca-offcanvas-menu-1 details summary::-webkit-details-marker {
  display: none;
}

.ca-offcanvas-menu-1 details ul {
  margin: 0;
  padding-left: 15px;
}

.ca-offcanvas-menu-1 details ul li a {
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
}

/* Contact Info */
.ca-offcanvas-contact-info p {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.ca-offcanvas-contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.ca-offcanvas-contact-info a:hover {
  color: var(--accent-color);
}

/* Social Icons */
.ca-offcanvas-social ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.ca-offcanvas-social ul li a {
  font-size: 18px;
  color: var(--primary-color);
  transition: color 0.3s;
}

.ca-offcanvas-social ul li a:hover {
  color: var(--accent-color);
}

/* Overlay */
.ca-offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999998;
  display: none;
}

.ca-offcanvas-overlay.active {
  display: block;
}

/* Responsive */
@media (max-width: 575.98px) {
  .ca-offcanvas {
    width: 100%;
  }
}



/* Mobile MENU text */
.mobile-menu-text {
  display: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .mobile-menu-text {
    display: block;
  }

  .ca-main-menu ul {
    flex-direction: column;
    align-items: start;
  }
}

/* Animation */
.ca-main-menu ul li a {
  position: relative;
}

.ca-main-menu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent-color);
  transition: width 0.3s ease-in-out;
}

.ca-main-menu ul li a:hover::after {
  width: 100%;
}

.ca-offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999998;
  display: none;
}

.ca-offcanvas-overlay.active {
  display: block;
}

/* Location Section Styles */
.location-section {
  background-color: #f7f7f7;
}

.location-title {
  font-weight: bold;
  color: #0d6efd; /* Bootstrap primary color */
}

.location-description {
  color: #6c757d; /* Bootstrap text-muted color */
}

.location-address-card {
  background-color: white;
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.location-address-heading {
  color: #dc3545; /* Bootstrap danger color */
  margin-bottom: 0.5rem;
}

.location-phone,
.location-email {
  text-decoration: none;
  color: #212529;
  font-weight: 600;
}

.location-phone:hover,
.location-email:hover {
  text-decoration: underline;
}

.location-map-container {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.location-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .location-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .location-map-container {
    margin-top: 1.5rem;
  }
}

.service-hover {
  transition: all 0.4s ease;
  border: 1px solid #e0e0e0;
}

.service-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(216, 30, 30, 0.751);
  border-color: #e10b0b; 
}