

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.product-content {
    padding: 2rem;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.product-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.product-card li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
}

.product-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}


/* About Section */
.about {
    background: white;
    padding: 100px 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #475569;
}


/*===========================
    09.Team css
===========================*/
@media (max-width: 767px) {
    .single-team {
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .single-team {
        text-align: center;
    }
}

.single-team .team-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.single-team .team-img img {
    width: 100%;
    height: 400px; /* Added: Fixed height for all images */
    object-fit: cover; /* Added: Ensures images fill space without distortion */
    object-position: center; /* Added: Centers the image */
    display: block; /* Added: Removes bottom spacing */
}

.single-team .team-img .team-social-links {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0px;
    display: flex;
    background: #E44E83;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    border-radius: 0 0 10px 10px;
}

.single-team .team-img .team-social-links ul li {
    display: inline-block;
}

.single-team .team-img .team-social-links ul li a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
}

.single-team:hover .team-social-links {
    opacity: 1;
    visibility: visible;
    height: 65px;
}

.single-team .team-info span {
    font-size: 18px;
    color: #313450;
}
/* WhatsApp button - always visible at fixed position */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

/* Scroll button - appears/disappears based on your JS */
.scroll-top {
    position: fixed;
    bottom: 80px; /* Positioned above WhatsApp button */
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #6366f1;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: none; /* Hidden by default, shown via JS */
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #4f46e5;
    transform: scale(1.1);
    color: #FFF;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .scroll-top {
        bottom: 70px; /* Adjusted for mobile */
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
