/* Aero Rise — smart hero/header. Body sections use main.css */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
:root {
  --navy: #002d62;
  --navy-dark: #001a3d;
  --navy-mid: #0a3a6e;
  --accent: #8a9199;
  --accent-soft: #e8ebef;
  --steel: #6b7785;
  --line: #e4eaf1;
  --bg: #f4f7fb;
  --text: #4a5568;
  --white: #fff;
}

.container-ar { width: min(1200px, 94%); margin: 0 auto; }

/* ===== HERO ===== */
.ar-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  background: var(--navy-dark);
}
.ar-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ar-hero-bg .carousel,
.ar-hero-bg .carousel-inner,
.ar-hero-bg .carousel-item {
  height: 100%;
}
.ar-hero-bg .carousel {
  position: relative;
  z-index: 2;
}
.ar-hero-bg .carousel-item {
  position: relative;
}
.ar-hero-bg .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ar-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(7,26,50,.25);
}

/* Slider caption text */
.ar-slide-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: clamp(210px, 34vh, 300px) 0 90px;
  pointer-events: none;
  overflow: hidden;
  /*background:
    linear-gradient(105deg, rgba(0,45,98,.5) 0%, rgba(0,45,98,.62) 45%, rgba(0,45,98,.18) 78%, transparent 100%);
*/}
/* soft glossy shine band (no full sweep animation) */
.ar-slide-caption::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.07) 45%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.06) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.ar-slide-caption .container-ar {
  pointer-events: auto;
  max-width: 580px;
  margin-left: max(3%, calc((100% - 1200px) / 2));
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.ar-slide-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d0d5da;
  margin-bottom: 14px;
  padding: 7px 16px;
  border: 1px solid rgba(208,213,218,.45);
  border-radius: 999px;
  background:transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.ar-slide-caption h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -.02em;
  text-shadow:
    0 1px 0 rgba(255,255,255,.2),
    0 10px 30px rgba(0,0,0,.4);
}
.ar-slide-caption p {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 520px;
  font-weight: 500;
}
.ar-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ar-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #003b7a 0%, #002d62 100%);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 10px 25px rgba(0,45,98,.35);
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

.ar-slide-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,.25);
  transform: skewX(-25deg);
  transition: .6s ease;
}

.ar-slide-btn:hover::before {
  left: 150%;
}

.ar-slide-btn:hover {
  background: linear-gradient(135deg, #004d99 0%, #003b7a 100%);
  box-shadow: 0 15px 35px rgba(0,45,98,.45);
  transform: translateY(-2px);
}

.ar-slide-btn:active {
  transform: translateY(0);
}
/*.ar-slide-btn::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255,255,255,.28), transparent);
  pointer-events: none;
}*/
 
.ar-slide-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.ar-slide-btn-outline::before { height: 40%; background: linear-gradient(180deg, rgba(255,255,255,.2), transparent); }
.ar-slide-btn-outline:hover {
  background: #fff;
  color: var(--navy) !important;
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(255,255,255,.2);
}
.carousel-item.active .ar-slide-tag,
.carousel-item.active .ar-slide-caption h1,
.carousel-item.active .ar-slide-caption p,
.carousel-item.active .ar-slide-actions {
  animation: arCapIn .7s ease both;
}
.carousel-item.active .ar-slide-caption h1 { animation-delay: .08s; }
.carousel-item.active .ar-slide-caption p { animation-delay: .16s; }
.carousel-item.active .ar-slide-actions { animation-delay: .24s; }
@keyframes arCapIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 767px) {
  .ar-slide-caption .container-ar {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    text-align: center;
  }
  .ar-slide-tag { margin-bottom: 10px; padding: 5px 12px; font-size: 11px; }
  .ar-slide-btn { padding: 10px 16px; font-size: 13px; }
}

.ar-hero-bg .carousel-control-prev,
.ar-hero-bg .carousel-control-next {
  z-index: 4;
  width: 46px; height: 46px;
  top: 55%; transform: translateY(-50%);
  bottom: auto; opacity: 1;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  margin: 0 0px;
  backdrop-filter: blur(6px);
}
.ar-hero-bg .carousel-indicators {
  z-index: 4;
  margin-bottom: 28px;
}
.ar-hero-bg .carousel-indicators [data-bs-target] {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: 0; opacity: 1;
}
.ar-hero-bg .carousel-indicators .active {
  background: var(--accent);
  width: 26px;
  border-radius: 8px;
}

/* Slider height — tablet & mobile (compact professional) */
@media (max-width: 991.98px) {
  .ar-hero {
    min-height: 440px;
    height: 52vh;
    max-height: 520px;
  }
  .ar-slide-caption {
    padding: 110px 16px 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(0,45,98,.55) 0%, rgba(0,45,98,.72) 45%, rgba(0,45,98,.55) 100%);
  }
  .ar-slide-caption .container-ar {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
    text-align: center;
  }
  .ar-slide-caption p {
    margin-left: auto;
    margin-right: auto;
  }
  .ar-slide-actions {
    justify-content: center;
  }
  .ar-slide-caption h1 {
    font-size: clamp(28px, 4.2vw, 40px);
  }
  .ar-hero-bg .carousel-control-prev,
  .ar-hero-bg .carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .ar-hero-bg .carousel-control-prev {
    left: 8px;
  }
  .ar-hero-bg .carousel-control-next {
    right: 8px;
  }
  .ar-hero-bg .carousel-control-prev-icon,
  .ar-hero-bg .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }
  .ar-hero-bg .carousel-indicators {
    margin-bottom: 18px;
  }
}
@media (max-width: 767.98px) {
  .ar-hero {
    min-height: 480px;
    height: 58vh;
    max-height: 540px;
  }
  .ar-slide-caption {
    padding: 100px 14px 44px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ar-slide-caption h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .ar-slide-caption p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .ar-hero-bg .carousel-control-prev,
  .ar-hero-bg .carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .ar-hero-bg .carousel-control-prev {
    left: 6px;
  }
  .ar-hero-bg .carousel-control-next {
    right: 6px;
  }
  .ar-hero-bg .carousel-control-prev-icon,
  .ar-hero-bg .carousel-control-next-icon {
    width: 12px;
    height: 12px;
  }
  .ar-hero-bg .carousel-indicators {
    margin-bottom: 12px;
  }
}

.ar-hero-ui {
  position: relative;
  z-index: 10;
  padding-top: 14px;
}

/* ===== TOP BAR ===== */
.ar-top {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 500;
  padding: 0 18px;
  border-bottom: 2px solid #a6a6a6;
  border-radius: 14px 14px 0 0;
}
.ar-top-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  min-height: 44px;
  padding: 8px 0;
}
.ar-top-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.ar-top-info span,
.ar-top-info a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  transition: color .2s;
  font-size: 15px;
  line-height: 1.3;
}
.ar-top-info a:hover { color: #fff; }
.ar-top-info i {
  color: #c8ced4;
  font-size: 14px;
  width: auto;
  margin: 0;
  text-align: center;
}

/* Social — circular, always visible */
.ar-top-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ar-top-social > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-right: 4px;
}
.ar-soc {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff !important;
  text-decoration: none !important;
  transition: .22s ease;
  line-height: 1;
}
.ar-soc i {
  font-size: 13px !important;
  color: #fff !important;
  line-height: 1;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  display: inline-block;
}
.ar-soc:hover {
  transform: translateY(-2px);
  border-color: transparent;
}
.ar-soc-fb:hover { background: #1877f2; }
.ar-soc-ig:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.ar-soc-wa:hover { background: #25d366; }

/* ===== WHITE HEADER ===== */
.ar-header {
  position: relative;
  z-index: 50;
  padding: 0;
  background: transparent;
  border: 0;
}
.ar-header.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 4px 0;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7,26,50,.1);
  animation: arHeadIn .3s ease;
  z-index: 999;
}
body.ar-scrolled .ar-top {
  display: none;
}
@keyframes arHeadIn {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ar-header.is-fixed .ar-header-shell {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  min-height: 62px;
  padding-top: 4px;
  padding-bottom: 4px;
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.ar-header.is-fixed .ar-logo img {
  height:60px;
}
.ar-header.is-fixed .ar-nav > li > a {
  padding: 8px 12px;
  font-size: 16px;
}
.ar-header.is-fixed .ar-nav > li > a.ar-nav-cta {
  padding: 8px 16px;
}
.ar-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
  padding:2px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
  border: 1px solid rgba(7,26,50,.06);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 12px 40px rgba(7,26,50,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  overflow: visible;
}
.ar-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.ar-logo img {
  height:80px;
  width: auto;
  object-fit: contain;
}
.ar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 0;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  z-index: 60;
  overflow: visible;
}
.ar-nav > li { position: relative; }
.ar-nav > li.menu-item-has-children:hover > .sub,
.ar-nav > li.menu-item-has-children:focus-within > .sub {
  display: block;
  visibility: visible;
  opacity: 1;
}
.ar-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size:17px;
  font-weight: 600;
  color: #222426;
  border-radius: 0;
  text-decoration: none;
  transition: color .2s ease;
  position: relative;
  background: transparent !important;

}
.ar-nav > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height:1px;
  background: #002d62;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.ar-nav-caret {
  font-size: 10px;
  opacity: .55;
  margin-top: 1px;
}
.ar-nav > li > a:hover,
.ar-nav > li.active > a {
  color: #002d62;
  background: transparent !important;
}
.ar-nav > li > a:hover::after,
.ar-nav > li.active > a::after {
  transform: scaleX(1);
}
.ar-nav > li.active > a {
  font-weight: 700;
}
.ar-nav > li > a.ar-nav-cta {
  background:linear-gradient(135deg, #003b7a 0%, #002d62 100%) !important;
  color: #fff !important;
  margin-left: 10px;
  padding: 10px 22px;
  font-weight:600;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(11,39,72,.22);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  font-size:16px;
}
.ar-nav > li > a.ar-nav-cta::after {
  display: none;
}
.ar-nav > li > a.ar-nav-cta:hover {
  background: linear-gradient(135deg, #002d62 0%, #0a3a6e 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(0,45,98,.3);
}




.ar-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #003b7a 0%, #002d62 100%);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 10px 25px rgba(0,45,98,.35);
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

.ar-slide-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,.25);
  transform: skewX(-25deg);
  transition: .6s ease;
}

.ar-slide-btn:hover::before {
  left: 150%;
}

.ar-slide-btn:hover {
  background: linear-gradient(135deg, #004d99 0%, #003b7a 100%);
  box-shadow: 0 15px 35px rgba(0,45,98,.45);
  transform: translateY(-2px);
}

.ar-slide-btn:active {
  transform: translateY(0);
}












.ar-nav .sub {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 45, 98, 0.12);
  padding: 8px 6px;
  list-style: none;
  margin: 0;
  border: 1px solid #d0d7e0;
  z-index: 100;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.ar-nav .sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #002d62;
}
/* hover bridge so dropdown doesn't close in the gap */
.ar-nav .sub::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.ar-nav .sub li {
  margin: 0;
}
.ar-nav .sub a {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1a2332;
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
  line-height: 1.35;
  letter-spacing: 0;
}
.ar-nav .sub a:hover {
  background: #eef2f7;
  color: #002d62;
  padding-left: 14px;
  transform: none;
}
.ar-burger {
  display: none;
  border: 0;
  background: var(--bg);
  width: 44px; height: 44px;
  border-radius: 10px;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .ar-burger { display: grid; place-items: center; }
  .ar-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 3%; right: 3%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(7,26,50,.16);
    margin: 0;
  }
  .ar-header { position: relative; }
  .ar-head-wrap { position: relative; }
  .ar-nav.open { display: flex; }
  .ar-nav > li > a.ar-nav-cta {
    margin: 10px 0 0;
    text-align: center;
    justify-content: center;
  }
  .ar-nav .sub {
    position: static;
    display: none;
    box-shadow: none;
    background: var(--bg);
    border: 0;
    margin: 0 4px 8px;
  }
  .ar-nav li.open > .sub { display: block; }
}
@media (max-width: 991.98px) {
  .ar-top-inner {
    justify-content: center;
    text-align: center;
  }
  .ar-top-info {
    justify-content: center;
    width: 100%;
  }
  .ar-top-social {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ar-top-info span:nth-child(2) { display: none; }
  .ar-top-social { display: none !important; }
}
@media (max-width: 575px) {
  .ar-logo img { height: 60px; }
  .ar-header-shell { min-height: 72px; border-radius: 0px 0px 12px 12px; padding: 8px 12px; }
  .ar-hero {
    min-height: 460px;
    height: 56vh;
    max-height: 520px;
  }
  .ar-soc { width: 28px; height: 28px; }
}

.whatsapp-fixed {
  position: fixed;
  right: 18px;
  bottom: 130px !important;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 8px 22px rgba(37,211,102,.4);
  text-decoration: none;
}
.ar-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 58px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #002d62;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: .25s ease;
  box-shadow: 0 8px 22px rgba(0, 45, 98, 0.35);
  border:1px solid rgba(255,255,255,.2);
}
@media (max-width: 767px) {
  .whatsapp-fixed {
    bottom: 120px !important;
    right: 12px !important;
  }
  .ar-scroll-top {
    bottom: 52px;
    right: 12px;
  }
}
.ar-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.ar-scroll-top:hover {
  background: #023065;
}

/* Services — one box (image + content), 2 per row tab, 1 mobile */
.ar-services.services__area {
  background-color: #e4ebf3;
  background-image: none;
  padding: 70px 0;
}
.ar-svc-card {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7e0ea;
  box-shadow: 0 8px 22px rgba(0, 45, 98, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.ar-svc-card:hover {
  transform: translateY(-4px);
  border-color: #9eb4cb;
  box-shadow: 0 14px 30px rgba(0, 45, 98, 0.14);
  color: inherit;
  text-decoration: none;
}
.ar-svc-img {
  flex: 0 0 38%;
  max-width: 38%;
  position: relative;
  overflow: hidden;
  background: #f4f7fb;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height:305px;
  /*min-height: 164px;
  max-height: 164px;*/
  margin: 16px 0 16px 16px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #d0dae6;
  border-radius: 10px;
}
.ar-svc-img img {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}
.ar-svc-body {
  flex: 1 1 62%;
  min-width: 0;
  padding: 18px 20px;
  /*display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;*/
  text-align:left;
  background: #fff;
  font-weight: 500;
  color: #24242e;
}
.ar-svc-body .title {
  font-size: 18px !important;
  line-height: 1.35 !important;
   
  color: #002d62;
  margin: 0 0 10px;
 
  text-transform: uppercase;
}
.ar-svc-body p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  font-weight: inherit !important;
  color: inherit;
  margin: 0 0 14px;
}
.ar-svc-body .btn {
  margin: 0;
  padding: 8px 16px;
  font-size: 14px; 
  text-align: center;
  color:#fff;
  background:#033166;
  font-weight: 500;
}



@media (max-width: 767.98px) {
  .ar-svc-card {
    flex-direction: column;
    min-height: 0;
  }
  .ar-svc-img {
    flex: none;
    max-width: calc(100% - 32px);
    width: calc(100% - 32px);
    height: 140px;
    min-height: 140px;
    max-height: 140px;
    aspect-ratio: auto;
    margin: 16px 16px 0;
    padding: 10px;
  }
  .ar-svc-img img {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .ar-svc-body {
    flex: none;
    width: 100%;
    padding: 16px 18px 20px;
  }
  .ar-svc-body p {
    margin-bottom: 12px;
  }
}

/* Why Choose Us — brochure style */
.ar-why {
  background: #fff;
  padding:60px 0 60px;
}
.ar-why-head {
  text-align: center;
  margin-bottom: 48px;
}
.ar-why-title {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: capitalize;
  color: #002d62;
  line-height: 1.2;
}
.ar-why-title::before,
.ar-why-title::after {
  content: "";
  display: block;
  height: 10px;
  width: 78px;
  flex-shrink: 0;
}
.ar-why-title::before {
  background:
    radial-gradient(circle at right center, #002d62 0 3.5px, transparent 4px) right center / 10px 10px no-repeat,
    linear-gradient(#002d62, #002d62) left center / calc(100% - 12px) 2px no-repeat;
}
.ar-why-title::after {
  background:
    radial-gradient(circle at left center, #002d62 0 3.5px, transparent 4px) left center / 10px 10px no-repeat,
    linear-gradient(#002d62, #002d62) right center / calc(100% - 12px) 2px no-repeat;
}
@media (max-width: 1199.98px) {
  .ar-why-title { font-size: 36px; }
}
@media (max-width: 767.98px) {
  .ar-why-title { font-size: 32px; gap: 10px; }
  .ar-why-title::before,
  .ar-why-title::after { width: 40px; }
}
.ar-why-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}
.ar-why-item {
  text-align: center;
  padding: 16px 20px 28px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  background: #043367;
  border: 1px solid #043367;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.ar-why-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: rgba(255,255,255,0.08);
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.ar-why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
/*.ar-why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background: #c5d0dc;
}*/
.ar-why-icon {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:#164170;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(0, 45, 98, 0.28);
}
.ar-why-item-title {
  flex: 0 0 auto;
  margin: 0 0 12px;
  min-height: 44px;
  width: 100%;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color:#f0f7ff;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ar-why-item p {
  flex: 1 1 auto;
  margin: 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.65;
  color:#cee5ff;
  font-weight: 400;
}
@media (max-width: 1199.98px) {
  .ar-why-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ar-why-item:nth-child(3n)::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .ar-why {
    padding: 55px 0 40px;
  }
  .ar-why-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ar-why-item {
    padding: 14px 12px 22px;
  }
  .ar-why-item:nth-child(3n)::after {
    display: block;
  }
  .ar-why-item:nth-child(2n)::after {
    display: none;
  }
  .ar-why-icon {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
  .ar-why-item-title {
    min-height: 38px;
    font-size: 14px;
  }
  .ar-why-item p {
    font-size: 14px;
  }
}

/* Gallery — smart grid */
.ar-gallery {
  background: #fff;
  padding:0px 0 60px 0;
}
.ar-gallery-page {
  padding-top: 48px;
  padding-bottom: 80px;
}
.ar-gallery-lead {
  max-width: 640px;
  margin: -18px auto 36px;
  text-align: center;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
}
.ar-gal-card {
  display: block;
  position: relative;
  border-radius: 12px;
  height: 250px;
  padding: 5px;
  border: 1px solid #c5d0dc;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 45, 98, 0.1);
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
  overflow: hidden;
}
.ar-gal-media {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
margin: 0 auto;
}
.ar-gal-media img{
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}




/*.ar-gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}*/
.ar-gal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
/*  background: linear-gradient(180deg, rgba(0,45,98,.15) 0%, rgba(0,45,98,.72) 100%);*/
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.ar-gal-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #002d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(.85);
  transition: transform .3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}
.ar-gal-card:hover {
  box-shadow: 0 12px 30px rgba(0, 45, 98, 0.14);
  text-decoration: none;
  border-color: #002d62;
  transform: none;
}
.ar-gal-card:hover img {
  transform: scale(1.1);
}
.ar-gal-card:hover .ar-gal-overlay {
  opacity: 1;
}
.ar-gal-card:hover .ar-gal-zoom {
  transform: scale(1);
}
@media (min-width: 992px) {
  .ar-gal-card {
    height: 306px;
  }
}
@media (max-width: 767.98px) {
  .ar-gallery {
    padding: 55px 0;
  }
  .ar-gal-card {
    height: 260px;
  }
   
}

/* Magnific gallery arrows + tools */
.ar-mfp-gallery .mfp-arrow {
  width: 54px;
  height: 54px;
  margin-top: -27px;
  opacity: 1;
  background: #002d62 !important;
  border-radius: 50%;
  overflow: visible;
}
.ar-mfp-gallery .mfp-arrow::before,
.ar-mfp-gallery .mfp-arrow::after {
  display: none !important;
  border: 0 !important;
}
.ar-mfp-gallery .ar-mfp-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  padding: 0;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.ar-mfp-gallery .mfp-arrow-left {
  left: 20px;
}
.ar-mfp-gallery .mfp-arrow-right {
  right: 20px;
}
.ar-mfp-gallery .mfp-arrow:hover {
  background: #023065 !important;
}
.ar-mfp-gallery .mfp-figure::after {
  display: none;
}
.ar-mfp-gallery .mfp-img {
  padding: 5px;
  border: 1px solid #fff;
  background: #fff;
  box-sizing: border-box;
  transform-origin: center center;
}
.ar-mfp-gallery .mfp-close,
.ar-mfp-gallery .ar-mfp-close {
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #002d62 !important;
  opacity: 1 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  cursor: pointer;
  z-index: 1046;
  transition: .2s ease;
}
.ar-mfp-gallery .ar-mfp-close i {
  font-size: 18px;
  color: #002d62;
  pointer-events: none;
}
.ar-mfp-gallery .ar-mfp-close:hover {
  background: #002d62 !important;
  transform: rotate(90deg);
}
.ar-mfp-gallery .ar-mfp-close:hover i {
  color: #fff;
}
.ar-mfp-tools {
  position: fixed;
  top: 18px;
  right: 76px;
  z-index: 1046;
  display: flex;
  gap: 10px;
}
.ar-mfp-tool {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #002d62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  cursor: pointer;
  transition: .2s ease;
}
.ar-mfp-tool:hover {
  background: #002d62;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .ar-mfp-gallery .mfp-arrow-left {
    left: 8px;
  }
  .ar-mfp-gallery .mfp-arrow-right {
    right: 8px;
  }
  .ar-mfp-gallery .ar-mfp-close,
  .ar-mfp-tools {
    top: 12px;
  }
  .ar-mfp-gallery .ar-mfp-close {
    right: 12px !important;
    width: 42px !important;
    height: 42px !important;
  }
  .ar-mfp-tools {
    right: 62px;
  }
  .ar-mfp-tool {
    width: 42px;
    height: 42px;
  }
}

/* About page — first intro section (unified look) */
.ar-about-intro {
  padding: 60px 0;
  background: #fff;
}
.ar-about-intro-shell {
  background: linear-gradient(135deg, #f4f7fb 0%, #eef3f8 55%, #f8fafc 100%);
  border: 1px solid #d7e0ea;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(0, 45, 98, 0.06);
}
.ar-about-intro-media {
  background: transparent;
  border: 0;
  border-radius: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  box-shadow: none;
  overflow: hidden;
}
.ar-about-intro-media img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 20px !important;
}
.ar-about-intro-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 8px 0 0;
  box-shadow: none;
  height: auto;
}
.ar-about-intro-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d0dae6;
  color: #002d62;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ar-about-intro-content h2 {
  margin: 0 0 14px;
  color: #002d62;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}
.ar-about-intro-content p {
  margin: 0 0 12px; 
  font-size: 18px;
  line-height: 1.7;
}
.ar-about-intro-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
}
.ar-about-intro-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d7e0ea;
  color: #002d62;
  font-size: 14px;
  font-weight: 700;
}
.ar-about-intro-points i {
  color: #002d62;
  font-size: 12px;
}
@media (max-width: 991.98px) {
  .ar-about-intro { padding: 42px 0; }
  .ar-about-intro-shell { padding: 24px 18px; }
  .ar-about-intro-content { padding: 0; }
  .ar-about-intro-content h2 { font-size: 28px; }
  .ar-about-intro-media {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .ar-about-intro-content h2 { font-size: 24px; }
  .ar-about-intro-shell { padding: 18px 14px; border-radius: 12px; }
  .ar-about-intro-media img { max-height: 260px; }
}

/* About Us — visible theme pattern + accent shape */
.ar-about.about__area {
  position: relative;
  overflow: hidden;
  background-color: #eef3f8;
  background-image: url("../images/vector_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ar-about.about__area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238,243,248,.55) 0%, rgba(255,255,255,.92) 48%, #fff 100%);
  z-index: 0;
  pointer-events: none;
}
.ar-about.about__area::after {
  content: "";
  position: absolute;
  left: -60px;
  top: -40px;
  width: 42%;
  max-width: 520px;
  height: 120%;
  background: linear-gradient(180deg, #002d62 0%, #6b7785 100%);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  opacity: .92;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .ar-about.about__area::after {
    width: 100%;
    max-width: none;
    height: 220px;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    opacity: .85;
  }
  .ar-about.about__area::before {
    background: linear-gradient(180deg, rgba(238,243,248,.4) 0%, rgba(255,255,255,.95) 40%, #fff 100%);
  }
}
.ar-about .container {
  position: relative;
  z-index: 1;
}
.ar-about .about__content {
  background: rgba(255,255,255,.88);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 8px 28px rgba(7,26,50,.06);
}

/* Mission / Vision / Values / Commitment — logo navy + steel */
.ar-mvc {
  padding: 40px 0 70px;
  background: #fff;
}
.ar-mvc-box {
  position: relative;
  overflow: hidden;
  background:#023065;
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  min-height: 300px;
  border: 1px solid rgba(180,190,200,.35);
  box-shadow:
    0 12px 32px rgba(0,45,98,.2),
    inset 0 1px 0 rgba(255,255,255,.28);
  z-index: 1;
}
.ar-mvc-box::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(220,225,230,.22);
  border: 1px solid rgba(255,255,255,.25);
  z-index: 0;
  pointer-events: none;
}
/* bottom texture effect */
.ar-mvc-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 12px 12px;
  background:
    linear-gradient(0deg, rgba(0,20,50,.5) 0%, transparent 72%),
    repeating-linear-gradient(
      -35deg,
      transparent 0,
      transparent 8px,
      rgba(255,255,255,.045) 8px,
      rgba(255,255,255,.045) 9px
    ),
    radial-gradient(ellipse 95% 75% at 50% 110%, rgba(166,166,166,.22) 0%, transparent 60%);
}
.ar-mvc-box > * {
  position: relative;
  z-index: 1;
}
.ar-mvc-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.1));
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.ar-mvc-box h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ar-mvc-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}
.ar-mvc-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ar-mvc-box ul li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}
.ar-mvc-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.45);
}
.ar-mvc-box ul li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.ar-mvc-box h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ar-mvc-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}
.ar-mvc-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ar-mvc-box ul li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 16px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.ar-mvc-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(166,166,166,.22);
  border: 1px solid rgba(200,200,200,.4);
}
.ar-mvc-box ul li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8ced4;
}

/* Footer top wave */
.ar-footer-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-bottom: -1px;
  background: transparent;
}
.ar-footer-wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* Footer — bg image + overlay (matches wave) */
.ar-footer.footer__area {
  position: relative;
  z-index: 1;
  background-color: #002d62;
/*  background-image: url("../images/slider-1.jpg");*/
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 28px 0 0;
  margin-top: 0;
  border: 0 !important;
  box-shadow: none;
}
.ar-footer.footer__area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 98, 0.82);
  z-index: 0;
  pointer-events: none;
}
.ar-footer.footer__area::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: top left;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 18%, rgba(0, 0, 0, 0.7) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 18%, rgba(0, 0, 0, 0.7) 100%);
}
.ar-footer > .container {
  position: relative;
  z-index: 1;
}
.ar-footer .footer__bottom {
  position: relative;
  z-index: 1;
  padding: 18px 0 22px;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.ar-footer .footer__top {
  padding: 10px 0 8px;
  border: 0 !important;
}
.ar-footer .footer__top .row [class*=col-] .footer__widget {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.ar-footer .footer__top .row > [class*="col-"] {
  border: 0 !important;
}
.ar-footer .footer__top .row {
  --bs-gutter-x: 1.5rem;
  align-items: flex-start;
}
.ar-footer .footer__top .row > [class*="col-"]:nth-child(1) {
  flex: 0 0 25%;
  max-width: 25%;
}
.ar-footer .footer__top .row > [class*="col-"]:nth-child(2) {
  flex: 0 0 16.666%;
  max-width: 16.666%;
}
.ar-footer .footer__top .row > [class*="col-"]:nth-child(3) {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
.ar-footer .footer__top .row > [class*="col-"]:nth-child(4) {
  flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 1199.98px) {
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(1),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(4) {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(2) {
    flex: 0 0 16.666%;
    max-width: 16.666%;
  }
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(3) {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 991.98px) {
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(1),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(2),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(3),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(4) {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575.98px) {
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(1),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(2),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(3),
  .ar-footer .footer__top .row > [class*="col-"]:nth-child(4) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.ar-footer .footer__widget {
  margin-bottom: 18px;
  border: 0 !important;
  padding-right: 8px;
}
.ar-footer .footer__widget-title {
  margin-bottom: 12px;
  padding-bottom: 10px;
  font-size: 18px;
}
.ar-footer .footer__widget-title::before {
  height: 3px;
  width: 28px;
  background: #a6a6a6;
}
.ar-footer .footer__content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px 0;
}
.ar-footer .footer__link .list-wrap li {
  margin-bottom: 9px;
}
.ar-footer .footer__link .list-wrap li a {
  font-size: 15px;
  line-height: 1.45;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}
.ar-footer .footer__info-wrap .list-wrap li {
  margin-bottom: 12px;
  gap: 10px;
}
.ar-footer .footer__info-wrap .list-wrap li a,
.ar-footer .footer__info-wrap .list-wrap li p {
  font-size: 15px;
  line-height: 1.55;
}
.ar-footer .footer__info-wrap .list-wrap li i {
  font-size: 18px;
  transform: none;
  margin-top: 2px;
}
.ar-footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.ar-footer-social .ar-soc {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
@media (max-width: 767.98px) {
  .ar-footer-social { justify-content: flex-start; margin-top: 12px; }
}
.ar-footer .copyright-text p {
  margin: 0;
  font-size: 14px;
}

/* Footer contact text — clear white on dark bg */
.ar-footer .footer__info-wrap .list-wrap li,
.ar-footer .footer__info-wrap .list-wrap li a,
.ar-footer .footer__info-wrap .list-wrap li p {
  color: #ffffff !important;
}
.ar-footer .footer__info-wrap .list-wrap li i {
  color: #c8ced4 !important;
}
.ar-footer .footer__content p,
.ar-footer .footer__link .list-wrap li a,
.ar-footer .copyright-text p {
  color: rgba(255, 255, 255, 0.92) !important;
}
.ar-footer .footer__link .list-wrap li a:hover {
  color: #fff !important;
}

/* Counter stats */
.ar-counter.counter__bg {
  position: relative;
  padding: 56px 0;
  background-color: #002d62;
  overflow: hidden;
}
.ar-counter .ar-counter-item {
  position: relative;
  height: 100%;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 28px 18px 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: .28s ease;
  overflow: hidden;
}
.ar-counter .ar-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: #a6a6a6;
  transition: .28s ease;
}
.ar-counter .ar-counter-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}
.ar-counter .ar-counter-item:hover::before {
  width: 64px;
  background: #fff;
}
.ar-counter-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.ar-counter .count {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .01em;
}
.ar-counter .ar-counter-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 160px;
}
@media (max-width: 991.98px) {
  .ar-counter.counter__bg { padding: 44px 0; }
  .ar-counter .count { font-size: 32px; }
}
@media (max-width: 575.98px) {
  .ar-counter .ar-counter-item { min-height: 148px; padding: 22px 14px; }
  .ar-counter .count { font-size: 28px; }
}

/* ===== INNER PAGES ===== */
body.ar-inner-page {
  background: #fff;
}
.ar-inner-head {
  position: relative;
  z-index: 100;
  background: #002d62;
}
.ar-inner-head .ar-top {
  background: transparent;
}
.ar-inner-head .ar-header-shell {
  border-radius: 0 0 14px 14px;
}
.ar-page-banner {
  position: relative;
  padding: 72px 0 64px;
  background:
    linear-gradient(110deg, rgba(0, 45, 98, 0.92) 0%, rgba(0, 45, 98, 0.78) 55%, rgba(0, 26, 61, 0.88) 100%),
    url("../images/slider-1.jpg") center / cover no-repeat;
  overflow: hidden;
}
.ar-page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.5));
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.5));
  pointer-events: none;
}
.ar-page-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ar-page-banner h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}
.ar-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 500;
}
.ar-breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.ar-breadcrumb a:hover { text-decoration: underline; }
.ar-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  opacity: .55;
}
@media (max-width: 767.98px) {
  .ar-page-banner { padding: 48px 0 42px; }
  .ar-page-banner h1 { font-size: 32px; }
}

/* Contact page — split layout */
.ar-contact {
  padding: 64px 0 40px;
  background: #fff;
}
.ar-contact-aside {
  height: 100%;
  padding: 8px 8px 8px 0;
}
.ar-contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #6b7785;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ar-contact-aside h2 {
  margin: 0 0 12px;
  color: #002d62;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}
.ar-contact-aside > p {
  margin: 0 0 28px;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
  max-width: 38ch;
}
.ar-contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.ar-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e8edf3;
}
.ar-contact-list li:first-child {
  padding-top: 0;
}
.ar-contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.ar-contact-list-ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #002d62;
  color: #fff;
  font-size: 14px;
  margin-top: 2px;
}
.ar-contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: #002d62;
  font-size:18px;
  font-weight: 800;
}
.ar-contact-list p {
  margin: 0;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.55;
}
.ar-contact-list a {
  color: #4a5568;
  text-decoration: none;
}
.ar-contact-list a:hover {
  color: #002d62;
}
.ar-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ar-contact-panel {
  height: 100%;
  padding: 32px 30px;
  background: #f4f7fb;
  border: 1px solid #e4eaf1;
  border-radius: 14px;
}
.ar-contact-panel > h2 {
  margin: 0 0 8px;
  color: #002d62;
  font-size: 28px;
  font-weight: 800;
}
.ar-contact-panel > p {
  margin: 0 0 22px;
  color: #4a5568;
  font-size: 15px;
}
.ar-contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #002d62;
  font-size: 13px;
  font-weight: 700;
}
.ar-contact-form input,
.ar-contact-form select,
.ar-contact-form textarea {
  width: 100%;
  border: 1px solid #d5dde8;
  border-radius: 8px;
  background: #fff;
  color: #1a2332;
  font-size: 15px;
  line-height: 1.4;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ar-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23002d62' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.ar-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.ar-contact-form input:focus,
.ar-contact-form select:focus,
.ar-contact-form textarea:focus {
  border-color: #002d62;
  box-shadow: 0 0 0 3px rgba(0, 45, 98, 0.1);
}
.ar-contact-form .btn {
  margin-top: 6px;
}
.ar-contact-map {
  padding: 20px 0 70px;
  background: #fff;
}
.ar-contact-map-head {
  margin-bottom: 18px;
}
.ar-contact-map-head h2 {
  margin: 0 0 6px;
  color: #002d62;
  font-size: 28px;
  font-weight: 800;
}
.ar-contact-map-head p {
  margin: 0;
  color: #4a5568;
  font-size: 15px;
}
.ar-contact-map-frame {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e4eaf1;
  box-shadow: 0 10px 28px rgba(0, 45, 98, 0.06);
}
.ar-contact-map-frame iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
@media (max-width: 991.98px) {
  .ar-contact { padding: 48px 0 28px; }
  .ar-contact-aside h2 { font-size: 28px; }
  .ar-contact-panel { padding: 26px 20px; }
  .ar-contact-panel > h2,
  .ar-contact-map-head h2 { font-size: 24px; }
}
@media (max-width: 575.98px) {
  .ar-contact-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .ar-contact-map-frame iframe { min-height: 280px; }
}

/* Services page — left list + right panel (no zig-zag) */
.ar-svc-showcase {
  padding: 48px 0 40px;
  background: #f4f7fb;
}
.ar-svc-intro-text {
  max-width: 760px;
  margin: -6px auto 36px;
  text-align: center;
  color: #24242e;
  font-size: 18px;
  line-height: 1.7;
}
.ar-svc-layout {
  align-items: stretch;
}
.ar-svc-layout > [class*="col-"] {
  align-self: stretch;
}
.ar-svc-sidebar,
.ar-svc-sidebar.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  z-index: 5;
  background: #fff;
  border: 1px solid #d7e0ea;
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 8px 24px rgba(0, 45, 98, 0.06);
  height: auto;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
body.ar-scrolled .ar-svc-sidebar,
body.ar-scrolled .ar-svc-sidebar.sticky-top {
  top: 90px;
  max-height: calc(100vh - 110px);
}
.ar-svc-sidebar-title {
  margin: 0 0 12px;
  padding: 0 8px 10px;
  border-bottom: 1px solid #e4eaf1;
  color: #002d62;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ar-svc-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ar-svc-menu li {
  margin: 0 0 6px;
}
.ar-svc-menu button {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  padding: 12px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s ease;
}
.ar-svc-menu button:hover {
  background: #f4f7fb;
  color: #002d62;
}
.ar-svc-menu button.is-active {
  background: #002d62;
  color: #fff;
  border-color: #002d62;
  box-shadow: 0 8px 18px rgba(0, 45, 98, 0.18);
}
.ar-svc-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ar-svc-panel {
  display: block;
  background: #fff;
  border: 1px solid #d7e0ea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 45, 98, 0.06);
  scroll-margin-top: 120px;
}
.ar-svc-panel.is-active {
  border-color: #9eb4cb;
  box-shadow: 0 10px 28px rgba(0, 45, 98, 0.1);
}
.ar-svc-panel-inner {
  padding: 28px;
}
.ar-svc-block-media {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #d0dae6;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 356px;
  min-height: 356px;
  max-height: 356px;
  padding: 12px;
  box-sizing: border-box;
}
.ar-svc-block-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}
.ar-svc-block-content h2 {
  margin: 0 0 12px;
  color: #002d62;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
}
.ar-svc-block-content > p {
  margin: 0 0 20px;
  color: #24242e;
  font-size: 16px;
  line-height: 1.7;
}
.ar-svc-cta {
  padding: 50px 0;
  background: #fff;
}
.ar-svc-cta-box {
  text-align: center;
  padding: 40px 28px;
  border-radius: 14px;
  background: #002d62;
  color: #fff;
}
.ar-svc-cta-box h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}
.ar-svc-cta-box p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
}
.ar-svc-cta-box .btn {
  background: #fff;
  color: #002d62;
}
.ar-svc-cta-box .btn:hover {
  background: #e8ebef;
  color: #002d62;
}
@media (max-width: 991.98px) {
  .ar-svc-sidebar,
  .ar-svc-sidebar.sticky-top {
    position: static !important;
    top: auto !important;
    max-height: none;
    overflow: visible;
    padding: 14px 12px;
  }
  .ar-svc-menu {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .ar-svc-menu li {
    margin: 0;
    flex: 0 0 auto;
  }
  .ar-svc-menu button {
    white-space: nowrap;
    padding: 10px 14px;
  }
  .ar-svc-panel-inner {
    padding: 20px;
  }
  .ar-svc-block-media {
    height: 328px;
    min-height: 328px;
    max-height: 328px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .ar-svc-block-content h2 { font-size: 24px; }
}
@media (max-width: 575.98px) {
  .ar-svc-intro-text { font-size: 16px; margin-bottom: 24px; }
  .ar-svc-block-content h2 { font-size: 22px; }
  .ar-svc-block-media {
    height: 402px;
    min-height: 402px;
    max-height: 402px;
  }
  .ar-svc-cta-box h2 { font-size: 24px; }
  .ar-svc-panel-inner { padding: 16px; }
}

/* Team page */
.ar-team-roles {
  padding: 20px 0 70px;
  background: #f4f7fb;
}
.ar-team-card {
  height: 100%;
  padding: 28px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid #e4eaf1;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 45, 98, 0.05);
  transition: .25s ease;
  border-top: 5px solid #002d62;
}
.ar-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 45, 98, 0.16);
  box-shadow: 0 14px 32px rgba(0, 45, 98, 0.1);
}
.ar-team-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #002d62;
  color: #fff;
  font-size: 22px;
}
.ar-team-card h3 {
  margin: 0 0 10px;
  color: #002d62;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}
.ar-team-card p {
  margin: 0;
   
  font-size:18px;
  line-height:24px;
}

@media (max-width: 991.98px) {
  .ar-footer.footer__area {
    padding: 28px 0 0;
  }
  .ar-footer .footer__widget {
    margin-bottom: 16px;
  }
}

