/* --- Custom Styles --- */
        :root {
            --bg-cream: #1f77e521; /* The light background color from the image */
            --accent-orange: #05397b; /* The button and accent color */
            --text-dark: #1a1a1a;
            --text-muted: #6c757d;
        }

        body {
            /* font-family: 'Inter', sans-serif; */
            -webkit-font-smoothing: antialiased;
        }

        /* Section Container */
        .hero-section {
            background-color: var(--bg-cream);
            padding: 80px 0;
            border-radius: 24px; /* Large rounded corners for the whole section */
            overflow: hidden;
            margin: 26px 20px; /* Margin for demonstration purposes */
        }

        /* Typography */
        .hero-heading {
            color: var(--text-dark);
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subheading {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        /* Custom Buttons */
        .btn-custom {
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px; /* Fully rounded buttons */
            transition: all 0.3s ease;
        }

        .btn-orange {
            background-color: var(--accent-orange);
            border: 2px solid var(--accent-orange);
            color: white;
        }
        .btn-orange:hover {
            background-color: #ffffff00;
    border-color: #063a7b;
    color: #063a7b;
    transform: translateY(-2px);
        }

        .btn-outline-orange {
            background-color: transparent;
            border: 2px solid var(--accent-orange);
            color: var(--accent-orange);
        }
        .btn-outline-orange:hover {
            background-color: var(--accent-orange);
            color: white;
            transform: translateY(-2px);
        }

        /* Right Side - Image & Floating Elements */
        .image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }

        .main-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
            object-fit: cover;
            min-height: 450px;
        }

        /* Common style for floating white cards */
        .floating-card {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-dark);
            z-index: 2;
        }
        
        /* Orange plus icon style */
        .icon-plus {
            width: 24px;
            height: 24px;
            background-color: var(--accent-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            line-height: 1;
        }

        /* Positioning the floating elements */
        .pill-1 { top: 25%; left: -15px; }
        .pill-2 { top: 40%; right: -15px; }

        /* The larger stats card at the bottom */
        .stats-card {
            position: absolute;
            bottom: -20px;
            left: 10%;
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            width: 240px;
            z-index: 3;
        }

        /* Dummy Chart Styling */
        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 60px;
            margin-top: 15px;
        }
        .chart-bar {
            background-color: var(--accent-orange);
            border-radius: 4px;
            flex-grow: 1;
            opacity: 0.8;
        }

        /* Animation Class */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .hero-heading { font-size: 2rem; }
            .image-wrapper { margin-top: 50px; }
            .pill-1 { left: 10px; }
            .pill-2 { right: 10px; }
            .stats-card { left: 50%; transform: translateX(-50%); bottom: -30px; }
        }

        /* services section */


  .gradient-text {
    background: linear-gradient(90deg, #063a7b, #1f77e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .service-card {
    background: #e2edfc;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #063a7b;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  }

  .service-card p {
    color: #555;
    font-size: 0.95rem;
    margin-top: 12px;
    line-height: 1.6;
  }

  /* capability content */

  .capabilities-section {
    background: #ffffff;
  }


  .capability-btn {
    width: 100%;
    height: 100%;
    padding: 18px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    background: #dbe5f8;
    color: #111;
    transition: all 0.3s ease;
    border: 1px solid #063a7b;
  }

  .capability-btn.active,
  .capability-btn:hover {
    background: #063a7b;
    color: #fff;
  }

  .capability-content {
    background: linear-gradient(135deg, #063a7b, #1f77e5);
    border-radius: 16px;
    padding: 36px;
    color: #ffffff;
    min-height: 320px;
  }

  .content-panel {
    display: none;
  }

  .content-panel.active {
    display: block;
  }

  .capability-content ul {
    padding-left: 18px;
  }

  .capability-content li {
    margin-bottom: 10px;
  }

  /* CTA Strips */

  .cta-strip {
  /* background-color: #063a7b; */
  background: linear-gradient(135deg, #063a7b, #1f77e5);
  padding: 48px 0;
}

.cta-text {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.cta-btn {
color: #ffffff;
font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    background-color: white;
    border: 2px solid #ffffff;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-text {
    text-align: center;
  }

  .cta-btn {
    width: 100%;
  }
}


/* Approach Section */
.approach-section {
  background-color: #ffffff;
}


.process-row {
  position: relative;
}

.process-step {
  position: relative;
  padding: 0 20px;
}

/* Dashed line */
.process-step::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -28px;
  width: 56px;
  border-top: 2px dashed #000000;
}

/* Arrow head */
.process-step::before {
  content: "";
  position: absolute;
  top: 27px;
  right: -34px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #000000;
}

/* Remove arrow on last item */
.process-step:last-child::after,
.process-step:last-child::before {
  display: none;
}

/* Hide arrows on mobile */
@media (max-width: 991px) {
  .process-step::after,
  .process-step::before {
    display: none;
  }
}

.process-step h5{
    color: #063a7b;
}

.process-step:last-child::after {
  display: none;
}

.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: #dbe5f8;
  color: #063a7b;
  border-radius: 14px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

/* Hide arrows on mobile */
@media (max-width: 991px) {
  .process-step::after {
    display: none;
  }
}
