:root{
  --ray-blue: #0b3d91;
  --ray-teal: #1aa6b7;
  --ink: #0f172a;
  --muted: #475569;
  --surface: #f8fafc;
  --surface1: #f8fafc;
}

html, body { height: 100%; }
body{
  color: var(--ink);
  background: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 1rem; top: 1rem; width:auto; height:auto; z-index: 9999;
  background: #fff; padding: .5rem .75rem; border: 1px solid #ddd; border-radius: .5rem;
}

.brand-mark{
  width: 28px; height: 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--ray-blue), var(--ray-teal));
  box-shadow: 0 10px 22px rgba(26,166,183,.20);
}

.navbar .nav-link{
  color: var(--muted);
  font-weight: 500;
}
.navbar .nav-link.active{
  color: var(--ink);
}

.btn-primary{
  background: linear-gradient(135deg, var(--ray-blue), var(--ray-teal));
  border: none;
}
.btn-primary:hover{ filter: brightness(.98); }

.hero{
 /* background:
    radial-gradient(900px 280px at 15% 10%, rgba(26,166,183,.18), transparent 60%),
    radial-gradient(900px 280px at 85% 0%, rgba(11,61,145,.16), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--surface));  */
}
.hero-card{
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
  backdrop-filter: blur(8px);
  color: #343A40;
}

.kpi{
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  /* background: #fff; */
  background: #FFB81C;
}

.section-title{
  letter-spacing: -.02em;
}

.icon-pill{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(26,166,183,.12);
  color: var(--ray-blue);
}

.card{
  border-radius: 1.25rem;
}

.soft-surface{
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.25rem;
}

.site-footer{
  background: #fff;
}
.list-unstyled li a{
  color: #b9d7ff;
}
.badge.text-bg-light{
  background: #fff !important;
}

.form-control:focus, .form-select:focus{
  border-color: rgba(26,166,183,.6);
  box-shadow: 0 0 0 .2rem rgba(26,166,183,.18);
}


/* Added New CSS  */

/* ================================
   FIXED HEADER
   ================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* Above content, below modals */
    background-color: #ffffff;
}

/* Prevent content from hiding behind fixed header */
body {
    padding-top: 88px; /* adjust if header height changes */
}

/* Optional subtle shadow */
.site-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


.hero {
    background:
        /* Soft accent glows */
    radial-gradient(900px 280px at 15% 10%, rgba(26,166,183,0.18), transparent 60%), 
    radial-gradient(900px 280px at 85% 0%, rgba(11,61,145,0.16), transparent 55%),  

        /* Top → Bottom dark overlay */
        linear-gradient( to bottom, rgb(30, 30, 30) 0%, rgba(30, 30, 30, 0.48) 70% ),

          /* Bottom → Top dark overlay 
        linear-gradient(
            to top,
            rgba(30, 30, 30, 0.75) 0%,
            rgba(30, 30, 30, 0.2) 70%
        ),*/

        /* Background image */
        url("../images/hero-banner-0.jpg");

    background-size:
        auto,
        auto,
        auto,
        cover;

    background-position:
        center,
        center,
        center,
        center;

    background-repeat:
        no-repeat;
}


.hero {
  min-height: 70vh;
}

.hero,
.hero h1,
.hero p {
  /* color: #343A40; */
  color: #ffffff;
}


/* ================================
   Header Background
================================ */
.site-header {
    background: linear-gradient(135deg, #0b3d91 0%, #000440 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure navbar inherits header color */
.site-header .navbar {
    background: transparent !important;
}

/* ================================
   Brand Text
================================ */
.site-header .navbar-brand,
.site-header .navbar-brand .text-muted {
    color: #e6f0ff !important;
}

/* ================================
   Navigation Links
================================ */
.site-header .nav-link {
    color: #b9d7ff !important; /* Light blue */
    font-weight: 600;
    font-size: 16px;
    transition: color 0.25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
    color: #ffffff !important;
}

/* ================================
   Mobile Toggle Icon (White)
================================ */
.site-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

.site-header .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ================================
   Primary Button (Gradient)
================================ */
.site-header .btn-primary {
    background: linear-gradient(135deg, #cfe4ff 0%, #9cc4ff 100%);
    color: #0b3d91;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Button Hover */
.site-header .btn-primary:hover,
.site-header .btn-primary:focus {
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
    color: #0b3d91;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ================================
   Fix Header Border
================================ */
.site-header.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}


/* ================================
   Footer Background
================================ */
.site-footer {
    background-color: #000440;
    color: #b9d7ff;
}

/* Footer top border adjustment */
.site-footer.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* ================================
   Headings & Brand
================================ */
.site-footer h6,
.site-footer .fw-semibold {
    color: #ffffff;
}

/* Brand mark / name */
.site-footer .brand-mark {
    background-color: #b9d7ff;
}
.contact-link a{
	transition: color 0.25s ease;
	color: #0c4193;
	text-decoration: none;	
}
.contact-link a:hover{
	transition: color 0.25s ease;
	color:#000440;
	text-decoration: none;	
}
/* ================================
   Footer Text
================================ */
.site-footer p,
.site-footer .text-muted,
.site-footer .small {
    color: #b9d7ff !important;
}

/* ================================
   Footer Links
================================ */
.site-footer a {
    color: #b9d7ff;
    transition: color 0.25s ease;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #ffffff;
    text-decoration: none;
}

/* ================================
   Outline Buttons (Gradient)
================================ */
.site-footer .btn-outline-primary {
    background: linear-gradient(135deg, #cfe4ff 0%, #9cc4ff 100%);
    color: #000440;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Button Hover */
.site-footer .btn-outline-primary:hover,
.site-footer .btn-outline-primary:focus {
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
    color: #000440;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ================================
   Badges
================================ */
.site-footer .badge {
    background-color: transparent;
    color: #b9d7ff;
    border-color: rgba(185, 215, 255, 0.4);
}

/* ================================
   Divider Line
================================ */
.site-footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}
.service-image {
  height: 170px;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.service-image img{
	max-width:100%;
}

.service-page-image {
  height: 230px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.service-page-image img{
	max-width:100%;
}
.service-link a {
  transition: color 0.25s ease;
  color: #000440;
  text-decoration: none;
}
.service-link a:hover {
  transition: color 0.25s ease;
  color: #0c4193;
  text-decoration: none;
}
.section-bg-dark{ background:#484848; }

/* Remove Bootstrap card border and define custom borders */
.service-card {
    border: 0;
    /* border-bottom: 5px solid #1560bd; */
    border-bottom: 5px solid #FFB81C;
    border-radius: 0.475rem;
   background: #fff;
    /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08); */
    transition: 
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.service-card:hover {
   /*  background: linear-gradient(
        to top,
        #e6f0ff 0%,
        #ffffff 65%
    ); */
    
     background: linear-gradient(
        to top,
        /* #e6f0ff 0%, */
        #FFB81C 0%, 
        #ffffff 65%
    );
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.kpi .fw-semibold {
  font-size: 20px;
  color: #fff;
}

.text-white{ color:#fff !important; }

/* Remove Bootstrap card border and define custom borders */
.service-card {
    border: 0;
    /* border-bottom: 5px solid #1560bd; */
    border-bottom: 5px solid #FFB81C;
    border-radius: 0.475rem;
   background: #fff;
    /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08); */
    transition: 
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.service-card:hover {
   /*  background: linear-gradient(
        to top,
        #e6f0ff 0%,
        #ffffff 65%
    ); */
    
     background: linear-gradient(
        to top,
        /* #e6f0ff 0%, */
        #FFB81C 0%, 
        #ffffff 65%
    );
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Initial hidden state */
.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* Visible state */
.service-card.is-visible {
    opacity: 1;
    transform: translateY(0);


}

/* Optional stagger delay using nth-child */
.row > div:nth-child(1) .service-card { transition-delay: 0.05s; }
.row > div:nth-child(2) .service-card { transition-delay: 0.10s; }
.row > div:nth-child(3) .service-card { transition-delay: 0.15s; }
.row > div:nth-child(4) .service-card { transition-delay: 0.20s; }
.row > div:nth-child(5) .service-card { transition-delay: 0.25s; }
.row > div:nth-child(6) .service-card { transition-delay: 0.30s; }

.kpi .fw-semibold {
  font-size: 20px;
  color: #0a3a8c;
}

.text-white{ color:#fff !important; }


/* Generic appear-from-bottom animation */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

    /* border-bottom: 5px solid #1560bd; */
    border-left: 5px solid #00abff;
    border-radius: 0.475rem;
    background: #f5fdff;
}

/* Visible state */
.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* Optional stagger for grid items */
.row > div:nth-child(1) .animate-up { transition-delay: 0.05s;}
.row > div:nth-child(2) .animate-up { transition-delay: 0.10s; }
.row > div:nth-child(3) .animate-up { transition-delay: 0.15s;}
.row > div:nth-child(4) .animate-up { transition-delay: 0.20s; }

.txt-red{ color:#FF0000; }






