:root {
    --ncl-navy: #003D7A;
    --ncl-blue: #004B87;
    --ncl-orange: #E94E1B;
    --ncl-red: #D84315;
    --ncl-gold: #F4C430;
    --ncl-gold-soft: #FFD966;
    --ncl-gold-light: #FFF8E6;
    --ncl-dark: #1A2332;
    --ncl-gray: #F8F9FA;
    --ncl-text: #333333;
    --ncl-text-light: #666666;
    --font-heading: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--ncl-text);
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--ncl-navy);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ncl-blue);
}

/* Utilities */
.text-ncl-navy {
    color: var(--ncl-navy);
}

.text-ncl-blue {
    color: var(--ncl-blue);
}

.text-ncl-orange {
    color: var(--ncl-orange);
}

.text-ncl-red {
    color: var(--ncl-red);
}

.text-ncl-gold {
    color: var(--ncl-gold);
}

.text-ncl-gold-soft {
    color: var(--ncl-gold-soft);
}

.text-ncl-gray {
    color: var(--ncl-text-light);
}

.bg-ncl-navy {
    background-color: var(--ncl-navy);
}

.bg-ncl-red {
    background-color: var(--ncl-red);
}

.bg-ncl-orange {
    background-color: var(--ncl-orange);
}

.bg-ncl-gray {
    background-color: var(--ncl-gray);
}

.bg-ncl-gold-light {
    background-color: var(--ncl-gold-light);
}

/* Custom Opacity Backgrounds */
.bg-ncl-gold-20 {
    background-color: rgba(244, 196, 48, 0.2);
}

.bg-ncl-red-light {
    background-color: rgba(216, 67, 21, 0.1);
}

.bg-ncl-navy-5 {
    background-color: rgba(0, 61, 122, 0.05);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.opacity-5 {
    opacity: 0.05;
}

.hover-bg-orange:hover {
    background-color: var(--ncl-orange) !important;
    color: white !important;
}

.hover-bg-dark-red:hover {
    background-color: #bf360c !important;
}

.hover-bg-ncl-red:hover {
    background-color: var(--ncl-red) !important;
}

.hover-text-ncl-red:hover {
    color: var(--ncl-red) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--ncl-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    /* px-8 py-4 */
    border-radius: 9999px;
    /* rounded-full */
    font-weight: 600;
    /* font-semibold */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* gap-2 */
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-lg */
}

.btn-primary:hover {
    background-color: #bf360c;
    /* Darker red */
    transform: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* hover:shadow-xl */
    color: white;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    /* px-8 py-4 */
    border-radius: 9999px;
    /* rounded-full */
    font-weight: 600;
    /* font-semibold */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* gap-2 */
    text-decoration: none;
}

.btn-outline-white:hover {
    background: white;
    color: var(--ncl-navy);
}

.btn-ncl-navy {
    background-color: var(--ncl-navy);
    color: white;
}

.btn-ncl-navy:hover {
    background-color: #002a52;
    color: white;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 1rem;
    transition: all 0.3s;
}

.nav-link {
    color: var(--ncl-text) !important;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    margin-right: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ncl-navy) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--ncl-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

/* Hero Section */
#home {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    /* Fallback */
    width: calc(50% + 50vw);
    /* Extend cover */
    background: linear-gradient(to right, rgba(10, 31, 68, 0.98) 0%, rgba(10, 31, 68, 0.95) 50%, rgba(10, 31, 68, 0.7) 80%, transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 100%;
}

.hero-text-container {
    max-width: 750px;
    /* Updated to 750px */
    padding-left: 2rem;
    /* px-8 default for smaller screens if needed, mostly overridden by media queries */
}

@media (min-width: 640px) {
    .hero-text-container {
        padding-left: 3rem;
        /* sm:px-12 */
    }
}

@media (min-width: 1024px) {
    .hero-text-container {
        padding-left: 6rem;
        /* lg:pl-24 */
    }
}

@media (min-width: 1280px) {
    .hero-text-container {
        padding-left: 8rem;
        /* xl:pl-32 */
    }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    /* py-1 px-3 */
    border-radius: 9999px;
    /* rounded-full */
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 700;
    /* font-bold */
    letter-spacing: 0.1em;
    /* tracking-widest */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    /* mb-6 */
}

.hero-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    /* font-bold */
    line-height: 1.15;
    margin-bottom: 1.5rem;
    /* mb-6 */
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
        /* sm:text-4xl */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        /* lg:text-5xl */
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
        /* xl:text-6xl */
        line-height: 1;
    }
}

.hero-desc {
    font-size: 1.125rem;
    /* text-lg */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    /* mb-10 */
    line-height: 1.625;
    max-width: 580px;
    /* max-w-[580px] */
}

@media (min-width: 1024px) {
    .hero-desc {
        font-size: 1.25rem;
        /* lg:text-xl */
    }
}

/* Cards */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Services */
.service-accordion .collapse {
    transition: all 0.3s ease;
}

.hover-border-ncl-navy:hover {
    border-color: rgba(0, 61, 122, 0.2) !important;
}

/* Footer */
footer {
    background-color: var(--ncl-navy);
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--ncl-orange);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background-color: #22c55e;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    background-color: #16a34a;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-logo {
	height: 80px !important;
	width: 120px !important;
}

/* Team Modal Enhancements */
.team-modal-content-area p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.member-modal-image-wrapper {
    background-color: var(--ncl-navy);
}

.letter-spacing-2 {
    letter-spacing: 0.2em;
}

.modal-content {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down .modal-body {
        padding: 2rem 1rem !important;
    }
}