:root {
    --primary-action: #3590F3;
    --structure: #0A2463;
    --white-text: #FFFBFE;
    --dark-text: #131112;
    --neutral: #D0CFCF;
    --background: #FFFFFF;
}

.skeleton {
  background-color: var(--bg-color);
  border-radius: 4px;
  min-height: 20px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, white 50%, transparent 100%);
  animation: loading 1s linear infinite;
}

@keyframes loading {
  0% { left: -150px; }
  100% { left: 100%; }
}

/*Layout*/
html, body {
    height: 100%;
    margin: 0;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
/*    border-bottom: 1px solid #e5e7eb;*/
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.site-main {
    flex: 1;
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #6c757d;
}


/*Navbar*/
.navbar {
/*    width: 100%;
    height: 60px;
    z-index: 1000;*/
    background-color: var(--structure);
/*    padding: 5px 0;
    margin-bottom: 0 !important;*/
}
/*.navbar .nav-item {
    padding :10px 10px;
}*/
.navbar .nav-btn .btn {
   
    background-color:var(--primary-action) ;
    border-radius:5px;
}
    .navbar .nav-btn .action-btn {
        margin-right:7px;
        padding : 3px 10px;
    }

.navbar a {
    text-decoration:none;
    color: var(--white-text) ;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*HERo BANNER*/
/*.hero .banner {
   
    height: 420px;
    overflow:hidden;
    position:relative;
}*/
.hero {

    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.banner {

    position: absolute;
    inset: 0;
/*    background-color: #0d0d0d;*/
    background-image: url('../Assets/Images/banner-bg2.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

    .banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    }

.banner-context {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 2rem;
}

    .banner-context h1 {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

        .banner-context h1 span {
            color: #0d6efd;
        }

    .banner-context .sub-title {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
    }


/* loading screen */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.3s ease;
}

    .loader-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid var(--neutral); 
    border-top-color: var(--dark-text); 
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.page-content {
    transition: opacity 0.5s ease;
}

/* Highlights */
.highlights {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Card */
.highlight-card {
    border-radius: 0.75rem;
    overflow: hidden;
}

    .highlight-card .card-img-wrapper {
        position: relative;
    }

    .highlight-card .card-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .highlight-card .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    }

