/* ===== GLOBAL STYLES ===== */
:root {
  --navy: #0a1f44;
  --white: #ffffff;
  --gray: #f5f5f5;
  --primary: #0077b5; /* LinkedIn blue */
  --secondary: #25d366; /* WhatsApp green */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--gray);
  color: var(--navy);
}

/* ===== HEADER ===== */
.navbar {
  background-color: var(--white);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.navbar .logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.active {
  border-bottom: 2px solid var(--navy);
}
/* ===== TOP TICKER BAR ===== */
.top-ticker {
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  height: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--orange);
}

.ticker-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker-slide 20s linear infinite;
}

@keyframes ticker-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===== NAVBAR STYLING ===== */
.navbar {
  background-color: var(--white);
  border-bottom: 2px solid var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar .logo img {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 3rem 0 2rem;
  color: var(--navy);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #f57c00;
  margin: 0.5rem auto 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 70vh; /* compact height */
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

#heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills section */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-row a {
  background-color: #f57c00; /* orange pill buttons */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-row a:hover {
  background-color: #e65100;
}
/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  background-color: var(--gray);
  padding: 3rem 1rem;
}

.stat-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f57c00;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: var(--navy);
  margin: 0;
}
/* NETWORK COVERAGE COMPACT TWO-COLUMN */
.network-coverage {
  background-color: var(--white);
  padding: 2rem 1rem;
  max-height: 50vh;        /* cap section height */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.map-box {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-box img {
  width: 100%;
  height: auto;
  max-height: 250px;       /* shrink image height */
  object-fit: contain;
}

.city-list {
  flex: 1 1 50%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.4rem 0;
}

.city-list li::before {
  content: "📍";
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .network-coverage {
    flex-direction: column;
    max-height: none; /* allow stacking on mobile */
  }
  .map-box img {
    max-height: 200px;
  }
}
/* ===== SERVICES ===== */
.services {
  background-color: var(--gray);
  padding: 3rem 1rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f57c00;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}

/* ===== WHY CHOOSE STRANZ ===== */
.why-choose {
  background-color: var(--white);
  padding: 3rem 1rem;
}

.choose-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-card {
  background-color: var(--gray);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 220px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
}

.choose-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.choose-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f57c00;
  margin-bottom: 0.5rem;
}

.choose-card p {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}

.services-tabs {
  max-width: 1000px;
  margin: 3rem auto;       /* centers the whole section */
  padding: 1rem;
  text-align: center;       /* centers inline content */
}

.tab {
  background-color: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 160px;         /* consistent width */
  text-align: center;
}

.tab-content {
  display: none;
  max-width: 700px;         /* limit width */
  margin: 0 auto;           /* center horizontally */
  background-color: var(--gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.tab-content.active {
  display: block;
}
/* ===== CONTACT HERO ===== */
.contact-hero {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #f57c00;
}

/* CONTACT INFO CARDS CLICKABLE */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: var(--gray);
}

.info-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 1.5rem;
  text-decoration: none;   /* remove underline */
  color: var(--navy);      /* keep text color */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  background-color: #f57c00;
  color: var(--white);
}

.info-card h3 {
  margin-bottom: 0.5rem;
}

.info-card p {
  margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background-color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-submit {
  background-color: #f57c00;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #e65100;
}
/* ===== SOCIAL RIBBON ===== */
.social-ribbon {
  background-color: #f57c00; /* orange */
  padding: 1.5rem 1rem;
  color: var(--white);
}

.ribbon-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ribbon-content h2 {
  color: var(--navy); /* dark blue */
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--navy);
}
/* ===== THANK YOU HERO ===== */
.thank-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}
.thank-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.thank-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.thank-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ===== THANK YOU DETAILS GRID ===== */
.thank-details {
  background: var(--white);
  padding: 3rem 1rem;
}
.thank-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
}
.thank-card {
  background-color: var(--gray);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1rem;
  text-align: center;
}
.thank-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.thank-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f57c00;
  margin-bottom: 0.4rem;
}
.thank-card p {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}

/* ===== SOCIAL RIBBON (already added earlier, here for completeness) ===== */
.social-ribbon {
  background-color: #f57c00; /* orange */
  padding: 1.5rem 1rem;
  color: var(--white);
}
.ribbon-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.ribbon-content h2 {
  color: var(--navy); /* dark blue */
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.social-link {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}
.social-link:hover {
  color: var(--navy);
}
/* ===== time line ===== */
/* ===== TIMELINE (FIXED + MORE PROFESSIONAL) ===== */
.timeline-wrapper {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 0;
  position: relative;
}

.center-line {
  display: none; /* hide the vertical line since everything is left aligned */
}

.timeline-row {
  margin-bottom: 40px;
  position: relative;
}

.timeline-box {
  width: 100%;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--orange);
}

.timeline-marker {
  display: none; /* hide markers since line is gone */
}

.year-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-box h3 {
  color: var(--orange);
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-box p {
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
/* ===== BOOKING PAGE STYLES ===== */
.booking-page {
  background: url('assets/img/truck-bg.png') no-repeat center center fixed;
  background-size: cover;
}

/* ===== SERVICES PAGE BACKGROUND ===== */
.services-page {
  background-image: url('assets/img/contract-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  transition: background-image 0.5s ease-in-out;
}

.login-container {
  background: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 6rem auto;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.login-container h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.login-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}
/* ===== Steps===== */
.flowchart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  background: var(--white);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: all 0.3s ease;
}
.step h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.step p {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.4;
}
.step:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-5px);
}
.step:hover h3,
.step:hover p {
  color: var(--white);
}
.arrow {
  font-size: 2rem;
  color: var(--navy);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flowchart {
    flex-direction: column;
  }
  .arrow {
    transform: rotate(90deg);
  }
}
/* ===== GLOBAL BUTTON STYLE ===== */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, #f57c00, #ff9800); /* orange gradient */
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* ===== FOOTER ===== */
footer {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.social-links {
  margin-top: 0.25rem;
}

.social-links a {
  display: inline-block;
  margin: 0 0.5rem;
}

.social-links img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.2);
}

/* ===== hover for about page only ===== */
.about-grid div {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.95rem;
  color: var(--navy) !important; /* 🔥 force blue text */
}

.about-grid div strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy) !important; /* 🔥 force blue heading */
  font-size: 1.1rem;
}

.about-grid div:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,.15);
}

.about-grid div:hover strong {
  color: var(--white);
}







