
/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background: #f5f5ff; /* soft gray-violet like screenshot */
  color: #1c2744;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #0d2a6b; text-decoration: none; }
a:hover { text-decoration: none; }
hr { border: 0; height: 1px; background: #e8edf6; margin: 24px 0; }

/* ---------- Simple grid (replaces Bootstrap for this page) ---------- */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: -12px; }
[class^="col-"], [class*=" col-"] { padding: 12px; width: 100%; }
@media (min-width: 900px) {
  .col-md-2  { width: 16.666%; }
  .col-md-4  { width: 33.333%; }
  .col-md-6  { width: 50%; }
  .col-md-8  { width: 66.666%; }
  .col-md-offset-2 { margin-left: 16.666%; }
}

/* ---------- Utility classes used by the HTML ---------- */
.text-center { text-align: center; }
.bg-gray { background: #f5f5ff; }

.bg-light { background: #ffffff; }
.default-padding-top.bottom-less {
    margin-bottom: -30px;
    overflow: hidden;
}
.default-padding-top { padding-top: 120px; }
.bottom-less { padding-bottom: 0; }
.equal-height { display: block; }

/* ---------- Section: Hero / Heading ---------- */
.services-area { padding: 64px 0 28px; }
.services-area {
    position: relative;
    z-index: 1;
}
.site-heading { text-align: center; margin-bottom: 28px; }
.site-heading h4 {
  margin: 0 0 6px;
  color: #6a7285;
  font-weight: 600;
}
.site-heading h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 32px;
  color: #15223a;
  position: relative;
  padding-bottom: 20px;
}
.site-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #15223a;
  transform: translateX(-50%);
}
.site-heading h2 strong { color: #ff4452; font-weight: 700; } /* AERO red */
.site-heading h3 { margin-top: 12px; font-weight: 600; color: #0c2f6d; }
.site-heading p { color: #666666; margin-top: 10px; }

/* ---------- Packages grid ---------- */
.services-items { padding: 6px 0 24px; }
.services-items .item {
  background: #ffffff;
  border: 1px solid #e8edf6;
  padding: 60px 45px;
  text-align: center;
  box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, 0.1);
}
.services-items .item h4 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 18px;
  color: #1a2540;
}
.services-items .item p { margin: 10px 0; color: #667089; }

/* Icon circle + dashed ring decoration (the “bagal decoration”) */
.services-items .item .icon {
  width: 110px; height: 110px; margin: 12px auto 16px;
  border-radius: 50%;
  background: #ffffff;
  display: grid; place-items: center;
  position: relative;
}
.services-items .item .icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 132px; height: 132px;   /* slightly outside for the ring */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed #ebebef;    /* dashed ring like original */
  pointer-events: none;
}
.services-items .item .icon i { font-size: 46px; line-height: 1; }

/* Per-card accent colors (Package 1 = orange, Package 2 = purple) */
.services-items .row > .col-md-6:nth-of-type(1) .item .icon i { color: #e4730f; } /* orange */
.services-items .row > .col-md-6:nth-of-type(2) .item .icon i { color: #7a69e6; } /* purple */

/* CTA Button */
.services-items .item a {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e1e7f0;
  border-radius: 999px;
  font-weight: 700;
  color: #1b2540;
  box-shadow: 0 6px 14px rgba(9,18,44,.05);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

/* The ONLY hover effect on the page:
   Hover on a card -> its button turns red */
.services-items .item:hover a {
  background: #ff4452;
  border-color: #ff4452;
  color: #ffffff;
}

/* ---------- Footer (lightweight) ---------- */
footer { background: #ffffff; border-top: 1px solid #e8edf6; margin-top: 40px; }
.f-items { padding: 36px 0; }
.f-item h4 { margin: 0 0 12px; font-size: 16px; color: #1c2744; }
.f-item p, .f-item li, footer .address { color: #757f97; }
.f-item ul { list-style: none; padding: 0; margin: 0; }
.f-item li + li { margin-top: 10px; }

.footer-bottom { background: #fff; border-top: 1px solid #e8edf6; }
.footer-bottom .link ul { list-style: none; display: flex; gap: 16px; justify-content: flex-end; margin: 0; padding: 0; }
.footer-bottom p, .footer-bottom a { color: #7a8399; }

/* Hide the <i class="flaticon-*"> element completely */
.services-items .item .icon i { display: none !important; }

/* Common pseudo-element to place the image inside the circle */
.services-items .item .icon::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Ensure dashed ring stays behind */
.services-items .item .icon::after { z-index: 0; }

/* Package 1 image */
.services-items .row > .col-md-6:nth-of-type(1) .item .icon::before {
  background-image: url("/images/pkg-1.webp");
}

/* Package 2 image */
.services-items .row > .col-md-6:nth-of-type(2) .item .icon::before {
  background-image: url("/images/pkg-2.webp");
}
