:root{
  --bp-primary: #18b6e6;
  --bp-primary-dark: #0b6fc2;
  --bp-navy: #071c2d;
  --bp-soft: #f3f4f6;
  --bp-soft-2: #f6f7fb;
  --bp-card: #ffffff;
  --bp-muted: #6b7280;
  --bp-shadow: 0 12px 30px rgba(0,0,0,.07);
}

*{ font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.topbar{
  background: var(--bp-primary);
}
.topbar-link{
  color: rgba(255,255,255,.95);
  text-decoration: none;
}
.topbar-link:hover{ text-decoration: underline; }
.topbar-icon{ color: rgba(255,255,255,.95); }
.topbar-icon:hover{ color: #fff; }
.vr-white{ opacity: .55; }

.navbar .nav-link{
  color: #2c2f33;
  font-weight: 500;
}
.navbar .nav-link:hover{ color: var(--bp-primary-dark); }

.btn-pill{ border-radius: 999px; }
.btn-primary{
  background: var(--bp-primary-dark);
  border-color: var(--bp-primary-dark);
  box-shadow: 0 8px 18px rgba(11,111,194,.18);
}
.btn-primary:hover{
  background: #095fa7;
  border-color: #095fa7;
}

.section{ padding: 56px 0; }
.section--soft{ background: #f1f2f4; }

.hero-card{
  background: #fff;
  box-shadow: var(--bp-shadow);
}
.hero-img{
  width: 100%;
  height: auto;
  display: block;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.22));
  pointer-events: none;
}
.hero-content{
    position: absolute;
    inset: 0;
    /* display: grid; */
    place-content: end;
    gap: 4px;
    margin-bottom: 50px;
}
.hero-title{
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 700;
  text-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.hero-subtitle{
  font-size: clamp(.75rem, 1.2vw, 1rem);
  opacity: .95;
}

.pill-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--bp-primary);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(24,182,230,.18);
}
.pill-label--light{
  background: #e9f7fd;
  color: #2c6c86;
  box-shadow: none;
}

.about-photo-wrap{
  background: #f0f3ff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.about-photo-wrap img{
  border-radius: 14px;
  box-shadow: var(--bp-shadow);
}

.ai-cta{
  /* background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.7) 0 2px, transparent 3px) 0 0/14px 14px,
    linear-gradient(90deg, #bfeaff, #d7f3ff);
  box-shadow: var(--bp-shadow); */
  background-image: url('../img/bg-section.png');
  background-size: cover;
  background-position: center;
}
.ai-cta p{
  color: #2f7e9a;
}

.services-shell{
  background: #f1f2f4;
  box-shadow: var(--bp-shadow);
}

.service-card{
  background: var(--bp-card);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.05);
}
.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e6f7ff;
  color: var(--bp-primary-dark);
  margin-bottom: 14px;
  font-size: 20px;
}
.service-title{
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-text{
  color: var(--bp-muted);
  font-size: .95rem;
}

.checklist{
  list-style: none;
  padding-left: 0;
  margin: 16px 0 12px;
}
.checklist li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: #374151;
  font-size: .95rem;
}
.checklist i{ color: var(--bp-primary-dark); }

.service-link{
  text-decoration: none;
  color: var(--bp-primary-dark);
  font-weight: 600;
}
.service-link:hover{ text-decoration: underline; }

.feature-list{
  display: grid;
  gap: 16px;
}
.feature-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.feature-ico{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #0c1f32;
  color: #fff;
}
.feature-ico i{ font-size: 16px; }

.contact-shell{
  background: #f7f7f8;
  box-shadow: var(--bp-shadow);
}

.form-control{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  padding: .75rem .9rem;
}
.form-control:focus{
  box-shadow: 0 0 0 .2rem rgba(24,182,230,.18);
  border-color: rgba(24,182,230,.55);
}

.info-card{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.05);
}
.info-ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0c1f32;
  color: #fff;
  margin-bottom: 10px;
}

.footer{
  background: var(--bp-navy);
  padding: 56px 0 28px;
  color: rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
}
.footer-title{
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.footer-links{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-links a{
  color: rgba(255,255,255,.75);
  text-decoration: none;
}
.footer-links a:hover{ color: #fff; text-decoration: underline; }
.footer-text{ color: rgba(255,255,255,.7); max-width: 420px; }

.border-white-10{ border-color: rgba(255,255,255,.12) !important; }

.floating-btn{
  position: fixed;
  right: 22px;
  bottom: 18px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  border: none;
  background: rgba(24,182,230,1);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
  z-index: 999;
  display: grid;
  place-items: center;
}
.floating-inner{
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #0c1f32;
  color: #18b6e6;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
}
.floating-btn:active{ transform: scale(.98); }

/* Modal Styles */
.modal-content{
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  background: #fff;
}

.modal-header{
  background: var(--bp-primary);
  color: #fff;
}

.modal-header .btn-close{
  filter: invert(1) brightness(2);
  opacity: .7;
}

.modal-header .btn-close:hover{
  opacity: 1;
}

.modal-header .modal-title{
  /* color: #fff; */
  font-weight: 700;
  letter-spacing: -.5px;
}

.modal-body{
  color: #374151;
  line-height: 1.6;
}

.modal-body h6{
  color: var(--bp-navy);
  font-size: .95rem;
  letter-spacing: -.3px;
}

.modal-body p{
  font-size: .95rem;
  margin-bottom: 1rem;
}

.modal-body ul li{
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.6;
}

.modal-scrollable-content{
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer{
  background: #f9fafb;
}

.modal-footer .btn-secondary{
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #374151;
  font-weight: 500;
}

.modal-footer .btn-secondary:hover{
  background: #d1d5db;
  border-color: #d1d5db;
}

/* Alert within modals */
.modal-body .alert{
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
  font-size: .9rem;
}

.modal-body .alert i{
  color: var(--bp-primary);
}

@media (max-width: 991.98px){
  .floating-btn{
    width: 88px;
    height: 88px;
  }
  .floating-inner{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 34px;
  }
  
  .modal-dialog{
    margin: 1rem;
  }
  
  .modal-scrollable-content{
    max-height: 70vh;
