@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --primary: #5f5e59; /*#1a3a8f;*/
  --primary-dark: #3a3937; /*#0d2460;*/
  --primary-light: #000; /*#2554c7;*/
  --accent: #5f5e59; /*#e8b400;*/
  --accent-light: #343433; /*#A5A391;*/ /*#ffd234;*/
  --steel: #4a5568;
  --steel-light: #718096;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light-gray: #eef0f5;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #a0aec0;
  --shadow-sm: 0 2px 8px rgba(26,58,143,0.10);
  --shadow-md: 0 6px 24px rgba(26,58,143,0.16);
  --shadow-lg: 0 16px 48px rgba(26,58,143,0.20);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,58,143,0.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar-brand img { height: 94px; }
.navbar-nav .nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark) !important;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.1rem !important;
  position: relative;
  transition: color 0.2s;
}
.navbar-nav .nav-link::after {
  content: '';
  display: block;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  bottom: 2px;
  left: 1.1rem;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 2.2rem); }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }

.navbar-toggler { border: none; outline: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== TOP STRIP ===== */
.top-strip {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-family: 'Nunito', sans-serif;
  padding: 6px 0;
}
.top-strip a { color: #fff; /*var(--accent-light);*/ text-decoration: none; }
.top-strip a:hover { color: var(--accent-light); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* BACKGROUND IMAGE */
  background: url('images/banner.jpg') center center/cover no-repeat;
}

/* DARK OVERLAY */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;

  /*background: linear-gradient(
    135deg,
    rgba(5, 18, 45, 0.82),
    rgba(10, 38, 95, 0.78),
    rgba(0, 0, 0, 0.55)
  );*/

  z-index: 1;
}

/* PATTERN LAYER */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;

  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 60L60 0" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;

  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content,
.hero-visual,
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(232,180,0,0.18);
  border: 1px solid rgba(232,180,0,0.5);
  /*color: var(--accent-light);*/
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  /*color: var(--white);*/
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--accent-light); }
.hero-subtitle {
  font-size: 1.15rem;
  /*color: rgba(255,255,255,0.78);*/
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.btn-hero-primary {
  background: var(--accent);
  color: #fff; /*var(--primary-dark);*/
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(232,180,0,0.4);
}
.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,180,0,0.5);
  color: var(--primary-dark);
}
.btn-hero-outline {
  background: transparent;
  color: #000; /*var(--white);*/
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  /*color: rgba(255,255,255,0.65);*/
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 340px;
  margin-left: auto;
}
.hero-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  /*color: var(--accent-light);*/
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.brand-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.brand-pill:hover { background: rgba(255,255,255,0.2); }
.brand-pill-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.brand-pill-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  /*color: var(--white);*/
}
.brand-pill-sub {
  font-size: 0.72rem;
  /*color: rgba(255,255,255,0.6);*/
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.50;
}
.section-desc {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.75;
 /* max-width: 560px;*/
}

/* ===== ABOUT ===== */
.about-section { padding: 40px 0; background: var(--white); }
.founder-card {
  background: #5f5e59; /*linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);*/
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.founder-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  background: rgba(232,180,0,0.12);
  border-radius: 50%;
}
.founder-img {
  width: 400px;
  height: 450px;
  border-radius: 30%;
  border: 4px solid var(--accent);
  /*object-fit: cover;*/
  margin-bottom: 1rem;
}
.founder-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff; /*var(--accent-light);*/
}
.founder-role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.founder-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.4rem;
}
.about-feature-icon {
  width: 46px;
  height: 46px;
  background: #5f5e59; /*linear-gradient(135deg, var(--primary), var(--primary-light));*/
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}
.about-feature-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
}

/* ===== SERVICES ===== */
.services-section { padding: 40px 0; background: var(--off-white); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,58,143,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 94px;
  height: 94px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--primary-light); }

/* ===== BRANDS ===== */
.brands-section { padding: 40px 0; background: var(--white); }
.brand-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  height: 100%;
}
.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.brand-logo-area {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}
.brand-type {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ultratech-badge {
  background: linear-gradient(135deg, #363638, #b0b6bc); /*linear-gradient(135deg, #003087, #0066cc);*/
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

/* ===== VEHICLE SECTION ===== */
.vehicle-section { padding: 40px 0; background: #5f5e59; /*linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);*/ position: relative; overflow: hidden; }
.vehicle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><path d="M0 80L80 0" stroke="rgba(255,255,255,0.03)" stroke-width="1" fill="none"/></svg>') repeat;
}
.vehicle-badge {
  background: #000; /*var(--accent);*/
  color: #fff; /*var(--primary-dark);*/
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}
.vehicle-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.vehicle-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.vehicle-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.vehicle-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.vehicle-feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: #fff; /*var(--accent);*/
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.vehicle-graphic {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.truck-icon { font-size: 6rem; margin-bottom: 1rem; }
.vehicle-graphic-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff; /*var(--accent-light);*/
  margin-bottom: 0.4rem;
}
.vehicle-graphic-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ===== HELPING HANDS ===== */
.helping-section { padding: 40px 0; background: var(--off-white); }
.helping-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  height: 100%;
}
.helping-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.helping-icon {
  width: 72px;
  height: 72px;
  /*background: linear-gradient(135deg, var(--accent), var(--accent-light));*/
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}
.helping-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.helping-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 40px 0; background: var(--white); }
.why-stat {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: all 0.3s;
}
.why-stat:hover { background: var(--primary-dark); }
.why-stat:hover .why-stat-num { color: #fff; }
.why-stat:hover .why-stat-label { color: rgba(255,255,255,0.75); }
.why-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s;
}
.why-stat-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  transition: color 0.3s;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section { padding: 40px 0; background: #fff; /*var(--off-white); */}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-author { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--primary-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,180,0,0.1) 0%, transparent 70%);
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer { background: #0a1628; padding: 70px 0 0; color: rgba(255,255,255,0.75); }
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff; /*var(--accent-light);*/
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  margin-top: 50px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--accent-light); text-decoration: none; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><path d="M0 60L60 0" stroke="rgba(255,255,255,0.04)" stroke-width="1" fill="none"/></svg>') repeat;
}
.page-header-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
}
.page-header-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-top: 0.6rem;
}
.breadcrumb { background: none; padding: 0; margin-top: 1rem; }
.breadcrumb-item, .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
}
.breadcrumb-item.active { color: var(--accent-light); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-primary-custom:hover { background: #000; /*var(--primary-light);*/ color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent-custom {
  background: #fff; /*var(--accent);*/
  color: var(--primary-dark);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-accent-custom:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,180,0,0.4); }
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 11px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline-custom:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}
.form-control, .form-select {
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,143,0.1);
  outline: none;
}

/* ===== CONTACT INFO ===== */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.6rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: #fff; /*rgba(255,255,255,0.12);*/
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-light);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 0.95rem; color: rgba(255,255,255,0.9); }

/* ===== HELPING HANDS PAGE ===== */
.initiative-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  height: 100%;
}
.initiative-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.initiative-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 1.8rem;
  text-align: center;
}
.initiative-header-icon { font-size: 2.8rem; margin-bottom: 0.6rem; }
.initiative-header-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff; /*var(--accent-light);*/
}
.initiative-body { padding: 1.6rem; }
.initiative-body p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s;
}
.gallery-img:hover { transform: scale(1.03); }

/* ===== MAP EMBED ===== */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: all 0.3s;
}
#scrollTop:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* ===== UTILITIES ===== */
.divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 1rem 0 1.5rem; }
.tag {
  display: inline-block;
  background: rgba(26,58,143,0.08);
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.tag-accent {
  background: rgba(232,180,0,0.15);
  color: #fff; /*#8a6700;*/
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.floating { animation: float 4s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-card { margin: 2rem auto 0; max-width: 100%; }
  .about-section, .services-section, .brands-section, .helping-section, .why-section, .vehicle-section { padding: 60px 0; }
}
@media (max-width: 576px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}




/* GALLERY SCROLL */

.gallery-scroll-wrapper{
    overflow:hidden;
    position:relative;
    width:100%;
    border-radius:20px;
}

.gallery-scroll{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollGallery 30s linear infinite;
}

.gallery-scroll:hover{
    animation-play-state: paused;
}

.gallery-item{
    flex:0 0 auto;
    width:320px;
    height:380px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    transform:translateY(-8px);
}

@keyframes scrollGallery{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .gallery-item{
        width:250px;
        height:180px;
    }

}





/* GALLERY */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:400px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:0.4s ease;
    background:#fff;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

/* MOBILE */

@media(max-width:768px){

    .gallery-card{
        height:220px;
    }

}
.img {
        border-radius: 15px;
}




.service-overview{
    background:#f8f9fc;
}

.service-main-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.service-main-image{
    width:100%;
    height:400px;
    object-fit:cover;
}

.service-feature-list{
    margin-top:20px;
}

.feature-item{
    margin-bottom:12px;
    font-weight:600;
    color:#444;
}

.feature-item i{
    color:#0d6efd;
    margin-right:10px;
}

.service-sidebar{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    position:sticky;
    top:100px;
}

.sidebar-title{
    font-weight:700;
    margin-bottom:20px;
    color:#0a2b6b;
}

.sidebar-list{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-list li{
    margin-bottom:12px;
}

.sidebar-list a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    display:block;
    padding:10px 15px;
    border-radius:10px;
    transition:.3s;
}

.sidebar-list a:hover{
    background:#0a2b6b;
    color:#fff;
}

.brand-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.brand-item img{
    width:40px;
    height:40px;
    object-fit:contain;
}

.brand-item span{
    font-weight:600;
}

.navbar .dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    padding:10px;
}

.navbar .dropdown-item{
    padding:10px 15px;
    border-radius:8px;
    font-weight:500;
}

.navbar .dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}

@media(min-width:992px){

    .navbar .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
    }

}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}