/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    /* Color Palette */
    --primary-dark: #092a49;     /* Deep navy primary */
    --primary-light: #f0f7fe;    /* Soft blue tint */
    --accent-blue: #0796fe;      /* Bright blue accent */
    --accent-blue-hover: #0688e8;/* Hover state blue */
    --accent-gold: #e0aa3e;      /* Gold accents */
    --text-main: #4a4a4a;        /* Compliant dark grey body text (WCAG AA > 4.5:1 on white) */
    --text-muted: #666666;       /* Compliant muted grey (WCAG AA) */
    --text-light: #eeeeee;       /* Off-white text */
    --bg-white: #ffffff;         /* Pure white background */
    --bg-light: #fbfcfd;         /* Subtle warm light grey background */
    --success-green: #00e676;    /* Glowing active/success indicator */
    --danger-red: #d11a2a;       /* Form validation error */
    --link-color: #067cd1;       /* Darker compliant blue for links on white background */
    --border-color: rgba(9, 42, 73, 0.08); /* Standardized border */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(9, 42, 73, 0.08);
    --shadow-lg: 0 20px 55px rgba(9, 42, 73, 0.12);

    /* Fonts & Typography */
    --font-primary: 'Lato', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    /* Border Radius & Transitions */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Skip-to-Content Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 15px;
    background: var(--accent-blue);
    color: var(--bg-white);
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 99999;
    transition: top var(--transition-fast);
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Skeleton Placeholder for dynamic header to mitigate Cumulative Layout Shift (CLS) */
#site-header {
    min-height: 110px;
    background: var(--primary-dark);
}

@media (max-width: 991.98px) {
    #site-header {
        min-height: 70px;
    }
}

body {
    color: var(--text-main);
    background: var(--bg-white);
    font-family: var(--font-primary);
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

a {
    color: #454545;
    transition: var(--transition-normal);
}

a:hover,
a:active {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Accessible focus styling */
a:focus,
button:focus,
.btn:focus,
.form-control:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(7, 150, 254, 0.25);
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #0796fe;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #0796fe, #092a49);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    overflow: visible;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    transform: scale(1.6);
    transform-origin: left center;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .35));
}

@media (min-width: 992px) {
    .navbar.nav-sticky .navbar-brand img {
        transform: scale(1.4);
    }
}

@media (max-width: 991.98px) {   
    .navbar .navbar-brand img {
        transform: scale(1.35);
    }
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #0796fe;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 20px 60px;
        background: rgba(9, 42, 73, .2)!important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #092a49 !important;
    }
    
    .page .navbar {
        background: #092a49 !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #092a49 !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/

/* Ken Burns zoom keyframe */
@keyframes kenBurns {
    0%   { transform: scale(1)    translateX(0)      translateY(0); }
    33%  { transform: scale(1.08) translateX(-1%)    translateY(-1%); }
    66%  { transform: scale(1.05) translateX(1%)     translateY(0.5%); }
    100% { transform: scale(1)    translateX(0)      translateY(0); }
}

/* Text entrance animations */
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeScaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

/* Shimmer line across the hero divider */
@keyframes shimmerLine {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Dot pulse animation */
@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: .7; }
    50%       { transform: scale(1.4); opacity: 1; }
}

/* ---- Progress bar loading animation ---- */
@keyframes progressFill {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* Shimmer sweep on the progress bar */
@keyframes progressShimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

/* Clip-path slide reveal for image */
@keyframes clipReveal {
    0%   { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0% 0 0); }
}

/* Glow pulse for the decorative line above image */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 6px 2px rgba(7,150,254,0.5), 0 0 0px 0px rgba(9,42,73,0); }
    50%       { box-shadow: 0 0 18px 6px rgba(7,150,254,0.9), 0 0 4px 2px rgba(255,255,255,0.3); }
}

/* Slide-in from left for the active-indicator line segments */
@keyframes lineGrow {
    0%   { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 1; }
}

.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 550px;
    background: #092a49;
    margin-bottom: 45px;
    overflow: hidden;
}

/* ============================================================
   ABOVE-IMAGE ANIMATED PROGRESS BAR
   ============================================================ */
.carousel-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(9, 42, 73, 0.45);
    z-index: 20;
    overflow: hidden;
}

.carousel-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.0) 0%,
            rgba(255,255,255,0.55) 50%,
            rgba(255,255,255,0.0) 100%
        ),
        linear-gradient(90deg, #0796fe 0%, #092a49 60%, #0796fe 100%);
    background-size: 400px 100%, 100% 100%;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px 2px rgba(7, 150, 254, 0.7);
}

.carousel-progress-bar.animating::after {
    animation:
        progressFill 5.5s linear forwards,
        progressShimmer 1.4s linear infinite;
}

/* ============================================================
   DECORATIVE ANIMATED LINE
   ============================================================ */
.carousel-deco-line {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    display: flex;
    z-index: 19;
    overflow: hidden;
    pointer-events: none;
}

.carousel-deco-line span {
    display: block;
    height: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
}

.carousel-deco-line span:nth-child(1) {
    width: 20%;
    background: linear-gradient(90deg, transparent, #0796fe);
    animation: lineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.carousel-deco-line span:nth-child(2) {
    width: 60%;
    background: linear-gradient(90deg, #0796fe, #ffffff 50%, #0796fe);
    background-size: 200% auto;
    animation: lineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards,
               shimmerLine 2s linear 0.9s infinite;
    box-shadow: 0 0 8px 2px rgba(7,150,254,0.6);
    animation-fill-mode: both;
}
.carousel-deco-line span:nth-child(3) {
    width: 20%;
    background: linear-gradient(90deg, #0796fe, transparent);
    animation: lineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.carousel-deco-line.replay span {
    transform: scaleX(0);
    opacity: 0;
    animation: none;
}
.carousel-deco-line.replay.active span:nth-child(1) {
    animation: lineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.carousel-deco-line.replay.active span:nth-child(2) {
    animation: lineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards,
               shimmerLine 2s linear 0.9s infinite;
    animation-fill-mode: both;
}
.carousel-deco-line.replay.active span:nth-child(3) {
    animation: lineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 550px;
    display: flex;
    align-items: center;
}

/* ---- Image with Ken Burns + clip-path reveal effect ---- */
.carousel .carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.carousel .owl-item.active .carousel-img img {
    animation: kenBurns 8s ease-in-out infinite;
}

.carousel .owl-item.active .carousel-img {
    animation: clipReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Beautiful cinematic mask blending content smoothly */
.carousel-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* Soft balanced dark overlay: 45% at the edge to 0% at the center. Maintains brightness! */
    background: linear-gradient(90deg, 
        rgba(9, 42, 73, 0.45) 0%, 
        rgba(9, 42, 73, 0.2) 35%, 
        rgba(9, 42, 73, 0.0) 70%
    );
    z-index: 2;
    pointer-events: none;
    transition: background 0.3s;
}

/* ---- Carousel split grid overlay ---- */
.carousel .carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 5;
    pointer-events: auto;
    padding: 0 15px;
}

.carousel .carousel-text {
    position: relative;
    width: 100%;
    z-index: 6;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    /* Elegant transparent dark gradient only behind text block */
    background: linear-gradient(135deg, rgba(9, 42, 73, 0.55) 0%, rgba(9, 42, 73, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Small elegant tag label */
.carousel .carousel-text .carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7, 150, 254, 0.15);
    border: 1px solid rgba(7, 150, 254, 0.3);
    color: #0796fe;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
}

.carousel .carousel-text .carousel-badge i {
    color: #e0aa3e; /* Accent gold details! */
}

.carousel .owl-item.active .carousel-text .carousel-badge {
    animation: slideUpFade 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.carousel .carousel-text h1 {
    color: #ffffff;
    font-size: 46px; /* Optimized layout inside padded container */
    font-weight: 700; /* Richer bold heading */
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.50);
    opacity: 0;
    transform: translateY(40px);
    transition: none;
    text-align: left;
}

.carousel .owl-item.active .carousel-text h1 {
    animation: slideUpFade 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.carousel .carousel-text p {
    color: rgba(255,255,255,0.95);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: none;
    text-align: left;
}

.carousel .owl-item.active .carousel-text p {
    animation: slideUpFade 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.carousel .carousel-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* CTA primary button */
.carousel .carousel-text .carousel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #0796fe 0%, #00e676 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.35);
    text-decoration: none;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s ease;
}

.carousel .owl-item.active .carousel-text .carousel-cta {
    animation: fadeScaleIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.carousel .carousel-text .carousel-cta:hover {
    background: linear-gradient(135deg, #ffffff, #e0f0ff);
    color: #092a49;
    box-shadow: 0 12px 40px rgba(7, 150, 254, 0.55);
    transform: translateY(-3px) scale(1.02);
    text-decoration: none;
}

/* CTA secondary button - glassmorphism design */
.carousel .carousel-text .carousel-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    text-decoration: none;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s ease;
}

.carousel .owl-item.active .carousel-text .carousel-secondary-cta {
    animation: fadeScaleIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.carousel .carousel-text .carousel-secondary-cta:hover {
    background: rgba(7, 150, 254, 0.15);
    border-color: #0796fe;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(7, 150, 254, 0.35);
    transform: translateY(-3px);
    text-decoration: none;
}

/* ---- Floating glassmorphic dashboards ---- */
.carousel-floating-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.carousel-floating-container .glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

.carousel .owl-item.active .glass-card.card-growth {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

.carousel .owl-item.active .glass-card.card-secured {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.9s;
}

.carousel-floating-container .glass-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(7, 150, 254, 0.4);
    box-shadow: 
        0 35px 70px rgba(7, 150, 254, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-floating-container .glass-card.card-growth {
    width: 280px;
    top: 20px;
    left: 40px;
    z-index: 4;
}

.carousel-floating-container .glass-card.card-secured {
    width: 270px;
    bottom: 30px;
    right: 40px;
    z-index: 5;
    background: rgba(9, 42, 73, 0.55);
    border-color: rgba(7, 150, 254, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.glass-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(7, 150, 254, 0.2);
    border: 1px solid rgba(7, 150, 254, 0.3);
    color: #0796fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.glass-card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.8px;
    line-height: 1;
    margin-bottom: 2px;
}

.glass-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.glass-card-value {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.trend-up {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #00e676;
    background: rgba(0, 230, 118, 0.12);
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
    margin-left: 6px;
}

.glass-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.sparkline-wrapper {
    width: 100%;
    height: 35px;
    overflow: hidden;
    margin-top: 5px;
}

.sparkline {
    width: 100%;
    height: 100%;
}

.secure-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d2ff, #0796fe);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(7, 150, 254, 0.4);
    flex-shrink: 0;
}

.secure-icon-badge.insurance-badge {
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    box-shadow: 0 4px 16px rgba(120, 255, 214, 0.4);
    color: #092a49;
}

.secure-icon-badge.gold-badge {
    background: linear-gradient(135deg, #ffe259, #ffa751);
    box-shadow: 0 4px 16px rgba(255, 167, 81, 0.4);
    color: #092a49;
}

.secure-icon-badge.neon-badge {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    box-shadow: 0 4px 16px rgba(0, 242, 254, 0.4);
    color: #ffffff;
}

.glass-card.card-secured h4 {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.glass-card.card-secured p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.progress-ring-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring-circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.35s;
}

.progress-ring-text {
    position: absolute;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.progress-info-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.progress-info-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.bar-chart-wrapper {
    height: 40px;
}

.bar-chart-bar {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px 3px 0 0;
    transition: background 0.3s, height 0.3s;
}

.carousel .owl-item.active .bar-chart-bar {
    background: #0796fe;
}

.carousel .owl-item.active .bar-chart-bar:nth-child(even) {
    background: #e0aa3e;
}

.ai-status-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.pulse-green {
    font-size: 10px;
    font-weight: 700;
    color: #00e676;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00e676;
    display: inline-block;
    box-shadow: 0 0 8px #00e676;
    animation: pulseDotAnim 1.5s infinite;
}

@keyframes pulseDotAnim {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

@keyframes floatAnim1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.8deg); }
}

@keyframes floatAnim2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-0.8deg); }
}

.carousel .owl-item.active .float-anim-1 {
    animation: floatAnim1 6s ease-in-out infinite;
    animation-delay: 1.4s;
}

.carousel .owl-item.active .float-anim-2 {
    animation: floatAnim2 7s ease-in-out infinite;
    animation-delay: 1.6s;
}

.gap-5 { gap: 5px; }
.gap-15 { gap: 15px; }

/* ---- Navigation arrows – glassmorphism style ---- */
.carousel .owl-nav {
    position: absolute;
    right: 60px;
    bottom: 35px;
    display: flex;
    gap: 10px;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    background: rgba(7, 150, 254, 0.85);
    border-color: #0796fe;
    box-shadow: 0 8px 24px rgba(7, 150, 254, 0.5);
    transform: scale(1.08);
}

.carousel .owl-nav .owl-prev {
    margin-right: 0;
}

/* ---- Dot indicators – modern pill style ---- */
.carousel .owl-dots {
    position: absolute;
    bottom: 35px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 9;
}

.carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
}

.carousel .owl-dots .owl-dot.active span {
    width: 32px;
    border-radius: 5px;
    background: #0796fe;
    border-color: #0796fe;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (min-width: 992px) {
    .carousel {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item {
        height: calc(100vh - 105px);
        min-height: 480px;
    }
    
    .carousel-glass-overlay {
        background: rgba(9, 42, 73, 0.85); /* Solid mask for high readability on small screens */
    }
    
    .carousel .carousel-content {
        padding: 0 30px;
    }

    .carousel .carousel-text {
        padding: 25px 30px;
        border-radius: 20px;
    }

    .carousel .carousel-text h1 {
        font-size: 38px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .carousel .carousel-text .carousel-cta,
    .carousel .carousel-text .carousel-secondary-cta {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .carousel .owl-nav {
        right: 30px;
        bottom: 25px;
    }
    
    .carousel .owl-dots {
        left: 30px;
        bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item {
        height: calc(100vh - 70px);
    }

    .carousel .carousel-text {
        padding: 20px 25px;
        border-radius: 16px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .carousel-cta,
    .carousel .carousel-text .carousel-secondary-cta {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .carousel .owl-nav {
        right: 16px;
        bottom: 20px;
    }
    
    .carousel .owl-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text {
        padding: 15px 18px;
        border-radius: 12px;
    }

    .carousel .carousel-text h1 {
        font-size: 26px;
    }
    
    .carousel .carousel-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }
    
    .carousel .carousel-text .carousel-cta,
    .carousel .carousel-text .carousel-secondary-cta {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
}

.section-header h2 {
    margin: 0 0 0 40px;
    position: relative;
    font-size: 50px;
    font-weight: 200;
}

.section-header h2::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.1) 3%) 30;
}

.section-header h2:hover::after {
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.05) 3%) 30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.fact .fact-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.fact .fact-item img {
    max-height: 50px;
    margin-bottom: 15px;
}

.fact .fact-item h2 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    border: 2px solid #092a49;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #0796fe;
    background: #092a49;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/* About page split layout (scoped so homepage About stays unchanged) */
.about.about--split .section-header {
    margin-bottom: 18px;
}

.about.about--split .section-header p {
    font-weight: 600;
    color: #4b4b4b;
}

.about.about--split .section-header h2 {
    margin-left: 40px;
    letter-spacing: .2px;
}

.about.about--split .about-text p {
    color: #4d4d4d;
    line-height: 1.65;
}

.about.about--split .about-split-left {
    position: relative;
}

.about.about--split .about-split-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 360px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(9, 42, 73, 0.12);
}

.about.about--split .about-split-frame::after {
    display: none;
}

.about.about--split .about-split-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.about.about--split .about-split-frame:hover img {
    transform: scale(1.04);
}

.about.about--split .about-split-left .about-text {
    margin-top: 22px;
}

.about.about--split .about-split-right {
    padding-left: 8px;
}

.about.about--split .about-split-media {
    position: relative;
    margin-top: 24px;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(9, 42, 73, 0.10);
}

.about.about--split .about-split-media::after {
    display: none;
}

.about.about--split .about-split-media img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.about.about--split .about-split-media:hover img {
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .about.about--split .about-split-frame {
        min-height: 320px;
    }
    .about.about--split .about-split-media {
        min-height: 240px;
    }
    .about.about--split .about-split-right {
        padding-left: 0;
        margin-top: 28px;
    }
}

@media (max-width: 575.98px) {
    .about.about--split .about-split-frame {
        min-height: 300px;
    }
    .about.about--split .about-split-frame::after {
        border-width: 20px;
    }
    .about.about--split .about-split-frame img,
    .about.about--split .about-split-media img {
        margin: 0 20px 20px 20px;
        width: calc(100% - 40px);
        max-height: calc(100% - 40px);
    }
    .about.about--split .about-split-media {
        min-height: 220px;
    }
    .about.about--split .about-split-media::after {
        border-width: 20px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}


.service .service-grid {
    display: flex;
    flex-wrap: wrap;
}

.service .service-grid > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 280px;
    height: 100%;
    margin-bottom: 0;
    padding: 28px 22px;
    text-align: center;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service .service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(7, 150, 254, 0.35);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.service .service-item .service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 24px;
    background: rgba(7, 150, 254, 0.12);
    border: 1px solid rgba(7, 150, 254, 0.22);
    border-radius: 14px;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.service .service-item:hover .service-icon {
    transform: scale(1.05);
    color: #ffffff;
    background: #0796fe;
    border-color: transparent;
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
}

.service .service-item h3 {
    flex-shrink: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.35;
    color: #092a49;
}

.service .service-item p {
    flex: 1 1 auto;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #797979;
}

.service .service-item a,
.service .service-item .service-link {
    flex-shrink: 0;
    margin-top: auto;
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0796fe;
    text-decoration: none;
    transition: color 0.28s ease;
}

.service .service-item a::after,
.service .service-item .service-link::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: #0796fe;
    transition: width 0.28s ease;
}

.service .service-item:hover a,
.service .service-item:hover .service-link {
    color: #092a49;
}

.service .service-item:hover a::after,
.service .service-item:hover .service-link::after {
    width: 100%;
    left: 0;
}

.service .service-item:hover a.btn {
    color: #092a49;
    background: #1d2434;
    border-color: #1d2434;
}

/* ============================================================
   SERVICES PAGE — premium redesign
   Scoped to .services-page  |  Colors: #092a49 · #0796fe
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes svc-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes svc-icon-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(7,150,254,0); }
    50%       { box-shadow: 0 0 0 7px rgba(7,150,254,0.14); }
}
@keyframes svc-line-in {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

/* ---- Page intro ---- */
.services-page .svc-intro {
    width: 100%;
    padding: 52px 0 36px;
    background: linear-gradient(155deg, #f5faff 0%, #ffffff 55%, #eef5fc 100%);
    position: relative;
    overflow: hidden;
}

.services-page .svc-intro::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7,150,254,0.06) 0%, transparent 68%);
    pointer-events: none;
}

.services-page .svc-intro__header {
    max-width: 740px;
    margin-bottom: 18px;
}

.services-page .svc-intro__header h2 {
    margin-left: 40px;
}

.services-page .svc-intro__header .section-header p {
    font-weight: 600;
    color: #0796fe;
}

.services-page .svc-intro > .container > p {
    max-width: 680px;
    color: #5a6472;
    font-size: 15px;
    line-height: 1.85;
    border-left: 3px solid #0796fe;
    padding: 10px 16px 10px 18px;
    background: rgba(7,150,254,0.03);
    border-radius: 0 8px 8px 0;
    margin: 0;
    text-align: justify;
}

/* ---- Services list ---- */
.services-page .svc-list {
    width: 100%;
    padding: 20px 0 72px;
    background: linear-gradient(180deg, #f5f9fd 0%, #edf3fa 30%, #f2f7fc 65%, #ffffff 100%);
    position: relative;
}

.services-page .svc-list::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(7,150,254,0.04) 0%, transparent 45%),
        radial-gradient(circle at 88% 80%, rgba(9,42,73,0.04) 0%, transparent 45%);
    pointer-events: none;
}

.services-page .svc-list__head {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
}

.services-page .svc-list__head::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #0796fe, #092a49);
    transform-origin: left center;
    animation: svc-line-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

.services-page .svc-list__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 20px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0796fe;
    background: rgba(7,150,254,0.08);
    border: 1px solid rgba(7,150,254,0.24);
}

.services-page .svc-list__title {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #092a49;
    line-height: 1.25;
}

/* ---- Service cards ---- */
.services-page .service-row {
    margin-bottom: 30px;
    animation: svc-fade-up 0.55s ease both;
}

.services-page .service-row:nth-child(1)  { animation-delay: 0.05s; }
.services-page .service-row:nth-child(2)  { animation-delay: 0.10s; }
.services-page .service-row:nth-child(3)  { animation-delay: 0.15s; }
.services-page .service-row:nth-child(4)  { animation-delay: 0.20s; }
.services-page .service-row:nth-child(5)  { animation-delay: 0.25s; }
.services-page .service-row:nth-child(6)  { animation-delay: 0.28s; }
.services-page .service-row:nth-child(7)  { animation-delay: 0.31s; }
.services-page .service-row:nth-child(8)  { animation-delay: 0.34s; }
.services-page .service-row:nth-child(9)  { animation-delay: 0.37s; }
.services-page .service-row:nth-child(10) { animation-delay: 0.40s; }
.services-page .service-row:nth-child(11) { animation-delay: 0.43s; }
.services-page .service-row:nth-child(12) { animation-delay: 0.46s; }

.services-page .service-row--last {
    margin-bottom: 0;
}

.services-page .service-row__inner {
    display: grid;
    grid-template-columns: minmax(280px, 350px) 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(9,42,73,0.07);
    box-shadow: 0 6px 28px rgba(9,42,73,0.07);
    transition: transform 0.38s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.38s cubic-bezier(0.22,1,0.36,1),
                border-color 0.38s ease;
    position: relative;
}

/* Accent stripe — grows on hover */
.services-page .service-row__inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #0796fe, #092a49);
    opacity: 0;
    transition: opacity 0.35s ease, top 0.35s ease, height 0.35s ease;
    z-index: 5;
}

.services-page .service-row__inner:hover::before {
    opacity: 1;
    top: 10%;
    height: 80%;
}

.services-page .service-row__inner:hover {
    transform: translateY(-6px);
    border-color: rgba(7,150,254,0.18);
    box-shadow: 0 22px 54px rgba(9,42,73,0.13), 0 0 0 1px rgba(7,150,254,0.07);
}

.services-page .service-row:nth-of-type(even) .service-row__inner {
    grid-template-columns: 1fr minmax(280px, 350px);
}

.services-page .service-row:nth-of-type(even) .service-row__img {
    order: 2;
}

.services-page .service-row:nth-of-type(even) .service-row__content {
    order: 1;
}

/* Image panel */
.services-page .service-row__img {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.services-page .service-row__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(9,42,73,0.12) 0%, rgba(9,42,73,0.52) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.services-page .service-row__inner:hover .service-row__img::after {
    opacity: 0.8;
}

.services-page .service-row__img img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.services-page .service-row__inner:hover .service-row__img img {
    transform: scale(1.06);
}

/* Content panel */
.services-page .service-row__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 34px 40px 38px;
    position: relative;
}

.services-page .service-row__body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 20px;
    align-items: start;
}

/* Icon */
.services-page .service-row__icon {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(7,150,254,0.11) 0%, rgba(9,42,73,0.05) 100%);
    border: 1px solid rgba(7,150,254,0.14);
    color: #0796fe;
    font-size: 21px;
    flex-shrink: 0;
    transition: background 0.32s ease, color 0.32s ease,
                border-color 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
    animation: svc-icon-glow 3.5s ease-in-out infinite;
}

.services-page .service-row__inner:hover .service-row__icon {
    background: linear-gradient(135deg, #0796fe, #055ea0);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(7,150,254,0.38);
    transform: scale(1.07) rotate(-4deg);
    animation: none;
}

.services-page .service-row__body h3 {
    margin: 0 0 7px;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #092a49;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.services-page .service-row__inner:hover .service-row__body h3 {
    color: #0796fe;
}

.services-page .service-row__body p {
    margin: 0;
    grid-column: 2;
    font-size: 14.5px;
    line-height: 1.8;
    color: #6a737c;
}

/* Feature pills */
.services-page .service-row__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
    border-top: 1px solid rgba(9,42,73,0.07);
}

.services-page .service-row__features li {
    position: relative;
    padding: 9px 10px 9px 36px;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #555f6a;
    background: rgba(7,150,254,0.04);
    border-radius: 10px;
    border: 1px solid rgba(7,150,254,0.08);
    transition: background 0.25s ease, border-color 0.25s ease,
                color 0.25s ease, transform 0.25s ease;
}

.services-page .service-row__inner:hover .service-row__features li {
    background: rgba(7,150,254,0.08);
    border-color: rgba(7,150,254,0.18);
    color: #3a4450;
}

.services-page .service-row__inner:hover .service-row__features li:hover {
    transform: translateX(3px);
}

.services-page .service-row__features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #0796fe, #092a49);
    box-shadow: 0 2px 6px rgba(7,150,254,0.32);
}

.services-page .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #092a49;
    background: linear-gradient(135deg, rgba(7,150,254,0.10), rgba(9,42,73,0.05));
    border: 1px solid rgba(7,150,254,0.28);
    letter-spacing: 0.3px;
}

/* ---- Bottom CTA ---- */
.services-page .svc-cta {
    width: 100%;
    padding: 0 0 88px;
    background: transparent;
}

.services-page .svc-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px 36px;
    padding: 48px 52px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #092a49 0%, #0a3358 48%, #0d3f73 100%);
    box-shadow: 0 24px 64px rgba(9,42,73,0.26), 0 0 0 1px rgba(7,150,254,0.10);
}

/* Glow orbs */
.services-page .svc-cta__glow {
    position: absolute;
    top: -50%;
    right: -5%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7,150,254,0.28) 0%, transparent 65%);
    pointer-events: none;
}

.services-page .svc-cta__glow::after {
    content: "";
    position: absolute;
    bottom: -55%;
    left: -25%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7,150,254,0.14) 0%, transparent 65%);
}

/* Subtle dot-grid overlay */
.services-page .svc-cta__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.services-page .svc-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
    min-width: 260px;
}

.services-page .svc-cta__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0796fe;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    transition: transform 0.3s ease, background 0.3s ease;
}

.services-page .svc-cta__inner:hover .svc-cta__icon {
    transform: scale(1.08) rotate(-5deg);
    background: rgba(7,150,254,0.20);
}

.services-page .svc-cta__text {
    flex: 1;
    min-width: 0;
}

.services-page .svc-cta__label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0796fe;
}

.services-page .svc-cta__text h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #ffffff;
    line-height: 1.3;
}

.services-page .svc-cta__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
}

.services-page .svc-cta__btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 36px;
    border-radius: 13px;
    background: linear-gradient(135deg, #0796fe, #055ea0);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(7,150,254,0.38);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.services-page .svc-cta__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.services-page .svc-cta__btn:hover {
    background: linear-gradient(135deg, #1aa0ff, #0796fe);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 36px rgba(7,150,254,0.52);
}

.services-page .svc-cta__btn:hover::before {
    opacity: 1;
}

.services-page .svc-cta__btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.services-page .svc-cta__btn:hover i {
    transform: translateX(5px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .services-page .service-row__inner,
    .services-page .service-row:nth-of-type(even) .service-row__inner {
        grid-template-columns: 1fr;
    }

    .services-page .service-row:nth-of-type(even) .service-row__img,
    .services-page .service-row:nth-of-type(even) .service-row__content {
        order: unset;
    }

    .services-page .service-row__img img {
        min-height: 230px;
    }

    .services-page .service-row__content {
        padding: 28px 26px 32px;
    }

    .services-page .service-row__features {
        grid-template-columns: 1fr;
    }

    .services-page .svc-cta__inner {
        padding: 36px 30px;
    }

    .services-page .svc-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .services-page .svc-intro > .container > p {
        font-size: 14px;
    }

    .services-page .svc-list__title {
        font-size: 24px;
    }

    .services-page .service-row {
        margin-bottom: 20px;
    }

    .services-page .service-row__body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-page .service-row__icon {
        grid-row: auto;
    }

    .services-page .service-row__body p {
        grid-column: 1;
    }

    .services-page .service-row__img img {
        min-height: 200px;
    }

    .services-page .service-row__content {
        padding: 24px 20px 28px;
        gap: 18px;
    }

    .services-page .svc-cta__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
        gap: 24px;
    }

    .services-page .svc-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-page .svc-cta__text h2 {
        font-size: 22px;
    }
}


.services-page .svc-intro__header {
    max-width: 720px;
    margin-bottom: 12px;
}

.services-page .svc-intro__header h2 {
    margin-left: 40px;
}

.services-page .svc-intro__desc {
    max-width: 720px;
    margin: 0 0 0 40px;
    text-align: left;
    color: #5f6b76;
    font-size: 14px;
    line-height: 1.75;
}

/* ---- Services list header ---- */
.services-page .svc-list {
    width: 100%;
    padding: 8px 0 56px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 40%, #ffffff 100%);
}

.services-page .svc-list__head {
    text-align: center;
    margin-bottom: 40px;
}

.services-page .svc-list__chip {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0796fe;
    background: rgba(7, 150, 254, 0.10);
    border: 1px solid rgba(7, 150, 254, 0.22);
}

.services-page .svc-list__title {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #092a49;
    line-height: 1.25;
}

/* ---- Service cards ---- */
.services-page .service-row {
    margin-bottom: 28px;
}

.services-page .service-row--last {
    margin-bottom: 0;
}

.services-page .service-row__inner {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(9, 42, 73, 0.08);
    box-shadow: 0 4px 24px rgba(9, 42, 73, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-page .service-row__inner:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 150, 254, 0.22);
    box-shadow: 0 16px 48px rgba(9, 42, 73, 0.12);
}

.services-page .service-row:nth-of-type(even) .service-row__inner {
    grid-template-columns: 1fr minmax(260px, 340px);
}

.services-page .service-row:nth-of-type(even) .service-row__img {
    order: 2;
}

.services-page .service-row:nth-of-type(even) .service-row__content {
    order: 1;
}

.services-page .service-row__img {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.services-page .service-row__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(9, 42, 73, 0.55) 100%);
    pointer-events: none;
}

.services-page .service-row__img img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-page .service-row__inner:hover .service-row__img img {
    transform: scale(1.04);
}


.services-page .service-row__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 32px 36px 36px;
}

.services-page .service-row__body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 20px;
    align-items: start;
}

.services-page .service-row__icon {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(7, 150, 254, 0.14) 0%, rgba(9, 42, 73, 0.06) 100%);
    color: #0796fe;
    font-size: 21px;
    flex-shrink: 0;
}

.services-page .service-row__body h3 {
    margin: 0 0 8px;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #092a49;
    line-height: 1.3;
}

.services-page .service-row__body p {
    margin: 0;
    grid-column: 2;
    font-size: 15px;
    line-height: 1.75;
    color: #6a6a6a;
}

.services-page .service-row__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
    border-top: 1px solid #e8ecef;
}

.services-page .service-row__features li {
    position: relative;
    padding: 10px 12px 10px 38px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #5a5a5a;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.25s ease, color 0.25s ease;
}

.services-page .service-row__inner:hover .service-row__features li {
    background: rgba(7, 150, 254, 0.06);
}

.services-page .service-row__features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    color: #ffffff;
    background: #0796fe;
}

.services-page .service-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #092a49;
    background: rgba(7, 150, 254, 0.12);
    border: 1px solid rgba(7, 150, 254, 0.28);
}

/* ---- Bottom CTA ---- */
.services-page .svc-cta {
    width: 100%;
    padding: 0 0 80px;
    background: #ffffff;
}

.services-page .svc-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px 32px;
    padding: 40px 44px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #092a49 0%, #0c3560 55%, #0b3b66 100%);
    box-shadow: 0 20px 56px rgba(9, 42, 73, 0.24);
}

.services-page .svc-cta__glow {
    position: absolute;
    top: -40%;
    right: -8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 150, 254, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.services-page .svc-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 260px;
}

.services-page .svc-cta__icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0796fe;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-page .svc-cta__text {
    flex: 1;
    min-width: 0;
}

.services-page .svc-cta__label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(7, 150, 254, 0.95);
}

.services-page .svc-cta__text h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.3;
}

.services-page .svc-cta__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
}

.services-page .svc-cta__btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #0796fe;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.services-page .svc-cta__btn:hover {
    background: #0580d4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(7, 150, 254, 0.45);
}

.services-page .svc-cta__btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.services-page .svc-cta__btn:hover i {
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .services-page .service-row__inner,
    .services-page .service-row:nth-of-type(even) .service-row__inner {
        grid-template-columns: 1fr;
    }

    .services-page .service-row:nth-of-type(even) .service-row__img,
    .services-page .service-row:nth-of-type(even) .service-row__content {
        order: unset;
    }

    .services-page .service-row__img img {
        min-height: 220px;
    }

    .services-page .service-row__content {
        padding: 28px 24px 32px;
    }

    .services-page .service-row__features {
        grid-template-columns: 1fr;
    }

    .services-page .svc-cta__inner {
        padding: 32px 28px;
    }

    .services-page .svc-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .services-page .svc-intro__desc {
        font-size: 13px;
    }

    .services-page .svc-list__title {
        font-size: 24px;
    }

    .services-page .service-row {
        margin-bottom: 20px;
    }

    .services-page .service-row__body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-page .service-row__icon {
        grid-row: auto;
    }

    .services-page .service-row__body p {
        grid-column: 1;
    }

    .services-page .service-row__img img {
        min-height: 200px;
    }

    .services-page .service-row__content {
        padding: 24px 20px 28px;
        gap: 18px;
    }

    .services-page .svc-cta__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
        gap: 22px;
    }

    .services-page .svc-cta__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .services-page .svc-cta__text h2 {
        font-size: 22px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature .feature-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.feature .feature-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 30px 30px 30px;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 28px;
    color: #0796fe;
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: #0796fe;
    font-size: 30px;
    font-weight: 300;
}

.feature .counters h2::after {
    position: absolute;
    content: "+";
    top: -15px;
    right: -15px;
}

.feature .counters p {
    color: #092a49;
    font-size: 20px;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #fbfcfd 0%, #ffffff 100%);
}

.team .team-item {
    position: relative;
    margin-bottom: 45px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(9, 42, 73, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.team .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(9, 42, 73, 0.15);
}

.team .team-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.team .team-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(9, 42, 73, 0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team .team-item:hover .team-img img {
    transform: scale(1.08);
}

.team .team-item:hover .team-img::after {
    opacity: 1;
}

.team .team-text {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    background: #ffffff;
    z-index: 2;
}

.team .team-text h2 {
    color: #092a49;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team .team-item:hover .team-text h2 {
    color: #0796fe;
}

.team .team-text p {
    margin-bottom: 0;
    color: #0796fe;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    opacity: 0;
}

.team .team-item:hover .team-social {
    transform: translateY(0);
    opacity: 1;
}

.team .team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    color: #ffffff;
    background: #092a49;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team .team-social a:hover {
    color: #ffffff;
    background: #0796fe;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(7, 150, 254, 0.4);
}
/*******************************/
/********* Partner CSS *********/
/*******************************/
.partner-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.partner-logo img {
    max-width: 80%;
    height: auto;
    display: block;
}

.partner-content h3 {
    margin-top: 15px;
}

.partner-content .tagline {
    color: #ff9900;
    text-transform: uppercase;
    font-weight: 600;
}

.partner-section {
    position: relative;
    width: 100%;
    padding: 45px 0 60px 0;
}

.partner-section .partner-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;       /* vertical align center */
    justify-content: center;   /* horizontal center */
}

.partner-section .partner-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.partner-section .partner-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.partner-section .partner-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto 30px auto;
    z-index: 2;
}

.partner-section .partner-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 36px 44px;
    text-align: left;
    background: linear-gradient(135deg, #fafbfd 0%, #ffffff 45%, #f5f8fb 100%);
    border: 1px solid rgba(9, 42, 73, 0.08);
    border-radius: 20px;
    box-shadow:
        0 12px 48px rgba(9, 42, 73, 0.08),
        0 2px 12px rgba(0, 0, 0, 0.04);
}

.partner-section .partner-card-media {
    flex: 0 1 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.partner-section .partner-card-content {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-left: 8px;
    border-left: 3px solid #0796fe;
}

.partner-section .partner-kicker {
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0796fe;
}

.partner-section .partner-content-title {
    margin: 0 0 16px 0;
    color: #092a49;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.3px;
}

.partner-section .partner-lead {
    margin: 0 0 22px 0;
    font-size: 17px;
    line-height: 1.75;
    color: #5a5a5a;
}

.partner-section .partner-meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(9, 42, 73, 0.1);
}

.partner-section .partner-name {
    margin: 0 0 6px 0;
    color: #092a49;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.partner-section .partner-position {
    margin: 0;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.partner-section .partner-desc {
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
    color: #797979;
}

.partner-section .partner-logo-wrap {
    display: block;
    margin: 0 auto;       /* ★ Center horizontally */
    text-align: center;   /* ★ Extra protection */
    width: 100%;
    max-width: 400px;
    padding: 28px 36px;
    background: linear-gradient(160deg, #fbfcfd 0%, #f1f4f7 100%);
    border: 1px solid rgba(9, 42, 73, 0.09);
    border-radius: 18px;
    box-shadow:
        0 10px 40px rgba(9, 42, 73, 0.07),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-section .partner-logo-wrap:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 48px rgba(9, 42, 73, 0.11),
        0 4px 14px rgba(0, 0, 0, 0.06);
}

.partner-section .partner-logo-wrap img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

@media (max-width: 991.98px) {
    .partner-section .partner-card {
        padding: 32px 24px 36px;
    }

    .partner-section .partner-card-media {
        flex: 1 1 100%;
    }

    .partner-section .partner-card-content {
        padding-left: 0;
        padding-top: 8px;
        border-left: none;
        border-top: 3px solid #0796fe;
    }

    .partner-section .partner-content-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .partner-section .partner-card {
        padding: 24px 18px 28px;
        gap: 28px;
    }

    .partner-section .partner-logo-wrap {
        padding: 20px 22px;
    }

    .partner-section .partner-content-title {
        font-size: 24px;
    }

    .partner-section .partner-name {
        font-size: 22px;
    }
}




/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #0796fe;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #092a49;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-map {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-map:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-map iframe {
    display: block;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    background: none;
    border: 2px solid #092a49;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #092a49;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #0796fe;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #092a49;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #092a49;
    background: none;
    border-radius: 0;
    border: 2px solid #092a49;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #0796fe;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/*******************************/
/******* Gallery CSS **********/
/*******************************/
.gallery-section {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: #ffffff;
}

.gallery-header {
    max-width: 600px;
}

.gallery-intro {
    margin: -10px auto 25px;
}

.gallery-intro-title {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.6px;
    margin: 0 0 8px;
}

.gallery-intro-text {
    color: #5f6b76;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 42, 73, 0.85), rgba(9, 42, 73, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 18px;
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 36px;
    opacity: 0;
    transform: translateY(30px) scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.1s;
}

.gallery-caption {
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.4s ease;
    transition-delay: 0.12s;
}

.gallery-caption h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 4px;
    letter-spacing: 0.4px;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.3px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.12) rotate(2deg);
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .gallery-item {
        border-radius: 10px;
    }
}

@media (max-width: 479.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .gallery-intro-title {
        font-size: 22px;
    }

    .gallery-intro-text {
        font-size: 15px;
    }

    .gallery-caption h3 {
        font-size: 16px;
    }
}

/* Gallery Modal CSS */
.custom-gallery-modal {
    display: none; 
    position: fixed; 
    z-index: 1050; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(9, 42, 73, 0.95); 
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1052;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: #0796fe;
    text-decoration: none;
    cursor: pointer;
}

.gallery-modal-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.gallery-modal-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1051;
}

.gallery-modal-controls .zoom-btn {
    background: #092a49;
    color: #ffffff;
    border: 2px solid #0796fe;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-modal-controls .zoom-btn:hover {
    background: #0796fe;
    color: #ffffff;
}

/*******************************/
/********** Team CSS ***********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 70px 0 30px 0;
    background: #ffffff;
}

.team .team-item {
    position: relative;
    margin-bottom: 45px;
    background: #f0f7fe; /* Light tint of brand bright blue #0796fe */
    border-radius: 200px; /* Forces full pill container shape */
    padding-top: 45px; /* Spacing for the text at top */
    box-shadow: 0 10px 30px rgba(9, 42, 73, 0.05); /* Brand shadow */
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team .team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(9, 42, 73, 0.15);
}

.team .team-text {
    position: relative;
    z-index: 3;
    padding: 0 20px 20px;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 500;
    color: #092a49; /* Primary */
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.team .team-text p {
    font-size: 14px;
    color: #0796fe; /* Secondary bright blue */
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team .team-img {
    position: relative;
    width: 100%;
    flex-grow: 1;
    aspect-ratio: 4 / 5; /* Vertically elongated image space */
    border-top-left-radius: 500px; /* Perfect arch cut out */
    border-top-right-radius: 500px;
    overflow: hidden;
    margin-top: 15px; /* Gap between text and image */
    background: rgba(9, 42, 73, 0.03); /* slight shading if image is small */
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team .team-item:hover .team-img img {
    transform: scale(1.08); /* Nice slow zoom to feel high-quality */
}

.team .team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(9, 42, 73, 0.9), rgba(9, 42, 73, 0));
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    padding-top: 10px;
}

.team .team-item:hover .team-social {
    bottom: 0px;
}

.team .team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    color: #ffffff;
    background: #0796fe;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team .team-social a:hover {
    background: #ffffff;
    color: #092a49;
    transform: translateY(-3px);
}

/* Premium compact corporate team tiles (index.html) */
.team.team--compact {
    background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
    padding: 55px 0 25px 0;
}

.team.team--compact .row {
    row-gap: 18px;
}

.team.team--compact .team-item {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    border: 1px solid rgba(9, 42, 73, 0.06);
    border-radius: 999px; /* vertical oval tile */
    padding: 18px 14px 16px;
    box-shadow: 0 10px 28px rgba(9, 42, 73, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: hidden;
    height: 320px; /* compact tile height */
}

.team.team--compact .team-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(9, 42, 73, 0.12);
}

.team.team--compact .team-img {
    width: 128px; /* smaller circular profile image */
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    margin: 14px 0 14px;
    background: #ffffff;
    border: 6px solid rgba(7, 150, 254, 0.12); /* soft blue accent ring */
    box-shadow: 0 10px 24px rgba(9, 42, 73, 0.10);
    flex: 0 0 auto;
}

.team.team--compact .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.team.team--compact .team-item:hover .team-img img {
    transform: scale(1.06);
}

.team.team--compact .team-text {
    padding: 0;
    margin-top: 2px;
}

.team.team--compact .team-text h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    color: #092a49;
}

.team.team--compact .team-text p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #0796fe;
}

/* Hide socials for this clean corporate variant */
.team.team--compact .team-social {
    display: none !important;
}

/* ===================================================================
   Our Amazing Team (modern minimal, 4-up carousel row)
   Palette (from site theme):
   - Primary:   #092a49
   - Accent:    #0796fe
   - Text:      #797979
   =================================================================== */
.team.team--amazing {
    padding: 70px 0 55px 0;
    background: linear-gradient(102deg, #fff 0%, #ffffff 85%);
}

.team.team--amazing .team-amazing-header {
    max-width: 720px;
    text-align: left;
    margin-bottom: 34px;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.team.team--amazing .team-amazing-carousel {
    position: relative;
}

.team.team--amazing .team-amazing-grid {
    margin-top: 6px;
}

.team.team--amazing .team-amazing-grid > [class*="col-"] {
    display: flex;
}

.team.team--amazing .team-amazing-grid .team-card {
    width: 100%;
}

.team.team--amazing .team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 270px;
    padding: 18px 16px 16px;
    background: #ffffff;
    border: 1px solid rgba(9, 42, 73, 0.08);
    border-radius: 18px;
    box-shadow:
        0 12px 36px rgba(9, 42, 73, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team.team--amazing .team-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(7, 150, 254, 0.25);
    box-shadow:
        0 18px 46px rgba(9, 42, 73, 0.12),
        0 6px 18px rgba(0, 0, 0, 0.06);
}

.team.team--amazing .team-card__img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    background: #ffffff;
    border: 5px solid rgba(7, 150, 254, 0.12);
    box-shadow: 0 10px 22px rgba(9, 42, 73, 0.10);
}

.team.team--amazing .team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.team.team--amazing .team-card:hover .team-card__img img {
    transform: scale(1.06);
}

.team.team--amazing .team-card__name {
    margin: 0 0 6px 0;
    font-family: 'Oswald', sans-serif; /* matches site headings */
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #092a49;
}

.team.team--amazing .team-card__role {
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    color: rgba(9, 42, 73, 0.65);
}

.team.team--amazing .team-card__desc {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 12.5px;
    line-height: 1.35;
    color: rgba(9, 42, 73, 0.70);
}

.team.team--amazing .team-card__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team.team--amazing .team-card__social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 150, 254, 0.10);
    border: 1px solid rgba(7, 150, 254, 0.16);
    color: #092a49;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.team.team--amazing .team-card__social a:hover {
    background: #0796fe;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(7, 150, 254, 0.30);
}


/* ============================================================
   ABOUT PAGE — premium redesign
   Scoped to .about-page  |  Colors: #092a49 · #0796fe
   ============================================================ */

.about-page .about-intro {
    width: 100%;
    padding: 52px 0 36px;
    background: linear-gradient(155deg, #f5faff 0%, #ffffff 55%, #eef5fc 100%);
    position: relative;
    overflow: hidden;
}

.about-page .about-intro::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7,150,254,0.06) 0%, transparent 68%);
    pointer-events: none;
}

.about-page .about-intro__header {
    max-width: 740px;
    margin-bottom: 18px;
}

.about-page .about-intro__header h2 {
    margin-left: 40px;
}

.about-page .about-intro__header .section-header p {
    font-weight: 600;
    color: #0796fe;
}

.about-page .about-intro > .container > p {
    max-width: 780px;
    color: #5a6472;
    font-size: 15px;
    line-height: 1.85;
    border-left: 3px solid #0796fe;
    padding: 10px 16px 10px 18px;
    background: rgba(7, 150, 254, 0.03);
    border-radius: 0 8px 8px 0;
    margin: 0;
    text-align: justify;
}

/* Quote/Highlight box */
.about-quote-box {
    background: rgba(7, 150, 254, 0.04);
    border-left: 4px solid #0796fe;
    padding: 24px;
    border-radius: 4px 16px 16px 4px;
    box-shadow: 0 4px 20px rgba(9, 42, 73, 0.04);
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-quote-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(9, 42, 73, 0.08);
}

.about-quote-box h4 {
    color: #092a49;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
}


