* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ========== NAVBAR ========== */
/* ========== NAVBAR ========== */
.navbar {
  background: #0b1538;          /* dark navy */
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;           /* for absolute mobile menu */
}

/* Logo */
.logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 6px;
  border-radius: 4px;
}

/* Desktop menu */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #f9c667;
}

/* Dropdown (desktop) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #0b1538;
  border: 1px solid #1e2a54;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block; /* mouseover works on desktop */
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  color: #cfd7ff;
}

.dropdown-menu li a:hover {
  color: #f9c667;
}

/* Hamburger button (hidden on desktop by default) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
  border-radius: 2px;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 768px) {
  .logo img {
    height: 42px;
  }

  /* Show hamburger on small screens */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    margin-left: auto;          /* push to right */
  }

  /* Hide desktop-style inline menu */
  nav {
    flex: 0 0 auto;
  }

  /* Mobile dropdown menu container */
  .menu {
    position: absolute;
    top: 56px;                  /* just under navbar */
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #0b1538;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid #1e2a54;
    transition: max-height 0.3s ease;
  }

  .menu li {
    width: 100%;
    border-bottom: 1px solid #1e2a54;
  }

  .menu li a {
    display: block;
    width: 100%;
    padding: 10px 18px;
  }

  /* When hamburger is clicked -> .open added */
  .menu.open {
    max-height: 260px;          /* adjust if needed */
  }

  /* Dropdown on mobile: show sublinks in the list, not on hover */
  .dropdown-menu {
    position: static;
    border: none;
    background: #0b1538;
    padding: 0;
    display: block;
  }

  .dropdown-menu li a {
    padding-left: 34px;         /* indent submenu items */
  }

  /* Keep hover rule harmless on touch devices */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}


/* Hero Section */
.hero-section {
  background: url('../images/hom.jpg') center right/cover no-repeat;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #123356; /* base text color */
}

/* light overlay so text is readable on busy bg */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.2)
  );
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;  /* above overlay */
  z-index: 1;
}

/* Left text */
.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text small {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  color: #d8902b;       /* warm golden accent */
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  color: #123356;       /* deep blue for good contrast */
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.6);
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #406488;       /* softer blue-grey */
}

/* Button */
.btn-primary {
  background: #007bff;
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #005fcc;
  transform: translateY(-1px);
}

/* Optional image container if you use it */
.hero-image {
  flex: 1 1 400px;
  max-width: 450px;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.home-about {
  padding: 80px 20px;
  background: #f7f9ff;
  text-align: center;
}

.home-about-container {
  max-width: 900px;
  margin: auto;
}

.home-about h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #123356;
  margin-bottom: 18px;
}

.home-about p {
  font-size: 1.05rem;
  color: #445a7a;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-highlights {
  list-style: none;
  margin: 28px auto;
  max-width: 720px;
  padding: 0;
}

.about-highlights li {
  font-size: 0.98rem;
  padding: 10px 0;
  color: #0f172a;
  border-bottom: 1px dashed #d2d6e0;
}

.about-highlights li:last-child {
  border-bottom: none;
}

.about-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 32px;
  background: #007bff;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #005fcc;
}


/* ========== RESPONSIVE ========== */

/* Tablets */
@media (max-width: 992px) {
  .hero-section {
    padding: 70px 20px;
    background-position: center top;
  }

  .hero-section::before {
    background: rgba(255, 255, 255, 0.9); /* stronger overlay on smaller screens */
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    text-align: center;
    margin-top: 20px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Small mobiles */
@media (max-width: 600px) {
  .hero-section {
    padding: 55px 15px 45px;
  }

  .hero-text small {
    font-size: 11px;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 260px;
  }
}

/* ========== ABOUT PAGE ========== */

/* ========== CENTERED ABOUT SECTION ========== */
.about-center-section {
  background: linear-gradient(to bottom, #ffffff, #eef6ff);
  padding: 90px 20px;
  text-align: center;
}

.about-center-container {
  max-width: 900px;
  margin: auto;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #007bff;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #123356;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.07rem;
  color: #445a7a;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 45px;
}

/* Feature Cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 64, 128, 0.08);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 64, 128, 0.15);
}

.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #0b253f;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.94rem;
  color: #445a7a;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #005fcc;
}

/* Responsiveness */
@media (max-width: 900px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.9rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px;
  }
}

/* Services Page */

/* ========== SERVICES PAGE ========== */

/* Top blue-ish hero */
.services-hero {
  background: radial-gradient(circle at top left, #e0f0ff 0%, #ffffff 45%, #e5edff 100%);
  padding: 80px 20px 70px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.services-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-inner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #123356;
  margin-bottom: 12px;
}

.services-hero-inner p {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Main services */
.services-section {
  padding: 70px 20px 80px;
  background: #f7f9ff;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Intro */
.services-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.services-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.services-intro p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Service card */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #3b82f6;
}

.service-icon {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 0.9rem;
  color: #64748b;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
}

/* How we work strip */
.services-process {
  padding: 60px 20px 70px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.services-process-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-process-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #111827;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.process-step {
  flex: 1 1 220px;
  max-width: 260px;
  background: #f9fafb;
  border-radius: 14px;
  padding: 20px 18px 22px;
  border: 1px solid #e5e7eb;
}

.step-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 6px;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #111827;
}

.process-step p {
  font-size: 0.92rem;
  color: #4b5563;
}

/* ---------- RESPONSIVE (Services) ---------- */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-inner h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 55px 16px 65px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px 18px;
  }

  .services-hero-inner h1 {
    font-size: 1.9rem;
  }

  .services-intro h2,
  .services-process-inner h2 {
    font-size: 1.7rem;
  }
}


/* ========== DATA ANALYTICS PAGE ========== */

/* Hero: left content, right image */
.data-hero {
  background: linear-gradient(to right, #ffffff 0%, #eef5ff 60%, #e0f0ff 100%);
  padding: 80px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.data-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.data-hero-text {
  flex: 1 1 52%;
}

.data-hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #123356;
  margin-bottom: 16px;
}

.data-hero-text p {
  font-size: 1.02rem;
  color: #445a7a;
  line-height: 1.7;
  margin-bottom: 14px;
}

.data-hero-text ul {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
}

.data-hero-text ul li {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

.data-hero-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
}

.data-hero-btn {
  margin-top: 4px;
}

/* Right image */
.data-hero-image {
  flex: 1 1 40%;
  text-align: right;
}

.data-hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

/* Four sections/cards */
.data-sections {
  padding: 70px 20px 80px;
  background: #ffffff;
}

.data-sections-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.data-section-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 22px 20px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.data-section-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.data-section-card p {
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.7;
}

/* ---------- RESPONSIVE (Data Analytics) ---------- */

@media (max-width: 992px) {
  .data-hero {
    padding: 70px 20px;
  }

  .data-hero-inner {
    flex-direction: column-reverse; /* image on top, text below on tablet */
    text-align: center;
  }

  .data-hero-text {
    flex: 1 1 100%;
  }

  .data-hero-text h1 {
    font-size: 2.1rem;
  }

  .data-hero-text ul {
    text-align: left;
    display: inline-block;
  }

  .data-hero-image {
    text-align: center;
  }

  .data-sections-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .data-hero {
    padding: 55px 15px 50px;
  }

  .data-hero-text h1 {
    font-size: 1.9rem;
  }

  .data-section-card {
    padding: 20px 16px 22px;
  }
}


.page-section {
  padding: 60px 20px;
}

/* ========== CONTACT PAGE ========== */

/* Top orange banner (same feel as About) */
.contact-hero {
  background: url('../images/contact-bg.jpg') center center/cover no-repeat;
  padding: 70px 20px;
  text-align: center;
  position: relative;
  color: #ffffff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(224, 154, 41, 0.95),
    rgba(227, 173, 68, 0.9)
  );
  mix-blend-mode: multiply;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero-inner h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

/* Main layout */
.contact-section {
  background: #f7f6ff;
  padding: 60px 20px 80px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE INFO */
.contact-info {
  flex: 0 0 35%;
}

.contact-info-block {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.contact-info-block p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
}

/* RIGHT SIDE FORM */
.contact-form-wrapper {
  flex: 1 1 65%;
}

/* Alerts */
.alert {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Grid layout: 3 inputs + big message on right (desktop) */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  grid-template-rows: auto auto auto auto;
  gap: 14px 18px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  outline: none;
  background: #ffffff;
}

.field input:focus,
.field textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25);
}

/* First three inputs in left column */
.contact-form-grid .field:nth-child(1),
.contact-form-grid .field:nth-child(2),
.contact-form-grid .field:nth-child(3) {
  grid-column: 1 / 2;
}

/* Textarea spans right column */
.field-textarea {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}

.field-textarea textarea {
  height: 100%;
  resize: vertical;
}

/* Button below, right aligned */
.field-button {
  grid-column: 2 / 3;
  text-align: right;
}

.contact-btn {
  background: #7c3aed;   /* purple button */
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
  transition: background 0.25s ease, transform 0.15s ease;
}

.contact-btn:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

/* ---------- RESPONSIVE CONTACT ---------- */

@media (max-width: 992px) {
  .contact-inner {
    flex-direction: column;
  }

  .contact-info {
    flex: 1 1 100%;
  }

  .contact-form-wrapper {
    flex: 1 1 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-form-grid .field:nth-child(1),
  .contact-form-grid .field:nth-child(2),
  .contact-form-grid .field:nth-child(3),
  .field-textarea,
  .field-button {
    grid-column: 1 / 2;
  }

  .field-button {
    text-align: left;
  }
}

/* Contact Hero — full image background with dark overlay for readability */
.contact-hero {
  background: url('../images/contact-bg.jpg') center center/cover no-repeat;
  padding: 120px 20px; /* taller hero */
  position: relative;
  text-align: center;
  color: #ffffff;
}

/* Soft overlay */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 54, 0.55); /* dark navy overlay */
  z-index: 0;
}

/* Bring text on top */
.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero-inner h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-hero {
    padding: 90px 15px;
  }

  .contact-hero-inner h1 {
    font-size: 2.2rem;
  }
}

.btn-primary {
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #0b1538; /* darker navy */
  color: #cfd7ff; /* soft text */
  padding: 40px 20px 20px;
  font-size: 14px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-left h4,
.footer-right h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f9c667;
}

.footer-left p a {
  color: #4a63cc; /* blue links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-left p a:hover {
  color: #7d92ff;
}

.footer-right p {
  margin-bottom: 12px;
  color: #cfd7ff;
}

.footer-right .icon {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
  color: #f9c667;
}

/* Footer bottom copyright */
.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 10px;
  font-size: 13px;
  color: #7a82a6;
  text-align: center;
}

.footer-bottom a {
  color: #f9c667;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Social Icons in Footer */
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  font-size: 20px;
  color: #cfd7ff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #f9c667;
  transform: translateY(-3px);
}


/* Responsive */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
  }
}

/* Fix responsive form order */
@media (max-width: 992px) {
  .contact-form-grid {
    display: flex;
    flex-direction: column;
  }

  .contact-form-grid .field {
    width: 100%;
  }

  .field-textarea {
    order: 4; /* message box after 3 inputs */
  }

  .contact-form-grid .field:nth-child(1) {
    order: 1;
  }
  .contact-form-grid .field:nth-child(2) {
    order: 2;
  }
  .contact-form-grid .field:nth-child(3) {
    order: 3;
  }
  .field-button {
    order: 5; /* send button at bottom */
    text-align: left;
  }
}

/* Process Flow at bottom */
/* ========== PROCESS FLOW ========== */
.process-flow {
  background: #ffffff;
  padding: 60px 20px 70px;
  border-top: 1px solid #e5e7eb;
}

.process-flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* Step card */
.process-box {
  flex: 1;
  text-align: center;
  background: #f9fbff;
  border-radius: 14px;
  padding: 20px 12px 22px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: process-fade-up 0.6s ease-out both;
}

/* staggered entry animation */
.process-box:nth-child(2) { animation-delay: 0.08s; }
.process-box:nth-child(3) { animation-delay: 0.16s; }
.process-box:nth-child(4) { animation-delay: 0.24s; }

.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

/* Emoji icon */
.process-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: inline-block;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.process-box:hover .process-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* Label text */
.process-box p {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0b1538;
  margin: 0;
}

/* Dotted arrow connector between steps */
.process-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 32px;
  height: 1px;
  border-bottom: 1px dashed #cbd5e1;
}

.process-box:not(:last-child)::before {
  content: "➜";
  position: absolute;
  top: calc(50% - 10px);
  right: -20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Entry animation keyframes */
@keyframes process-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .process-flow-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .process-box {
    margin: 0 auto;
    max-width: 360px;
  }

  .process-box::after,
  .process-box::before {
    display: none; /* hide arrows on mobile for cleanliness */
  }
}


/* Details links */
.service-details {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: #2266ff;
  text-decoration: none;
}

.service-details:hover {
  text-decoration: underline;
}

/* Generic data analytics sections */
.data-section {
  padding: 60px 20px;
  background: #ffffff;
}

.data-section.alt {
  background: #f7f9ff;
}

.data-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.data-section-text {
  flex: 1 1 60%;
}

.data-section-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #123356;
  margin-bottom: 12px;
}

.data-section-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 14px 0 6px;
  color: #0f172a;
}

.data-section-text p {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 10px;
}

.data-section-text ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.data-section-text ul li {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 6px;
}

.data-section-image {
  flex: 1 1 40%;
  text-align: right;
}

.data-section-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

/* Responsive */
@media (max-width: 900px) {
  .data-section-inner {
    flex-direction: column;
  }
  .data-section-image {
    text-align: center;
  }
}




