/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #005f99;
}

.logo-icon {
  background: #f97316;
  color: white;
  padding: 8px;
  border-radius: 8px;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #005f99;
}

.btn-contact {
  background: #005f99;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: #015386;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: #0b4767 85%;
  color: white;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/hero-img.webp") no-repeat center center / cover;
  opacity: 0.1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  background: #ffa03e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #ffa03e;
}

.highlight-blue {
  color: #005f99;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffa03e;
  color: #000000;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #e48a31;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Form Card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #333;
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-icon {
  width: 60px;
  height: 60px;
  background: #005f99;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 20px;
}

.form-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  color: #64748b;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #005f99;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: #005f99;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #015081;
  transform: translateY(-2px);
}

.contact-form-card .form-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.guarantee-item i {
  color: #1790d2;
}

/* Fleet Showcase */
.fleet-showcase {
  margin: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  max-width: 400px;
  position: relative;
}

.tracking-badge1 {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ffa03e;
  color: #000;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  animation: popupUpDown 1.5s ease-in-out infinite;
}
/* Animation keyframes */
@keyframes popupUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.tracking-badge2 {
  position: absolute;
  left: 20px;
  background: #019cad;
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-image {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.dashboard-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.fleet-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.fleet-info p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.btn-demo {
  background: #06b6d4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-demo:hover {
  background: #0891b2;
}

/* Trust Indicators */
.trust-indicators {
  max-width: 800px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  border-top: 1px solid #e5e7eb54;
  padding: 10px 0px;
}

.trust-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
}

.trust-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.trust-item i {
  color: #f97316;
  font-size: 18px;
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-block;
  background: #005e9925;
  color: #005f99;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.solution-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
}

.solution-card:nth-child(2) .solution-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.solution-card:nth-child(3) .solution-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.solution-card:nth-child(4) .solution-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.solution-card:nth-child(5) .solution-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.solution-card:nth-child(6) .solution-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.solution-card > p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

.solution-features i {
  color: #10b981;
  font-size: 12px;
}

.custom-logistics-cta1 {
  background: #f8fafc;
}

/* Expertise Section */
.expertise {
  padding: 100px 0;
  background: #e6f7ff;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.expertise-features {
  margin: 40px 0;
}

.expertise-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-icon.blue {
  background: #2563eb;
}

.feature-icon.teal {
  background: #06b6d4;
}

.feature-icon.orange {
  background: #f97316;
}

.feature-icon.blue-light {
  background: #3b82f6;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.feature-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.impact-stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #005f99;
  display: block;
  margin-bottom: 4px;
}

.impact-stats .stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* CSS */

.image-card {
  position: relative;
  width: 100%;
  top: 200px;
  max-width: 500px;
  border-radius: 16px;
  transform: rotate(4deg); /* simple 2D tilt */
  transition: transform 0.5s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-card:hover {
  transform: rotate(0deg);
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

/* Real-Time Data Tag */
.tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #ffa03e;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: popupUpDown 1.5s ease-in-out infinite;
}
/* Animation keyframes */
@keyframes popupUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Uptime Badge */
.uptime-box {
  position: absolute;
  top: 20%;
  left: -30px;
  background-color: white;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: #047857;
  font-size: 14px;
  transform: rotate(-5deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.uptime-box span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #0c7171;
}

/* Status Bar */
.status-bar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #00c853;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

.status-right {
  display: flex;
  align-items: center;
  color: #047857;
  font-weight: 600;
}

/* Status dot animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Custom Logistics CTA */
.custom-logistics-cta {
  padding: 80px 0;
  background: #e6f7ff;
}

.cta-card {
  background: linear-gradient(135deg, #005f99 0%, #019cad 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-card p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons a {
  text-decoration: none;
}

/* Revolutionize Section */
.revolutionize {
  padding: 100px 0;
  background: white;
}

.revolutionize-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-options {
  margin: 40px 0;
}

.contact-option {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #f0f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005f99;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1f2937;
}

.contact-content p {
  font-size: 14px;
  color: #64748b;
}

.what-you-get {
  background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);

  margin-top: 40px;
  border: 1px solid #8e8e8e;
  padding: 20px;
  border-radius: 10px;
}

.what-you-get h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.what-you-get ul {
  list-style: none;
}

.what-you-get li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #374151;
}

.what-you-get i {
  color: #10b981;
  font-size: 12px;
}

/* Project Card */
.project-card {
  background: linear-gradient(135deg, #005f99 0%, #01358d 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.project-icon {
  width: 80px;
  height: 80px;
  background: #ffa03e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.project-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.btn-get-started {
  width: 100%;
  background: #ffa03e;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.btn-get-started:hover {
  background: #e48a31;
  transform: translateY(-2px);
}

.project-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.project-stat {
  text-align: center;
}

.project-stat .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #ffa03e;
  display: block;
  margin-bottom: 4px;
}

.project-stat .stat-label {
  font-size: 12px;
  opacity: 0.8;
}

/* Company Stats */
.company-stats {
  padding: 100px 0;
  background: white;
  text-align: center;
  border-top: 1px solid #d1d5db62;
}

.stats-header {
  margin-bottom: 60px;
}

.stats-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.stats-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-item .stat-number.orange {
  color: #f97316;
}

.stat-item .stat-number.teal {
  color: #06b6d4;
}

.stat-item .stat-label {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #0b4767;
  color: white;
  padding: 80px 0 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
  /* flex-wrap: wrap;  */
}
.footer-brand {
  max-width: 500px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 20px 0 30px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-column i {
  font-size: 12px;
  width: 16px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-policies {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-policies a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-policies a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  font-size: 12px;
  opacity: 0.6;
}

.footer-badges {
  display: flex;
  gap: 20px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.8;
}

.footer-badge i {
  color: #f97316;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 42px;
  }

  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .expertise-content,
  .revolutionize-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav {
    /* display: none; */
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 20px;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 20px;
  }
  .image-card {
    top: 0px;
  }
  .cta-content h2 {
    font-size: 28px;
  }

  .fleet-card {
    margin: 0 auto;
  }

  .impact-stats {
    gap: 30px;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    padding: 30px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 28px;
  }

  .feature-badges {
    gap: 8px;
  }

  .feature-badge {
    width: fit-content;
  }
  .image-card {
    top: 0px;
  }
  .form-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .expertise-feature,
  .contact-option {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .contact-option {
    justify-content: center;
    align-items: center;
  }

  .impact-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-main {
    flex-wrap: wrap;
  }
  .project-stats {
    flex-direction: column;
    gap: 16px;
  }

  .bottom-cta-content h2 {
    font-size: 24px;
  }
}

/* --popupcss-- */
/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-overlay.show {
  display: flex;
}

.popup-container {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  z-index: 10;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #6b7280;
}

.popup-content {
  display: flex;
  min-height: 600px;
}

.testimonials-section {
  flex: 1;
  background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-header {
  margin-bottom: 2rem;
}

.testimonials-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #005f99;
  margin-bottom: 1rem;
}

.testimonials-header p {
  color: #6b7280;
  font-size: 0.95rem;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-profile {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.testimonial-profile h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.testimonial-profile p {
  font-size: 0.875rem;
  color: #6b7280;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  display: inline-block;
}

.testimonial-quote {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quote-mark {
  font-size: 3rem;
  color: #005f99;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-quote p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  color: #6b7280;
}

.nav-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #005f99;
}

.dots-container {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background-color: #ffffff;
}

.dot.active {
  background-color: #005f99;
  transform: scale(1.25);
}

/* Form Section */
.form-section {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h2 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.3;
}

#consultationForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
textarea,
select {
  border: none;
  border-bottom: 1px solid #d1d5db;
  padding: 0.75rem 0;
  font-size: 1rem;
  background: transparent;
  transition: border-color 0.2s;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: #005f99;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

textarea {
  resize: none;
  font-family: inherit;
}

.phone-input {
  display: flex;
  gap: 1rem;
}

.phone-input select {
  flex-shrink: 0;
  width: 80px;
}

.phone-input input {
  flex: 1;
}

.submit-btn {
  background: #005f99;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
  background: #005f99;
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.form-footer {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

.form-footer p {
  margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .popup-content {
    flex-direction: column;
    min-height: auto;
  }

  .testimonials-section,
  .form-section {
    padding: 2rem;
  }

  .testimonials-header h2 {
    font-size: 1.5rem;
  }

  .form-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .popup-container {
    margin: 1rem;
    max-height: 95vh;
    overflow-y: auto;
  }

  .testimonials-section,
  .form-section {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-quote p {
    font-size: 0.875rem;
  }

  .container h1 {
    font-size: 2rem;
  }

  .container > p {
    font-size: 1.125rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .testimonials-section {
    display: none;
  }
  .close-btn {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
  }
  .submit-btn {
    background: #005f99;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
  }
}

/* -----View success story popup------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.9); */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.slider {
  position: relative;
  width: 90%;
  max-width: 1200px;
  /* height: 70vh; */
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.overlay.active .slider {
  transform: scale(1);
}

.closeButton {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(66, 66, 66, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(26, 26, 26);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.closeButton:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.content {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.leftSection {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #005f99 0%, #019cad 100%);
}

.rightSection {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.caseStudyLabel {
  color: #ffa03e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}
.infoSections {
  margin-top: 20px;
}

.infoRow {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.infoColumn {
  flex: 1;
}

.infoLabel {
  color: #ffa03e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.infoContent {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.projectImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation {
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(8, 8, 8, 0.2);
  color: rgb(26, 25, 25);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navigation:hover {
  background: rgba(255, 255, 255, 0.2);
}

.prevButton {
  left: 1px;
}

.nextButton {
  right: 1px;
}

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ffa03e;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slider {
    width: 95%;
    height: 90vh;
  }
  .content {
    flex-direction: column;
  }

  .leftSection {
    padding: 30px 25px;
  }

  .title {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }

  .infoContent {
    font-size: 14px;
  }

  .projectImage {
    width: 250px;
    height: 300px;
  }

  .navigation {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prevButton {
    left: -20px;
  }

  .nextButton {
    right: -20px;
  }
}
