html {
  scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.about-navbar {
    position: sticky;
    top: 0;
    z-index: 1000; /* increase from 100 */
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 50px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-nav-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-size: 16px;
    color: #555;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
    background: #f1f1f1;
    color: #111;
}

.nav-btn {
    font-size: 16px;
    font-weight: bolder;
    color: white;
    padding: 7px 16px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #15527c;    
    font-weight: 500;
    transition: background 0.15s;
}

.nav-btn:hover {
    background: #0b1e35;
}

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 64px); /* subtract navbar height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(120deg,
        #0b2340 0%,
        #0d4a5e 28%,
        #0d7a7a 58%,
        #18c5b0 100%
    );
}
 
    /* ── TECH GRID OVERLAY ── */
    .hero::before {
      content: '';
      position: absolute;
      min-height: calc(100vh - 64px); 
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 52px 52px;
      pointer-events: none;
    }
 
    /* ── DECORATIVE SHAPES (left side) ── */
    .deco {
      position: absolute;
      pointer-events: none;
      opacity: 0.18;
      stroke: #7ee8db;
      fill: none;
    }
    .deco-left  { left: 0; top: 0; width: 220px; height: 100%; }
    .deco-right { right: 0; top: 0; width: 220px; height: 100%; }
 
    /* ── CONTENT ── */
    .content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 80px 40px;
      max-width: 860px;
      width: 100%;
    }
 
    /* Badge */
    .badge {
      display: inline-block;
      background: #0d2a48;
      color: #ffffff;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 9px 22px;
      border-radius: 50px;
      margin-bottom: 38px;
      border: 1px solid rgba(255,255,255,0.12);
    }
 
    /* Headline */
    h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.18;
      color: #ffffff;
      margin-bottom: 22px;
    }
 
    h1 .dark {
      color: #0b2340;
    }
 
    /* Sub text */
    .subtitle {
      font-size: 1rem;
      font-weight: 400;
      color: rgba(255,255,255,0.60);
      margin-bottom: 38px;
      letter-spacing: 0.1px;
    }
 
    /* Horizontal rule */
    .divider {
      width: 100%;
      max-width: 680px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
      margin: 0 auto 52px;
    }
 
    /* Stats row */
    .stats {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 0;
      flex-wrap: wrap;
    }
 
    .stat {
      text-align: center;
      padding: 0 48px;
    }
 
    .stat + .stat {
      border-left: none; /* clean, matching the image */
    }
 
    .stat-number {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 10px;
    }
 
    .stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.3px;
      text-transform: capitalize;
    }
 
    .services-section {
      padding: 70px 40px;
      max-width: 1300px;
      margin: 0 auto;
    }
 
    .section-label {
      text-align: center;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #1a8a8a;
      margin-bottom: 14px;
    }
 
    .section-title {
      text-align: center;
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 800;
      color: #111;
      margin-bottom: 12px;
      line-height: 1.2;
    }
 
    .section-title .highlight {
      color: #1a9e9e;
      font-style: italic;
    }
 
    .section-sub {
      text-align: center;
      font-size: 0.88rem;
      color: #888;
      margin-bottom: 48px;
    }
 
    /* ── MAIN LAYOUT ── */
    .services-layout {
      display: flex;
      gap: 0;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 16px;
      overflow: hidden;
      min-height: 560px;
    }
 
    /* ── LEFT SIDEBAR ── */
    .sidebar {
      width: 270px;
      flex-shrink: 0;
      border-right: 1px solid #e8e8e8;
    }
 
    .sidebar-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px 22px;
      cursor: pointer;
      border-left: 3px solid transparent;
      transition: background 0.2s, border-color 0.2s;
      border-bottom: 1px solid #f0f0f0;
    }
 
    .sidebar-item:last-child { border-bottom: none; }
 
    .sidebar-item:hover {
      background: #f4fafa;
    }
 
    .sidebar-item.active {
      background: #f0f8f8;
      border-left-color: #1a9e9e;
    }
 
    .sidebar-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #e8f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }
 
    .sidebar-item.active .sidebar-icon {
      background: #1a9e9e;
    }
 
    .sidebar-icon svg {
      width: 20px;
      height: 20px;
      stroke: #1a9e9e;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .sidebar-item.active .sidebar-icon svg {
      stroke: #fff;
    }
 
    .sidebar-text .name {
      font-size: 0.88rem;
      font-weight: 700;
      color: #111;
    }
 
    .sidebar-text .sub {
      font-size: 0.72rem;
      color: #999;
      font-weight: 400;
    }
 
    /* ── RIGHT CONTENT ── */
    .content-panel {
      flex: 1;
      padding: 36px 40px;
      overflow-y: auto;
    }
 
    .tab-content { display: none; }
    .tab-content.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }
 
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* Content header */
    .content-header {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 16px;
    }
 
    .content-icon {
      width: 58px;
      height: 58px;
      border-radius: 14px;
      background: #e8f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .content-icon svg {
      width: 26px;
      height: 26px;
      stroke: #1a9e9e;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .content-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #1a9e9e;
      line-height: 1.25;
      margin-bottom: 4px;
    }
 
    .content-tagline {
      font-size: 0.82rem;
      color: #555;
    }
 
    .content-desc {
      font-size: 0.83rem;
      color: #555;
      line-height: 1.75;
      margin-bottom: 28px;
      border-top: 1px solid #eee;
      padding-top: 18px;
    }
 
    /* Included items */
    .included-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #333;
      margin-bottom: 14px;
    }
 
    .included-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 28px;
    }
 
    .included-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f7fafa;
      border: 1px solid #e5f0f0;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 0.78rem;
      color: #333;
      font-weight: 500;
      line-height: 1.4;
    }
 
    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #1a9e9e;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .check-icon svg {
      width: 12px;
      height: 12px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    /* Platforms */
    .platforms-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #333;
      margin-bottom: 12px;
    }
 
    .platforms-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
 
    .platform-tag {
      border: 1.5px solid #ccc;
      border-radius: 6px;
      padding: 5px 14px;
      font-size: 0.7rem;
      font-weight: 600;
      color: #444;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
 
    /* Buttons */
    .cta-row {
      display: flex;
      gap: 12px;
    }
 
    .btn-primary {
      background: #0d2a48;
      color: #fff;
      border: none;
      padding: 11px 24px;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      transition: background 0.2s;
    }
 
    .btn-primary:hover { background: #0a1e35; }
 
    .btn-secondary {
      background: #fff;
      color: #111;
      border: 1.5px solid #ccc;
      padding: 11px 24px;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      transition: background 0.2s, border-color 0.2s;
    }
 
    .btn-secondary:hover { background: #f5f5f5; }

    .section-label {
  font-size: 0.85rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.section-sub {
  font-size: 1rem;
}

.sidebar-text .name {
  font-size: 1rem;
}

.sidebar-text .sub {
  font-size: 0.82rem;
}

.content-title {
  font-size: 1.5rem;
}

.content-tagline {
  font-size: 0.95rem;
}

.content-desc {
  font-size: 0.95rem;
}

.included-label,
.platforms-label {
  font-size: 0.82rem;
}

.included-item {
  font-size: 0.9rem;
}

.platform-tag {
  font-size: 0.82rem;
}

.btn-primary,
.btn-secondary {
  font-size: 0.95rem;
}

.platforms-section {
      background: linear-gradient(120deg,
        #0b2340 0%,
        #0d4a5e 28%,
        #0d7a7a 58%,
        #18c5b0 100%
      );
      padding: 60px 0;
      overflow: hidden;
      margin-top: 7%;
    }
 
    .platforms-title {
      text-align: center;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 40px;
    }
 
    .platforms-title span {
      color: #0b2340;
    }
 
    /* ── MARQUEE WRAPPER ── */
    .marquee-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
 
    /* Fade edges */
    .marquee-wrapper::before,
    .marquee-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
 
    .marquee-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, #0b2c47 0%, transparent 100%);
    }
 
    .marquee-wrapper::after {
      right: 0;
      background: linear-gradient(270deg, #18c5b0 0%, transparent 100%);
    }
 
    /* ── MARQUEE TRACK ── */
    .marquee-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
 
    .marquee-track:hover {
      animation-play-state: paused;
    }
 
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    /* ── TOOL CARD ── */
    .tool-card {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #ffffff;
      border-radius: 14px;
      padding: 16px 28px;
      min-width: 190px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      flex-shrink: 0;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: default;
    }
 
    .tool-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }
 
    .tool-logo {
      width: 40px;
      height: 40px;
      object-fit: contain;
      flex-shrink: 0;
    }
 
    .tool-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: #1a1a2e;
      white-space: nowrap;
    }

.process-section {
      padding: 180px 40px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }
 
    .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #1a9e9e;
      margin-bottom: 14px;
    }
 
    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #111;
      margin-bottom: 12px;
    }
 
    .section-title .highlight {
      color: #1a9e9e;
      font-style: italic;
    }
 
    .section-sub {
      font-size: 0.9rem;
      color: #999;
      margin-bottom: 64px;
    }
 
    /* ── TIMELINE ── */
    .timeline {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0;
    }
 
    /* Horizontal line through the circles */
    .timeline::before {
      content: '';
      position: absolute;
      top: 28px; /* center of the circle */
      left: calc(12.5% );
      right: calc(12.5% );
      height: 2px;
      background: #d0d0d0;
      z-index: 0;
    }
 
    /* ── STEP ── */
    .step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1;
    }
 
    /* Circle */
    .step-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #0d3d5e;
      color: #fff;
      font-size: 1.3rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      transition: transform 0.2s, background 0.2s;
      cursor: default;
      box-shadow: 0 4px 16px rgba(13, 61, 94, 0.25);
    }
 
    .step:hover .step-circle {
      transform: scale(1.1);
      background: #1a9e9e;
    }
 
    /* Step content */
    .step-content {
      text-align: center;
      padding: 0 12px;
    }
 
    .step-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
    }
 
    .step-desc {
      font-size: 0.8rem;
      color: #888;
      line-height: 1.65;
    }

     .faq-section {
      background: linear-gradient(120deg,
        #0b2340 0%,
        #0d4a5e 28%,
        #0d7a7a 58%,
        #18c5b0 100%
      );
      padding: 80px 40px;
      min-height: 80vh;
    }
 
    .faq-inner {
      max-width: 900px;
      margin: 0 auto;
    }
 
    /* Header */
    .faq-label {
      text-align: center;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 14px;
    }
 
    .faq-title {
      text-align: center;
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
      line-height: 1.2;
    }
 
    .faq-title .light {
      font-weight: 400;
      color: #ffffff;
    }
 
    .faq-sub {
      text-align: center;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 56px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
 
    /* ── ACCORDION ── */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }
 
    .faq-item:first-child {
      border-top: 1px solid rgba(255,255,255,0.18);
    }
 
    /* Question row */
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 0;
      cursor: pointer;
      user-select: none;
    }
 
    .faq-question-text {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      flex: 1;
      line-height: 1.4;
    }
 
    /* Arrow button */
    .faq-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }
 
    .faq-btn svg {
      width: 16px;
      height: 16px;
      stroke: #ffffff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s ease;
    }
 
    /* Open state */
    .faq-item.open .faq-btn {
      background: #1a9e9e;
    }
 
    .faq-item.open .faq-btn svg {
      transform: rotate(180deg);
    }
 
    /* Answer */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
 
    .faq-answer-inner {
      padding-bottom: 22px;
      font-size: 1rem;
      color: rgba(255,255,255,0.70);
      line-height: 1.75;
      max-width: 92%;
    }
 
    .faq-item.open .faq-answer {
      max-height: 300px;
    }
 
    .confirmation{
        padding: 10%;
    }

    .confirmation h1{
        font-size: 42px;
        color: black;
    }

      .about-btns{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

.btn1{
    font-size: 20px;
    color: white;
    font-weight: 700;
    background-color: #0b1e35;
    padding: 1%;
    border-radius: 12px;
    width: 200px;
    transition: all 0.3s ease;
}

.btn1:hover {
    cursor: pointer;
  background-color: #152e4d; 
}

.btn2{
    font-size: 20px;
    color: black;
    font-weight: 700;
    border: 1px solid black;
    background-color: white;
    padding: 7.1%;
    border-radius: 12px;
    width: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn2:hover {
  background-color: black;
  color: white;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 53, 0.55);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(11, 30, 53, 0.18);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #f1f1f1;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover {
  background: #e0e0e0;
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #007788;
  display: block;
  margin-bottom: 8px;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #0b1e35;
}

.modal-header p {
  font-size: 14px;
  color: #888;
  margin: 0 0 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-field-row {
  display: flex;
  gap: 14px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.modal-field label {
  font-size: 12px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.03em;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  outline: none;
  color: #111;
  transition: border-color 0.2s;
  background: #fafafa;
  resize: none;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: #007788;
  background: #fff;
}

.modal-submit {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: #0b1e35;
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.modal-submit:hover {
  background: #007788;
  transform: translateY(-1px);
}

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.modal-success.show {
  display: flex;
}

.modal-form.hide {
  display: none;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e1f5ee;
  color: #007788;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.modal-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0b1e35;
  margin: 0 0 6px;
}

.modal-success p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

footer{
    background-color: #0b1e35;
    margin-bottom: -18px;
}

.footer-upper{
    padding: 4%;
}

.footer-upper input{
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    width: 440px;
    transition: border-color 0.15s;
}

.footer-upper input:focus{
    border-color: #007788;
}

.footer-upper button{
    font-size: 14px;
    font-weight: bolder;
    color: white;
    padding: 9px 18px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #15527c;
    background: #15527c;    
    font-weight: 700;
    transition: background 0.15s;
    margin-left: 3px;
}

.footer-upper button:hover{
    background-color: #007788;
}

.footer-logo{
    display: flex;
    align-items: center;
    margin-left: -10px;
}

.footer-middle{
    display: flex;
    padding: 2% 4%;
}

.middle{
    flex: 1;
}

.middle-icon{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.middle-lower p{
    border: 0.5px solid white;
    padding: 1% 4%;
    font-size: 14px;
    width: 36%;
    border-radius: 10px;
}

.middle li{
    color: white;
    list-style-type: none;
    font-size: 14px;
}

.middle-details {
  display: flex;
  flex-direction: column;              
}

.detail-item {
  display: flex;
  flex-direction: row;    
  align-items: center;
  gap: 12px;
}

.middle-title{
    font-weight: 600; 
    font-size: 14px; 
    color: #E2DFD2;
    margin-bottom: -15px;
}

.middle-value{
    font-size: 14px;
    color: white;
}


    /* ── RESPONSIVE ── */
    @media (max-width: 650px) {
      .timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
      }
 
      .timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
      }
 
      .step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        padding: 20px 0;
      }
 
      .step-circle { margin-bottom: 0; flex-shrink: 0; }
      .step-content { text-align: left; }
    }
 
    @media (max-width: 700px) {
      .services-layout { flex-direction: column; }
      .sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e8e8e8; }
      .included-grid { grid-template-columns: 1fr; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .stat { padding: 16px 24px; }
      h1 { font-size: 1.9rem; }
    }