/* Global Styles */
:root {
  --primary: #002366;
  --secondary: #FF6B35;
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --white: #FFFFFF;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--dark-gray);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn-primary, .btn-primary:visited, .btn-primary:active {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/otds-web-hero.webp') no-repeat center/cover;
  color: var(--white);
  padding: 180px 0 100px;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light-gray);
}
/* Services Heading Styling */
.services .section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "Our" in dark blue */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.services .section-header h2 .highlight-word {
  color: #FF6B35; /* "Services" in red */
  /* Alternative: color: var(--secondary); for orange */
}

/* Ensure this global style exists */
.highlight-word {
  display: inline; /* Maintains proper text flow */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--dark-gray);
  line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}
/* Tracking Widget */
.tracking {
  padding: 80px 0;
  background: var(--white);
}
/* Tracking Heading */
.tracking .section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "Track Your" in dark blue (#002366) */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.tracking .section-header h2 .highlight-word {
  color: #FF6B35; /* "Shipment" in red */
  /* Alternative: color: var(--secondary); for orange (#FF6B35) */
}

/* Shared divider style */
.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary);
  margin: 0 auto 20px;
}
.tracking-widget {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.tracking-widget input {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
}

.tracking-widget button {
  border-radius: 0 5px 5px 0;
}
/* What We Offer Section */
.what-we-offer {
  padding: 100px 0;
  background: var(--white);
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* Your primary color (dark blue) */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.highlight-word {
  color: #FF0000; /* Bright red */
  /* OR use your existing secondary color: */
  /* color: var(--secondary); */ /* Your orange color */
}

.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary); /* Your orange color */
  margin: 0 auto 20px;
}

/* Rest of your existing CSS remains unchanged */

.offer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.offer-group {
  display: flex;
  flex-direction: column;
}

.square-offer-card {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.square-offer-card:hover .offer-image {
  transform: scale(1.05);
}

.offer-description {
  margin-top: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}

.offer-description h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-description p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .offer-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .offer-group {
    margin-bottom: 40px;
  }
  
  .offer-group:last-child {
    margin-bottom: 0;
  }
}
/* Why Choose Us */
.why-us {
  padding: 80px 0;
  background: var(--light-gray);
}
/* Why Choose Us Heading */
.why-us .section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "Why Choose" in dark blue */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.why-us .section-header h2 .highlight-word {
  color: #FF6B35; /* "OTDS?" in red */
  /* Alternative: color: var(--secondary); for orange */
}

/* Shared divider style */
.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary);
  margin: 0 auto 20px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.usp-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.usp-card i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
/* Vision & Mission Section */
.vision-mission {
  padding: 100px 0;
  background: var(--white);
}
/* Vision & Mission Heading Styling */
.vision-mission .section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "Company" in dark blue */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.vision-mission .section-header h2 .highlight-word {
  color: #FF6B35; /* "Vision & Mission" in red */
  /* Alternative: color: var(--secondary); for orange */
}

/* Make sure this is in your global styles */
.highlight-word {
  display: inline; /* Ensures proper inline behavior */
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary);
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vm-card {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.vm-icon i {
  font-size: 2rem;
  color: var(--white);
}

.vm-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.vm-card p {
  color: var(--dark-gray);
  line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .vm-grid {
    grid-template-columns: 1fr;
  }
}
/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}
/* Testimonials Heading */
.testimonials .section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "What Our" in dark blue (#002366) */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.testimonials .section-header h2 .highlight-word {
  color:#FF6B35 ; /* "Clients Say" in red */
  /* Alternative: color: var(--secondary); for orange (#FF6B35) */
}

/* Shared divider style (already in your CSS) */
.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary);
  margin: 0 auto 20px;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.testimonial p {
  font-style: italic;
}

.testimonial span {
  font-weight: 600;
  color: var(--secondary);
}
/* About Company Section */
.about-company {
  padding: 100px 0;
  background: var(--light-gray);
  text-align: center;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "About the" in dark blue */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2 .highlight-word {
  color: #FF6B35; /* "Company" in red */
  /* OR use your brand orange: color: var(--secondary); */
}

.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary); /* Orange divider */
  margin: 0 auto 20px;
}
/* About Company Section */
.about-company {
  padding: 100px 0;
  background: var(--light-gray);
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-divider {
  width: 100px;
  height: 2px;
  background: var(--secondary);
  margin: 0 auto 20px;
}

.about-content {
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
}
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/2.2;
  background: #f5f5f5;
}
.about-slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-slider-img.active {
  opacity: 1;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
}
/* Admin Testimonial Section */
.admin-testimonial {
  padding: 100px 0;
  background: var(--light-gray);
}
/* Consistent highlight styling */
.highlight-word {
  color: #FF0000; /* Red color */
  /* Alternative: color: var(--secondary); for your orange */
}

/* Admin Testimonial Heading Specifics */
.admin-testimonial .section-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary); /* "What Our" in dark blue */
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.admin-testimonial .section-header h2 .highlight-word {
  color: #FF6B35; /* "Admin Says" in red */
  /* OR use brand orange: color: var(--secondary); */
}

.founder-profile {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Founder Image Styling */
.founder-image-container {
  width: 300px;
  flex-shrink: 0;
  position: relative;
}

.image-wrapper {
  width: 100%;
  padding-top: 125%; /* Creates a taller container (5:4 ratio) */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* Ensures head is always visible */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .image-wrapper {
    padding-top: 100%; /* Square on tablet */
  }
}

@media (max-width: 576px) {
  .founder-image-container {
    width: 250px;
  }
  
  .image-wrapper {
    padding-top: 120%; /* Slightly taller on mobile */
  }
}

.founder-info {
  flex: 1;
}

.founder-info h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.founder-title {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.founder-description p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--dark-gray);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .founder-profile {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .founder-image-container {
    width: 250px;
  }
  
  .founder-info {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .founder-image-container {
    width: 200px;
  }
  
  .founder-info h3 {
    font-size: 1.8rem;
  }
}

/* Quote Form */
.quote-form {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.quote-form h2 {
  color: var(--white);
}

.quote-form form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quote-form input, .quote-form select {
  padding: 15px;
  border-radius: 5px;
  border: none;
}

.quote-form button {
  grid-column: span 2;
}

/* Footer */
/* Footer Styles */
footer {
    background: #002366;
    color: #fff;
    padding: 60px 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #FF6B35;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 20px;
  }
  
  .footer-about {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-contact i {
    color: #FF6B35;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
  }
  
  .footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-col ul li a:hover {
    color: #FF6B35;
    transform: translateX(5px);
  }
  
  .footer-col ul li i {
    font-size: 0.8rem;
  }
  
  /* Newsletter Form */
  .newsletter-form {
    margin-top: 20px;
  }
  
  .newsletter-form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    background: #FF6B35;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
  }
  
  .newsletter-form button:hover {
    background: #e05a2b;
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  
  .social-links a:hover {
    background: #FF6B35;
    transform: translateY(-3px);
  }
  
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .legal-links {
    display: flex;
    gap: 20px;
  }
  
  .legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
  }
  
  .legal-links a:hover {
    color: #FF6B35;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .legal-links {
      justify-content: center;
    }
  }

/* Responsive Adjustments */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav ul {
    margin: 20px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .quote-form form {
    grid-template-columns: 1fr;
  }

  .quote-form button {
    grid-column: span 1;
  }
}

/* Chatbot Overlay Icon */
#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#chatbot-icon i {
  font-size: 24px;
}

/* Chatbot Container */
#chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

#chatbot-container.hidden {
  display: none;
}

.chatbot-header {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 16px;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background-color: #f9f9f9;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
}

.chatbot-input button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

/* Tracking Results Styles */
.tracking-result {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tracking-status {
  width: 100%;
}

.tracking-status h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.tracking-details {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.status-section {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.status-section p {
  margin: 10px 0;
  font-size: 1.1em;
}

.status-section strong {
  color: #2c3e50;
}

.status-pending {
  color: #f39c12;
}

.status-in-transit {
  color: #3498db;
}

.status-delivered {
  color: #27ae60;
}

.status-cancelled {
  color: #e74c3c;
}

.address-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pickup-address,
.delivery-address {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.pickup-address h4,
.delivery-address h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.pickup-address p,
.delivery-address p {
  margin: 5px 0;
  color: #666;
}

.loading {
  text-align: center;
  color: #666;
  font-style: italic;
}

.error {
  color: #e74c3c;
  text-align: center;
  padding: 10px;
  background: #fde8e8;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tracking-details {
    grid-template-columns: 1fr;
  }
  
  .address-section {
    grid-template-columns: 1fr;
  }
}

/* Tracking Updates Styles */
.tracking-updates {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tracking-updates h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.update-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.update-item p {
  margin: 5px 0;
}

.update-item strong {
  color: #2c3e50;
}

.update-item small {
  color: #666;
  font-size: 0.9em;
}
/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}
.gallery-section .section-header {
  margin-bottom: 40px;
}
.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--light-gray);
}
.gallery-scroll::-webkit-scrollbar {
  height: 10px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 5px;
}
.gallery-scroll img {
  height: 220px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.gallery-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .gallery-scroll img {
    height: 140px;
  }
}