* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background: #ffffff;
  color: #1e293b;
  line-height: 1.5;
}

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

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, #1E3A8A, #2563EB);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(5deg);
  box-shadow: 0 8px 16px rgba(37,99,235,0.3);
}

.logo-icon .fa-car {
  color: white;
  font-size: 26px;
  position: absolute;
  transform: rotate(-5deg) translateX(-5px);
}

.logo-icon .fa-motorcycle {
  color: #FBBF24;
  font-size: 28px;
  position: absolute;
  transform: rotate(5deg) translateX(8px) translateY(5px);
}

.logo-text h1 {
  font-size: 26px;
  font-weight: 700;
  color: #0F2B62;
}

.logo-tagline {
  font-size: 12px;
  background: #FBBF24;
  color: #0F2B62;
  padding: 2px 12px;
  border-radius: 20px;
  display: inline-block;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #2563eb;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Hero */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 400px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0b1f4a;
}

.hero-content .highlight {
  color: #2563eb;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e6f0ff;
  padding: 8px 18px;
  border-radius: 40px;
  width: fit-content;
  margin: 20px 0;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-stats div p {
  font-size: 26px;
  font-weight: 700;
  color: #0f2b62;
}

.hero-stats div span {
  color: #475569;
  font-size: 14px;
}

.hero-image {
  flex: 1 1 300px;
  background: #dbeafe;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.hero-image i {
  font-size: 100px;
  color: #1e3a8a;
  margin: 0 5px;
}

.hero-image p {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

/* Trust Bar */
.trust-bar {
  background: white;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.trust-item i {
  color: #2563eb;
  font-size: 24px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.impact-number {
  font-size: 36px;
  font-weight: 700;
  color: #0f2b62;
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 20px;
  color: #0b1f4a;
}

.section-subtitle {
  text-align: center;
  color: #475569;
  margin-bottom: 40px;
  font-size: 18px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.why-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.why-card i {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 20px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 20px;
}

/* Cities */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.city-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.city-card i {
  color: #2563eb;
  margin-right: 8px;
}

.all-india {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #e6f0ff;
  border-radius: 60px;
  font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.testimonial-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
}

.testimonial-card .stars {
  color: #fbbf24;
  margin: 15px 0;
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
  text-align: center;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.faq-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
}

/* CTA */
.cta-section {
  background: #0f2b62;
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
}

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

.cta-section .btn-primary {
  background: #fbbf24;
  color: #0f2b62;
  font-size: 18px;
  padding: 15px 40px;
}

/* Footer */
.footer {
  background: #0a142f;
  color: #94a3b8;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-col p {
  margin: 10px 0;
}

.footer-col i {
  width: 20px;
  color: #fbbf24;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #1f2f60;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-steps, .why-grid, .services-grid, .cities-grid, .testimonials-grid, .impact-grid, .faq-grid, .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
  .process-steps, .why-grid, .services-grid, .cities-grid, .testimonials-grid, .impact-grid, .faq-grid, .footer .container {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .hero-content h1 {
    font-size: 32px;
  }
}
/* Page Header - For all pages */
.page-header {
  background: linear-gradient(145deg, #1E3A8A, #2563EB);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 50px;
}

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

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Services Detail Grid */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.service-detail-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

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

.service-detail-card i {
  font-size: 50px;
  color: #2563eb;
  margin-bottom: 20px;
}

.service-detail-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-detail-card ul {
  text-align: left;
  margin-top: 20px;
  list-style: none;
}

.service-detail-card ul li {
  padding: 8px 0;
}

/* Make all buttons and links clickable */
.nav-menu a, 
.nav-menu button,
.btn-primary,
.cta-section .btn-primary,
.footer a {
  cursor: pointer;
}

/* Navigation menu links style */
.nav-menu a {
  text-decoration: none;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
  display: inline-block;
}

.nav-menu a:hover {
  color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 32px;
  }
}