
    /* General Styling */
    h3, h4 {
        color: #355EFC;
        font-weight: 600;
    }

    .nav-pills .nav-link {
        background-color: #f8f9fa;
        color: #355EFC;
        border: 1px solid #355EFC;
        margin: 0 5px;
        transition: 0.3s;
    }

    .nav-pills .nav-link:hover {
        background-color: rgb(254, 169, 1);
        color: #fff;
        border-color: rgb(254, 169, 1);
    }

    .nav-pills .nav-link.active {
        background-color: #355EFC;
        color: white;
        border-color: #355EFC;
    }

    .tab-content {
        background-color: #f2f6ff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    ul li {
        color: #333;
        line-height: 1.7;
    }

    .tab-pane img {
        border: 4px solid rgb(254, 169, 1);
    }

    address {
        background: rgba(254, 169, 1, 0.1);
        padding: 15px;
        border-left: 5px solid rgb(254, 169, 1);
        border-radius: 5px;
    }

    .breadcrumb-item a {
        color: rgb(254, 169, 1);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: #355EFC;
        font-weight: bold;
    }

    /* Optional WOW animation tweaks */
    .wow {
        animation-duration: 1s;
    }
.bg-primary-gradient {
    background: linear-gradient(135deg, #355EFC, #5f7dfc);
    box-shadow: 0 4px 10px rgba(53, 94, 252, 0.3);
    transition: 0.3s ease;
}
.bg-primary-gradient:hover {
    transform: translateY(-5px);
}

.bg-orange-gradient {
    background: linear-gradient(135deg, rgb(254, 169, 1), #ffb84d);
    box-shadow: 0 4px 10px rgba(254, 169, 1, 0.3);
    transition: 0.3s ease;
}
.bg-orange-gradient:hover {
    transform: translateY(-5px);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #2dce89, #5ddab4);
    box-shadow: 0 4px 10px rgba(45, 206, 137, 0.3);
    transition: 0.3s ease;
}
.bg-success-gradient:hover {
    transform: translateY(-5px);
}
