:root {
  --primary: #174ea6;
  --secondary: #00a6a6;
  --ink: #162033;
  --muted: #687385;
  --soft: #f4f8fb;
  --line: #dfe7ef;
  --accent: #ffb547;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

.preloader {
  align-items: center;
  background: var(--white);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2000;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  animation: pulse 1.1s ease-in-out infinite;
  border: 4px solid rgba(23, 78, 166, 0.14);
  border-top-color: var(--secondary);
  border-radius: 50%;
  height: 52px;
  width: 52px;
}

@keyframes pulse {
  to {
    transform: rotate(360deg);
  }
}

.navbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 231, 239, 0.7);
}

.navbar-brand {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-right: 0.55rem;
  width: 38px;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 0.78rem 1.15rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #113d83;
  border-color: #113d83;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero {
  background:
    linear-gradient(105deg, rgba(13, 28, 52, 0.9), rgba(23, 78, 166, 0.72)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover;
  color: var(--white);
  min-height: 92vh;
  padding: 8.5rem 0 5rem;
}

.page-hero {
  background:
    linear-gradient(105deg, rgba(13, 28, 52, 0.88), rgba(0, 166, 166, 0.62)),
    var(--page-image) center/cover;
  color: var(--white);
  padding: 8rem 0 4rem;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 690px;
}

.eyebrow {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-padding {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-title {
  max-width: 720px;
}

.section-title h2 {
  font-weight: 800;
  line-height: 1.18;
}

.section-title p {
  color: var(--muted);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card,
.service-card,
.testimonial-card,
.trust-card,
.stat-card,
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.trust-card:hover,
.team-card:hover {
  border-color: rgba(23, 78, 166, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.icon-box {
  align-items: center;
  background: rgba(0, 166, 166, 0.12);
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  font-size: 1.45rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.service-card img,
.team-card img {
  aspect-ratio: 16 / 10;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  width: 100%;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  margin-bottom: 0.65rem;
  padding-left: 1.8rem;
  position: relative;
}

.list-check li::before {
  color: var(--secondary);
  content: "\F26A";
  font-family: "bootstrap-icons";
  font-weight: 400;
  left: 0;
  position: absolute;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), #143461 58%, var(--secondary));
  color: var(--white);
}

.accordion-button {
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background: rgba(23, 78, 166, 0.08);
  color: var(--primary);
}

.breadcrumb-item a,
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.65);
}

.timeline {
  border-left: 3px solid var(--secondary);
  margin-left: 1rem;
  padding-left: 2rem;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  background: var(--white);
  border: 4px solid var(--secondary);
  border-radius: 50%;
  content: "";
  height: 18px;
  left: -2.65rem;
  position: absolute;
  top: 0.25rem;
  width: 18px;
}

.pricing-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    position:relative;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.pricing-card:hover{
    transform:translateY(-10px);
}

.pricing-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.price{
    font-size:48px;
    font-weight:700;
    color:#174ea6;
    margin:20px 0;
}

.pricing-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.pricing-list li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.featured{
    border:3px solid #174ea6;
}

.featured-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#174ea6;
    color:#fff;
    padding:6px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}


.stat-card strong {
  color: var(--primary);
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.contact-info i {
  color: var(--secondary);
  font-size: 1.35rem;
}

.map-wrap iframe {
  border: 0;
  border-radius: 8px;
  min-height: 360px;
  width: 100%;
}

.footer {
  background: #0f1726;
  color: rgba(255, 255, 255, 0.78);
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: var(--white);
}

.social-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-right: 0.35rem;
  width: 38px;
}

.back-to-top {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  bottom: 1.25rem;
  color: var(--white);
  display: flex;
  height: 44px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 1.25rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 44px;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .btn {
    width: 100%;
  }

  .hero .d-flex {
    width: 100%;
  }
}
