/* Hero */
    .hero-section {
      background: linear-gradient(90deg, #000d1a 0%, #001a41 45%, #0a2d5c 100%);
      padding: 4rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-section::before,
    .hero-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(120, 170, 220, 0.12);
      pointer-events: none;
    }
    .hero-section::before {
      width: 280px;
      height: 280px;
      top: -60px;
      right: 8%;
    }
    .hero-section::after {
      width: 200px;
      height: 200px;
      bottom: 10%;
      left: 42%;
    }
    .hero-section .container { position: relative; z-index: 1; }
    .hero-section h1 {
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 0;
    }
    .hero-section .tagline {
      color: rgba(255, 255, 255, 0.92);
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      max-width: 520px;
      line-height: 1.6;
    }
    .hero-divider {
      width: 100%;
      max-width: 420px;
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin: 1.75rem 0 1.25rem;
    }
    .btn-primary-custom {
      background: var(--color-primary);
      color: #fff !important;
      border: none;
      border-radius: 999px;
      padding: 16px 32px;
      font-weight: 600;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(238, 72, 26, 0.35);
    }
    .btn-primary-custom:hover {
      background: #d63d10;
      color: #fff !important;
      transform: translateY(-1px);
    }
    .banner-three-items {
      margin-top: 0;
    }
    .banner-icon-item {
      background: transparent;
      border-radius: 0;
      padding: 0;
      height: 100%;
    }
    .banner-icon-item .icon-wrap {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: rgba(18, 38, 51, 0.85);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
      font-size: 1.1rem;
    }
    .banner-icon-item p {
      color: #fff;
      font-size: 0.9rem;
      line-height: 1.35;
    }
    .hero-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 420px;
      padding: 1rem 0;
    }
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(120, 170, 220, 0.14);
      bottom: 8%;
      left: 8%;
      z-index: 0;
      pointer-events: none;
    }
    .hero-img-shadow {
      position: absolute;
      width: min(100%, 340px);
      height: 92%;
      background: linear-gradient(160deg, #0d2847 0%, #001a41 100%);
      border-radius: 28px;
      transform: translate(24px, 24px);
      z-index: 0;
    }
    .hero-img-frame {
      position: relative;
      z-index: 1;
      background: #fff;
      border-radius: 28px;
      padding: 12px;
      width: min(100%, 340px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }
    .hero-img-frame img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
      object-fit: cover;
    }

    /* Stats */
    .stats-section { padding: 2.5rem 0; background: #fff; }
    .stat-box {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
    }
    .stat-box .icon-circle {
      width: 56px; height: 56px;
      background: var(--color-primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.25rem; flex-shrink: 0;
    }
    .stat-box h3 { margin: 0; font-size: 1.5rem; font-weight: 700; color: var(--color-dark); }
    .stat-box p { margin: 0; color: #666; font-size: 0.9rem; }

    /* About */
    .about-section { padding: 4rem 0; background: var(--color-light-bg); }
    .about-section .label { color: var(--color-primary); font-weight: 600; }
    .about-section h2 { color: var(--color-dark); font-weight: 700; }
    .about-section .divider { width: 60px; height: 3px; background: var(--color-primary); margin: 1rem 0; }
    .about-img img { border-radius: 16px; width: 100%; height: auto; }

    /* Services */
    .services-section {
      padding: 4rem 0;
      background: linear-gradient(180deg, #fff 0%, var(--color-light-bg) 100%);
    }
    .services-section h2 { text-align: center; color: var(--color-dark); font-weight: 700; margin-bottom: 2rem; }

    .service-sec .card {
      position: relative;
      overflow: hidden;
      background-color: var(--color-card-blue);
      border-radius: 30px;
      border: none;
      height: 100%;
    }
    .service-sec .alter-card-color { background-color: var(--color-card-purple) !important; }
    .service-sec .card-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: var(--color-dark);
      transform: scale(0);
      transform-origin: bottom;
      border-radius: 30%;
      z-index: 0;
      transition: transform 1s ease-out, opacity 0.5s;
      opacity: 0.5;
    }
    .service-sec .card:hover .card-bg { transform: scale(6); opacity: 1; }
    .service-sec .card:hover .cardhead-sec h3,
    .service-sec .card:hover .cardhead-sec a { color: #fff !important; }
    .cardhead-sec {
      padding: 1rem;
      display: flex;
      gap: 8px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .cardhead-sec h3 {
      margin: 0;
      font-size: 17px;
      font-weight: 600;
      color: var(--color-dark);
    }
    .service-img-sec {
      width: 50px;
      padding: 7px;
      background-color: #8ab0da;
      border-radius: 14px;
      flex-shrink: 0;
    }
    .service-img-sec.alter-img-color { background-color: #8080cab3 !important; }
    .service-img-sec img { width: 100%; }
    .hpbc-icon-sec { width: 70px; }

    /* Contact */
    .contact-section { padding: 4rem 0; background: #fff; }
    .contact-section h2 { color: var(--color-dark); font-weight: 700; }
    .contact-form-box {
      background: var(--color-light-bg);
      border-radius: 16px;
      padding: 2rem;
    }
    .contact-form-box input,
    .contact-form-box textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-bottom: 1rem;
      font-family: inherit;
    }
    .contact-fm-submit {
      width: 100%;
      padding: 12px;
      border-radius: 6px;
      background: var(--color-primary);
      color: #fff;
      border: none;
      font-weight: 500;
      cursor: pointer;
    }
    .contact-fm-submit:hover { background: var(--color-dark); }

    /* Process */
    .process-section { padding: 4rem 0; background: var(--color-light-bg); }
    .our-process-list { max-width: 1000px; margin: auto; padding: 20px; }
    .our-process-item {
      display: flex;
      align-items: center;
      margin-bottom: 60px;
      gap: 1rem;
    }
    .our-process-item .icon-box {
      position: relative;
      height: 96px; width: 96px;
      background: #fff;
      border: 1px solid #3176c03b;
      border-radius: 22px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .our-process-item .icon-box::before {
      counter-increment: my-counter;
      content: counter(my-counter);
      position: absolute;
      top: -12px; right: -12px;
      background: #173764;
      color: #fff;
      border-radius: 50%;
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700;
    }
    .our-process-item:not(:last-child) .icon-box::after {
      content: '';
      position: absolute;
      left: 50%; top: 100%;
      transform: translateX(-50%);
      width: 1px; height: 72px;
      background-color: #3176c03b;
    }
    .our-process-list { counter-reset: my-counter; }
    .our-process-item figure img { width: 50px !important; }
    .process-item-content h3 { font-size: 20px; color: #333; margin: 0 0 5px; }
    .process-item-content p { color: #555; margin: 0; }

    /* Blog */
    .blog-section { padding: 4rem 0; background: #fff; }
    .blog-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      height: 100%;
      background: #fff;
      transition: transform 0.3s;
    }
    .blog-card:hover { transform: translateY(-4px); }
    .blog-card img { width: 100%; height: 200px; object-fit: cover; }
    .blog-card .card-body { padding: 1.25rem; }
    .blog-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--color-dark); }
    .read-more-link { color: var(--color-primary); font-weight: 600; }

    /* Testimonials */
    .testimonials-section { padding: 4rem 0; background: var(--color-light-bg); }
    .testimonials-section h5 { color: var(--color-primary); font-weight: 600; }
    .testimonials-section h2 { color: var(--color-dark); font-weight: 700; }
    .review-card {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
      height: auto;
    }
    .review-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); }
    .stars { color: #f5a623; margin: 0.5rem 0; }
    .review-card p { color: #555; font-size: 0.95rem; margin: 0; }

@media (max-width: 991px) {
  .hero-section { padding: 3rem 0 2.5rem; text-align: center; }
  .hero-section .tagline { margin-left: auto; margin-right: auto; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .banner-three-items { justify-content: center; }
  .banner-icon-item { justify-content: center; text-align: left; }
  .hero-img-wrap { min-height: 360px; margin-top: 2rem; }
  .stat-box { justify-content: center; text-align: left; }
  .our-process-item { margin-bottom: 35px !important; }
  .our-process-item:not(:last-child) .icon-box::after { height: 80px !important; }
  .hpbc-icon-sec { width: 55px !important; }
}

@media (max-width: 576px) {
  .hero-section { padding: 2.5rem 0 2rem; }
  .hero-img-wrap { min-height: 300px; }
  .hero-img-shadow,
  .hero-img-frame { width: min(100%, 280px); }
  .banner-three-items .col-sm-6,
  .banner-three-items .col-md-4 { width: 100%; }
}