
    /* Floating Animation - Image tala mathi hune */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); } /* 20px mathi jancha */
        100% { transform: translateY(0px); }
    }

    .floating-image {
        animation: float 4s ease-in-out infinite; /* 4 second ko loop ma chalcha */
        border-radius: 30px !important; /* Image ko corner curve garna */
    }

    /* Icons ra Text ko styling */
    .text-warning {
        color: #0dcaf0 !important;
    }

    .stat-card {
        transition: all 0.3s ease;
        background: #fff;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: #0dcaf0 !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .floating-image {
            max-width: 80%;
            margin-bottom: 30px;
        }
    }


/* Service Card Styling */
    .service-card {
        background: #fff;
        transition: all 0.4s ease;
        border: 1px solid #f8f9fa !important;
    }

    .service-card:hover {
        transform: translateY(-12px);
        background-color: #fff;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
        border-color: #0dcaf0 !important;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        background: #fff9e6; /* Very light yellow */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .service-card:hover .icon-box {
        background: #0dcaf0;
    }

    .service-card:hover .icon-box i {
        color: #fff !important;
    }

    .service-card h4 {
        color: #333;
        transition: 0.3s;
    }

    .service-card:hover h4 {
        color: #0dcaf0;
    }
/* Timeline Styling */
    .border-start-custom {
        border-left: 2px solid #dee2e6;
        padding-left: 30px;
        position: relative;
    }

    .experience-item {
        position: relative;
    }

    .timeline-dot {
        position: absolute;
        width: 14px;
        height: 14px;
        background-color: #333; /* Dark dot from image */
        border: 3px solid #fff;
        border-radius: 50%;
        left: -38px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .experience-card {
        transition: all 0.3s ease;
    }

    .experience-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

    /* Progress bar styling */
    .progress-bar {
        background-color: #0dcaf0 !important; /* Yellow theme color */
    }

    /*testomonial*/
                .slider-container {
                    width: 100%;
                    overflow: hidden;
                    padding: 33px 0;
                }
                .slider-track {
                    display: flex;
                    gap: 20px; /* Important fix */
                    transition: transform 0.5s ease-in-out;
                }
                .review-card {
                    flex: 0 0 calc((100% - 60px) / 4); /* 4 cards desktop */
                    background: #fff;
                    padding: 20px;
                    border-radius: 12px;
                    text-align: center;
                    box-shadow: 0 0 10px #ccc;
                }
                .review-img {
                    width: 100px;
                    height: 100px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 3px double #ffbb00;
                    margin: 7px auto;
                    display: block;
                }
                .review-stars { color: #ffbb00; }
                @media (max-width: 992px) {
                    .review-card {
                        flex: 0 0 calc((100% - 20px) / 2);
                    }
                }
                @media (max-width: 576px) {
                    .review-card {
                        flex: 0 0 100%;
                    }
                }

    /* Portfolio Overlay Styling */
    .portfolio-item {
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .portfolio-overlay {
        position: absolute;
        top: 100%; /* Shuru ma image vanda muni hunchha */
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8); /* Dark background with transparency */
        transition: all 0.4s ease-in-out;
        opacity: 0;
    }

    .portfolio-item:hover .portfolio-overlay {
        top: 0; /* Hover garda mathi slide hunchha */
        opacity: 1;
    }

    .portfolio-item img {
        transition: transform 0.5s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.1); /* Image halka zoom hunchha */
    }

    .portfolio-overlay h4 {
        transform: translateY(-20px);
        transition: all 0.4s ease 0.1s;
    }

    .portfolio-item:hover .portfolio-overlay h4 {
        transform: translateY(0);
    }
/* Blog Card Styling */
    .blog-card {
        transition: all 0.4s ease;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    }

    .blog-card img {
        transition: transform 0.5s ease;
    }

    .blog-card:hover img {
        transform: scale(1.1);
    }

    .read-more-link {
        font-size: 0.9rem;
        position: relative;
        transition: 0.3s;
    }

    .read-more-link:hover {
        color: #cc9a06 !important; /* Darker yellow on hover */
    }

    .read-more-link i {
        transition: margin-left 0.3s ease;
    }

    .read-more-link:hover i {
        margin-left: 8px !important;
    }

    /* Footer Custom Styling */
.footer-section {
    background-color: #111111 !important; /* Deep dark background */
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #0dcaf0;
    padding-left: 8px; /* Hover garda halka agadi move hunchha */
}

.social-icon-footer {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon-footer:hover {
    background: #0dcaf0;
    color: #000;
    transform: rotate(360deg); /* 360 degree rotation on hover */
}

.input-group .form-control:focus {
    box-shadow: none;
    outline: none;
}
