body {
            font-family: 'Segoe UI', sans-serif;
            background: #f5f7fa;
        }

        /* ================= HEADER ================= */
        .top-header {
            background: #fff;
            padding: 12px 0;
        }

        .logo-text {
            font-weight: bold;
            color: #0d3b66;
        }

        .logo-text span {
            color: #ff8c32;
        }

        /* SEARCH */
        .search-input {
            height: 42px;
            border-radius: 10px;
            padding-left: 40px;
            border: 1px solid #ddd;
        }

        .search-icon {
            position: absolute;
            left: 21px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        /* ================= NAVBAR ================= */
        .custom-navbar {
            background: linear-gradient(120deg, #0d3b66 20%, #1d5fa7 60%, #f5f7fa 60%);
            padding: 12px 0;
            position: relative;
        }

        .custom-navbar::before {
            content: "";
            position: absolute;
            left: -100px;
            top: 0;
            width: 300px;
            height: 100%;
            background: #0d3b66;
            border-radius: 0 80px 80px 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            background: #e9eef4;
            padding: 8px;
            border-radius: 50px;
            gap: 10px;
        }

        .nav-btn {
            border: none;
            background: #dfe6ee;
            padding: 8px 18px;
            border-radius: 30px;
            color: #333;
            text-decoration: none;
        }

        .nav-btn.special {
            background: linear-gradient(45deg, #ff8c32, #ff6a00);
            color: #fff;
        }

        /* MOBILE */
        .navbar-toggler {
            border: none;
            background: #ff8c32;
            color: #fff;
            padding: 6px 10px;
            border-radius: 8px;
        }

        /* HERO */
        .hero {
            background: #eef2f7;
            padding: 60px 0;
        }

        /* FEATURE CARDS */
        .feature-card {
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card i {
            font-size: 24px;
            color: #ff8c32;
            margin-bottom: 10px;
        }

        .small-title {
            font-size: 12px;
            color: #999;
        }

        /* FOOTER */
        .footer {
            background: #fff;
            padding: 40px 0;
        }

        /* ================= MOBILE FIX ================= */
        @media (max-width: 768px) {

            .logo-text {
                font-size: 16px;
            }

            .custom-navbar {
                background: #0d3b66;
            }

            .custom-navbar::before {
                display: none;
            }

            .nav-wrapper {
                display: none;
                flex-direction: column;
                background: #fff;
                border-radius: 10px;
                padding: 10px;
                margin-top: 10px;
            }

            .nav-wrapper.active {
                display: flex;
            }

            .nav-btn {
                width: 100%;
                background: #f1f5f9;
            }

            .nav-btn.special {
                background: #ff8c32;
            }

            .btn-warning {
                padding: 0.25rem 0.5rem;
                font-size: 0.875rem;
            }

            body {
                overflow-x: hidden;
            }
        }

        .no-link-style a {
            all: unset;
            /* removes all inherited styles */
            cursor: pointer;
            /* keeps it clickable */
        }

        .no-link-style a.nav-btn {
            /* reapply only what you want */
            color: #000;
            /* font-weight: 500; */
        }



        /* HERO */
        .hero-exact {
            background: #f1f3f6;
            padding: 30px 0;
        }

        .hero-box {
            background: linear-gradient(to right, #f5f7fa, #eef2f7);
            padding: 40px 10px;
        }

        .hero-heading {
            font-size: 28px;
            font-weight: 700;
            color: #0d3b66;
            line-height: 1.4;
        }

        .hero-heading span {
            color: #ff8c32;
        }

        .hero-sub {
            color: #555;
            margin-top: 10px;
        }

        .hero-btn {
            border: 1px solid #0d3b66;
            color: #0d3b66;
            padding: 6px 14px;
            font-weight: 600;
            margin-top: 10px;
        }

        .hero-side-img {
            max-width: 120px;
        }

        /* SERVICES */
        .section-heading {
            font-weight: 700;
            margin-top: 20px;
        }

        .services-exact {
            background: #f7f9fb;
            padding: 40px 0;
        }

        .service-box {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #ddd;
            transition: 0.3s;
        }

        .service-box:hover {
            transform: translateY(-5px);
        }

        .service-box i {
            font-size: 28px;
            color: #0d3b66;
            margin-bottom: 10px;
        }

        .service-box h6 {
            font-weight: 700;
        }

        .service-btn {
            background: #0d3b66;
            color: #fff;
            font-size: 13px;
            padding: 5px 12px;
        }

        /* TABLE */
        .compare-exact {
            padding: 40px 0;
        }

        .compare-table th {
            background: #f1f3f6;
            font-weight: 600;
        }

        /* MOBILE */
        @media (max-width: 768px) {

            .hero-heading {
                font-size: 18px;
            }

            .hero-side-img {
                display: none;
            }

            .service-box {
                margin-bottom: 15px;
            }
        }


        .footer-pro {
            background: #0d3b66;
            color: #fff;
            padding: 50px 0 20px;
        }

        /* LOGO */
        .footer-logo {
            font-weight: 700;
            color: #fff;
        }

        .footer-logo span {
            color: #ff8c32;
        }

        /* TEXT */
        .footer-text {
            color: #cbd5e1;
            font-size: 14px;
            margin: 15px 0;
        }

        .contact-info p {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .contact-info i {
            margin-right: 8px;
            color: #ff8c32;
        }

        /* TITLES */
        .footer-title {
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* LINKS */
        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: #ff8c32;
            padding-left: 5px;
        }

        /* SOCIAL */
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: #1d5fa7;
            color: #fff;
            text-align: center;
            line-height: 35px;
            border-radius: 50%;
            margin-right: 8px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #ff8c32;
        }

        /* BOTTOM */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
            padding-top: 15px;
            text-align: center;
            font-size: 14px;
            color: #cbd5e1;
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .footer-pro {
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }