:root {
    --primary: #0d47a1;     
    --secondary: #e53935;   
    --warning: #ffb300;     
    --dark: #0a2540;        
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* Navbar & Brand Adjustments */
.navbar {
    border-bottom: 3px solid var(--primary);
    padding: 10px 0;
}
.logo-image {
    object-fit: contain;
    border: 2px solid var(--primary);
    background: #fff;
}
.logo-text {
    color: var(--primary) !important;
}
.logo-subtext {
    color: var(--secondary) !important;
}

/* Custom 5 Column Display Helpers for Row */
@media (min-width: 992px) {
    .col-lg-2\.4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Hero Display Setup */
.hero-section {
    background: linear-gradient(135deg, #0d47a1 0%, #06234d 100%);
    min-height: 75vh;
    padding: 80px 0;
    position: relative;
}
.z-2 { z-index: 2; }

.css-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.04;
    background-image: radial-gradient(#ffffff 2px, transparent 2px), radial-gradient(#ffffff 2px, #0d47a1 2px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    pointer-events: none;
    z-index: 1;
}

/* Grid Badges inside Hero Banner */
.badge-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.badge-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}
.badge-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Presentation */
.icon-wrapper {
    width: 65px;
    height: 65px;
    transition: all 0.3s ease;
}
.service-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.08) !important;
    border-bottom: 4px solid var(--secondary) !important;
}
.extra-small {
    font-size: 12px;
}

/* Stats Element Styling */
.stats-section {
    background: linear-gradient(90deg, #0d47a1 0%, #0a3981 100%) !important;
}

/* Utilities */
.tracking-wider { letter-spacing: 1.5px; }
.tracking-tight { letter-spacing: -0.5px; }