﻿ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    body

{
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.banner-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

    .banner-slide.active {
        opacity: 1;
        z-index: 1;
    }

.testimonial-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .testimonial-slide.active {
        opacity: 1;
        z-index: 1;
    }

.quality-badge {
    position: relative;
    overflow: hidden;
}

    .quality-badge::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shine 3s infinite;
    }

@keyframes shine {
    to {
        left: 100%;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card {
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FFD700;
    color: #00308F;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #F4C430;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.microscope-logo {
    position: relative;
}

    .microscope-logo::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #FFD700;
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: right;
    }

    .microscope-logo:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

/* Custom date picker styling */
input[type="date"], input[type="time"] {
    position: relative;
    padding-right: 30px;
}

    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
        background-color: #FFD700;
        padding: 5px;
        border-radius: 3px;
        cursor: pointer;
    }

/* Custom file upload styling */
.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

    .file-upload input[type="file"] {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }

    .whatsapp-float::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #25D366;
        border-radius: 50%;
        z-index: -1;
        opacity: 0.6;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}


