    .display-md-28 {
        font-size: 1rem;
    }

    .highlight {
        color: #fcaf17;
    }

    .navbar-header-custom {
        padding: 2px 0 10px 0;
    }

    .call-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: 30px;
        background: #fcaf17;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        line-height: 60px;
        z-index: 1000;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }



    /* Hover Effect */
    .call-float:hover {
        transform: scale(1.1);
        background: #e39a10;
    }

    /* Icon Animation */
    .call-float i {
        animation: ring 1.5s infinite;
    }

    /* Pulse Effect */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(252, 175, 23, 0.7);
        }

        70% {
            box-shadow: 0 0 0 20px rgba(252, 175, 23, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(252, 175, 23, 0);
        }
    }

    /* Phone Ring Animation */
    @keyframes ring {
        0% {
            transform: rotate(0);
        }

        10% {
            transform: rotate(15deg);
        }

        20% {
            transform: rotate(-15deg);
        }

        30% {
            transform: rotate(10deg);
        }

        40% {
            transform: rotate(-10deg);
        }

        50% {
            transform: rotate(0);
        }
    }

    .display-25 {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
        overflow: hidden;
        background: #fff;
        position: relative;
    }

    .card-style7>img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    a:hover {
        color: #e39a10;
    }

    /* Quick Links Hover Color */
    .col-lg-3 ul li a:hover {
        color: #e39a10 !important;
    }

    .say-hello a {
        transition: color 0.3s ease;
    }

    .say-hello a:hover {
        color: #e39a10 !important;
    }

    #nav a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    #nav a:hover {
        color: #e39a10;
    }

    .security-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .security-popup-content {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        max-width: 500px;
        width: 90%;
        position: relative;
    }

    .popup-logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .popup-close {
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 28px;
        cursor: pointer;
    }

    .security-popup h3 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .security-popup p {
        margin-bottom: 25px;
        color: #666;
    }

    .navbar-brand img {
        max-height: 70px;
        transition-duration: 0.5s;
    }

    .call-text a:hover {
        color: #2a334e;
    }