@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/**

* Template Name: Patron - Multipurpose Corporate and Security Service HTML Template
* Version: 2.1.0
* Author: Unicoder
* Email: unicoder16@gmail.com
* Developed By: Unicoder
* First Release: 2nd November, 2017
* Author URL: www.unicoderbd.com

**/

img.nav-logo {
    width: 130px;
    aspect-ratio:  auto 130/49;
}

.footer-logo img {
    width: 100px;
}

h1,
.h1 {
    font-size: 40px;
    font-weight: 600
}

h2,
.h2 {
    font-size: 32px;
    font-weight: 600
}

h3,
.h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
}

h4,
.h4 {
    font-size: 21px;
    font-weight: 500
}

h5,
.h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

/*============================
 Navigation
=============================*/
.dropdown-item {
    font-size: 14px;
    text-transform: capitalize;
}

.top-header {
    font-size: 14px
}

.top-header a {
    display: block;
}

.back_img{
    background-image: url(../images/background/img_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    background:linear-gradient(0deg, rgba(124, 122, 122, 0.3), rgba(118, 116, 117, 0.3));
}

.image-overlay-container {
    position: relative;
    display: inline-block;
}

.image-overlay-container .rev-slidebg {
    display: block;
    width: 100%;
    height: auto;
}

.image-overlay-container .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.tp-caption {
    position: relative;
    z-index: 2;
}
.footer-logo {
    height: auto !important;
}

.font-size{
    font-size: 21px!important;
}

.box-fixed-height{
        height: calc(100vh - 273px);
}

/* ==========================================
   NSF GROUP - Premium Header Redesign (2026)
   ========================================== */

:root {
    --nsf-navy: #0F172A;
    --nsf-gold: #C9A227;
    --nsf-gold-hover: #b08c1d;
    --nsf-white: #ffffff;
    --nsf-text-light: #f8fafc;
    --nsf-text-dark: #111827;
    --nsf-text-muted: #64748b;
    --nsf-font: 'Montserrat', 'Rajdhani', sans-serif;
    --nsf-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --nsf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base header structure */
header#header {
    width: 100%;
    z-index: 1030;
    background-color: var(--nsf-white);
    font-family: var(--nsf-font);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: var(--nsf-transition);
}

/* TOP INFORMATION BAR */
.nsf-topbar {
    background-color: var(--nsf-navy);
    color: var(--nsf-white);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nsf-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nsf-topbar-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.nsf-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nsf-topbar-item i {
    color: var(--nsf-gold);
    font-size: 14px;
}

.nsf-topbar-item a {
    color: var(--nsf-white);
    text-decoration: none;
    transition: var(--nsf-transition);
}

.nsf-topbar-item a:hover {
    color: var(--nsf-gold);
}

/* MAIN NAVBAR */
.nsf-navbar {
    background-color: var(--nsf-white);
    padding: 20px 0;
    transition: var(--nsf-transition);
    border-bottom: 1px solid #f1f5f9;
}

.nsf-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nsf-logo-link {
    display: inline-block;
    padding: 0;
}

.nsf-logo-img {
    height: 65px; /* Increased logo size by 30-40% */
    width: auto;
    display: block;
    transition: var(--nsf-transition);
}

/* NAVIGATION MENU */
.nsf-nav-menu {
    display: flex;
    align-items: center;
}

.nsf-nav-list {
    display: flex;
    align-items: center;
    gap: 28px; /* Balanced spacing */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nsf-nav-item {
    position: relative;
    padding: 10px 0;
}

.nsf-nav-link {
    color: var(--nsf-text-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--nsf-transition);
}

.nsf-nav-link:hover {
    color: var(--nsf-gold);
}

/* Underline Hover and Active indicators */
.nsf-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--nsf-gold);
    transition: var(--nsf-transition);
}

.nsf-nav-link:hover::after,
.nsf-nav-item.active > .nsf-nav-link::after {
    width: 100%;
}

.nsf-nav-item.active > .nsf-nav-link {
    color: var(--nsf-gold);
}

/* DROPDOWNS */
.nsf-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--nsf-white);
    min-width: 250px;
    border-radius: 4px;
    box-shadow: var(--nsf-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--nsf-transition);
    padding: 15px 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    border-top: 3px solid var(--nsf-navy);
}

.nsf-dropdown:hover .nsf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nsf-dropdown-link {
    display: block;
    padding: 8px 24px;
    color: var(--nsf-text-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--nsf-transition);
}

.nsf-dropdown-link:hover {
    background-color: #f8fafc;
    color: var(--nsf-gold);
    padding-left: 28px;
}

.nsf-nav-link i.dropdown-arrow {
    font-size: 10px;
    transition: var(--nsf-transition);
}

.nsf-dropdown:hover .nsf-nav-link i.dropdown-arrow {
    transform: rotate(180deg);
}

/* STICKY NAVBAR STATES */
header#header.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--nsf-shadow);
    animation: nsfSlideDown 0.4s ease-out;
}

header#header.fixed-top .nsf-topbar {
    margin-top: -45px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

header#header.fixed-top .nsf-navbar {
    padding: 12px 0;
    border-bottom: none;
}

header#header.fixed-top .nsf-logo-img {
    height: 52px;
}

@keyframes nsfSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* MOBILE TOGGLE / HAMBURGER */
.nsf-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.nsf-hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--nsf-navy);
    border-radius: 2px;
    transition: var(--nsf-transition);
}

/* MOBILE SLIDE DRAWER & OVERLAY */
.nsf-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 31, 77, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--nsf-transition);
}

.nsf-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nsf-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--nsf-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
}

.nsf-drawer.active {
    right: 0;
}

.nsf-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.nsf-drawer-logo {
    height: 50px;
    width: auto;
}

.nsf-drawer-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--nsf-navy);
    cursor: pointer;
    transition: var(--nsf-transition);
    outline: none;
    padding: 0;
}

.nsf-drawer-close:hover {
    color: var(--nsf-gold);
}

.nsf-drawer-menu {
    flex: 1;
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.nsf-drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nsf-drawer-item {
    width: 100%;
}

.nsf-drawer-link {
    color: var(--nsf-navy);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--nsf-transition);
}

.nsf-drawer-link:hover,
.nsf-drawer-link.active {
    color: var(--nsf-gold);
    border-bottom-color: var(--nsf-gold);
}

.nsf-drawer-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    margin: 8px 0 0 0;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.nsf-drawer-sublink {
    color: var(--nsf-text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--nsf-transition);
    display: block;
    padding: 4px 0;
}

.nsf-drawer-sublink:hover,
.nsf-drawer-sublink.active {
    color: var(--nsf-gold);
}

body.nsf-drawer-open {
    overflow: hidden !important;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 991.98px) {
    .nsf-hamburger {
        display: flex;
    }
    .nsf-topbar-info {
        gap: 20px;
    }
    .nsf-logo-img {
        height: 55px;
    }
}

@media (max-width: 767.98px) {
    .nsf-topbar {
        display: none !important; /* Hide topbar on mobile to maintain vertical space */
    }
    .nsf-logo-img {
        height: 48px;
    }
    header#header.fixed-top .nsf-logo-img {
        height: 44px;
    }
}

/* ==========================================
   NSF GROUP - Premium Hero Section Redesign
   ========================================== */

#nsf-hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    padding: 180px 0 100px 0;
    background-image: url('../images/background/img_2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--nsf-white);
    z-index: 1;
}

/* Dark gradient overlay for extreme contrast and premium feel */
#nsf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(11, 31, 77, 0.95) 0%,
        rgba(11, 31, 77, 0.8) 50%,
        rgba(15, 23, 42, 0.55) 100%
    );
    z-index: -1;
}

/* Decorative ambient glow element behind the glass card */
.nsf-hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 186, 0, 0.15) 0%, rgba(255, 186, 0, 0) 70%);
    top: 20%;
    right: 10%;
    z-index: -1;
    pointer-events: none;
    animation: nsfGlowFloat 8s ease-in-out infinite alternate;
}

@keyframes nsfGlowFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* HERO LEFT SIDE CONTENT */
.nsf-hero-content {
    position: relative;
    z-index: 2;
}

.nsf-hero-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nsf-gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: nsfFadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.nsf-hero-tagline::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--nsf-gold);
}

.nsf-hero-title {
    font-family: var(--nsf-font);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--nsf-white);
    margin-bottom: 15px;
    opacity: 0;
    animation: nsfSlideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.nsf-hero-second-line {
    font-family: var(--nsf-font);
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.3;
    opacity: 0;
    animation: nsfSlideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.5s;
}

.nsf-hero-subtitle {
    font-size: 16px;
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: nsfFadeIn 1s ease-out forwards;
    animation-delay: 0.7s;
}

/* BUTTONS */
.nsf-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: nsfSlideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.8s;
}

.nsf-btn-primary {
    background-color: var(--nsf-gold);
    color: var(--nsf-navy) !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: var(--nsf-transition);
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.2);
    border: 2px solid var(--nsf-gold);
}

.nsf-btn-primary:hover {
    background-color: transparent;
    color: var(--nsf-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 186, 0, 0.35);
}

.nsf-btn-secondary {
    background-color: transparent;
    color: var(--nsf-white) !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: var(--nsf-transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nsf-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--nsf-white);
    transform: translateY(-2px);
}

/* TRUST BADGES */
.nsf-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    opacity: 0;
    animation: nsfFadeIn 1s ease-out forwards;
    animation-delay: 1s;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.nsf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.nsf-hero-badge i {
    color: var(--nsf-gold);
    font-size: 14px;
}

/* HERO RIGHT SIDE - GLASSMORPHISM CARD */
.nsf-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    opacity: 0;
    animation: nsfSlideUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.6s;
}

.nsf-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 35px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    animation: nsfFloat 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* ambient line glow top card */
.nsf-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 186, 0, 0.6), transparent);
}

.nsf-stats-title {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nsf-stats-title i {
    color: var(--nsf-gold);
}

.nsf-stats-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nsf-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nsf-stat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 186, 0, 0.1);
    border: 1px solid rgba(255, 186, 0, 0.25);
    border-radius: 10px;
    color: var(--nsf-gold);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--nsf-transition);
}

.nsf-stat-item:hover .nsf-stat-icon {
    background-color: var(--nsf-gold);
    color: var(--nsf-navy);
    transform: rotateY(360deg);
}

.nsf-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--nsf-white);
    line-height: 1.1;
    margin-bottom: 2px;
}

.nsf-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ANIMATION KEYFRAMES */
@keyframes nsfFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes nsfSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nsfFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE HERO SECTION */
@media (max-width: 1199.98px) {
    .nsf-hero-title {
        font-size: 44px;
    }
    #nsf-hero {
        min-height: auto;
        padding: 160px 0 80px 0;
    }
}

@media (max-width: 991.98px) {
    #nsf-hero {
        padding: 140px 0 70px 0;
    }
    .nsf-hero-title {
        font-size: 38px;
    }
    .nsf-hero-visual {
        justify-content: center;
        margin-top: 50px;
    }
    .nsf-stats-card {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .nsf-hero-title {
        font-size: 30px;
    }
    .nsf-hero-second-line {
        font-size: 18px;
    }
    .nsf-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .nsf-btn-primary, .nsf-btn-secondary {
        text-align: center;
        width: 100%;
    }
    .nsf-hero-badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================
   NSF GROUP - Premium Service Info Redesign
   ========================================== */

.nsf-service-info-section {
    background-color: var(--nsf-navy);
    color: var(--nsf-white);
    padding: 90px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nsf-section-title {
    font-family: var(--nsf-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--nsf-gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsf-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--nsf-gold);
}

.nsf-service-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.nsf-service-text p {
    margin-bottom: 20px;
}

/* Column 2 - Expertise List */
.nsf-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nsf-expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.nsf-expertise-item i {
    color: var(--nsf-gold);
    font-size: 14px;
    margin-top: 4px;
}

/* Column 3 - CEO Card */
.nsf-ceo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--nsf-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nsf-ceo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.nsf-ceo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--nsf-gold);
}

.nsf-ceo-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--nsf-gold);
    margin-bottom: 25px;
    display: block;
}

.nsf-ceo-avatar-wrapper {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.nsf-ceo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--nsf-gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.nsf-ceo-card:hover .nsf-ceo-avatar {
    transform: scale(1.05);
}

.nsf-ceo-info {
    margin-bottom: 20px;
}

.nsf-ceo-name {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-white);
    margin: 0 0 6px 0;
}

.nsf-ceo-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nsf-ceo-message {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.nsf-ceo-readmore {
    font-size: 14px;
    font-weight: 700;
    color: var(--nsf-gold);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--nsf-transition);
    margin-top: auto;
}

.nsf-ceo-readmore:hover {
    color: var(--nsf-white);
}

.nsf-ceo-readmore i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nsf-ceo-readmore:hover i {
    transform: translateX(4px);
}

/* ==========================================
   NSF GROUP - Premium Services Section Redesign
   ========================================== */

.nsf-services-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    overflow: hidden;
}

/* Dark gradient overlay for deep enterprise contrast */
.nsf-services-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(11, 31, 77, 0.96) 0%,
        rgba(11, 31, 77, 0.92) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 2;
}

.nsf-services-tagline {
    font-size: 12px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.nsf-services-heading {
    font-family: var(--nsf-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--nsf-white);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Heading Animated Gold Accent Line */
.nsf-heading-accent {
    width: 60px;
    height: 3px;
    background: var(--nsf-gold);
    margin: 18px auto 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.nsf-heading-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: accentGlow 2.5s infinite linear;
}

@keyframes accentGlow {
    0% { left: -50px; }
    100% { left: 100px; }
}

.nsf-services-subtitle {
    font-family: var(--nsf-font);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Service Card Design */
.nsf-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; /* 16px to 20px rounded corners */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.nsf-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 186, 0, 0.08);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: -1;
}

/* Card Hover Animations */
.nsf-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 186, 0, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.nsf-service-card:hover::before {
    opacity: 1;
}

/* Card Image Banner */
.nsf-card-banner-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.nsf-card-banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(11, 31, 77, 0.95), transparent);
    z-index: 2;
}

.nsf-card-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nsf-service-card:hover .nsf-card-banner {
    transform: scale(1.08);
}

/* Overlapping Icon Badge */
.nsf-card-icon-wrapper {
    position: absolute;
    top: 170px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #0f1c3f; /* Deep corporate navy background */
    border: 2px solid var(--nsf-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 3;
    transition: all 0.3s ease;
}

.nsf-service-card:hover .nsf-card-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 186, 0, 0.25);
    background: var(--nsf-gold);
}

.nsf-card-icon-wrapper i.icon {
    font-size: 24px;
    color: var(--nsf-gold);
    transition: color 0.3s ease;
}

.nsf-service-card:hover .nsf-card-icon-wrapper i.icon {
    color: #0f1c3f;
}

/* Card Body */
.nsf-card-body {
    padding: 45px 30px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.nsf-card-title {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-white);
    margin: 0 0 14px 0;
    transition: color 0.3s ease;
}

.nsf-service-card:hover .nsf-card-title {
    color: var(--nsf-gold);
}

.nsf-card-description {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Card Footer / Link */
.nsf-card-footer {
    margin-top: auto;
}

.nsf-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--nsf-transition);
}

.nsf-card-link i.arrow-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.nsf-service-card:hover .nsf-card-link {
    color: var(--nsf-white);
}

.nsf-service-card:hover .nsf-card-link i.arrow-icon {
    transform: translateX(6px);
}

/* More Services Centered Button */
.nsf-services-more-btn {
    background: var(--nsf-gold);
    color: #0B1F4D !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(255, 186, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nsf-services-more-btn:hover {
    background: var(--nsf-white);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
}

/* ==========================================
   NSF GROUP - Premium Feature Cards Redesign
   ========================================== */

.nsf-feature-card {
    background-color: #ffffff;
    /* Subtle background pattern with very low opacity */
    background-image: radial-gradient(rgba(11, 31, 77, 0.025) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    border-radius: 16px; /* 12px-16px rounded corners */
    border: 1px solid rgba(11, 31, 77, 0.06);
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%; /* Equal height cards */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Subtle hover lift and shadow */
.nsf-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.1);
    border-color: rgba(11, 31, 77, 0.12);
}

/* Gold top accent line */
.nsf-feature-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--nsf-gold);
    transition: height 0.3s ease;
}

.nsf-feature-card:hover .nsf-feature-card-accent {
    height: 6px;
}

/* Professional icon above heading */
.nsf-feature-icon-box {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 186, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.nsf-feature-icon-box i {
    font-size: 22px;
    color: var(--nsf-navy);
    transition: color 0.3s ease;
}

/* Hover icon box interactions */
.nsf-feature-card:hover .nsf-feature-icon-box {
    background-color: var(--nsf-navy);
}

.nsf-feature-card:hover .nsf-feature-icon-box i {
    color: var(--nsf-gold);
}

.nsf-feature-title {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin: 0 0 16px 0;
    transition: color 0.3s ease;
}

.nsf-feature-card:hover .nsf-feature-title {
    color: var(--nsf-gold);
}

/* Improved spacing and line-height readability */
.nsf-feature-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

/* ==========================================
   NSF GROUP - Premium Assistance Banner Redesign
   ========================================== */

.nsf-assistance-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}

/* Horizontal linear dark gradient overlay for AAA text contrast */
.nsf-assistance-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(11, 31, 77, 0.98) 0%,
        rgba(11, 31, 77, 0.92) 35%,
        rgba(11, 31, 77, 0.65) 70%,
        rgba(11, 31, 77, 0.25) 100%
    );
    z-index: 2;
}

.nsf-assistance-content {
    position: relative;
    z-index: 3;
}

/* Modern, clean gold accent bar above heading */
.nsf-assistance-accent-line {
    width: 50px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

.nsf-assistance-heading {
    font-family: var(--nsf-font);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--nsf-white);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.nsf-assistance-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

/* Premium corporate gold CTA button */
.nsf-assistance-btn {
    background-color: var(--nsf-gold);
    color: #0B1F4D !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(255, 186, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nsf-assistance-btn:hover {
    background-color: var(--nsf-white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.nsf-assistance-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nsf-assistance-btn:hover i {
    transform: rotate(15deg);
}

/* Mobile responsive padding and typography */
@media (max-width: 767.98px) {
    .nsf-assistance-section {
        padding: 90px 0;
    }
    .nsf-assistance-heading {
        font-size: 28px;
    }
    .nsf-assistance-text {
        font-size: 14.5px;
    }
}

/* ==========================================
   NSF GROUP - Premium Our Team Section Redesign
   ========================================== */

.nsf-team-showcase {
    position: relative;
    background-color: #f8fafc; /* Premium light gray background */
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

/* Subtle security-themed radial dot pattern */
.nsf-team-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(11, 31, 77, 0.015) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

/* Enhanced Image Wrapper */
.nsf-team-img-wrapper {
    position: relative;
    border-radius: 16px; /* 12px-16px rounded corners */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 186, 0, 0.15); /* Thin gold accent border */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nsf-team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image Wrapper Hover Interaction */
.nsf-team-img-wrapper:hover {
    box-shadow: 0 20px 45px rgba(255, 186, 0, 0.12), 0 0 20px rgba(255, 186, 0, 0.05);
    border-color: rgba(255, 186, 0, 0.4);
}

.nsf-team-img-wrapper:hover .nsf-team-img {
    transform: scale(1.04); /* Subtle hover zoom effect */
}

/* Content Elements styling */
.nsf-team-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.nsf-team-heading {
    font-family: var(--nsf-font);
    font-size: 34px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.nsf-team-paragraphs {
    max-width: 630px;
}

.nsf-team-p {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Security Disciplines Badge Cards Grid */
.nsf-discipline-badge {
    background: #ffffff;
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Badge hover state */
.nsf-discipline-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 31, 77, 0.06);
    border-color: rgba(255, 186, 0, 0.3);
}

/* Badge Icon styling */
.nsf-discipline-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 186, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nsf-discipline-icon i {
    font-size: 16px;
    color: var(--nsf-gold);
    transition: color 0.3s ease;
}

/* Hover icon box interactions */
.nsf-discipline-badge:hover .nsf-discipline-icon {
    background-color: var(--nsf-navy);
}

.nsf-discipline-badge:hover .nsf-discipline-icon i {
    color: var(--nsf-gold);
}

/* Badge Title */
.nsf-discipline-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--nsf-navy);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.nsf-discipline-badge:hover .nsf-discipline-name {
    color: var(--nsf-gold);
}

/* ==========================================
   NSF GROUP - Premium Team Leaders Redesign
   ========================================== */

.nsf-leaders-section {
    position: relative;
    background-color: #f8fafc; /* Keep existing light background */
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.nsf-leaders-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(11, 31, 77, 0.015) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.nsf-leaders-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.nsf-leaders-heading {
    font-family: var(--nsf-font);
    font-size: 34px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin: 0;
    letter-spacing: -0.5px;
}

.nsf-leaders-divider {
    width: 50px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* Premium Card Design */
.nsf-leader-card {
    background: #ffffff;
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 16px; /* 16px rounded corners */
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nsf-leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.1);
    border-color: var(--nsf-gold);
}

/* Image Wrapper with rounded top corners */
.nsf-leader-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(11, 31, 77, 0.05);
}

.nsf-leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nsf-leader-card:hover .nsf-leader-img {
    transform: scale(1.05);
}

/* Card Content Design */
.nsf-leader-info {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nsf-leader-name {
    font-family: var(--nsf-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.nsf-leader-role {
    font-size: 13px;
    color: rgba(11, 31, 77, 0.6);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsf-leader-card:hover .nsf-leader-name {
    color: var(--nsf-gold);
}

/* View All button styling */
.nsf-leaders-view-btn {
    background: transparent;
    border: 2px solid var(--nsf-gold);
    color: var(--nsf-navy);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nsf-leaders-view-btn:hover {
    background: var(--nsf-gold);
    color: #0B1F4D !important;
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 186, 0, 0.25);
}

/* Responsive Show-First-Row selector logic */
/* Mobile: Hide from index 2 onwards */
.nsf-leaders-grid .col:nth-child(n+2) {
    display: none;
}

/* Tablet (min-width: 768px): Show up to index 2, hide index 3 onwards */
@media (min-width: 768px) {
    .nsf-leaders-grid .col:nth-child(n+2) {
        display: block;
    }
    .nsf-leaders-grid .col:nth-child(n+3) {
        display: none;
    }
}

/* Desktop (min-width: 1200px): Show up to index 4, hide index 5 onwards */
@media (min-width: 1200px) {
    .nsf-leaders-grid .col:nth-child(n+3) {
        display: block;
    }
    .nsf-leaders-grid .col:nth-child(n+5) {
        display: none;
    }
}

/* When expanded, override all hidden displays to show all cards */
.nsf-leaders-grid.nsf-show-all .col {
    display: block !important;
}

/* ==========================================
   NSF GROUP - Premium References Section Redesign
   ========================================== */

.nsf-references-section {
    position: relative;
    background-color: #ffffff; /* White background to contrast with light gray */
    padding: 90px 0;
    overflow: hidden;
    z-index: 1;
}

.nsf-references-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.nsf-references-heading {
    font-family: var(--nsf-font);
    font-size: 34px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin: 0;
    letter-spacing: -0.5px;
}

.nsf-references-divider {
    width: 50px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* References marquee container */
.nsf-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

/* Gradient masks on left and right for fade-out edge effects */
.nsf-marquee-container::before,
.nsf-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.nsf-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.nsf-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* Flex wrapper that hosts the infinite moving animation */
.nsf-marquee-content {
    display: flex;
    width: max-content;
    animation: nsfMarqueeScroll 25s linear infinite;
}

/* Pause scroll on mouse hover */
.nsf-marquee-container:hover .nsf-marquee-content {
    animation-play-state: paused;
}

/* Flex group consisting of 8 items and gap */
.nsf-marquee-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px; /* Crucial padding to align loop perfectly */
}

@keyframes nsfMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Shift by exactly one full group width for seamless wrapping */
    }
}

/* Individual card styling for each partner logo */
.nsf-partner-card-scroll {
    background: #ffffff;
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 16px;
    padding: 22px 30px;
    width: 190px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(11, 31, 77, 0.02);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
}

/* Full colors on logo, no grayscale filters */
.nsf-partner-card-scroll img {
    max-height: 55px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover outline glow and lift */
.nsf-partner-card-scroll:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 186, 0, 0.35);
    box-shadow: 0 10px 22px rgba(11, 31, 77, 0.07);
}

.nsf-partner-card-scroll:hover img {
    transform: scale(1.05);
}

/* Responsiveness settings */
@media (max-width: 767.98px) {
    .nsf-references-section {
        padding: 70px 0;
    }
    .nsf-references-heading {
        font-size: 28px;
    }
    .nsf-partner-card-scroll {
        width: 160px;
        height: 90px;
        padding: 18px 22px;
    }
    .nsf-partner-card-scroll img {
        max-height: 48px;
    }
    .nsf-marquee-group {
        gap: 20px;
        padding-right: 20px;
    }
    .nsf-marquee-container {
        padding: 20px 0;
    }
}

/* ==========================================
   NSF GROUP - Premium Trust Bar Redesign
   ========================================== */

.nsf-trust-bar-section {
    background-color: var(--nsf-navy);
    padding: 35px 0;
    border-bottom: 2px solid var(--nsf-gold);
    position: relative;
    z-index: 2;
}

.nsf-trust-bar-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.nsf-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--nsf-white);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsf-trust-badge i {
    color: var(--nsf-gold);
    font-size: 18px;
}

/* ==========================================
   NSF GROUP - Premium Footer Redesign
   ========================================== */

.nsf-premium-footer {
    position: relative;
    background: linear-gradient(135deg, #040D21 0%, #0B1F4D 100%);
    color: #cbd5e1;
    font-family: var(--nsf-font);
    padding: 90px 0 0 0;
    overflow: hidden;
    z-index: 1;
}

.nsf-footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 186, 0, 0.015) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

/* Footer Widget Base */
.nsf-footer-widget {
    margin-bottom: 30px;
}

.nsf-footer-logo-wrapper {
    margin-bottom: 25px;
}

.nsf-footer-logo {
    height: 60px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nsf-footer-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.85);
    margin-bottom: 25px;
}

/* Mini Trust Badges */
.nsf-footer-mini-badges {
    display: flex;
    gap: 12px;
}

.nsf-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 186, 0, 0.06);
    border: 1px solid rgba(255, 186, 0, 0.2);
    color: var(--nsf-gold);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsf-mini-badge i {
    font-size: 12px;
}

/* Widget Title */
.nsf-footer-title {
    font-family: var(--nsf-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--nsf-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.nsf-footer-divider-gold {
    width: 35px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Links lists styling */
.nsf-footer-links-list,
.nsf-footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nsf-footer-links-list li a {
    color: rgba(203, 213, 225, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    transition: var(--nsf-transition);
}

.nsf-footer-links-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--nsf-gold);
    transition: var(--nsf-transition);
}

.nsf-footer-links-list li a:hover {
    color: var(--nsf-gold);
}

.nsf-footer-links-list li a:hover::after {
    width: 100%;
}

/* Services custom list */
.nsf-footer-services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(203, 213, 225, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--nsf-transition);
}

.nsf-footer-services-list li a i {
    color: var(--nsf-gold);
    font-size: 13px;
    transition: var(--nsf-transition);
}

.nsf-footer-services-list li a:hover {
    color: var(--nsf-gold);
    padding-left: 6px;
}

.nsf-footer-services-list li a:hover i {
    transform: scale(1.1);
}

/* Contact List */
.nsf-footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nsf-footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.nsf-footer-contact-info li i {
    color: var(--nsf-gold);
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.nsf-footer-contact-info li a {
    color: rgba(203, 213, 225, 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: var(--nsf-transition);
}

.nsf-footer-contact-info li a:hover {
    color: var(--nsf-gold);
}

/* Social Media Section */
.nsf-footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 35px;
}

.nsf-social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--nsf-white);
    border-radius: 50%;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nsf-social-btn:hover {
    background-color: var(--nsf-gold);
    color: var(--nsf-navy) !important;
    border-color: var(--nsf-gold);
    transform: scale(1.12) rotate(360deg);
}

/* Bottom Strip */
.nsf-footer-bottom {
    background-color: rgba(4, 13, 33, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    margin-top: 10px;
}

.nsf-copyright {
    font-size: 13px;
    font-weight: 500;
    color: rgba(203, 213, 225, 0.5);
    letter-spacing: 0.5px;
}

/* Responsiveness Settings */
@media (max-width: 991.98px) {
    .nsf-premium-footer {
        padding: 70px 0 0 0;
    }
    .nsf-footer-socials {
        padding-top: 25px;
    }
    .nsf-trust-bar-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
        text-align: center;
    }
    .nsf-trust-badge {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .nsf-trust-bar-grid {
        grid-template-columns: 1fr;
    }
    .nsf-premium-footer {
        text-align: left;
    }
    .nsf-footer-mini-badges {
        justify-content: flex-start;
    }
}

/* ==========================================
   NSF GROUP - Premium About Us Redesign
   ========================================== */

.nsf-about-hero {
    position: relative;
    background-image: url('../images/background/8.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    padding-top: 140px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.nsf-about-hero-content {
    padding: 80px 0;
    width: 100%;
}

.nsf-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 77, 0.95) 0%, rgba(11, 31, 77, 0.7) 100%);
    z-index: -1;
}

.nsf-about-hero-title {
    font-family: var(--nsf-font);
    font-size: 44px;
    font-weight: 800;
    color: var(--nsf-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    animation: nsfFadeIn 1s ease-out forwards;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nsf-about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: nsfSlideUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.nsf-about-breadcrumb li,
.nsf-about-breadcrumb li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--nsf-transition);
}

.nsf-about-breadcrumb li a:hover {
    color: var(--nsf-gold);
}

.nsf-about-breadcrumb li.active {
    color: var(--nsf-gold);
    opacity: 0.8;
}

/* Page content section styling */
.nsf-about-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    position: relative;
    padding-left: 25px;
}

.nsf-about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--nsf-gold);
}

.nsf-about-heading {
    font-family: var(--nsf-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.nsf-about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0;
}

/* Card Design for Vision/Mission */
.nsf-about-card {
    background: #ffffff;
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(11, 31, 77, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nsf-about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 31, 77, 0.08);
    border-color: var(--nsf-gold);
}

.nsf-about-card-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(255, 186, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.nsf-about-card:hover .nsf-about-card-icon-wrapper {
    background-color: var(--nsf-navy);
}

.nsf-about-card-icon {
    width: 32px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nsf-about-card:hover .nsf-about-card-icon {
    transform: scale(1.08);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

.nsf-about-card-title {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin: 0 0 16px 0;
    transition: color 0.3s ease;
}

.nsf-about-card:hover .nsf-about-card-title {
    color: var(--nsf-gold);
}

.nsf-about-card-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .nsf-about-hero {
        padding-top: 0;
    }
    .nsf-about-hero-content {
        padding: 50px 0;
    }
    .nsf-about-hero-title {
        font-size: 36px;
    }
    .nsf-about-heading {
        font-size: 30px;
    }
}

/* ==========================================
   NSF GROUP - Premium Global Offices Showcase
   ========================================== */

.nsf-offices-section {
    position: relative;
    background: linear-gradient(135deg, #050b14 0%, #0c1a30 50%, #050b14 100%) !important;
    background-size: 200% 200% !important;
    animation: nsfGradientShift 15s ease infinite !important;
    padding: 100px 0 !important;
    overflow: hidden;
    z-index: 1;
}

.nsf-offices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 186, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 186, 0, 0.04) 0%, transparent 40%),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 24px 24px;
    z-index: -1;
}

.nsf-offices-header {
    text-align: center;
    margin-bottom: 60px;
}

.nsf-offices-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.nsf-offices-heading {
    font-family: var(--nsf-font);
    font-size: 40px;
    font-weight: 800;
    color: var(--nsf-white) !important;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.nsf-offices-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--nsf-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
    animation: nsfGlowLine 3s ease-in-out infinite alternate;
}

.nsf-office-card {
    position: relative;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 18px !important;
    padding: 40px 30px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--nsf-transition) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.nsf-office-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--nsf-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--nsf-transition);
}

.nsf-office-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 186, 0, 0.5) !important;
    background: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 186, 0, 0.15) !important;
}

.nsf-office-card:hover::after {
    transform: scaleX(1);
}

.nsf-office-map-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: var(--nsf-transition);
    z-index: 10;
    text-decoration: none;
}

.nsf-office-map-btn i {
    font-size: 14px;
    transition: var(--nsf-transition);
}

.nsf-office-card:hover .nsf-office-map-btn {
    background: rgba(255, 186, 0, 0.1);
    border-color: rgba(255, 186, 0, 0.3);
    color: var(--nsf-gold) !important;
}

.nsf-office-map-btn:hover {
    background: var(--nsf-gold) !important;
    color: var(--nsf-navy) !important;
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.5);
}

.nsf-pin-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--nsf-gold);
    opacity: 0;
    z-index: -1;
    transform: scale(1);
    transition: var(--nsf-transition);
}

.nsf-office-map-btn:hover .nsf-pin-glow {
    animation: nsfPinPulse 1.5s infinite;
}

.nsf-office-card:hover .nsf-office-map-btn i {
    animation: nsfPinBounce 1s ease infinite;
}

.nsf-office-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 186, 0, 0.06);
    border: 1px solid rgba(255, 186, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: var(--nsf-transition);
    z-index: 1;
}

.nsf-office-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--nsf-gold);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--nsf-transition);
    z-index: -1;
}

.nsf-office-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: var(--nsf-transition);
}

.nsf-office-card:hover .nsf-office-icon-wrapper {
    border-color: var(--nsf-gold);
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.3);
}

.nsf-office-card:hover .nsf-office-icon-wrapper::before {
    opacity: 1;
    transform: scale(1);
}

.nsf-office-card:hover .nsf-office-icon {
    transform: scale(1.15);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(340deg) brightness(0.15);
}

.nsf-office-title {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-white) !important;
    margin-bottom: 15px;
    transition: var(--nsf-transition);
}

.nsf-office-card:hover .nsf-office-title {
    color: var(--nsf-gold) !important;
}

.nsf-office-address {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
    transition: var(--nsf-transition);
}

.nsf-office-card:hover .nsf-office-address {
    color: var(--nsf-white) !important;
}

/* Animations */
@keyframes nsfGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes nsfGlowLine {
    from { width: 60px; opacity: 0.8; box-shadow: 0 0 5px rgba(255, 186, 0, 0.3); }
    to { width: 100px; opacity: 1; box-shadow: 0 0 15px rgba(255, 186, 0, 0.8); }
}

@keyframes nsfPinPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes nsfPinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 991.98px) {
    .nsf-offices-section {
        padding: 70px 0 !important;
    }
    .nsf-offices-heading {
        font-size: 32px;
    }
    .nsf-office-card {
        padding: 35px 25px !important;
    }
}

/*=========================================
  Redesigned Premium Contact Section
=========================================*/
.nsf-question-section {
    position: relative;
    padding: 100px 0;
    background-image: linear-gradient(rgba(11, 31, 77, 0.75), rgba(11, 31, 77, 0.85)), url('../images/background/img_2.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

.nsf-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 45px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes nsfFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nsf-contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.nsf-contact-title {
    color: var(--nsf-white) !important;
    font-family: var(--nsf-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsf-title-divider {
    width: 70px;
    height: 3px;
    background: var(--nsf-gold);
    margin: 0 auto;
    border-radius: 2px;
    animation: nsfDividerGlow 3s infinite ease-in-out;
}

@keyframes nsfDividerGlow {
    0%, 100% {
        width: 70px;
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(255, 186, 0, 0.3);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 186, 0, 0.8);
    }
}

/* Glass Form & Inputs */
.nsf-glass-form {
    width: 100%;
}

.nsf-input-group {
    position: relative;
    margin-bottom: 28px;
}

.nsf-form-control {
    width: 100%;
    height: 54px;
    padding: 12px 20px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--nsf-white) !important;
    font-family: var(--nsf-font);
    font-size: 15px;
    font-weight: 500;
    transition: var(--nsf-transition);
    backdrop-filter: blur(4px);
}

textarea.nsf-form-control {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

/* Floating labels */
.nsf-form-label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--nsf-font);
    font-size: 15px;
    font-weight: 500;
    pointer-events: none;
    transition: var(--nsf-transition);
    line-height: 1;
}

textarea.nsf-form-control ~ .nsf-form-label {
    top: 25px;
    transform: none;
}

/* Focus and not-empty state for label */
.nsf-form-control:focus ~ .nsf-form-label,
.nsf-form-control:not(:placeholder-shown) ~ .nsf-form-label {
    top: 0;
    left: 15px;
    transform: translateY(-50%) scale(0.85);
    background: #0B1F4D; /* var(--nsf-navy) to block border line */
    padding: 2px 8px;
    color: var(--nsf-gold);
    border-radius: 4px;
    font-weight: 600;
}

/* Icons */
.nsf-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    transition: var(--nsf-transition);
}

textarea.nsf-form-control ~ .nsf-input-icon {
    top: 18px;
    transform: none;
}

/* Focus States */
.nsf-form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nsf-gold) !important;
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.3);
}

.nsf-form-control:focus ~ .nsf-input-icon {
    color: var(--nsf-gold);
}

/* Error Messages styling */
.nsf-error-span {
    position: absolute;
    bottom: -20px;
    left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ff4d4d !important;
    font-family: var(--nsf-font);
}

/* Premium Gold Button */
.nsf-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nsf-gold);
    color: var(--nsf-navy) !important;
    border: none;
    border-radius: 30px;
    padding: 14px 45px;
    font-family: var(--nsf-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--nsf-transition);
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nsf-submit-btn:hover {
    background: var(--nsf-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 186, 0, 0.5);
}

.nsf-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.3);
}

.nsf-submit-btn i {
    transition: transform 0.3s ease;
}

.nsf-submit-btn:hover i {
    transform: translateX(4px);
}

/* Toastr notifications overrides if needed */
#toast-container > div {
    opacity: 0.95;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustment */
@media (max-width: 767.98px) {
    .nsf-question-section {
        padding: 70px 0;
    }
    .nsf-contact-card {
        padding: 35px 20px;
    }
    .nsf-contact-title {
        font-size: 26px;
    }
    .nsf-submit-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/*=========================================
  Global Responsiveness Adjustments
=========================================*/

/* 1. Global Overflow Prevention */
html, body, #page-wrapper {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* 2. Header laptop screen nav item wrapping prevention */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .nsf-nav-list {
        gap: 16px !important;
    }
    .nsf-nav-link {
        font-size: 13px !important;
    }
}

/* 3. Hide desktop navigation on mobile/tablet to avoid overlapping logo/burger */
@media (max-width: 991.98px) {
    .nsf-nav-menu {
        display: none !important;
    }
}

/* 4. Ultra-small screens drawer width adjustment */
@media (max-width: 359.98px) {
    .nsf-drawer {
        width: 280px !important;
        right: -280px;
    }
    .nsf-drawer.active {
        right: 0 !important;
    }
}

/* 5. Service Info Section Mobile Spacing & Typography */
@media (max-width: 767.98px) {
    .nsf-service-info-section {
        padding: 60px 0 !important;
    }
    .nsf-section-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    .nsf-ceo-card {
        padding: 25px 20px !important;
        margin-top: 20px;
    }
}

/* 6. What We Do Services Section Mobile Spacing & Typography */
@media (max-width: 767.98px) {
    .nsf-services-section {
        padding: 60px 0 !important;
    }
    .nsf-services-heading {
        font-size: 28px !important;
    }
    .nsf-service-card {
        margin-bottom: 10px;
    }
}

/* 7. Getting Assistance Banner Mobile Spacing & Typography */
@media (max-width: 767.98px) {
    .nsf-assistance-section {
        padding: 60px 0 !important;
    }
    .nsf-assistance-heading {
        font-size: 24px !important;
        line-height: 1.35 !important;
    }
    .nsf-assistance-btn {
        width: 100%;
        padding: 14px 20px !important;
        text-align: center;
        justify-content: center;
    }
}

/* 8. Our Team Section Mobile Spacing & Typography */
@media (max-width: 767.98px) {
    .nsf-team-showcase {
        padding: 60px 0 !important;
    }
    .nsf-discipline-badge {
        padding: 20px !important;
    }
}

/* 9. Team Leaders Section Mobile Spacing & Typography */
@media (max-width: 767.98px) {
    .nsf-leaders-section {
        padding: 60px 0 !important;
    }
}

/* 10. References Section Mobile Spacing */
@media (max-width: 767.98px) {
    .nsf-references-section {
        padding: 40px 0 !important;
    }
}

/*=========================================
  Redesigned Premium Management Page
=========================================*/
.nsf-management-intro {
    padding: 90px 0 60px 0;
    background-color: var(--nsf-white);
    position: relative;
}

.nsf-management-heading {
    font-family: var(--nsf-font);
    font-size: 38px;
    font-weight: 700;
    color: var(--nsf-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.nsf-management-divider {
    width: 80px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.nsf-management-subtitle {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--nsf-text-muted);
}

.nsf-management-showcase {
    background-color: #f8fafc;
    padding-top: 50px;
}

.nsf-management-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.nsf-profile-card {
    background: var(--nsf-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
    border: 1px solid rgba(11, 31, 77, 0.06);
    overflow: hidden;
    margin: 0;
    transition: var(--nsf-transition);
}

.nsf-profile-card:hover {
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.1);
    border-color: rgba(255, 186, 0, 0.25);
    transform: translateY(-4px);
}

.nsf-profile-img-col {
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.nsf-profile-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 480px;
}

.nsf-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-profile-card:hover .nsf-profile-img {
    transform: scale(1.06);
}

.nsf-profile-img-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 2px solid rgba(255, 186, 0, 0.3);
    border-radius: 12px;
    pointer-events: none;
    transition: var(--nsf-transition);
    z-index: 2;
}

.nsf-profile-card:hover .nsf-profile-img-wrapper::after {
    border-color: var(--nsf-gold);
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.3);
}

.nsf-profile-content-col {
    padding: 50px 60px;
}

.nsf-profile-name {
    font-family: var(--nsf-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 6px;
    transition: var(--nsf-transition);
}

.nsf-profile-card:hover .nsf-profile-name {
    color: var(--nsf-gold);
}

.nsf-profile-designation {
    font-family: var(--nsf-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--nsf-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.nsf-profile-divider {
    width: 50px;
    height: 2px;
    background-color: var(--nsf-gold);
    margin-bottom: 20px;
}

.nsf-profile-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0;
}

/* Responsive adjustments for management profiles */
@media (max-width: 991.98px) {
    .nsf-management-intro {
        padding: 70px 0 40px 0 !important;
    }
    .nsf-management-heading {
        font-size: 30px !important;
    }
    .nsf-profile-card {
        flex-direction: column !important;
    }
    .nsf-profile-img-col {
        min-height: 380px;
        width: 100%;
    }
    .nsf-profile-img-wrapper {
        min-height: 380px;
    }
    .nsf-profile-content-col {
        padding: 35px 30px;
        width: 100%;
    }
    .nsf-profile-name {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .nsf-management-intro {
        padding: 60px 0 30px 0 !important;
    }
    .nsf-management-heading {
        font-size: 26px !important;
    }
    .nsf-profile-img-col {
        min-height: 300px;
    }
    .nsf-profile-img-wrapper {
        min-height: 300px;
    }
    .nsf-profile-content-col {
        padding: 30px 20px;
    }
}

/*=========================================
  Redesigned Premium Our Team Page
=========================================*/
.nsf-team-section {
    padding: 90px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
}

.nsf-team-images-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nsf-team-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.05);
    border: 1px solid rgba(11, 31, 77, 0.06);
    background: var(--nsf-white);
    transition: var(--nsf-transition);
}

.nsf-team-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 31, 77, 0.1);
    border-color: rgba(255, 186, 0, 0.35);
}

.nsf-team-img-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.nsf-team-img-inner::after {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    border: 2px solid rgba(255, 186, 0, 0.25);
    border-radius: 10px;
    pointer-events: none;
    transition: var(--nsf-transition);
    z-index: 2;
}

.nsf-team-img-card:hover .nsf-team-img-inner::after {
    border-color: var(--nsf-gold);
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.2);
}

.nsf-team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-team-img-card:hover .nsf-team-img {
    transform: scale(1.05);
}

.nsf-team-content-card {
    background: var(--nsf-white);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
    position: relative;
    border-left: 4px solid var(--nsf-gold);
}

.nsf-team-heading {
    font-family: var(--nsf-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.25;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.nsf-team-divider {
    width: 60px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

.nsf-team-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.nsf-team-text:last-of-type {
    margin-bottom: 30px;
}

.nsf-team-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nsf-service-badge-card {
    background: #f8fafc;
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-service-badge-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 186, 0, 0.3);
    box-shadow: 0 8px 20px rgba(11, 31, 77, 0.06);
    background: var(--nsf-white);
}

.nsf-service-badge-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 186, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsf-gold);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nsf-service-badge-card:hover .nsf-service-badge-icon {
    background-color: var(--nsf-gold);
    color: var(--nsf-navy);
}

.nsf-service-badge-text {
    font-family: var(--nsf-font);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .nsf-team-section {
        padding: 60px 0 !important;
    }
    .nsf-team-content-card {
        padding: 35px 20px;
    }
    .nsf-team-heading {
        font-size: 28px !important;
    }
    .nsf-team-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .nsf-team-images-container {
        gap: 20px;
        margin-bottom: 40px;
    }
}

/*=========================================
  Redesigned Premium Basics Page
=========================================*/
.nsf-basics-practices-section {
    padding: 90px 0 60px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
}

.nsf-basics-practices-card {
    background: var(--nsf-white);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
    position: relative;
    border-left: 4px solid var(--nsf-gold);
    height: 100%;
}

.nsf-basics-subtitle {
    font-family: var(--nsf-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.25;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.nsf-basics-divider {
    width: 60px;
    height: 3px;
    background-color: var(--nsf-gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

.nsf-basics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nsf-basics-list li {
    font-family: var(--nsf-font);
    font-size: 16px;
    font-weight: 700;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--nsf-transition);
}

.nsf-basics-list li:hover {
    color: var(--nsf-navy);
}

.nsf-basics-list li i {
    color: var(--nsf-gold);
    font-size: 16px;
    background: rgba(255, 186, 0, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--nsf-transition);
}

.nsf-basics-list li:hover i {
    background: var(--nsf-gold);
    color: var(--nsf-navy);
    transform: scale(1.1);
}

/* Security Guard Image Wrapper - Full Image Display */
.nsf-basics-guard-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 31, 77, 0.08);
    border: 1px solid rgba(11, 31, 77, 0.06);
    background: var(--nsf-white);
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--nsf-transition);
}

.nsf-basics-guard-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 2px solid rgba(255, 186, 0, 0.25);
    border-radius: 12px;
    pointer-events: none;
    transition: var(--nsf-transition);
    z-index: 2;
}

.nsf-basics-guard-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(11, 31, 77, 0.12);
    border-color: rgba(255, 186, 0, 0.35);
}

.nsf-basics-guard-wrapper:hover::after {
    border-color: var(--nsf-gold);
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.3);
}

.nsf-basics-guard-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-basics-guard-wrapper:hover .nsf-basics-guard-img {
    transform: scale(1.05);
}

/* Values Grid Section */
.nsf-values-section {
    padding: 60px 0 90px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
}

.nsf-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.nsf-value-card {
    background: var(--nsf-white);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--nsf-gold);
    transition: height 0.3s ease;
}

.nsf-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.08);
    border-color: rgba(255, 186, 0, 0.25);
}

.nsf-value-card:hover::before {
    height: 6px;
}

.nsf-value-number {
    font-family: var(--nsf-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--nsf-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.nsf-value-title {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.3;
    margin-bottom: 15px;
    transition: var(--nsf-transition);
}

.nsf-value-card:hover .nsf-value-title {
    color: var(--nsf-gold);
}

.nsf-value-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 0;
}

.nsf-value-signature-p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--nsf-navy);
    font-weight: 600;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 31, 77, 0.08);
}

/* Wide Value Card to Span Both Columns on Desktop */
@media (min-width: 992px) {
    .nsf-value-card-wide {
        grid-column: span 2;
    }
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .nsf-basics-practices-section {
        padding: 60px 0 30px 0 !important;
    }
    .nsf-values-section {
        padding: 30px 0 60px 0 !important;
    }
    .nsf-basics-guard-wrapper {
        min-height: 400px;
        margin-top: 30px;
    }
    .nsf-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .nsf-basics-practices-card {
        padding: 35px 25px;
    }
    .nsf-basics-subtitle {
        font-size: 26px !important;
    }
    .nsf-basics-guard-wrapper {
        min-height: 320px;
    }
    .nsf-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .nsf-value-card {
        padding: 30px 20px;
    }
    .nsf-value-title {
        font-size: 19px !important;
    }
}

/*=========================================
  Redesigned Premium Training Page
=========================================*/

/* ---- Training Intro Section ---- */
.nsf-training-intro-section {
    padding: 90px 0 70px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.nsf-training-intro-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 31, 77, 0.1);
    border: 3px solid rgba(255, 186, 0, 0.35);
    height: 100%;
    min-height: 380px;
}

.nsf-training-intro-img-wrapper::after {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 14px;
    right: 14px;
    border: 2px solid rgba(255, 186, 0, 0.2);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
    transition: var(--nsf-transition);
}

.nsf-training-intro-img-wrapper:hover::after {
    border-color: var(--nsf-gold);
}

.nsf-training-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-training-intro-img-wrapper:hover .nsf-training-intro-img {
    transform: scale(1.04);
}

.nsf-training-intro-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.05);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-left: 4px solid var(--nsf-gold);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nsf-training-intro-heading {
    font-family: var(--nsf-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.3;
    margin-bottom: 18px;
}

.nsf-training-intro-text {
    font-family: var(--nsf-font);
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 0;
}

/* ---- NSF Training Region Highlight ---- */
.nsf-training-region-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--nsf-navy) 0%, #0f2a6e 60%, #1a3a8a 100%);
    position: relative;
    overflow: hidden;
}

.nsf-training-region-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.nsf-training-region-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 186, 0, 0.3);
    border-radius: 20px;
    padding: 50px 55px;
    backdrop-filter: blur(4px);
    position: relative;
}

.nsf-training-region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 60px;
    height: 3px;
    background: var(--nsf-gold);
    border-radius: 0 0 3px 3px;
}

.nsf-training-region-title {
    font-family: var(--nsf-font);
    font-size: 30px;
    font-weight: 700;
    color: var(--nsf-white);
    margin-bottom: 28px;
    line-height: 1.25;
}

.nsf-training-region-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nsf-training-region-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.nsf-training-region-item i {
    color: var(--nsf-gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 186, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nsf-training-region-item p {
    font-family: var(--nsf-font);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---- Skills Sections ---- */
.nsf-skills-section {
    padding: 80px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.nsf-skills-section.alt-bg {
    background-color: #edf2f8;
    background-image: radial-gradient(rgba(11, 31, 77, 0.04) 1.5px, transparent 1.5px);
}

.nsf-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nsf-skill-card {
    background: var(--nsf-white);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 8px 24px rgba(11, 31, 77, 0.06);
    border: 1px solid rgba(11, 31, 77, 0.06);
    transition: var(--nsf-transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.nsf-skill-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--nsf-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.nsf-skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(11, 31, 77, 0.12);
    border-color: rgba(255, 186, 0, 0.3);
}

.nsf-skill-card:hover::after {
    transform: scaleX(1);
}

.nsf-skill-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.12) 0%, rgba(255, 186, 0, 0.06) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--nsf-transition);
}

.nsf-skill-icon i {
    font-size: 22px;
    color: var(--nsf-gold);
    transition: var(--nsf-transition);
}

.nsf-skill-card:hover .nsf-skill-icon {
    background: var(--nsf-gold);
}

.nsf-skill-card:hover .nsf-skill-icon i {
    color: var(--nsf-navy);
}

.nsf-skill-label {
    font-family: var(--nsf-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--nsf-navy);
    line-height: 1.35;
    margin: 0;
}

/* ---- Second Training Region Card ---- */
.nsf-training-region2-section {
    padding: 70px 0 90px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.nsf-training-region2-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 55px 60px;
    box-shadow: 0 12px 35px rgba(11, 31, 77, 0.07);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-top: 4px solid var(--nsf-gold);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.nsf-training-region2-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}

.nsf-training-region2-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--nsf-navy) 0%, #0f2a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(11, 31, 77, 0.25);
}

.nsf-training-region2-icon-wrap i {
    font-size: 28px;
    color: var(--nsf-gold);
}

.nsf-training-region2-content-col h2 {
    font-family: var(--nsf-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 18px;
    line-height: 1.3;
}

.nsf-training-region2-content-col p {
    font-family: var(--nsf-font);
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 14px;
}

.nsf-training-region2-content-col p:last-child {
    margin-bottom: 0;
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 1199px) {
    .nsf-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nsf-training-intro-img-wrapper {
        min-height: 300px;
    }
    .nsf-training-intro-card {
        padding: 40px 35px;
    }
    .nsf-training-region-card {
        padding: 40px 35px;
    }
    .nsf-training-region2-card {
        grid-template-columns: 1fr;
        padding: 40px 35px;
        gap: 24px;
    }
    .nsf-training-region2-icon-col {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .nsf-skills-grid {
        grid-template-columns: 1fr;
    }
    .nsf-training-intro-section {
        padding: 60px 0 50px 0;
    }
    .nsf-training-intro-card {
        padding: 32px 28px;
    }
    .nsf-training-intro-heading {
        font-size: 22px;
    }
    .nsf-training-region-title {
        font-size: 24px;
    }
    .nsf-training-region-card {
        padding: 32px 28px;
    }
    .nsf-training-region2-card {
        padding: 32px 24px;
    }
    .nsf-skills-section {
        padding: 55px 0;
    }
}

/*=========================================
  Redesigned Premium History Page
=========================================*/

/* ---- History Intro Split Section ---- */
.nsf-history-intro-section {
    padding: 90px 0 70px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 31, 77, 0.035) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.nsf-history-content-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 52px 48px;
    box-shadow: 0 12px 35px rgba(11, 31, 77, 0.06);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-left: 4px solid var(--nsf-gold);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nsf-history-content-card p {
    font-family: var(--nsf-font);
    font-size: 16.5px;
    font-weight: 400;
    color: #374151;
    line-height: 1.9;
    margin-bottom: 20px;
}

.nsf-history-content-card p:last-child {
    margin-bottom: 0;
}

/* ---- History Image Card ---- */
.nsf-history-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(11, 31, 77, 0.12);
    border: 3px solid rgba(255, 186, 0, 0.4);
    height: 100%;
    min-height: 360px;
    transition: var(--nsf-transition);
}

.nsf-history-img-wrapper::after {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 14px;
    right: 14px;
    border: 2px solid rgba(255, 186, 0, 0.25);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
    transition: var(--nsf-transition);
}

.nsf-history-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(11, 31, 77, 0.16);
}

.nsf-history-img-wrapper:hover::after {
    border-color: var(--nsf-gold);
    box-shadow: 0 0 18px rgba(255, 186, 0, 0.35);
}

.nsf-history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-history-img-wrapper:hover .nsf-history-img {
    transform: scale(1.05);
}

/* ---- History Timeline / Milestone Section ---- */
.nsf-history-timeline-section {
    padding: 80px 0 100px 0;
    background: linear-gradient(160deg, #0b1f4d 0%, #0f2a6e 55%, #162f6e 100%);
    position: relative;
    overflow: hidden;
}

.nsf-history-timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Decorative gold orbs */
.nsf-history-timeline-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,186,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.nsf-history-timeline-header {
    text-align: center;
    margin-bottom: 65px;
}

/* Vertical Timeline Container */
.nsf-timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 20px 0;
}

/* Central gold vertical line */
.nsf-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 38px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--nsf-gold) 8%, var(--nsf-gold) 92%, transparent);
}

/* Each milestone row */
.nsf-timeline-item {
    position: relative;
    padding-left: 95px;
    margin-bottom: 42px;
}

.nsf-timeline-item:last-child {
    margin-bottom: 0;
}

/* Circular gold dot on the line */
.nsf-timeline-dot {
    position: absolute;
    left: 18px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nsf-gold) 0%, #e6a800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(255, 186, 0, 0.18), 0 4px 14px rgba(255, 186, 0, 0.35);
    z-index: 2;
    flex-shrink: 0;
    transition: var(--nsf-transition);
}

.nsf-timeline-dot i {
    font-size: 14px;
    color: var(--nsf-navy);
}

.nsf-timeline-item:hover .nsf-timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(255, 186, 0, 0.2), 0 6px 20px rgba(255, 186, 0, 0.5);
}

/* The card itself */
.nsf-timeline-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 186, 0, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(6px);
    transition: var(--nsf-transition);
    position: relative;
}

.nsf-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--nsf-gold), transparent);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: var(--nsf-transition);
}

.nsf-timeline-item:hover .nsf-timeline-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 186, 0, 0.45);
    transform: translateX(6px);
}

.nsf-timeline-item:hover .nsf-timeline-card::before {
    opacity: 1;
}

.nsf-timeline-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0;
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 991px) {
    .nsf-history-content-card {
        padding: 40px 35px;
    }
    .nsf-history-img-wrapper {
        min-height: 300px;
    }
    .nsf-timeline {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .nsf-history-intro-section {
        padding: 60px 0 50px 0;
    }
    .nsf-history-content-card {
        padding: 32px 26px;
    }
    .nsf-history-content-card p {
        font-size: 15.5px;
    }
    .nsf-history-timeline-section {
        padding: 60px 0 70px 0;
    }
    .nsf-timeline::before {
        left: 20px;
    }
    .nsf-timeline-item {
        padding-left: 60px;
    }
    .nsf-timeline-dot {
        left: 0;
        width: 34px;
        height: 34px;
    }
    .nsf-timeline-card {
        padding: 22px 22px;
    }
    .nsf-history-timeline-header {
        margin-bottom: 45px;
    }
}

/*=========================================
  Redesigned Premium Service Pages
  (Static & Site Security + shared service layout)
=========================================*/

/* ---- Service Page Layout ---- */
.nsf-service-page-section {
    padding: 90px 0 100px 0;
    background-color: #f4f7fb;
    background-image: radial-gradient(rgba(11,31,77,0.03) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}

/* ---- Sidebar Service Nav ---- */
.nsf-service-sidebar {
    position: sticky;
    top: 110px;
}

.nsf-service-nav-card {
    background: var(--nsf-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(11,31,77,0.08);
    border: 1px solid rgba(11,31,77,0.07);
}

.nsf-service-nav-header {
    background: linear-gradient(135deg, var(--nsf-navy) 0%, #0f2a6e 100%);
    padding: 22px 28px;
    border-bottom: 3px solid var(--nsf-gold);
}

.nsf-service-nav-header h5 {
    font-family: var(--nsf-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.nsf-service-nav-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

.nsf-service-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: var(--nsf-font);
    font-size: 14.5px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--nsf-transition);
}

.nsf-service-nav-list li a i {
    font-size: 13px;
    color: #9ca3af;
    transition: var(--nsf-transition);
    flex-shrink: 0;
}

.nsf-service-nav-list li a:hover,
.nsf-service-nav-list li.active a {
    background: rgba(11,31,77,0.04);
    color: var(--nsf-navy);
    border-left-color: var(--nsf-gold);
}

.nsf-service-nav-list li a:hover i,
.nsf-service-nav-list li.active a i {
    color: var(--nsf-gold);
}

.nsf-service-nav-list li.active a {
    font-weight: 700;
    background: linear-gradient(90deg, rgba(255,186,0,0.08) 0%, transparent 100%);
}

/* ---- Service Page Main Content ---- */
.nsf-service-main-hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11,31,77,0.1);
    border: 3px solid rgba(255,186,0,0.35);
    margin-bottom: 36px;
    transition: var(--nsf-transition);
}

.nsf-service-main-hero-img-wrapper::after {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 14px;
    right: 14px;
    border: 2px solid rgba(255,186,0,0.18);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
    transition: var(--nsf-transition);
}

.nsf-service-main-hero-img-wrapper:hover::after {
    border-color: rgba(255,186,0,0.5);
}

.nsf-service-main-hero-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.nsf-service-main-hero-img-wrapper:hover img {
    transform: scale(1.04);
}

/* ---- Intro Content Card ---- */
.nsf-service-intro-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 10px 30px rgba(11,31,77,0.06);
    border: 1px solid rgba(11,31,77,0.06);
    border-left: 4px solid var(--nsf-gold);
    margin-bottom: 28px;
}

.nsf-service-intro-card h4 {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.nsf-service-intro-card p {
    font-family: var(--nsf-font);
    font-size: 16px;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 0;
}

/* ---- Solutions Card (Dark Navy) ---- */
.nsf-service-solutions-card {
    background: linear-gradient(135deg, var(--nsf-navy) 0%, #0f2a6e 100%);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 12px 40px rgba(11,31,77,0.2);
    border-top: 4px solid var(--nsf-gold);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--nsf-transition);
}

.nsf-service-solutions-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.nsf-service-solutions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(11,31,77,0.28);
}

.nsf-service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.nsf-service-solutions-card .nsf-service-card-icon {
    background: rgba(255,186,0,0.15);
}

.nsf-service-solutions-card .nsf-service-card-icon i {
    font-size: 26px;
    color: var(--nsf-gold);
}

.nsf-service-solutions-card h4 {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-gold);
    margin-bottom: 14px;
}

.nsf-service-solutions-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ---- Technology Card (Glassmorphism) ---- */
.nsf-service-tech-card {
    background: rgba(255,255,255,0.75);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 8px 28px rgba(11,31,77,0.07);
    border: 1px solid rgba(255,186,0,0.25);
    backdrop-filter: blur(12px);
    margin-bottom: 28px;
    transition: var(--nsf-transition);
    position: relative;
    overflow: hidden;
}

.nsf-service-tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nsf-gold) 0%, rgba(255,186,0,0.3) 100%);
    border-radius: 20px 20px 0 0;
}

.nsf-service-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(11,31,77,0.12);
    border-color: rgba(255,186,0,0.5);
}

.nsf-service-tech-card .nsf-service-card-icon {
    background: linear-gradient(135deg, rgba(255,186,0,0.15), rgba(255,186,0,0.06));
}

.nsf-service-tech-card .nsf-service-card-icon i {
    font-size: 26px;
    color: var(--nsf-navy);
}

.nsf-service-tech-card h4 {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 14px;
}

.nsf-service-tech-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 0;
}

/* ---- Surveillance / Personnel Card (White + Gold left border) ---- */
.nsf-service-personnel-section {
    margin-top: 10px;
}

.nsf-service-personnel-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 8px 30px rgba(11,31,77,0.06);
    border: 1px solid rgba(11,31,77,0.06);
    border-left: 5px solid var(--nsf-gold);
    transition: var(--nsf-transition);
}

.nsf-service-personnel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(11,31,77,0.1);
    border-left-color: var(--nsf-navy);
}

.nsf-service-personnel-card .nsf-service-card-icon {
    background: linear-gradient(135deg, rgba(11,31,77,0.08), rgba(11,31,77,0.04));
}

.nsf-service-personnel-card .nsf-service-card-icon i {
    font-size: 26px;
    color: var(--nsf-navy);
}

.nsf-service-personnel-card h4 {
    font-family: var(--nsf-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 14px;
}

.nsf-service-personnel-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 0;
}

/* ---- Personnel image on right ---- */
.nsf-service-personnel-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(11,31,77,0.1);
    border: 2px solid rgba(255,186,0,0.3);
    height: 100%;
    min-height: 280px;
    transition: var(--nsf-transition);
}

.nsf-service-personnel-img-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(11,31,77,0.14);
}

.nsf-service-personnel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.nsf-service-personnel-img-wrapper:hover img {
    transform: scale(1.05);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .nsf-service-sidebar {
        position: static;
    }
    .nsf-service-intro-card,
    .nsf-service-solutions-card,
    .nsf-service-tech-card,
    .nsf-service-personnel-card {
        padding: 32px 30px;
    }
    .nsf-service-main-hero-img-wrapper img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .nsf-service-page-section {
        padding: 60px 0 70px 0;
    }
    .nsf-service-intro-card,
    .nsf-service-solutions-card,
    .nsf-service-tech-card,
    .nsf-service-personnel-card {
        padding: 26px 24px;
    }
    .nsf-service-main-hero-img-wrapper img {
        height: 240px;
    }
    .nsf-service-personnel-img-wrapper {
        min-height: 220px;
    }
}

/*=========================================
  Security Audit — Benefits 4-card grid
=========================================*/

.nsf-audit-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.nsf-audit-benefit-card {
    background: var(--nsf-white);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 8px 28px rgba(11,31,77,0.07);
    border: 1px solid rgba(11,31,77,0.06);
    border-top: 3px solid var(--nsf-gold);
    transition: var(--nsf-transition);
    position: relative;
    overflow: hidden;
}

.nsf-audit-benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--nsf-gold), transparent);
    opacity: 0;
    transition: var(--nsf-transition);
}

.nsf-audit-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11,31,77,0.12);
    border-top-color: var(--nsf-navy);
}

.nsf-audit-benefit-card:hover::before {
    opacity: 1;
}

.nsf-audit-benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,186,0,0.15), rgba(255,186,0,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.nsf-audit-benefit-icon i {
    font-size: 22px;
    color: var(--nsf-navy);
}

.nsf-audit-benefit-card h5 {
    font-family: var(--nsf-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 10px;
}

.nsf-audit-benefit-card p {
    font-family: var(--nsf-font);
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 575px) {
    .nsf-audit-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/*=========================================
  Event Management Security Page
=========================================*/

.nsf-event-nav-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 186, 0, 0.25);
    box-shadow: 0 8px 30px rgba(11, 31, 77, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: sticky;
    top: 110px;
    padding: 16px 0;
    z-index: 10;
}

.nsf-event-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsf-event-nav-list li {
    margin: 8px 16px;
}

.nsf-event-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: var(--nsf-font);
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid transparent;
}

.nsf-event-nav-list li a:hover {
    transform: scale(1.05);
    background: rgba(255, 186, 0, 0.1);
    border-left: 4px solid var(--nsf-gold);
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.15);
    color: var(--nsf-navy);
}

.nsf-event-nav-list li.active a {
    background: var(--nsf-navy);
    border-left: 4px solid var(--nsf-gold);
    color: var(--nsf-white);
    box-shadow: 0 6px 20px rgba(11, 31, 77, 0.15);
}

.nsf-event-nav-list li.active a:hover {
    transform: scale(1.05);
    color: var(--nsf-white);
}

.nsf-event-title-wrap {
    margin-bottom: 35px;
}

.nsf-event-pre-title {
    font-family: var(--nsf-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--nsf-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.nsf-event-title {
    font-family: var(--nsf-font);
    font-size: 36px;
    font-weight: 800;
    color: var(--nsf-navy);
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.nsf-event-title-line {
    width: 80px;
    height: 3px;
    background-color: var(--nsf-gold);
    border-radius: 2px;
}

.nsf-event-hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 31, 77, 0.18);
    border: 3px solid rgba(255, 186, 0, 0.35);
    margin-bottom: 40px;
    height: 440px;
}

.nsf-event-hero-img-wrapper::after {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 14px;
    right: 14px;
    border: 2px solid rgba(255, 186, 0, 0.25);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
    transition: var(--nsf-transition);
}

.nsf-event-hero-img-wrapper:hover::after {
    border-color: var(--nsf-gold);
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.3);
}

.nsf-event-hero-img-wrapper img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    position: relative;
    top: -10%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-event-hero-img-wrapper:hover img {
    transform: scale(1.08);
}

.nsf-event-intro-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-top: 4px solid var(--nsf-gold);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 35px rgba(11, 31, 77, 0.05);
    margin-bottom: 35px;
}

.nsf-event-intro-glass-card p {
    font-family: var(--nsf-font);
    font-size: 16.5px;
    color: #374151;
    line-height: 1.9;
    margin: 0;
}

.nsf-event-dark-card {
    background: linear-gradient(135deg, var(--nsf-navy) 0%, #0f2a6e 100%);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 12px 40px rgba(11, 31, 77, 0.2);
    border: 1px solid rgba(255, 186, 0, 0.3);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-event-dark-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.nsf-event-dark-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 31, 77, 0.3);
    border-color: var(--nsf-gold);
}

.nsf-event-dark-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 186, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.nsf-event-dark-card .card-icon i {
    font-size: 26px;
    color: var(--nsf-gold);
}

.nsf-event-dark-card h4 {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-gold);
    margin-bottom: 15px;
}

.nsf-event-dark-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin: 0;
}

.nsf-event-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 8px 30px rgba(11, 31, 77, 0.06);
    border: 1px solid rgba(255, 186, 0, 0.2);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-event-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(11, 31, 77, 0.12);
    border-color: rgba(255, 186, 0, 0.45);
}

.nsf-event-glass-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 31, 77, 0.08), rgba(11, 31, 77, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.nsf-event-glass-card .card-icon i {
    font-size: 26px;
    color: var(--nsf-navy);
}

.nsf-event-glass-card h4 {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 15px;
}

.nsf-event-glass-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.85;
    margin: 0;
}

.nsf-event-tech-dark-card {
    background: linear-gradient(135deg, #09173b 0%, var(--nsf-navy) 100%);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 12px 40px rgba(11, 31, 77, 0.25), 0 0 15px rgba(255, 186, 0, 0.05);
    border: 1px solid rgba(255, 186, 0, 0.35);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-event-tech-dark-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 186, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.nsf-event-tech-dark-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 31, 77, 0.35), 0 0 25px rgba(255, 186, 0, 0.15);
    border-color: var(--nsf-gold);
}

.nsf-event-tech-dark-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 186, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 186, 0, 0.25);
}

.nsf-event-tech-dark-card .card-icon i {
    font-size: 26px;
    color: var(--nsf-gold);
}

.nsf-event-tech-dark-card h4 {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-gold);
    margin-bottom: 15px;
}

.nsf-event-tech-dark-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin: 0;
}

.nsf-event-emergency-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 8px 30px rgba(11, 31, 77, 0.06);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-left: 5px solid var(--nsf-gold);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-event-emergency-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(11, 31, 77, 0.12);
    border-left-color: var(--nsf-navy);
}

.nsf-event-emergency-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.15), rgba(255, 186, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.nsf-event-emergency-card .card-icon i {
    font-size: 26px;
    color: var(--nsf-gold);
}

.nsf-event-emergency-card h4 {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 15px;
}

.nsf-event-emergency-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.85;
    margin: 0;
}

.nsf-event-access-card {
    background: var(--nsf-white);
    border-radius: 20px;
    padding: 42px 44px;
    box-shadow: 0 10px 35px rgba(11, 31, 77, 0.05);
    border: 1px solid rgba(11, 31, 77, 0.06);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nsf-event-access-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(11, 31, 77, 0.12);
    border-color: rgba(255, 186, 0, 0.3);
}

.nsf-event-access-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.nsf-event-access-icons .card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 31, 77, 0.06), rgba(11, 31, 77, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 31, 77, 0.05);
}

.nsf-event-access-icons .card-icon i {
    font-size: 22px;
    color: var(--nsf-navy);
}

.nsf-event-access-icons .card-icon.gold-icon {
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.12), rgba(255, 186, 0, 0.04));
    border-color: rgba(255, 186, 0, 0.1);
}

.nsf-event-access-icons .card-icon.gold-icon i {
    color: var(--nsf-gold);
}

.nsf-event-access-card h4 {
    font-family: var(--nsf-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--nsf-navy);
    margin-bottom: 15px;
}

.nsf-event-access-card p {
    font-family: var(--nsf-font);
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.85;
    margin: 0 0 25px 0;
}

.nsf-event-access-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 186, 0, 0.25);
    transition: all 0.4s ease;
}

.nsf-event-access-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.nsf-event-access-card:hover .nsf-event-access-img-wrapper img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .nsf-event-nav-card {
        position: static;
        margin-bottom: 30px;
    }
    .nsf-event-hero-img-wrapper {
        height: 320px;
    }
}