 :root {
            /* Logo Colors */
            --axom-blue: #005696;
            --axom-green: #2596be;
            --axom-orange: #fbb034;
            --axom-dark: #002d50;
            --soft-bg: #fdfdfd;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--soft-bg);
            color: #1e1e1e;
            overflow-x: hidden;
        }

        /* --- LOGO BASED DECORATION --- */
        .color-accent-blob {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(104, 176, 48, 0.1) 0%, rgba(0, 86, 150, 0.05) 100%);
            filter: blur(100px);
            z-index: -1;
        }

        /* --- NAVIGATION --- */
        .navbar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 3px solid var(--axom-green);
            padding: 12px 0;
        }

        .nav-link {
            font-weight: 600;
            color: var(--axom-dark) !important;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--axom-orange) !important;
        }

        /* --- HERO SECTION --- */
       #heroCarousel {
        padding-top: 100px;
        min-height: 85vh;
        background: radial-gradient(circle at top right, rgba(104, 176, 48, 0.05), transparent);
    }

    .carousel-item {
        padding: 80px 0;
        min-height: 70vh;
    }

    .hero-content-box {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    /* Custom Indicators */
    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--axom-blue);
        margin: 0 8px;
    }

    .carousel-indicators .active {
        background-color: var(--axom-green);
        width: 30px;
        border-radius: 10px;
    }

    /* Floating Image Animation */
    .hero-img-float {
        animation: float 6s ease-in-out infinite;
        filter: drop-shadow(0 20px 40px rgba(0, 86, 150, 0.15));
        max-height: 450px;
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .btn-glass {
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid var(--axom-blue);
        color: var(--axom-blue);
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
        transition: 0.3s;
    }

    .btn-glass:hover {
        background: var(--axom-blue);
        color: white;
    }

        /* --- BENTO GRID SERVICES --- */
        /* Enhanced Service Styles */
        #services {
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            position: relative;
        }

        .service-matrix-item {
            background: #ffffff;
            border: 1px solid rgba(0, 86, 150, 0.08);
            border-radius: 30px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-matrix-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 86, 150, 0.12);
            border-color: var(--axom-blue);
        }

        /* Success Rate Indicator */
        .success-meter {
            height: 6px;
            width: 100%;
            background: #eee;
            border-radius: 10px;
            margin: 20px 0;
            position: relative;
        }

        .success-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--axom-green), #8ed64b);
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Floating Icons */
        .service-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            transition: 0.3s;
        }

        .service-matrix-item:hover .service-icon-wrap {
            transform: scale(1.1) rotate(5deg);
        }

        /* Commission Badge */
        .comm-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(251, 176, 52, 0.1);
            color: var(--axom-orange);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .feature-list li {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .feature-list li i {
            color: var(--axom-green);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        /* --- IDENTITY SECTION --- */
        .identity-card {
            background: linear-gradient(to right, var(--axom-blue), var(--axom-dark));
            color: white;
            border-radius: 40px;
            padding: 60px;
            position: relative;
        }

        .verified-badge {
            background: var(--axom-green);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* --- CONTACT & FORMS --- */
        .contact-pill {
            background: white;
            border: 2px solid var(--axom-orange);
            border-radius: 25px;
            padding: 30px;
            color: var(--axom-dark);
        }

        .btn-axom-primary {
            background: var(--axom-green);
            border: none;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(104, 176, 48, 0.2);
        }

        .btn-axom-primary:hover {
            background: var(--axom-blue);
            color: white;
            transform: scale(1.05);
        }

        /* --- FOOTER --- */
      .main-footer {
        background-color: #ffffff;
        border-top: 1px solid rgba(0, 86, 150, 0.1);
        padding-top: 80px;
        position: relative;
    }

    .footer-brand-text {
        font-size: 0.95rem;
        color: #6c757d;
        line-height: 1.6;
        margin-top: 20px;
        max-width: 300px;
    }

    .footer-heading {
        font-weight: 800;
        font-size: 1.1rem;
        color: var(--axom-dark);
        margin-bottom: 25px;
        position: relative;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 3px;
        background: var(--axom-green);
    }

    .footer-link {
        color: #6c757d;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .footer-link:hover {
        color: var(--axom-blue);
        transform: translateX(5px);
    }

    /* Newsletter Input */
    .newsletter-form .form-control {
        background: #f8fbff;
        border: 1px solid #e1e9f4;
        border-radius: 50px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .newsletter-btn {
        background: var(--axom-blue);
        color: white;
        border-radius: 50px;
        padding: 10px 25px;
        font-weight: 600;
        border: none;
        margin-top: 10px;
        transition: 0.3s;
    }

    .newsletter-btn:hover {
        background: var(--axom-green);
        transform: translateY(-2px);
    }

    /* Bottom Copyright Bar */
    .footer-bottom {
        background: #f8fbff;
        padding: 25px 0;
        margin-top: 60px;
        border-top: 1px solid #e1e9f4;
    }

    .social-circle {
        width: 35px;
        height: 35px;
        background: white;
        border: 1px solid #e1e9f4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--axom-blue);
        margin-left: 10px;
        transition: 0.3s;
    }

    .social-circle:hover {
        background: var(--axom-blue);
        color: white;
        border-color: var(--axom-blue);
    }