  :root {
            --nrisco-navy: #002d62;
            --nrisco-orange: #f97316;
            --nrisco-slate: #f8fafc;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--nrisco-slate);
            color: #334155;
            overflow-x: hidden;
        }

        /* Colors & Utilities */
        .bg-nrisco-navy { background-color: var(--nrisco-navy); }
        .text-nrisco-navy { color: var(--nrisco-navy); }
        .bg-nrisco-orange { background-color: var(--nrisco-orange); }
        .text-nrisco-orange { color: var(--nrisco-orange); }
        
        

        /* Ticker */
        .ticker-wrapper {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .ticker-label {
            background: #dc2626;
            color: white;
            font-weight: 800;
            font-size: 0.7rem;
            padding: 5px 15px;
            z-index: 10;
            white-space: nowrap;
        }
        .ticker-content {
            display: inline-block;
            white-space: nowrap;
            padding-left: 100%;
            animation: ticker-animation 35s linear infinite;
            color: #dc2626;
            font-weight: 700;
            font-size: 0.85rem;
        }
        @keyframes ticker-animation {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        /* Header & Logo */
        .navbar-brand .logo-text {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -2px;
            line-height: 1;
        }
        .navbar-brand .sub-text {
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            display: block;
            margin-top: 4px;
        }

        /* Navbar Mega Menu */
        .main-nav { background: var(--nrisco-navy); }
        .nav-link-custom {
            color: white !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 1rem 1.25rem !important;
            transition: var(--transition);
        }
        .nav-link-custom:hover { background: rgba(255,255,255,0.1); }
        
        .mega-menu {
            min-width: 650px;
            padding: 1.5rem;
            border: none;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .mega-menu-item {
            display: flex;
            align-items: flex-start;
            padding: 0.75rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: var(--transition);
        }
        .mega-menu-item:hover { background: #f8fafc; }
        .mega-menu-icon {
            width: 40px;
            height: 40px;
            background: #eff6ff;
            color: var(--nrisco-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.375rem;
            margin-right: 1rem;
            transition: var(--transition);
        }
        .mega-menu-item:hover .mega-menu-icon { background: var(--nrisco-orange); color: white; }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 45, 98, 0.9), rgba(0, 45, 98, 0.9)), 
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
            padding: 120px 0 160px 0; /* Extra bottom padding for the wave */
            color: white;
            position: relative;
        }
        .hero-snapshot-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 2.5rem;
        }
        .snapshot-item {
            cursor: pointer;
            transition: var(--transition);
        }
        .snapshot-item:hover .snapshot-icon { background: var(--nrisco-orange); }
        .snapshot-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            margin-bottom: 0.75rem;
            transition: var(--transition);
        }

        /* Wave Border */
        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-container svg {
            position: relative;
            display: block;
            width: 100%;
            height: 60px;
            fill: #ffffff; /* Matches the bg-white of the stats strip */
        }

        /* Section Headings */
        .section-tag {
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            color: var(--nrisco-orange);
            display: block;
            margin-bottom: 1rem;
        }

        /* Portal Cards */
        .portal-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1.25rem;
            padding: 2.5rem;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .portal-card:hover {
            border-color: var(--nrisco-orange);
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
        }
        .portal-card .icon-box {
            width: 60px;
            height: 60px;
            background: var(--nrisco-navy);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .portal-card:hover .icon-box { background: var(--nrisco-orange); }

        /* Team Cards */
        .team-card-img {
            aspect-ratio: 4/5;
            background: #f1f5f9;
            border-radius: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: var(--transition);
        }
        .team-card:hover .team-card-img { border-color: var(--nrisco-orange); }

        /* Why Us Section */
        .advantage-card {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        .advantage-icon {
            width: 50px;
            height: 50px;
            background: #eff6ff;
            color: var(--nrisco-navy);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 1.5rem;
            border: 1px solid #dbeafe;
        }
        .guarantee-badge {
            background: var(--nrisco-navy);
            color: white;
            padding: 2rem;
            border-radius: 1.5rem;
            max-width: 300px;
            position: absolute;
            bottom: -30px;
            right: -30px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1.25rem;
            padding: 2rem;
            height: 100%;
        }

        /* Footer */
        .advanced-footer {
            background: #0f172a;
            color: #94a3b8;
            padding-top: 100px;
            position: relative;
        }
        .footer-cta-box {
            background: var(--nrisco-orange);
            border-radius: 1.5rem;
            padding: 3rem;
            margin-top: -140px;
            position: relative;
            z-index: 10;
            color: white;
            box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.3);
        }
        .footer-heading {
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
        }
        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-link:hover { color: var(--nrisco-orange); transform: translateX(5px); }
        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        .social-link:hover { background: var(--nrisco-orange); transform: translateY(-3px); }

        /* Responsive */
        @media (max-width: 991px) {
            .mega-menu { min-width: 100%; box-shadow: none; border: 1px solid #f1f5f9; }
            .hero-section { text-align: center; padding: 60px 0 100px 0; }
            .hero-snapshot-card { margin-top: 3rem; }
            .footer-cta-box { margin-top: -80px; padding: 2rem; }
        }

        .nav-logo {

    height: 50px;

    width: auto;

    transition: var(--transition-main);

}

   
/* --- Service Feature Cards --- */
.feature-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: var(--transition-premium);
    box-shadow: 0 10px 30px -15px rgba(0, 45, 98, 0.05);
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-12px);
    border-color: var(--nrisco-orange);
    box-shadow: 0 25px 50px -12px rgba(0, 45, 98, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--nrisco-navy);
    color: #ffffff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-premium);
}

.feature-box:hover .feature-icon {
    background: var(--nrisco-orange);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.feature-box h4, .feature-box h5 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--nrisco-navy);
}

/* --- Sticky Inquiry Sidebar --- */
.inquiry-sidebar {
    background: var(--nrisco-navy);
    color: #ffffff;
    padding: 3rem;
    border-radius: 2rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 30px 60px -12px rgba(0, 45, 98, 0.3);
    z-index: 10;
}

.inquiry-sidebar h3 {
    color: #ffffff;
    font-weight: 900;
}

/* Glassmorphism Form Controls */
.inquiry-sidebar .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.85rem 1.25rem;
    border-radius: 0.85rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.inquiry-sidebar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.inquiry-sidebar .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--nrisco-orange);
    box-shadow: none;
    color: #ffffff;
}


 .team-card-img {
        aspect-ratio: 4/5;
        background: #f1f5f9;
        border-radius: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e2e8f0;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: var(--transition-smooth, all 0.4s ease);
    }
    .team-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .team-card:hover .team-card-img {
        border-color: var(--nrisco-orange);
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    }
    .team-card:hover .team-card-img img {
        transform: scale(1.1);
    }