:root {
  --primary-color: #1a3b5d;
  --primary-light: #2a5682;
  --primary-dark: #102a47;
  --secondary-color: #f5f7fa;
  --accent-color: #ff7e00;
  --accent-light: #ff9933;
  --accent-dark: #e66800;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --text-color: #333333;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #8b0000; /* dark red */
  color: #ffffff;
  border: 2px solid #8b0000;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: #a00000; /* slightly lighter on hover */
  border-color: #a00000;
}

.btn-outline {
  background-color: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.btn-outline:hover {
  background-color: #0066cc;
  color: #fff;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid #fff;
}

.btn-light:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
           /* Overlay container */
#overlay {
    position: fixed;
    display: none; /* Hidden by default */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Ensure the overlay is on top of everything */
    cursor: pointer;
}

/* Loading spinner in the center */
#overlay .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}
    

/* Header Styles */
header {
  background: linear-gradient(
    135deg,
    #7a0f0f 0%,
    #b11212 100%
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  transition: transform 0.3s ease;
  color: #fff;
}

.logo h1:hover {
  transform: scale(1.05);
}

.logo span {
  color: #fff;
}

nav {
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  color: #fff;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

nav ul li a.active::after,
nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #fff;
}

.mobile-menu:hover {
  color: #0066cc;
}

/* Page Header Styles */
.page-header {
  background-color: #7a0f0f;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section Styles */
.services {
  padding: 80px 0;
}

.service-card {
  display: flex;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding: 40px;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #7a0f0f;
}

.service-content p {
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 10px;
}

.service-features i {
  color: #7a0f0f;
  margin-right: 10px;
}

/* ... existing styles ... */

/* FAQ Section Styles */
.faq {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f1f3f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #7a0f0f;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 1000px;
}

/* ... other existing styles ... */

/* CTA Section Styles */
.cta {
  background:
    linear-gradient(
      rgba(59, 7, 7, 0.85),
      rgba(139, 0, 0, 0.85)
    ),
    url("https://cdn.pixabay.com/photo/2017/03/26/00/42/logistics-2179375_1280.jpg");
  /* example logistics delivery image (truck/warehouse) */ 

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Styles */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #a00000;
}

.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

footer h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #a00000;
}

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

.footer-links ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-dark);
}

.footer-contact p {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-contact i {
  margin-right: 10px;
  color: #a00000;
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #ccc;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
  .mobile-menu {
    display: block; /* Show the mobile menu button */
  }

  nav ul {
    flex-direction: column;
    padding: 30px 20px;
  }

  nav ul li {
    margin-left: 0;
    margin-bottom: 20px;
  }

 nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    #3b0707 0%,   /* very dark red */
    #120000 100%  /* near black */
  );
  z-index: 1001;
  transition: all 0.3s ease-in-out;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

  nav.active {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 80%; /* Leave space for the sidebar */
    width: auto;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Lower z-index than nav */
  }

  .nav-overlay.active {
    display: block;
  }
}

@media (max-width: 576px) {
  .service-image {
    min-height: 250px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .footer-content > div {
    flex: 100%;
  }
}

@media screen and (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }

  .service-card.reverse {
    flex-direction: column;
  }

  .service-card .service-image,
  .service-card .service-content {
    width: 100%;
  }

  .service-card .service-image {
    margin-bottom: 20px;
  }

  .service-card .service-image img {
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }
}

/* Add these styles to your existing CSS file */

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  /* Removing the background image */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden; /* Ensure video doesn't overflow */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

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

.track-btn {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.track-btn:hover {
  background-color: #fff;
  color: #0066cc;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #7a0f0f;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(139, 0, 0, 0.15); /* soft dark-red tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 30px;
  color: #8b0000; /* dark red */
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
}

/* Services Preview Section */
.services-preview {
  padding: 80px 0;
}

.service-preview-image.full-width {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.service-preview-image.full-width img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.service-preview-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.service-preview-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.service-preview-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.service-preview-card h3,
.service-preview-card p,
.service-preview-card .service-link {
  padding: 0 16px;
}

.service-preview-card h3 {
  margin-top: 16px;
}

.service-preview-card .service-link {
  padding-bottom: 16px;
  margin-top: 30px;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #0055aa;
}

.service-link:hover i {
  transform: translateX(5px);
}

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

/* Stats Section */
.stats {
  padding: 80px 0;
  color: #fff;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.testimonial-slider {
  display: flex;
  overflow-x: hidden;
  gap: 30px;
  margin-bottom: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

.testimonial-content p:before {
  content: '"';
  font-size: 30px;
  color: #0066cc;
  margin-right: 5px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  font-size: 14px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background-color: #0066cc;
  color: #fff;
  border-color: #0066cc;
}

/* Contact Section Styles */
/* Contact Section Styles */
.contact {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start; /* Ensures grids don't stretch to match heights */
}

.contact-info {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0066cc;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-details i {
  color: #0066cc;
  margin-right: 15px;
  font-size: 20px;
  margin-top: 3px;
}

.contact-details .detail-content {
  flex: 1;
}

.contact-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0066cc;
}

/* Make form group styles specific to contact form */
.contact-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #0066cc;
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-submit {
  text-align: right;
}

/* Map Section */
.map-container {
  height: 400px;
  margin-top: 20px;
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tracking Page Styles */
.tracking-section {
  padding: 60px 0;
}

.tracking-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.tracking-form h2 {
  margin-bottom: 15px;
  color: #333;
}

.tracking-form p {
  margin-bottom: 25px;
  color: #666;
}

.form-group {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
}

.form-group input {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}

.form-group button {
  padding: 15px 25px;
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  border: none;
  background-color: #7a0f0f;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-group button:hover {
  background-color: #7a0f0f;
}

.tracking-results {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.tracking-results h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.shipment-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.value {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.status-in-transit {
  color: #0056b3;
}

.status-delivered {
  color: #28a745;
}

.status-pending {
  color: #ffc107;
}

.tracking-timeline h4 {
  margin-bottom: 20px;
  color: #333;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #ddd;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-icon {
  position: absolute;
  left: -40px;
  width: 30px;
  height: 30px;
  background-color: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-item.completed .timeline-icon {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.timeline-item.active .timeline-icon {
  background-color: #0056b3;
  border-color: #0056b3;
  color: white;
}

.timeline-content {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.timeline-content h5 {
  margin-bottom: 5px;
  color: #333;
}

.timeline-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.tracking-info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-block {
  text-align: center;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.info-block .icon {
  font-size: 40px;
  color: #7a0f0f;
  margin-bottom: 20px;
}

.info-block h3 {
  margin-bottom: 15px;
  color: #333;
}

.info-block p {
  color: #666;
}

/* FAQ Section */
/* FAQ Section Styles */
.faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

.faq-question h4 {
  margin: 0;
  color: #333;
}

.faq-question i {
  /* font-size: 20px; */
  color: #7a0f0f;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }

  .form-group input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .form-group button {
    border-radius: 4px;
    width: 100%;
  }

  .shipment-info {
    grid-template-columns: 1fr;
  }

  .tracking-info-blocks {
    grid-template-columns: 1fr;
  }
}

/* Responsive styles for contact section */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .map-container {
    height: 300px;
  }
}

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

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 576px) {
  .feature-grid,
  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
