/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

/* =============================================
   Section Titles
   ============================================= */
.section_title {
  text-align: center;
  margin-bottom: 60px;
}

.section_title h4 {
  font-family: 'Oxygen', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.section_title h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #017cc0;
}

.section_title p {
  color: #777;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.section_title.left {
  text-align: left;
}

.section_title.left h4::after {
  left: 0;
  transform: none;
}

.section_title.left p {
  margin: 0;
}

.section_title.white h4,
.section_title.white p {
  color: #fff;
}

.section_title.white h4::after {
  background: #fff;
}

/* =============================================
   Header
   ============================================= */

/* Top Bar */
.header_top_area {
  background: #222;
  padding: 8px 0;
}

.header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_top_menu ul,
.header_top_social ul {
  display: flex;
  gap: 20px;
}

.header_top_menu a {
  color: #aaa;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header_top_menu a:hover {
  color: #017cc0;
}

.header_top_social a {
  color: #aaa;
  font-size: 14px;
}

.header_top_social a:hover {
  color: #017cc0;
}

/* Logo Area */
.header_logo_area {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site_logo {
  flex-shrink: 0;
}

.site_logo img {
  height: 55px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Oxygen', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  letter-spacing: 2px;
}

.logo-accent {
  color: #017cc0;
}

.header_top_service {
  display: flex;
  gap: 30px;
}

.header_we_are {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header_we_are > i {
  font-size: 30px;
  color: #017cc0;
}

.header_we_are dl {
  line-height: 1.4;
}

.header_we_are dt {
  font-weight: 700;
  font-size: 14px;
  color: #222;
}

.header_we_are dd {
  font-size: 13px;
  color: #777;
}

.header_we_are dd a {
  color: #777;
}

.header_we_are dd a:hover {
  color: #017cc0;
}

/* Navigation */
.header_bottom_area {
  background: #017cc0;
  position: relative;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-menu > li > a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
  background: rgba(255, 255, 255, 0.15);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #555;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu li a:hover {
  background: #017cc0;
  color: #fff;
}

/* =============================================
   Hero Slider
   ============================================= */
.main_slider_area {
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  height: 550px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.slide-overlay.light {
  background: rgba(255, 255, 255, 0.1);
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
}

.slide-content[data-align="right"] {
  align-items: flex-end;
  text-align: right;
}

.slide-title {
  font-family: 'Oxygen', sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 0;
}

.slide-title.white {
  color: #fff;
}

.slide-title.dark {
  color: #222;
}

.slide-subtitle {
  font-family: 'Oxygen', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.slide-subtitle.accent {
  color: #2789c6;
}

.slide-subtitle.dark {
  color: #222;
}

.slide-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.btn-primary {
  background: #017cc0;
  color: #fff;
}

.btn-primary:hover {
  background: #015f94;
}

.btn-white {
  background: #fff;
  color: #017cc0;
}

.btn-white:hover {
  background: #f0f0f0;
}

/* Slider Nav */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(1, 124, 192, 0.7);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav:hover {
  background: rgba(1, 124, 192, 1);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #017cc0;
}

.slider-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #017cc0;
  z-index: 10;
  animation: sliderTimer 6s linear infinite;
}

@keyframes sliderTimer {
  0% { width: 0; }
  100% { width: 100%; }
}

/* =============================================
   Why Choose Us
   ============================================= */
.why_us_area {
  background: #f5f5f5;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single_why_us {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border-bottom: 3px solid transparent;
}

.single_why_us:hover {
  border-bottom-color: #017cc0;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #017cc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 32px;
  color: #fff;
}

.single_why_us h5 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.single_why_us p {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

/* =============================================
   We Are Best At
   ============================================= */
.weare_best_area {
  background: #fff;
}

.best-at-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.single_weare_best {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.single_weare_best.right {
  text-align: right;
}

.single_weare_best:last-child {
  margin-bottom: 0;
}

.best-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #017cc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-icon i {
  font-size: 24px;
  color: #fff;
}

.best-info h6 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.best-info p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
}

.best-at-center {
  display: flex;
  justify-content: center;
}

.best-center-image {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #e8f4fd, #d0e8f7);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.best-center-image i {
  color: #017cc0;
  margin-bottom: 10px;
}

.best-center-image p {
  color: #017cc0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

/* =============================================
   Get A Quote
   ============================================= */
.get_quote_area {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2740 100%);
  padding: 80px 0;
  position: relative;
}

.get_quote_area::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 124, 192, 0.2), rgba(1, 124, 192, 0.05));
}

.quote-content {
  position: relative;
  z-index: 1;
}

.quote-form-area {
  max-width: 700px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.quote-form select option {
  color: #333;
  background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #017cc0;
}

.quote-form textarea {
  margin-bottom: 15px;
  resize: vertical;
}

.quote-form .btn {
  border: none;
}

/* =============================================
   Counter
   ============================================= */
.counter_area {
  background: #017cc0;
  padding: 60px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.single-counter {
  color: #fff;
}

.single-counter i {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.single-counter .counter {
  display: block;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Oxygen', sans-serif;
  margin-bottom: 8px;
}

.single-counter h4 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* =============================================
   Transport Features
   ============================================= */
.transport_features_area {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #2d6da3, #1a3a5c);
}

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

.features-content {
  margin-left: 50%;
  padding-left: 50px;
  background: #1a3a5c;
  padding: 50px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}

.accordion-header:hover {
  color: #5bb5e8;
}

.accordion-header i {
  font-size: 16px;
  transition: transform 0.3s;
  color: #017cc0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body p {
  padding: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

/* =============================================
   Our Clients
   ============================================= */
.our_clients_area {
  background: #fff;
}

.client-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scrollClients 20s linear infinite;
}

.client-item {
  flex: 0 0 25%;
  padding: 15px 30px;
}

.client-logo {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  color: #999;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.client-logo:hover {
  border-color: #017cc0;
  color: #017cc0;
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   Testimonials
   ============================================= */
.testimonial_area {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2740 100%);
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
}

.testi-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 25px;
}

.testi-content h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testi-content span {
  color: #5bb5e8;
  font-size: 14px;
}

.testi-nav {
  text-align: center;
  margin-top: 30px;
}

.testi-nav button {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  margin: 0 5px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testi-nav button:hover {
  background: #017cc0;
  border-color: #017cc0;
}

/* =============================================
   Blog
   ============================================= */
.blog_area {
  background: #f5f5f5;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.blog-post {
  display: flex;
  gap: 15px;
  background: #fff;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  background: #f9f9f9;
  gap: 20px;
}

.blog-sidebar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #999;
  font-size: 16px;
  transition: color 0.3s;
  position: relative;
}

.blog-sidebar a span {
  font-size: 10px;
  display: none;
}

.blog-sidebar a:hover {
  color: #017cc0;
}

.blog-content {
  flex: 1;
  padding: 15px 15px 15px 0;
}

.blog-image {
  height: 180px;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
}

.blog-content h6 {
  margin-bottom: 8px;
}

.blog-content h6 a {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
}

.blog-content h6 a:hover {
  color: #017cc0;
}

.blog-date {
  color: #999;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.blog-date i {
  margin-right: 5px;
}

.blog-content > p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

/* =============================================
   Footer
   ============================================= */
.footer_area {
  background: #1a2a3a;
  color: #aaa;
}

.footer_top_area {
  padding-top: 40px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-row {
  padding-top: 40px;
  border-bottom: none;
}

.widget_title {
  font-family: 'Oxygen', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #017cc0;
}

.address_list li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.6;
}

.address_list li i {
  color: #017cc0;
  font-size: 18px;
  margin-top: 3px;
}

.address_list li strong {
  color: #ccc;
}

.subscribe_form {
  margin: 15px 0;
}

.subscribe_form input {
  width: 100%;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  outline: none;
}

.subscribe_form input::placeholder {
  color: #777;
}

.newsletter-note {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
}

.footer_social_icons {
  display: flex;
  gap: 10px;
}

.footer_social_icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
  transition: all 0.3s;
}

.footer_social_icons a:hover {
  background: #017cc0;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #017cc0;
}

.footer-links a::before {
  content: '\f105';
  font-family: FontAwesome;
  margin-right: 8px;
  color: #017cc0;
}

.footer-truck {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-truck-icon {
  text-align: center;
  color: #017cc0;
  opacity: 0.6;
}

.footer-truck-icon p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
}

.twitter-feed li {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.7;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.twitter-feed a {
  color: #017cc0;
  font-weight: 600;
}

.twitter-feed span {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 5px;
}

.footer-col .read-more {
  color: #017cc0;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  margin-top: 10px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.footer-logo .logo-text {
  font-size: 24px;
}

.footer_copyright {
  font-size: 13px;
}

.footer_copyright li {
  margin-bottom: 3px;
}

.footer_copyright a {
  color: #017cc0;
  font-weight: 700;
}

/* Footer Bottom */
.footer_bottom_area {
  background: #111d28;
  padding: 15px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom ul {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #017cc0;
}

/* =============================================
   About Section
   ============================================= */
.about_area {
  background: #fff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-mission {
  color: #222 !important;
  font-size: 18px !important;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid #017cc0;
  display: inline-block;
}

/* =============================================
   Contact Info Section
   ============================================= */
.contact_info_area {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2740 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #017cc0;
  transform: translateY(-5px);
}

.contact-card i {
  color: #017cc0;
  margin-bottom: 20px;
}

.contact-card h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

.contact-card p a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.contact-card p a:hover {
  color: #5bb5e8;
}

.contact-card span {
  display: block;
  color: #5bb5e8;
  font-size: 13px;
  margin-top: 8px;
}

/* =============================================
   Footer Hours List
   ============================================= */
.hours-list {
  list-style: none;
}

.hours-list li {
  margin-bottom: 12px;
  font-size: 13px;
  color: #aaa;
}

.hours-list li i {
  color: #017cc0;
  margin-right: 8px;
  width: 16px;
}

.hours-list li strong {
  color: #ccc;
}

.hours-note {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 11px;
  color: #777;
  font-style: italic;
}

/* =============================================
   Slider Background Images
   ============================================= */
.slide-bg-1 {
  background: url('slide-1.jpg') center/cover no-repeat;
}
.slide-bg-2 {
  background: url('slide-2.jpg') center/cover no-repeat;
}
.slide-bg-3 {
  background: url('slide-3.jpg') center/cover no-repeat;
}

.slide-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 30px;
}

/* =============================================
   Active Nav Link
   ============================================= */
.nav-menu > li > a.active {
  background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   Page Banner
   ============================================= */
.page-banner {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d6da3 100%);
  padding: 60px 0;
  text-align: center;
}

.page-banner h2 {
  font-family: 'Oxygen', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 8px;
}

/* =============================================
   Page Content (inner pages)
   ============================================= */
.page-content h3 {
  font-family: 'Oxygen', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #017cc0;
}

.content-narrow {
  max-width: 800px;
}

.content-narrow.center,
.content-narrow[style*="text-align:center"] h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}

.page-content p a {
  color: #017cc0;
}

.page-content p a:hover {
  text-decoration: underline;
}

/* =============================================
   About Highlights
   ============================================= */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 50px 0;
}

.highlight-card {
  text-align: center;
  padding: 30px 15px;
  background: #f8f9fa;
  border-bottom: 3px solid #017cc0;
}

.highlight-card i {
  color: #017cc0;
  margin-bottom: 15px;
}

.highlight-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 13px;
  color: #777;
  margin-bottom: 0;
}

.about-mission-block {
  background: #017cc0;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.about-mission-block h4 {
  font-family: 'Oxygen', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.about-mission-block p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 0;
}

/* =============================================
   Services Grid (home page)
   ============================================= */
.services_preview {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.service-card:hover {
  border-bottom-color: #017cc0;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #017cc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 28px;
  color: #fff;
}

.service-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.service-card p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

/* =============================================
   Services Detail Grid (services page)
   ============================================= */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-detail-card {
  padding: 40px;
  background: #f8f9fa;
  border-left: 4px solid #017cc0;
  transition: all 0.3s;
}

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

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: #017cc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-detail-icon i {
  font-size: 24px;
  color: #fff;
}

.service-detail-card h4 {
  font-family: 'Oxygen', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.service-detail-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

/* =============================================
   Customers Grid
   ============================================= */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.customer-card {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.customer-card:hover {
  border-color: #017cc0;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.customer-card i {
  color: #017cc0;
  font-size: 32px;
  margin-bottom: 15px;
}

.customer-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.customer-card p {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}

.customer-card-cta {
  background: #017cc0;
  border-color: #017cc0;
}

.customer-card-cta i,
.customer-card-cta h5 {
  color: #fff;
}

.customer-card-cta p {
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   FAQ Page
   ============================================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container .accordion-item {
  border: 1px solid #eee;
  margin-bottom: 10px;
  background: #fff;
}

.faq-container .accordion-header {
  color: #222;
  padding: 18px 20px;
  background: #f8f9fa;
}

.faq-container .accordion-header:hover {
  color: #017cc0;
}

.faq-container .accordion-body p {
  color: #666;
  padding: 0 20px 20px;
}

.faq-container .accordion-body p a {
  color: #017cc0;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-side h3,
.contact-form-side h3 {
  font-family: 'Oxygen', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid #017cc0;
  display: inline-block;
}

.contact-info-side > p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-info-item i {
  color: #017cc0;
  font-size: 20px;
  margin-top: 3px;
  width: 25px;
  text-align: center;
}

.contact-info-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info-item a {
  color: #017cc0;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #017cc0;
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form textarea {
  margin-bottom: 15px;
  resize: vertical;
}

/* Map placeholder */
.map-area {
  background: #e9ecef;
}

.map-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.map-placeholder i {
  color: #017cc0;
  margin-bottom: 15px;
}

.map-placeholder h4 {
  font-family: 'Oxygen', sans-serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}

/* =============================================
   Contact CTA Section
   ============================================= */
.contact_cta_area {
  background: #017cc0;
  padding: 60px 0;
}

.cta-content {
  text-align: center;
}

.cta-content h3 {
  font-family: 'Oxygen', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cta-buttons .btn-white {
  border: 2px solid #fff;
}

.cta-buttons .btn-white:hover {
  background: #fff;
  color: #017cc0;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: #017cc0;
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* =============================================
   Legal Pages (Privacy, Terms)
   ============================================= */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h4 {
  font-family: 'Oxygen', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-top: 35px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 10px 0 20px 20px;
  color: #555;
  line-height: 1.8;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content a {
  color: #017cc0;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-updated {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-bottom: 25px;
}

.legal-content .contact-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.legal-content .contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.legal-content .contact-list li i {
  color: #017cc0;
  width: 20px;
  text-align: center;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 991px) {
  .header_top_service {
    display: none;
  }

  .header_logo {
    justify-content: center;
  }

  .navbar-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 200;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #017cc0;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > li > a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.1);
  }

  .dropdown-menu li a {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.05);
    padding-left: 40px;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .slider-container {
    height: 400px;
  }

  .slide-title {
    font-size: 36px;
  }

  .slide-subtitle {
    font-size: 20px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .best-at-grid {
    grid-template-columns: 1fr;
  }

  .best-at-center {
    order: -1;
  }

  .single_weare_best.right {
    text-align: left;
    flex-direction: row-reverse;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .features-bg {
    display: none;
  }

  .features-content {
    margin-left: 0;
    padding-left: 30px;
    padding: 30px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-description {
    font-size: 14px;
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-truck {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .header_top {
    justify-content: center;
  }

  .header_top_social {
    display: none;
  }

  .slider-container {
    height: 350px;
  }

  .slide-title {
    font-size: 26px;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .slide-content[data-align="right"] {
    align-items: flex-start;
    text-align: left;
  }

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

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .page-banner h2 {
    font-size: 26px;
  }

  .footer-row {
    grid-template-columns: 1fr;
  }

  .blog-post {
    flex-direction: column;
  }

  .blog-sidebar {
    flex-direction: row;
    justify-content: center;
  }

  .blog-content {
    padding: 15px;
  }

  .client-item {
    flex: 0 0 50%;
  }
}
