/* Light, professional theme using Zudii blue & green */
:root {
  --color-bg-page: #f3f6fb;
  --color-bg-surface: #ffffff;
  --color-bg-soft: #f7f9fc;
  --color-border-soft: #d0d7e2;
  --color-border-strong: #9fb3c8;
  --color-text-main: #102a43;
  --color-text-muted: #7b8794;
  --color-text-soft: #9fb3c8;
  --color-primary: #156095;
  --color-accent: #ff751f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-page);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 80px;
}

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Row and Column Layout (Bootstrap-like) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .col-lg-6:last-child {
    margin-bottom: 0;
  }
}

.section {
  padding: 4.5rem 0;
  background-color: var(--color-bg-surface);
}

.section-alt {
  background-color: #f4f7fc;
}

.section-muted {
  background-color: var(--color-bg-soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 2px solid rgba(14, 120, 181, 0.15);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(14, 120, 181, 0.05);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  transition: padding 0.3s ease;
}

.logo-img {
  height: 48px; /*68px*/
  width: auto;
  transition: all 0.3s ease;
}

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

/* Smaller logo when scrolled */
.site-header.scrolled .logo-img {
  height: 48px;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(14, 120, 181, 0.05);
}

.site-header.scrolled .header-inner {
  padding: 0.8rem 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
}

.main-nav a {
  position: relative;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  color: #334155;
}

.main-nav a:not(.btn-nav):hover {
  background: linear-gradient(135deg, rgba(14, 120, 181, 0.08), rgba(12, 184, 104, 0.08));
  color: var(--color-primary);
  transform: translateY(-1px);
}

.main-nav a:not(.btn-nav):not(.nav-dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.main-nav a:not(.btn-nav):not(.nav-dropdown-toggle):hover::after {
  width: 60%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 180px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(208, 215, 226, 0.9);
  border-radius: 0.6rem;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.2s ease;
  position: relative;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(14, 120, 181, 0.08), rgba(12, 184, 104, 0.08));
  color: var(--color-primary);
  transform: translateX(4px);
  padding-left: 1.4rem;
}

.btn-nav {
  border-radius: 0.6rem;
  padding: 0.65rem 1.5rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ff9e62, #ff751f);
  color: #ffffff !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(14, 120, 181, 0.3);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(14, 120, 181, 0.4);
}

.btn-nav:hover::before {
  left: 100%;
}

.btn-nav:active {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.4rem;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(14, 120, 181, 0.1);
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 120, 181, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff, #f5f8ff 60%, #eef3fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url("../img/truck3.png?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: right center;
  opacity: 0.22;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, rgba(255, 255, 255, 0));
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--color-primary), #176196);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(14, 120, 181, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(12, 184, 104, 0.32);
}

.btn-ghost {
  background-color: #ffffff;
  color: var(--color-primary);
  border: 1px solid rgba(159, 179, 200, 0.9);
}

.btn-ghost:hover {
  background-color: #f2f7ff;
  border-color: var(--color-primary);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.8rem;
}

.point {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.point-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--color-primary), var(--color-accent));
}

.hero-panel {
  background-color: #ffffff;
  border-radius: 1.4rem;
  border: 1px solid rgba(208, 215, 226, 0.9);
  padding: 1.8rem 1.7rem 1.7rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.hero-panel-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.hero-panel-sub {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Sections and cards */
.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.9rem;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--color-bg-surface);
  border-radius: 1rem;
  padding: 1.7rem 1.5rem 1.6rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pill {
  border-radius: 0.9rem;
  border: 1px solid rgba(208, 215, 226, 0.9);
  padding: 0.9rem 1rem;
  background-color: var(--color-bg-surface);
  font-size: 0.86rem;
}

.pill span {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-text-muted);
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  counter-reset: step;
}

.process-steps li h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.process-steps li p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* About Us Hero Section */
.about-us-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3.5rem 2.5rem;
  margin-top: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.about-us-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.about-us-main {
  padding: 0 1.5rem;
}

.about-us-main .eyebrow {
  margin-bottom: 0.9rem;
}

.about-us-main h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  line-height: 1.3;
  margin: 0 0 1.2rem;
  color: var(--color-text-main);
  font-weight: 700;
}

.about-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, rgba(14, 120, 181, 0.05), rgba(12, 184, 104, 0.05));
  border-radius: 0.75rem;
  border: 1px solid rgba(14, 120, 181, 0.1);
}

.stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.about-us-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-item {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(208, 215, 226, 0.6);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(14, 120, 181, 0.15);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 120, 181, 0.1), rgba(12, 184, 104, 0.1));
  border-radius: 0.75rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text-main);
}

.feature-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* About Us Section - Three Column Design */
.section-about {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.about-column {
  background-color: #f5f7fa;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(208, 215, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.about-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-column:hover::before {
  transform: scaleX(1);
}

.about-column:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-right: none;
}

.about-column:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-left: none;
}

.about-column h2 {
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.4s ease;
  position: relative;
}

.about-column p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #52606d;
  transition: color 0.4s ease;
}

/* Active/Hover State - Blue Background with White Text */
.about-column:hover,
.about-column-active {
  background: linear-gradient(135deg, var(--color-primary), #0a5d8a);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 120, 181, 0.3);
}

.about-column:hover h2,
.about-column-active h2 {
  color: #ffffff;
}

.about-column:hover p,
.about-column-active p {
  color: #ffffff;
}

/* Network parallax band */
.section-parallax {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  color: #ffffff;
}

.parallax-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/6169054/pexels-photo-6169054.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.network-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.network-copy h2 {
  color: #ffffff;
}

.network-copy p {
  color: #e5e7eb;
}

.network-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.network-stats .stat-number {
  font-size: 1.7rem;
}

.network-stats .stat-label {
  color: #e5e7eb;
}

/* Forms */
.signup-layout {
  align-items: flex-start;
}

.signup-card,
.contact-card {
  border-radius: 1.1rem;
  background-color: var(--color-bg-surface);
  border: 1px solid rgba(208, 215, 226, 0.9);
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.signup-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text-main);
  background-color: #ffffff;
  border-radius: 0.6rem;
  border: 1px solid rgba(159, 179, 200, 0.9);
  padding: 0.6rem 0.7rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-soft);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(14, 120, 181, 0.3);
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 2.5rem;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
  z-index: 1;
  width: auto;
  height: auto;
}

.password-toggle:hover {
  color: var(--color-primary);
}

.password-toggle:focus {
  outline: none;
  color: var(--color-primary);
}

.password-toggle svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.eye-icon {
  display: block;
  position: relative;
}

.eye-icon.eye-closed {
  display: none !important;
}

.eye-icon.eye-open {
  display: block !important;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.helper-text {
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.helper-text.small {
  font-size: 0.75rem;
}

.full-width {
  width: 100%;
}

/* Captcha Styles */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.captcha-display {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border: 2px solid var(--color-primary);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
  min-height: 50px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-captcha-refresh {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.captcha-input {
  flex: 1;
  min-width: 150px;
}

.btn-captcha-refresh:hover {
  background: #0a5d8a;
}

.btn-captcha-refresh:active {
  transform: scale(0.95);
}

/* Checkbox Field */
.checkbox-field {
  margin: 0.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-main);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  width: auto;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: #0a5d8a;
}

.required {
  color: #e53e3e;
  font-weight: 600;
}

/* Form Messages */
.form-message {
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Disabled button */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-details p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Contact layout */
.contact-layout {
  align-items: flex-start;
}

/* Partner layout (reuses signup-card styles) */
.partner-layout {
  align-items: flex-start;
}

/* Load Booking Form */
.booking-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-bg-surface);
  border-radius: 1.2rem;
  border: 1px solid rgba(208, 215, 226, 0.9);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(208, 215, 226, 0.5);
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.form-section-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Industries section with green background */
#industries {
  color: #ffffff;
}

/* Quick Actions Bar */
.section-quick-actions {
  padding: 5rem 0 3.5rem;
  background: 
       linear-gradient(135deg, rgba(7, 90, 193, 0.85), rgba(255, 117, 31, 0.85)),
    url("https://images.pexels.com/photos/4484077/pexels-photo-4484077.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.section-quick-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-quick-actions .container {
  position: relative;
  z-index: 2;
}

/* Hero Message Styling */
.hero-message {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}

.hero-message-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.2rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-message-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.hero-message-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quick-actions-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(208, 215, 226, 0.6);
  overflow: hidden;
}

.quick-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: #475569;
  transition: all 0.3s ease;
  cursor: pointer;
  border-right: 1px solid rgba(208, 215, 226, 0.4);
  position: relative;
}

.quick-action-item:last-child {
  border-right: none;
}

.quick-action-item:hover {
  background: linear-gradient(135deg, rgba(14, 120, 181, 0.05), rgba(12, 184, 104, 0.05));
  color: var(--color-primary);
}

.quick-action-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.3s ease;
}

.quick-action-item:hover .quick-action-icon {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.quick-action-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: inherit;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .section-quick-actions {
    padding: 4rem 0 3rem;
  }

  .hero-message {
    margin-bottom: 2.5rem;
  }

  .hero-message-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .quick-actions-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 640px) {
  .quick-actions-bar {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .quick-action-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
  }

  .quick-action-icon {
    width: 48px;
    height: 48px;
  }

  .quick-action-text {
    text-align: left;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(208, 215, 226, 0.9);
  background-color: #ffffff;
  padding: 1.1rem 0 1.3rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    margin-top: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .network-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-us-hero {
    padding: 2.5rem 1.5rem;
  }

  .about-us-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .about-us-main {
    padding: 0;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .about-us-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-column:first-child,
  .about-column:last-child {
    border-radius: 0.5rem;
    border: 1px solid rgba(208, 215, 226, 0.3);
    margin-bottom: 1rem;
  }

  .about-column:last-child {
    margin-bottom: 0;
  }

  .booking-form-wrapper {
    padding: 1.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 0;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    padding: 1.5rem 1.5rem 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 2px solid rgba(14, 120, 181, 0.15);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    gap: 0.5rem;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a:not(.btn-nav):not(.nav-dropdown-toggle) {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 0.6rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: inset 0 2px 8px rgba(15, 23, 42, 0.06);
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section {
    padding: 3.5rem 0;
  }

  .pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .booking-form-wrapper {
    padding: 1.5rem 1.2rem;
  }

  .form-section {
    gap: 0.8rem;
    padding-bottom: 1.2rem;
  }

  .booking-form {
    gap: 1.5rem;
  }
}

/* =========================
   MOBILE STICKY FIX
   ========================= */
@media (max-width: 768px) {

  .divy1,
  .divy2,
  .divy3 {
    position: relative !important;
    top: auto !important;
    margin: 20px auto !important;
    width: 94% !important;
    height: auto !important;
    transform: none !important;
  }

  .sticky,
  .sticky2,
  .sticky3,
  .defaultsticky,
  .defaultsticky2,
  .defaultstickyz {
    position: sticky !important;
    top: 80px !important;
    margin: 20px auto !important;
    width: 94% !important;
    animation: none !important;
    transition: none !important;
  }

  /* Prevent overlap */
  .divy2 { margin-top: 40px !important; }
  .divy3 { margin-top: 60px !important; }

  /* Watermark adjustment */
  .watermark-text {
    font-size: 42px;
    left: 12px;
    top: 10px;
  }
}


  @media screen and (max-width: 768px) {
	  
	  .aboutimg {
    width: 40% !important;height:40%;
    border-radius: 50%;
    border: 4px solid #ddd;
}


	   .divy1 {
      background: #cbcbcb;   background: linear-gradient(269deg, #f4e485 18.38%, #ccad4c 68.48%);
      border-radius: 17px;padding:20px;
      
      z-index: 1; 
    }

    .divy2 {
      background: #888; background:linear-gradient(94deg, #f4e485 18.38%, #ccad4c 68.48%);
      border-radius: 17px;padding:20px;
       
      z-index: 2; 
    }

    .divy3 {
      background: #555; background: linear-gradient(269deg, #0d5182 18.38% 18.38%, #183950 68.48%);
      border-radius: 17px;padding:20px;color:#fff;
     
      z-index: 3; 
    } 
  }
  
       .divy1 {
      background: #cbcbcb;   background: linear-gradient(269deg, #246a9c 18.38%, #156095 68.48%);
      border-radius: 17px;padding:20px;
      height: 600px;
      z-index: 1;
      position: relative;
      contain: layout style paint;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
      transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  margin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
				  
      width: 90% !important;   
      margin: 50px !important; 
    }

    .divy2 {
      background: #888; background: linear-gradient(94deg, #cececd 18.38%, #e6e6e5 68.48%);
      border-radius: 17px;padding:20px;
      height: 600px;top: 120px !important;  
      z-index: 2; 
    }

    .divy3 {
      background: #555; background: linear-gradient(269deg, #156095 18.38%, #23465f 68.48%);
      border-radius: 17px;padding:20px;
      height: 600px;
      z-index: 3;   
	  width: 98% !important;    
      margin: 40px !important; 
    }

    /* Default styles for sticky positioning */
    .sticky {
      position: -webkit-sticky;
      position: sticky;
      padding: 20px;
      top: 100px;
      margin: 40px;
      width: 93%;
      contain: layout style paint;
      transform: translateZ(0) scale(1);
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
      transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  margin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: auto;
    }
    
    /* Prevent layout shift when sticky is applied */
    .divy1:not(.sticky) {
      margin: 0;
      width: 100%;
    }
    
    /* Smooth entry animation for sticky state */
    .divy1.sticky {
      animation: smoothSticky 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	  
    }
    
    @keyframes smoothSticky {
      from {
        opacity: 0.98;
        transform: translateZ(0) translateY(-2px);
      }
      to {
        opacity: 1;
        transform: translateZ(0) translateY(0);
      }
    }

    .sticky2 {
      position: sticky;padding:20px;
      top: 100px;
      margin: 20px;
      width: 98% !important; 
      transition: width 0.9s ease, margin 0.8s ease;
    }
   .defaultsticky {
      position: sticky;padding:20px;
     padding: 20px;
      top: 100px;
      margin: 20px;
      width: 93%;
      transition: width 0.9s ease, margin 0.8s ease;
    }
	   .defaultsticky2 {
      position: sticky;padding:20px;
     top: 100px;
      margin: 20px;
      width: 98% !important; 
      transition: width 0.9s ease, margin 0.8s ease;
    }
	  .defaultstickyz {
				position: sticky;padding:20px;
				top: 100px;
				width: 100% !important;    
				margin: 0px !important; 
				transition: width 0.9s ease, margin 0.8s ease;  
	 }
	 
	 
    .sticky3 {
		position: sticky;padding:20px;
		top: 100px;
		width: 100% !important;    
		margin: 0px !important; margin-top: 60px;
		transition: width 0.9s ease, margin 0.8s ease;
    }

    /* Media Queries for responsiveness */

    /* Mobile devices */
    @media (max-width: 767px) {
	.whyusheadparah{ font-size:12px !important; }
	 .whyushead{	font-size:14px !important; }
	 .whyusheaddv3{		font-size:14px !important; }
	 .whyusheadparahdv3{ font-size:12px !important;padding:0px !important; }
	 
      .divy1, .divy2, .divy3 {
       height:auto !important;
        border-radius: 10px; /* Smaller border radius */
      }

      .sticky, .sticky2, .sticky3 {
        top: 120px; /* Decrease sticky top for mobile */
        margin: 20px; /* Smaller margin */ margin-left: 30px;
        width: 90%; /* Make width responsive */
      }

      .sticky2 {
        margin-top: 20px; /* Adjust top margin for divy2 */ width: 95%;  margin-left: 20px;
      }

      .sticky3 {
        margin-top: 40px; /* Adjust top margin for divy3 */ width: 100%;  margin-left: 10px;
      }
    }

    /* Tablet devices */
    @media (max-width: 1024px) and (min-width: 768px) {
		.divy1 { margin-bottom: 0px !important; }
      .divy1, .divy2, .divy3 {
				height: auto !important; /* Slightly smaller height */
				border-radius: 12px;
      }

      .sticky, .sticky2, .sticky3 {
				top: 140px;
				margin: 0px !important;font-size:12px !important;
				width: 96%;
      }
    }
	.digit{ background: #ccad4c;color:#fff;padding:4px;font-size: 10px !important; }.digit2{ background:#eee;color:#fff;padding:4px; }
.whyushead{ font-size:28px;padding-top:20px;padding-left:20px;text-align:center;  }
.whyusheaddv3{font-size:28px;padding-top:20px;padding-left:20px;text-align:center;color:#eee; }
.whyusheadparah{   font-size: 22px; padding-left:20px;     margin-top: 0px;padding-top: 0px;text-align:center;    padding: 40px; }
.whyusheadparahdv3{  font-size: 28px; color:#cac9c9 !important; padding-left:20px;     margin-top: 0px;padding-top: 0px;text-align:center;  }
 .float-left{ float:left;}
 .mycard{ padding:10px;    min-height: 20vh;text-align:center;}.cardmargin{ padding:14px;}.cardshadow{box-shadow:2px 10px 13px 0px #dadada; }
 .blurhead{padding: 10px;
    text-align: center;
    color: #fff;
    bottom: 0px;
     
  background: var(--dustypurple);
    font-size: 22px;}
	.sessionimg{ width:60px;}
	.booknow{
		    background: #B5EAD7;
    box-shadow: 1px 7px 9px #e6e6e6;
    border-bottom: 1px solid #9f86c0;
	
	}	.booknow:hover{
		    background: var(--dustypurple);color:#fff;
    box-shadow: 1px 7px 9px #e6e6e6;
    border-bottom: 2px solid #9f86c0;
	
	}
	.moreawards{ 
	text-align: center;
    width: 40px;
    height: 40px;
    color: #ccad4c;background:#000;
    font-weight:bold;
    border-radius: 50%;
    padding: 4px; padding-top: 8px;
    right: -20px;
    position: absolute;
    margin-top: 10%;
    box-shadow: -1px 1px 12px #000;cursor:pointer;
	}
		.moreawards:hover{ 
	text-align: center;
    width: 40px;
    height: 40px;
    color: #000;background:#ccad4c;
    font-weight:bold;
    border-radius: 50%;
    padding: 4px;padding-top: 8px;
    right: -20px;
    position: absolute;
    margin-top: 10%;
    box-shadow: -1px 1px 12px #000;cursor:pointer;
	}

/* Watermark text for Mission/Vision/Goal sections */
.watermark-text {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: clamp(30px, 8vw, 80px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  text-transform: uppercase;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.watermark-text.watermark-light {
  color: rgba(255, 255, 255, 0.08);
}

/* Truck background for Mission/Vision/Goal divs */
.divy1::before,
.divy2::before,
.divy3::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 70%;
  /*background-image: url('../img/zudii-logo.png');*/
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.divy3::before {
  opacity: 0.12;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9e62 0%, var(--color-accent) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(14, 120, 181, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  box-shadow: 0 6px 20px rgba(12, 184, 104, 0.4);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    z-index: 9999 !important;
    position: fixed !important;
    display: flex !important;
  }
  
  .back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-choose-content .eyebrow {
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.why-choose-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

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

.why-choose-list li {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-soft);
  position: relative;
  padding-left: 30px;
}

.why-choose-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.why-choose-list li:last-child {
  border-bottom: none;
}

.why-choose-list li strong {
  color: var(--color-text-main);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.why-choose-list li span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-choose-image {
    order: -1;
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--color-bg-surface);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}