:root {
  --primary-50: #f0f7ff;
  --primary-100: #e0effe;
  --primary-200: #bae0fd;
  --primary-400: #36a8f7;
  --primary-500: #0c8ce8;
  --primary-600: #016fc5;
  --primary-700: #0159a0;
  --primary-800: #064b84;
  --primary-950: #07284a;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --slate-950: #020617;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: #334155;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  color: #0f172a;
}

.text-balance {
  text-wrap: balance;
}

.container-page {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 576px) {
  .container-page {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 992px) {
  .container-page {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-600);
}

.eyebrow-line::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--primary-500);
}

.btn-meridian {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.btn-primary-meridian {
  background: var(--primary-600);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary-meridian:hover {
  background: var(--primary-700);
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white-meridian {
  background: #fff;
  color: var(--primary-700);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-white-meridian:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}

.btn-secondary-meridian {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.btn-secondary-meridian:hover {
  background: #f8fafc;
  color: #0f172a;
}

.btn-outline-light-meridian {
  background: transparent;
  color: #fff;
  border: 1px solid #475569;
}

.btn-outline-light-meridian:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline-primary-light {
  background: transparent;
  color: #fff;
  border: 1px solid var(--primary-400);
}

.btn-outline-primary-light:hover {
  background: var(--primary-600);
  color: #fff;
}

.card-meridian {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-200);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 1.5rem;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  font-size: 1.75rem;
}

.input-field {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.label-field {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}

/* ===================================
   HEADER
=================================== */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    z-index: 1050;
    transition: all .35s ease;
}

/* Transparent Header */

.site-header.transparent {
    background: rgba(2, 6, 23, .75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* White Header after Scroll */

.site-header.scrolled {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border-bottom: 1px solid #e5e7eb;
}


/* ===================================
   TOPBAR
=================================== */

.header-topbar{
    padding:.55rem 0;
    font-size:.8rem;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-link{
    display:flex;
    align-items:center;
    gap:.45rem;
    color:rgba(255,255,255,.8);
    text-decoration:none;
    transition:.3s;
}

.topbar-link:hover{
    color:#fff;
}

.topbar-text{
    color:rgba(255,255,255,.65);
}

.topbar-divider{
    width:1px;
    height:14px;
    background:rgba(255,255,255,.2);
}

.topbar-badge{
    display:flex;
    align-items:center;
    gap:.4rem;
    color:#22c55e;
    font-size:.75rem;
    font-weight:600;
}

.topbar-badge i{
    font-size:7px;
}


/* White Header Topbar */

.site-header.scrolled .header-topbar{
    background:#0f172a;
}

.site-header.scrolled .topbar-link,
.site-header.scrolled .topbar-text{
    color:#fff;
}


/* ===================================
   MAIN NAVBAR
=================================== */

.header-main{
    transition:.3s;
}

.header-main-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:84px;
}


/* ===================================
   LOGO
=================================== */

.navbar-brand img{
    height:70px;
    width:auto;
}


/* ===================================
   DESKTOP MENU
=================================== */

.nav-links-center{
    gap:.35rem;
}

.nav-link-custom{
    position:relative;
    display:block;
    padding:.7rem 1rem;
    color:#475569;
    text-decoration:none;
    font-weight:500;
    border-radius:8px;
    transition:.3s;
}

.nav-link-custom:hover{
    color:var(--primary-600);
    background:#f8fafc;
}

.nav-link-custom.active{
    color:var(--primary-600);
    background:#eef6ff;
}

.nav-link-custom.active::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:6px;
    transform:translateX(-50%);
    width:20px;
    height:2px;
    background:var(--primary-600);
    border-radius:20px;
}


/* Transparent */

.site-header.transparent:not(.scrolled) .nav-link-custom{
    color:#fff;
}

.site-header.transparent:not(.scrolled) .nav-link-custom:hover{
    background:rgba(255,255,255,.12);
}

.site-header.transparent:not(.scrolled) .nav-link-custom.active{
    background:rgba(255,255,255,.18);
}

.site-header.transparent:not(.scrolled) .nav-link-custom.active::after{
    background:#fff;
}


/* ===================================
   RIGHT ACTIONS
=================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.header-phone-btn{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:8px;
    text-decoration:none;
    background:#f8fafc;
    color:var(--primary-600);
    transition:.3s;
}

.header-phone-btn:hover{
    background:var(--primary-600);
    color:#fff;
}

.site-header.transparent:not(.scrolled) .header-phone-btn{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.btn-header-cta{
    padding:.75rem 1.35rem;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    background:linear-gradient(135deg,var(--primary-600),var(--primary-700));
    transition:.3s;
}

.btn-header-cta:hover{
    transform:translateY(-2px);
    color:#fff;
}

.site-header.transparent:not(.scrolled) .btn-header-cta{
    background:#fff;
    color:var(--primary-700);
}


/* ===================================
   MOBILE TOGGLER
=================================== */

.navbar-toggler{
    border:none;
    box-shadow:none;
    padding:0;
    width:44px;
    height:44px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.toggler-bar{
    width:24px;
    height:2px;
    background:#0f172a;
    border-radius:20px;
    transition:.3s;
}

.site-header.transparent:not(.scrolled) .toggler-bar{
    background:#fff;
}


/* ===================================
   MOBILE MENU
=================================== */

.mobile-nav-panel{
    background:#fff;
    border-top:1px solid #e5e7eb;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.mobile-nav-list{
    display:flex;
    flex-direction:column;
    gap:.35rem;
}

.mobile-nav-link{
    display:flex;
    align-items:center;
    gap:.8rem;
    padding:.9rem 1rem;
    text-decoration:none;
    border-radius:8px;
    color:#334155;
    transition:.3s;
}

.mobile-nav-link i{
    color:var(--primary-600);
    width:20px;
}

.mobile-nav-link:hover{
    background:#f8fafc;
    color:var(--primary-600);
}

.mobile-nav-link.active{
    background:#eef6ff;
    color:var(--primary-600);
    font-weight:600;
}


/* ===================================
   MOBILE FOOTER
=================================== */

.mobile-nav-footer{
    border-top:1px solid #e5e7eb;
}

.mobile-contact-chip{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:.5rem;
    padding:.8rem;
    text-decoration:none;
    border-radius:8px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    color:#334155;
    transition:.3s;
}

.mobile-contact-chip:hover{
    background:#eef6ff;
    color:var(--primary-600);
}


/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:991.98px){

    .header-topbar{
        display:none;
    }

    .header-main-inner{
        min-height:74px;
    }

    .navbar-brand img{
        height:58px;
    }

}

@media (max-width:576px){

    .navbar-brand img{
        height:50px;
    }

}

/* ==========================
   Hero Section
========================== */

.hero-home {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #020617;
}
.page-hero{
  margin-top:8rem;
}
.hero-bg,
.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg video {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(2, 6, 23, 0.90) 0%,
        rgba(2, 6, 23, 0.72) 45%,
        rgba(2, 6, 23, 0.45) 100%
    );
}

.hero-home .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    padding: 8rem 0;
}

.hero-content .lead {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991.98px) {

    .hero-home {
        min-height: auto;
    }

    .hero-content {
        padding: 6rem 0 4rem;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 576px) {

    .hero-content {
        padding: 5rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }
}
/* services page */


.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-700);
}

@media (min-width: 992px) {
  .stat-value {
    font-size: 3rem;
  }
}

.floating-badge {
  position: absolute;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.floating-badge-primary {
  background: var(--primary-600);
  bottom: -1.5rem;
  left: -1.5rem;
}

.floating-badge-accent {
  background: var(--accent-500);
  top: -1.5rem;
  right: -1.5rem;
}

.timeline-dot {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: #e2e8f0;
  margin-top: 0.5rem;
}

.tech-card-dark {
  border-radius: 1rem;
  border: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.5);
  padding: 1.5rem;
}

.cta-section {
  background: var(--primary-700);
}

.site-footer {
  background: var(--slate-950);
  color: #94a3b8;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--primary-600);
  color: #fff;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link:hover .icon-box {
  background: var(--primary-600);
  color: #fff;
}

.industry-strip-item:hover .icon-box {
  background: var(--primary-600);
  color: #fff;
}

.portal-mockup {
  border-radius: 1rem;
  border: 1px solid #1e293b;
  background: #0f172a;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.progress-bar-custom {
  height: 0.5rem;
  border-radius: 999px;
  background: #334155;
  overflow: hidden;
}

.progress-bar-custom .fill {
  height: 100%;
  border-radius: 999px;
  background: var(--primary-500);
}

.step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.step-circle.active {
  background: var(--primary-600);
  color: #fff;
}

.step-circle.done {
  background: #22c55e;
  color: #fff;
}

.step-circle.pending {
  background: #f1f5f9;
  color: #94a3b8;
}

.step-line {
  height: 2px;
  flex: 1;
  border-radius: 999px;
  background: #e2e8f0;
}

.step-line.done {
  background: #4ade80;
}

.service-toggle {
  cursor: pointer;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 1rem;
  text-align: left;
  background: #fff;
  transition: all 0.2s;
  width: 100%;
}

.service-toggle.selected {
  border-color: var(--primary-500);
  background: var(--primary-50);
  box-shadow: 0 0 0 1px var(--primary-200);
}

.checkbox-custom {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-toggle.selected .checkbox-custom {
  border-color: var(--primary-600);
  background: var(--primary-600);
  color: #fff;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.star-rating {
  color: var(--accent-500);
}

.facility-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.facility-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.facility-sqft-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.integration-tag {
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s;
}

.integration-tag:hover {
  border-color: var(--primary-200);
  background: var(--primary-50);
  color: var(--primary-700);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.team-img {
  height: 18rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}
/*==========================
        FOOTER
==========================*/

.footer-section{
    background:#071A2F;
    color:#fff;
    padding:80px 0 30px;
}

.footer-logo{
    height:70px;
}

.footer-text{
    color:#b8c4d4;
    line-height:1.8;
    margin-bottom:0;
}

.footer-section h5{
    color:#fff;
    font-size:20px;
    margin-bottom:25px;
    font-weight:700;
}

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

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#b8c4d4;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#00B7E8;
    padding-left:6px;
}

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

.footer-contact li{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.footer-contact i{
    color:#00B7E8;
    font-size:20px;
    margin-top:2px;
}

.footer-contact a{
    color:#b8c4d4;
    text-decoration:none;
}

.footer-contact span{
    color:#b8c4d4;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#00B7E8;
    transform:translateY(-4px);
}

.footer-divider{
    border-color:rgba(255,255,255,.08);
    margin:50px 0 25px;
}

.footer-section .copyright{
    color:#b8c4d4;
}

.footer-section .text-md-end a{
    color:#b8c4d4;
    text-decoration:none;
    transition:.3s;
}

.footer-section .text-md-end a:hover{
    color:#00B7E8;
}

@media(max-width:991px){

.footer-section{
padding:60px 0 25px;
}

.footer-logo{
height:60px;
}

}

@media(max-width:576px){

.footer-section{
text-align:center;
}

.footer-contact li{
justify-content:center;
}

.footer-social{
justify-content:center;
}

.footer-section .text-md-end{
text-align:center!important;
}

}
/*=========================
      PROCESS SECTION
==========================*/

.process-card{
    position:relative;
    padding:35px 30px;
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary-600);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.process-number{
    position:absolute;
    top:18px;
    right:22px;
    font-size:3rem;
    font-weight:700;
    color:rgba(13,110,253,.08);
    line-height:1;
}

.process-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(13,110,253,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-600);
    font-size:2rem;
    transition:.35s;
}

.process-card:hover .process-icon{
    background:var(--primary-600);
    color:#fff;
}

.process-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.process-card p{
    color:#6c757d;
    line-height:1.8;
    margin:0;
}