* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f6f6f6;
  color: #222;
}

/* ================= HERO ================= */
/* ===============================
   CONTACT HERO SECTION
================================ */
 /* ================= ROOT ================= */
:root {
  --navy: #0a1e42;
  --white: #ffffff;
  --whatsapp: #25d366;
}

/* ================= HEADER (GLOBAL) ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 30, 66, 0.9); /* NAVY */
  backdrop-filter: blur(2px); /* subtle luxury effect */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.navbar nav a {
  position: relative;
  color: var(--white);
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 6px;
}

.navbar nav a::after,
.navbar nav a.active::after,
.navbar nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.35s ease;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
  width: 100%;
}

/* ================= HERO (ALL PAGES) ================= */
.hero {
  min-height: 100vh;
  padding-top: 30px; /* space for fixed header */
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(
                rgba(10,30,66,0.45),
                rgba(10,30,66,0.45)
              ),
              url("../img/bg.png") center/cover no-repeat;
}

/* ================= HERO GROUP / CONTACT ================= */
.hero-group-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 50px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* LEFT CONTENT */
.hero-group-text h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-group-text p {
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* ================= CONTACT FORM ================= */
.hero-contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 30px 32px;
}

.hero-contact-form h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-contact-form input,
.hero-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 14px;
  border-radius: 7px;
  border: none;
  outline: none;
}

.hero-contact-form textarea {
  min-height: 96px;
  resize: none;
}

.hero-contact-form button {
  width: 100%;
  padding: 13px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.25s ease;
}

.hero-contact-form button:hover {
  background: #1ebe5d;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-group-container {
    grid-template-columns: 1fr;
    padding: 110px 30px 50px;
  }

  .hero-contact-form {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: auto;
  }

  .hero-group-text h1 {
    font-size: 36px;
  }

  .navbar {
    padding: 18px 24px;
  }

  .navbar nav a {
    margin-left: 16px;
    font-size: 12px;
  }
}

  
:root {
  --blue: #0078d4;
  --text-h: #111;
  --text-p: #555;
  --bg: #f7f9fb;
}

/* Section & Container */
.process-overview-section {
  background: var(--bg);
  padding: 80px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.process-overview-section .container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Content */
.overview-content {
  flex: 1 1 400px;
}

.overview-content h2 {
  font-size: 36px;
  color: var(--text-h);
  margin-bottom: 20px;
}

.overview-content p {
  font-size: 16px;
  color: var(--text-p);
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Feature Cards - single row */
 .feature-cards {
  display: flex;
  gap: 20px;             /* space between cards */
  justify-content: center; /* center the row */
  margin-bottom: 30px;
}

.feature-cards .card {
  width: 200px;          /* fixed width */
  height: 120px;         /* fixed height */
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  text-align: center;
  cursor: default;
  transition: transform 0.2s ease;
}

.feature-cards .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* CTA Button */
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--blue);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

/* Right Side - Process Section */
.process-section {
  flex: 1 1 500px;
  position: relative;
}

/* Snake process CSS (unchanged) */
.process-container { position: relative; }

.process-row { display: flex; margin-bottom: 60px; position: relative; }
.row-left { justify-content: flex-start; }
.row-right { justify-content: flex-end; }

.step-box { position: relative; width: 70%; display: flex; align-items: center; }

.content-pill {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 40px;
  padding: 15px 35px;
  width: 100%;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.content-pill:hover { transform: translateY(-3px); }

.row-left .content-pill { margin-left: 30px; }
.row-right .content-pill { margin-right: 30px; text-align: right; }

.number-circle {
  background: var(--blue);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  z-index: 3;
}

.row-left .number-circle { left: 0; }
.row-right .number-circle { right: 0; }

.path-line { position: absolute; border: 3px solid var(--blue); z-index: 1; }

.path-right { top: 40px; right: 23px; width: calc(30% + 3px); height: 150px; border-left: none; border-bottom: none; }
.path-left { top: 40px; left: 23px; width: calc(30% + 3px); height: 150px; border-right: none; border-bottom: none; }

.content-pill h3 { margin: 0 0 4px; font-size: 18px; color: var(--text-h); }
.content-pill p { margin: 0; font-size: 13px; color: var(--text-p); line-height: 1.5; }

.process-row:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 992px) {
  .process-overview-section .container { flex-direction: column; gap: 40px; }
  .feature-cards { flex-direction: column; }
  .feature-cards .card { flex: 1 1 100%; }
  .overview-content { text-align: center; }
  .process-row { justify-content: center !important; }
  .row-left .content-pill, .row-right .content-pill { margin: 0 !important; text-align: center; }
  .row-left .number-circle, .row-right .number-circle { left: 50% !important; transform: translateX(-50%); }
  .path-left, .path-right { display: none; }
}


.contact-qr-section {
 
  background-color: white;
  padding: 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-qr-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-qr-section .content {
  flex: 1 1 900px;
  padding-right: 40px;
}

.contact-qr-section .content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #111;
}

.contact-qr-section .content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

.contact-qr-section .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0078d4;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.contact-qr-section .btn:hover {
  background-color: #005fa3;
}

.contact-qr-section .qr-code {
  flex: 1 1 300px;
  text-align: center;
}

.contact-qr-section .qr-code img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-qr-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .contact-qr-section .content {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

 .social-media-section {
  background: #f7f9fb;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.social-media-section h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 15px;
}

.social-media-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Individual Social Colors */
.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: #E4405F; }
.social-icon.pinterest { background: #BD081C; }
.social-icon.youtube { background: #FF0000; }
.social-icon.whatsapp { background: #25D366; }
.social-icon.linkedin { background: #0A66C2; }

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .social-icons {
    gap: 15px;
  }
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.alidwan-footer {
  background-color: #1D435F;
  padding: 18px 24px;
}

.alidwan-footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alidwan-footer-left {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.alidwan-footer-right {
  font-size: 13px;
  color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .alidwan-footer-row {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}