body {
  font-family: "Montserrat", sans-serif;
}

.navbar {
  padding: 0.7rem 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-text-red {
  font-weight: 800;
  color: red;
  font-size: 1.4rem;
}

.logo-text-blue {
  font-weight: 700;
  color: #007bff;
  font-size: 1.2rem;
  margin-top: -5px;
}

.lang-support {
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  font-weight: 600;
  color: black !important;
}

.phone-box {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    margin-top: 10px;
  }

  .phone-box {
    margin-top: 10px;
  }
}
.hero {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.99),
      rgba(0, 0, 0, 0.5)
    ),
    url("assets/AdobeStock_713854283_Preview-3.webp");

  background-repeat: no-repeat;
  background-size: cover;
}
.hero-first {
  background-color: #ffffff1f;
  padding: 20px;
  margin: 45px !important;
}

.hero-heading {
  margin: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.stats-badge {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0000;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-badge i {
  color: #ff0000;
}

.hero-title {
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #ffffff;
}

.text-red {
  color: #ff0000 !important;
}

.hero-subtitle {
  color: #999999;
  font-weight: 400;
  line-height: 1.5;
}

.btn-call {
  width: 4rem;
  height: 4rem;
  background: #1e90ff;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-call:hover {
  background: #1c7ed6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
  color: white;
}

.btn-setup {
  background: #007bff;
  border: none;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-setup:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  color: white;
}

/* Animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}



@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .stats-badge {
    font-size: 0.65rem;
  }

  .btn-call {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.marque {
  background-color: black;
}

.slider-wrapper {
  overflow: hidden;
  background: #111;
  width: 100%;
  padding: 30px 0;
}

.slider-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  animation: marquee-scroll linear infinite;
  width: fit-content;
}

.slider-track img {
  height: 60px;
  margin: 0 40px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


.truck-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2048/591;
  perspective: 1000px;
  overflow: hidden;
}
.truck-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 10px;
}

.truck-title {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px black;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.truck-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.flip-card-front {
  background-size: cover;
  background-position: center;
}

.flip-card-back {
  background-color: #0d6efd;
  color: white;
  transform: rotateY(180deg);
  text-align: center;
}



/* Mobile phones (portrait and smaller) */
@media (max-width: 480px) {
    .flip-card-front, .flip-card-back {
        padding: 0.5rem;
        font-size: 0.9rem;
        flex-direction: column;
    }
}

/* Tablets (landscape and portrait) */
@media (min-width: 481px) and (max-width: 768px) {
    .flip-card-front, .flip-card-back {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

/* Small laptops and desktops */
@media (min-width: 769px) and (max-width: 1024px) {
    .flip-card-front, .flip-card-back {
        padding: 1rem;
        font-size: 1.0rem;
    }
}

/* Large screens (desktops and up) */
@media (min-width: 1025px) {
    .flip-card-front, .flip-card-back {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}



/* === Backgrounds === */
.card {
  position: relative;

  overflow: hidden;
  border: none !important;
  outline: none !important;
  cursor: pointer;
}

.card-bg {
  position: absolute;
  inset: 0;
  filter: brightness(0.7);
  transition: filter 0.5s ease;
  z-index: 0;
}

.card:hover .card-bg {
  filter: brightness(1);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 123, 255,0.8), rgba(0, 123, 255,0));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card-btn {
  background-color: red;
  color: white;
  transition: all 0.5s ease;
}

.card:hover .card-btn {
  color: red;
  background-color: white;
  border-radius: 50px !important;
}

.card-btn svg {
  transition: all 0.5s ease;
}

.card:hover .card-btn svg {
  fill: red;
  transform: rotate(45deg);
}

/* Specific background image */
.card1-bg {
  background: url(assets/videoframe_2527.png) no-repeat center center / cover;
}
.card-container {
  background-image: url(assets/videoframe_2228.png);
}

.card2-bg {
  background-image: url(assets/videoframe_2228.png);
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
  height: 250px;
  display: flex;
  align-items: end;
  transform: scale(1);
  border-radius: 0px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  justify-content: end;
}

/* Background effect on hover */
.card-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: transform 0.5s ease, filter 0.5s ease;
  z-index: 0;
}

.service-card:hover .card-background {
  transform: scale(1.05);
}

/* Optional background gradient layer */
.service::before {
  content: "";
  inset: 0;
  background: linear-gradient(to top, rgba(0, 123, 255,0.8), rgba(0, 123, 255,0));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-title {
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;
}

.arrow-btn {
  border-radius: 0 !important;
  background: #007bff;
  color: white;
  border: none;
  padding: 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

/* Smooth icon rotate */
.arrow-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: transform 0.5s ease;
}

.service-card:hover .arrow-btn {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50px !important;
}

.service-card:hover .arrow-btn svg {
  transform: rotate(45deg);
  fill: #007bff;
}

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #007bff;
  font-size: 0.75rem;
  padding: 3px 7px;
  font-weight: bold;
  z-index: 2;
}

.card-red-gradient-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 123, 255,0.8), rgba(0, 123, 255,0));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.card-red-gradient-hover:hover::before {
  opacity: 1;
}

.card-red-gradient-hover:hover::before {
  opacity: 1;
}

.services-navbar {
  background-color: #000;
  padding: 20px 0;
  padding-left: 16rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 300px; ;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.services-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.services-row-2 .service-item:nth-child(1) {
  grid-column: 1;
}

.services-row-2 .service-item:nth-child(2) {
  grid-column: 2;
}

.services-row-2 .service-item:nth-child(3) {
  grid-column: 3;
}

.services-row-2 .all-services {
  grid-column: 4;
  justify-self: center;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
  align-items: start;
}

.service-item:hover {
  color: #007bff;
}

.service-icon {
  width: 40px;
  height: 40px;
  background-color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.service-content h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.service-content p {
  color: #ccc;
  font-size: 13px;
  margin: 0;
  line-height: 1.2;
}

.all-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  background-color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.all-services:hover {
  background-color: white;
  color: red;
  transform: translateY(-2px);
}

.all-services svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .services-row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .services-row-2 .service-item:nth-child(1) {
    grid-column: 1;
  }

  .services-row-2 .service-item:nth-child(2) {
    grid-column: 2;
  }

  .services-row-2 .service-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .services-row-2 .all-services {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-row-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-row-2 .service-item:nth-child(1),
  .services-row-2 .service-item:nth-child(2),
  .services-row-2 .service-item:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .services-row-2 .all-services {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-top: 10px;
  }

  .services-container {
    padding: 0 15px;
    padding-left: 7rem ;
  }

  .service-content h3 {
    font-size: 14px;
  }

  .service-content p {
    font-size: 12px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .service-icon svg {
    width: 18px;
    height: 18px;
  }

  .all-services {
    font-size: 14px;
    padding: 12px 16px;
  }
  

}

@media (max-width: 480px) {
  .service-item {
    padding: 8px;
  }

  .service-content h3 {
    font-size: 13px;
  }
}

.highlight-red {
  color: red;
  font-weight: bold;
}

.left-title {
  font-size: 3rem;
  font-weight: 700;
}

.sub-text {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
}

.btn-red {
  background-color: red;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem 2rem;
}

.btn-red:hover {
  color: red;
  background-color: white;
}



.about-btn:hover {
  background-color: white;
  color: red;
  transition: all ease 0.6s;
  border: red 3px solid;
}

.about-btn {
  font-weight: bold;
  color: white;
  background-color: #007bff;
  border: none;
}





.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.highlight-red {
  color: #0d6efd;
}

.feature-box {
  background-color: #f8f9fc;
  border-left: 2px solid #0d6efd;
  padding: 10px 15px;
  margin-bottom: 12px;
  height: 100%;
}

.feature-box h6 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.bullet {
  color: #0d6efd;
  font-weight: bold;
  margin-right: 6px;
}

.call-icon {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #5c4ce0;
  color: white;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.info-box p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
}

.left-col .row > div:last-child {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }

  .left-col .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}





.red-overlay-section {
    position: relative;
    background-image: url('https://placehold.co/800x600/000000/FFFFFF?text=Background+Image'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem; /* Rounded corners */
    overflow: hidden; /* Ensure overlay respects border-radius */
    min-height: 300px; /* Ensure a minimum height */
    display: flex;
    align-items: center;
    justify-content: center;}
.red-overlay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* Bootstrap's danger color with opacity */
    z-index: 1;
}
.red-overlay-content {
    position: relative;
    z-index: 2; /* Content above the overlay */
    color: #ffffff;
    text-align: center;
    padding: 1.5rem; /* Equivalent to p-6, p-8, p-10 in Tailwind */
}
.star-icon {
    position: absolute;
    top: 1.5rem; /* Adjust as needed */
    right: 1.5rem; /* Adjust as needed */
    color: white;
    font-size: 1.5rem;
    z-index: 3; /* Above content and overlay */
}
.star-icon::before {
    content: '\2605'; /* Unicode star character */
}
.btn-custom-white {
    background-color: #ffffff;
    color: #007bff; /* Bootstrap danger color */
    font-weight: bold;
    padding: 0.75rem 2rem; /* py-3 px-8 */ /* rounded-full */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* shadow-lg */
    transition: all 0.3s ease;
    display: inline-flex; /* To align icon and text */
    align-items: center;
    width: 95%; 
    justify-content: center;
    border-radius: 0px;
}
.btn-custom-white:hover {
    background-color: #f8f9fa; /* hover:bg-gray-100 */
  color: #007bff; /* Keep color consistent on hover */
}
.text-red-600-custom {
    color:#007bff; /* Bootstrap's danger color */
}

/* Responsive adjustments for text and padding */
@media (min-width: 576px) { /* Small devices (sm) */
    .display-4-sm {
        font-size: 3.5rem; /* Equivalent to text-5xl */
    }
    .lead-sm {
        font-size: 1.25rem; /* Equivalent to text-lg */
    }
    .p-sm-8 {
        padding: 2rem !important;
    }
    .red-overlay-content {
        padding: 2rem;
    }
}
@media (min-width: 768px) { /* Medium devices (md) */
    .display-4-md {
        font-size: 4rem; /* Equivalent to text-6xl */
    }
    .p-md-12 {
        padding: 3rem !important;
    }
    .red-overlay-content {
        padding: 2.5rem;
    }
}
@media (min-width: 992px) { /* Large devices (lg) */
    .text-lg-start {
        text-align: left !important;
    }
    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .p-lg-16 {
        padding: 4rem !important;
    }
    .red-overlay-content {
        padding: 3rem;
    }
} 
.heading {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.2;
}
.heading .red {
  color: red;
}
.rating-box {
  background-color: white;
  border-radius: 12px;
}
.star-rating i {
  color: #fbbc04;
}
.google-colored {
  font-weight: bold;
}
.google-colored span:nth-child(1) { color: #4285F4; }
.google-colored span:nth-child(2) { color: #EA4335; }
.google-colored span:nth-child(3) { color: #FBBC05; }
.google-colored span:nth-child(4) { color: #4285F4; }
.google-colored span:nth-child(5) { color: #34A853; }
.google-colored span:nth-child(6) { color: #EA4335; }

.review-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.initial-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.btn-google {
  background-color: #2962ff;
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }
}
.contact{
  background-image: linear-gradient(to right,rgb(0, 123, 255, 1),rgb(0, 123, 255, 0.5)),url('https://logitydispatch.com/wp-content/themes/Logitydispatch/assets/images/form-bg.webp');
  background-size: cover;
  margin-top: 7rem;
}



        
.form-container {
  max-width: 700px;
  margin: 20px auto;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header {
  background-color: #fff;
  border-bottom: 3px solid #007bff;
  padding: 20px 30px 15px;
}

.header h2 {
  color: #007bff;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}

.header .star {
  color: #007bff;
  margin-right: 8px;
}

.form-body {
  padding: 30px;
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control::placeholder {
  color: #adb5bd;
}

.checkbox-container {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  padding: 15px;
  margin: 20px 0;
}

.form-check {
  margin-bottom: 15px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.1em;
  margin-right: 8px;
}

.form-check-label {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.privacy-links a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.privacy-links a:hover {
  text-decoration: underline;
}

.success-badge {
  background-color: #28a745;
  color: white;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
}

.success-badge i {
  margin-right: 5px;
}

.cloudflare-badge {
  background-color: #f38020;
  color: white;
  padding: 5px 10px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-left: 10px;
}

.cloudflare-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cloudflare-text {
  font-size: 10px;
  color: #666;
  margin-left: 5px;
}

.submit-btn {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff;
}

@media (max-width: 768px) {
  .form-container {
      margin: 10px;
      border-radius: 0;
  }
  
  .header {
      padding: 15px 20px 10px;
  }
  
  .form-body {
      padding: 20px;
  }
  
  .header h2 {
      font-size: 20px;
  }
}


* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.blog-header {
  margin-bottom: 3rem;
}

.blog-title {
  font-size: 4rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.5rem;
}

.blog-title .red-text {
  color: #e60012;
}

.blog-subtitle {
  color: #6c757d;
  font-size: 1.25rem;
  font-weight: 400;
}

.view-all-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff;
}

.view-all-btn::after {
  content: '→';
  font-size: 1.2rem;
}

.blog-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-date::before {
  content: '•';
  color: #e60012;
  margin-right: 8px;
  font-weight: bold;
}

.blog-category {
  color: #007bff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  float: right;
}

.blog-title-card {
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 1rem 0;
  min-height: 3.5rem;
}

.read-article-btn {
  color: #0077b5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.read-article-btn:hover {
  color: #0077b5;
}

.read-article-btn::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.read-article-btn:hover::after {
  transform: translateX(3px);
}

.blog-image-1 {
  background: linear-gradient(45deg, #1e3c72, #2a5298);
  position: relative;
}

.blog-image-1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('https://logitydispatch.com/wp-content/uploads/2025/07/a4e4de45-0d03-45a0-a325-0284e599742e-2048x1365.webp');
  background-size: contain;
  width: 100%;
  height: 100%;
}

.blog-image-2 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  position: relative;
}

.blog-image-2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('https://logitydispatch.com/wp-content/uploads/2025/07/3e7d1356-1cbf-4d4a-94f1-f97f84d755dc-2048x1365.webp');
  background-size: contain;
  width: 100%;
  height: 100%;
}

.blog-image-3 {
  background: linear-gradient(45deg, #f093fb, #f5576c);
  position: relative;
}

.blog-image-3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('https://logitydispatch.com/wp-content/uploads/2025/06/d447c57b-fe7a-4c30-ac75-89ad3954b4be-2048x1267.webp');
  background-size: contain;
  width: 100%;
  height: 100%;
}

.blog-image-4 {
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  position: relative;
}

.blog-image-4::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('https://logitydispatch.com/wp-content/uploads/2025/04/caf3a5c8-1971-43af-955f-03e19b2cd792-2048x1365-1.webp');
  background-size: contain;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .blog-title {
      font-size: 2.5rem;
  }
  
  .blog-header .row {
      text-align: center;
  }
  
  .view-all-btn {
      margin-top: 1rem;
  }
}
.empty{
  background-image: linear-gradient(to top,rgba(0,0,0,1),rgba(0,0,0,0)),url('https://logitydispatch.com/wp-content/themes/Logitydispatch/assets/images/cta-bg.webp');
  height: 75vh;
  background-repeat: no-repeat;
background-size: cover;
margin-top: 85px;
color: white;

}
#empty-btn{
  background-color: #007bff;
color: white;
padding:10px;
border: none;
transition: all ease 0.70s;
cursor: pointer;
}
#empty-btn:hover{
  background-color: white;
  color: #007bff;
}






.faq-section {
  background-color: #000000;
  color: white;
  padding: 60px 0;
  min-height: 100vh;
}

.faq-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

.faq-title-line1 {
  display: block;
}

.faq-title-line2 {
  display: block;
}

.faq-item {
  border-bottom: 1px solid #333333;
  margin-bottom: 0;
}

.faq-question {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.75rem;
  font-weight: 400;
  padding: 30px 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  gap: 2rem;
}

.faq-question:hover {
  color: #ff3333;
}

.faq-question:focus {
  outline: none;
  box-shadow: none;
}

.plus-icon {
  color: #ff3333;
  font-size: 3.5rem;
  font-weight: 400;
  min-width: 30px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .plus-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 30px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
}

.collapse {
  transition: height 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-title {
      font-size: 2.5rem;
      margin-bottom: 30px;
  }

  .faq-question {
      font-size: 1.3rem;
      padding: 20px 0;
  }

  .plus-icon {
      font-size: 1.5rem;
  }

  .faq-section {
      padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .faq-title {
      font-size: 2rem;
  }

  .faq-question {
      font-size: 1.1rem;
      padding: 15px 0;
  }
}
  
.footer-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0 30px 0;
  position: relative;
}

.logity-brand {
  background-color: red;
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}

.dispatch-text {
  background-color: #0077b5;
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #888;
}

.contact-icon {
  background-color: #0077b5;
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text {
  font-size: 14px;
  line-height: 1.5;
}

.footer-heading {
  color: #888;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;

}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0077b5;
}

.bottom-section {
  background-color: #000;
  border-top: 1px solid #333;
  padding: 20px 0;
  color: #888;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon.facebook { background-color: #0077b5; }
.social-icon.twitter { background-color: #0077b5; }
.social-icon.instagram { background-color: #0077b5; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.youtube { background-color:#0077b5; }

.bottom-links a {
  color: #888;
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
}

.bottom-links a:hover {
  color: #0077b5;
}

.copyright-text {
  font-size: 14px;
  color: #666;
}

.rights-text {
  font-size: 14px;
  color: #666;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0077b5;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.scroll-top:hover {
  background-color: #0077b5;
}

@media (max-width: 768px) {
  .footer-section {
      padding: 40px 0 20px 0;
  }
  
  .contact-info {
      margin-top: 20px;
      margin-bottom: 30px;
  }
  
  .social-icons {
      justify-content: flex-start;
      margin-top: 15px;
  }
  
  .bottom-section {
      text-align: center;
  }
  
  .bottom-links {
      margin-bottom: 15px;
  }
  
  .bottom-links a {
      display: block;
      margin-bottom: 10px;
      margin-right: 0;
  }
}