
    /* ======================== */
    /*      ICON & BUTTONS      */
    /* ======================== */

    .glowing-icon {
        text-shadow: 0 0 10px rgba(255, 180, 0, 0.6);
    }

    .glowing-btn {
        background-color: #176d17;
        color: #ffffff;
        border: none;
        box-shadow: 0 0 10px rgba(23, 109, 23, 0.7);
        transition: all 0.3s ease-in-out;
    }

    .glowing-btn:hover {
        background-color: #1b1480;
        /* Changed on hover */
        box-shadow: 0 0 15px rgba(23, 109, 23, 1), 0 0 25px rgba(23, 109, 23, 0.8);
        transform: scale(1.05);
    }

    .btn-flashy {
        background-color: #FFD700 !important;
        color: black !important;
        font-size: 2rem;
        font-weight: bold;
        text-transform: uppercase;
        padding: 20px 50px;
        border-radius: 15px;
        border: 5px solid white;
        box-shadow: 0 0 50px #FFD700, 0 0 100px #FFD700;
        animation: flashButton 1.5s infinite alternate;
        transition: all 0.3s ease-in-out;
        display: inline-block;
    }

    @keyframes flashButton {
        0% {
            transform: scale(1);
            box-shadow: 0 0 50px #FFD700, 0 0 100px #FFD700;
        }

        100% {
            transform: scale(1.3);
            box-shadow: 0 0 70px #FFD700, 0 0 150px #FFD700;
        }
    }

    .btn-flashy:hover {
        transform: scale(1.4);
        background-color: #FFC300 !important;
    }

    /* ======================== */
    /*     TESTIMONIAL & CARD   */
    /* ======================== */

    .testimonial-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 15px rgba(255, 180, 0, 0.3);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(255, 180, 0, 0.25);
    }

    /* ======================== */
    /*     OWL CAROUSEL STYLING */
    /* ======================== */

    .owl-dots .owl-dot span {
        background: #ffb400 !important;
        opacity: 0.6;
    }

    .owl-dots .owl-dot.active span {
        opacity: 1;
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        color: #ffb400 !important;
        font-size: 24px !important;
    }

    /* ======================== */
    /*        TAB MENU          */
    /* ======================== */

    .tab_menu {
        width: 100%;
        height: 110px;
        background: #fff;
        float: left;
        border-radius: 10px;
        margin-top: -50px;
        position: relative;
        z-index: 9;
        box-shadow: 0px 0 14px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        padding: 0 30px;
    }

    .tab_menu ul li {
        width: 14.25%;
        float: left;
        padding: 25px 0;
        display: flex;
        justify-content: center;
    }

    .tab_menu ul li:nth-child(5),
    .tab_menu ul li:nth-child(7) {
        background: #47001e;
        transform: skew(-30deg);
        color: #fff;
    }

    .tab_menu ul li:nth-child(6) {
        background: #775a04;
        transform: skew(-30deg);
        color: #049753;
    }

    .tab_menu ul li:nth-child(5) a,
    .tab_menu ul li:nth-child(7) a,
    .tab_menu ul li:nth-child(6) a {
        transform: skew(30deg);
        float: left;
        color: #fff;
    }

    .tab_menu ul li span {
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        width: 100%;
        float: left;
    }

    span.icon {
        float: left;
        width: 100%;
        text-align: center;
    }

    span.icon img {
        height: 35px;
    }

    /* ======================== */
    /*      NAVBAR STYLING      */
    /* ======================== */

    .navbar-nav .nav-link {
        color: white !important;
        transition: color 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .dropdown-item:hover {
        color: #ffc107 !important;
    }

    .navbar-nav .nav-link.active {
        color: #ffc107 !important;
    }

    .dropdown-menu {
        background-color: #2a2a3a !important;
        border-radius: 8px;
    }

    .dropdown-menu .dropdown-item {
        color: white !important;
        transition: background-color 0.3s ease-in-out;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #3a3a4a !important;
        color: #ffc107 !important;
    }

    /* ======================== */
    /*       LOGO STYLING       */
    /* ======================== */

    .responsive-logo {
        max-height: 50px;
        width: auto;
    }

    @media (max-width: 768px) {
        .responsive-logo {
            max-height: 50px;
            max-width: 200px;
        }
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        flex-grow: 1;
        white-space: nowrap;
    }

    .navbar-toggler {
        flex-shrink: 0;
    }

