body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        /* Header Title (Brand) */
        .brand-title {
            line-height: 1.2;
        }

        .brand-title strong {
            font-size: 16px;
            color: #0a2558;
        }

        .brand-title small {
            font-size: 11px;
            color: #fbc531;
            font-weight: 600;
        }

        /* Floating Features Bar */
        .floating-bar {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: -60px;
            position: relative;
            z-index: 10;
            border-bottom: 4px solid #0a2558;
        }

        .feature-box {
            display: flex;
            align-items: center;
        }

        .feature-box i {
            font-size: 2rem;
            color: #0a2558;
            margin-right: 15px;
        }

        .feature-box h6 {
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 2px;
            color: #0a2558;
            text-transform: uppercase;
        }

        .feature-box p {
            font-size: 0.75rem;
            color: #666;
            margin: 0;
            line-height: 1.3;
        }

        /* Section Titles */
        .section-header {
            text-align: center;
            margin: 60px 0 40px 0;
            position: relative;
        }

        .section-header h4 {
            font-weight: 700;
            color: #0a2558;
            display: inline-block;
            padding: 0 20px;
            background: #f4f7f6;
            position: relative;
            z-index: 2;
        }

        .section-header::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            border-top: 2px dashed #ccc;
            z-index: 1;
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: url('<?= base_url("assets/img/pattern-bg.png") ?>') no-repeat top right;
            background-size: contain;
            background-color: #ffffff;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #555;
            margin-top: 15px;
            margin-bottom: 30px;
        }

        .hero-desc {
            font-size: 1rem;
            color: #555;
            max-width: 90%;
        }

        .btn-custom-primary {
            background-color: #051937;
            color: #fff;
            border-radius: 30px;
            padding: 10px 30px;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .btn-custom-primary:hover {
            background-color: #0a295c;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-custom-outline {
            background-color: #fff;
            color: #051937;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            padding: 8px 30px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-custom-outline:hover {
            border-color: #051937;
            background-color: #f8f9fa;
            color: #051937;
        }

        .quote-box {
            display: flex;
            align-items: center;
            margin-top: 40px;
        }

        .quote-icon {
            background: #f0f4f8;
            color: #051937;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        /* Features Bar */
        .features-bar {
            background-color: #051937;
            border-radius: 15px;
            padding: 30px 20px;
            margin-top: -30px;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 20px rgba(5, 25, 55, 0.2);
        }

        .feature-item {
            color: #fff;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-item:last-child {
            border-right: none;
        }

        .feature-item i {
            font-size: 2.5rem;
            color: #fbc531;
            margin-bottom: 15px;
        }

        .feature-item h6 {
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .feature-item p {
            font-size: 0.75rem;
            color: #cbd5e1;
            margin: 0;
            padding: 0 10px;
        }

        /* Stats Cards */
        .stats-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            border-top: 4px solid transparent;
        }

        .stat-card.blue {
            border-top-color: #0984e3;
        }

        .stat-card.yellow {
            border-top-color: #fdcb6e;
        }

        .stat-card.green {
            border-top-color: #00b894;
        }

        .stat-card.red {
            border-top-color: #d63031;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 15px auto;
        }

        .stat-card.blue .stat-icon {
            background: rgba(9, 132, 227, 0.1);
            color: #0984e3;
        }

        .stat-card.yellow .stat-icon {
            background: rgba(253, 203, 110, 0.1);
            color: #fdcb6e;
        }

        .stat-card.green .stat-icon {
            background: rgba(0, 184, 148, 0.1);
            color: #00b894;
        }

        .stat-card.red .stat-icon {
            background: rgba(214, 48, 49, 0.1);
            color: #d63031;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #333;
            margin-bottom: 0;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            margin-top: 5px;
        }

        .stat-link {
            display: block;
            margin-top: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            color: #0984e3;
            text-decoration: none !important;
            text-align: left;
        }

        /* Banner Bottom */
        .banner-bottom {
            background-color: #051937;
            border-radius: 15px;
            padding: 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .banner-bottom h3 {
            font-weight: bold;
            margin-bottom: 15px;
        }

        .banner-bottom .text-gold {
            color: #fbc531;
        }

        /* Fluid Rounded Image */
        .fluid-rounded-img {
            width: 100%;
            /* Fills the width of the parent container */
            height: 300px;
            /* Fixed height, or use auto */
            object-fit: cover;
            /* Ensures image covers the space without stretching */
            border-radius: 1.5rem;
            /* Creates stylish rounded corners */
        }

        /* Map Section */
        .map-section {
            padding: 60px 0;
            position: relative;
        }

        #map {
            height: 450px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        /* Custom Legend Map */
        .map-legend {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            font-size: 12px;
            font-weight: bold;
        }

        .legend-color {
            display: inline-block;
            width: 15px;
            height: 15px;
            margin-right: 8px;
            vertical-align: middle;
            border-radius: 3px;
        }

        /* Marquee Footer */
        .marquee-footer {
            background-color: #051937;
            color: #ffffff;
            padding: 10px 0;
            font-weight: bold;
            text-transform: uppercase;
            position: fixed;
            bottom: 0;
            width: 100%;
            z-index: 999;
        }

        /* Footer */
        footer {
            background-color: #0b2545;
            color: #fff;
            padding: 60px 0;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }