/* Premium Logistics Company Styles */
:root {
  --primary:#3896bc;
  --secondary: #ffd700;
  --accent: #e74c3c;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
}

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

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.text-secondary {
  color: var(--secondary);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background:#3896bc;
  color: white;
  /*box-shadow: 0 4px 15px rgba(255, 255, 255, 0.805);*/
}

.btn-primary:hover {
  background:#3896bc;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgb(255, 255, 255);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Navigation */
.navbar {
  background: var(--primary);
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: #3896bc;
  backdrop-filter: blur(10px);
}

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

/* Update the logo style in your existing CSS */
.logo {
  display: block;
  height: 50px;
  transition: all 0.3s ease;
}

.logo img {
  height: 117%;
  width: auto;
  max-width: 200px
}
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--secondary);
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('truck 1.jpg') center/cover no-repeat;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 0;
  padding-top: 80px;
}

.hero .container {
  animation: fadeInUp 1s ease;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(11, 61, 145, 0.1);
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  height: 200px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* About Page */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(#3896bc, #3896bc), url('about-bg.jpg') center/cover;
  color: white;
  margin-top: 80px;
}

.page-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.about-details {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.8;
}

.about-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  text-align: center;
}

.stat-item h4 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--secondary);
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.member-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.team-member:hover .member-bio {
  max-height: 200px;
}

/* Services Page */
.services-container {
  padding: 8rem 0 5rem;
}

.service-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.service-content {
  flex: 1;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-item ul {
  margin-bottom: 1.5rem;
}

.service-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.service-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item i {
  color: #3896bc;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.info-item h4 {
  margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.info-item a:hover {
  color: var(--primary);
}

.map-container {
  width: 100%;
  height: 450px;
  margin-bottom: 5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(rgba(11, 61, 145, 0.03), rgba(11, 61, 145, 0.03));
}

.testimonials-container {
  display: flex;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.testimonial {
  min-width: 100%;
  padding: 2rem;
  transition: transform 0.5s ease;
}

.testimonial.active {
  transform: translateX(0);
}

.testimonial-content {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1rem;
}

.rating {
  color: var(--secondary);
  font-size: 1.25rem;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--gray);
}
.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.service-category {
  margin-bottom: 60px;
}

.service-category h3 {
  text-align: center;
  margin-bottom: 30px;
  color:#3896bc;
  font-size: 28px;
  position: relative;
}

.service-category h3::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ffd700;
  margin: 15px auto 0;
}

.truck-types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.truck-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.truck-card:hover {
  transform: translateY(-10px);
}

.truck-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.truck-card h4 {
  padding: 15px 20px 0;
  color: #3896bc;
}

.truck-card p {
  padding: 10px 20px 20px;
  color: #666;
  font-size: 14px;
}
/* CTA Section */
.cta {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(#3896bc, #3896bc), url('cta-bg.jpg') center/cover;
  color: white;
  margin: 5rem 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Success Message */
.success-message {
  background: #e8f5e9;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.success-message i {
  color: #4caf50;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-message h3 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: #1b5e20;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: #3896bc;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column p, .footer-column a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  display: block;
}

.footer-column a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--secondary);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .about-details {
    flex-direction: column;
  }
  
  .service-item {
    flex-direction: column;
  }
  
  .service-item img {
    width: 100%;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .nav-flex {
    flex-direction: column;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav a {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .page-header h2 {
    font-size: 2.5rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
