﻿body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.navbar {
    transition: background 0.3s ease;
}

    .navbar.scrolled {
        background-color: #ffffff !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .navbar .nav-link, .navbar-brand {
        color: #fff !important;
        font-weight: 600;
    }

    .navbar.scrolled .nav-link, .navbar.scrolled .navbar-brand {
        color: #000 !important;
    }

.hero {
    background: linear-gradient(120deg, #7f00ff, #e100ff, #ff5f6d, #ffc371);
    background-size: 300% 300%;
    animation: gradient 8s ease infinite;
    padding: 160px 1rem 80px;
    color: white;
    text-align: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.btn-primary {
    background-color: #4f46e5;
    border: none;
}

.btn-danger {
    background-color: #ef4444;
    border: none;
}

.timer-box {
    background: white;
    color: black;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
}

    .timer-box h2 {
        font-size: 28px;
        font-weight: 700;
    }

    .timer-box button {
        margin: 5px;
    }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.feature-box {
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 30px;
    border-radius: 12px;
}

    .feature-box:hover {
        background-color: #ede9fe;
        transform: scale(1.05);
    }

.icon-hover {
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 15px;
    color: #6b7280;
}

.feature-box:hover .icon-hover {
    color: #7c3aed;
    transform: translateY(-6px) scale(1.2);
}
footer {
    background-color: #f3f4f6;
    padding: 20px;
    text-align: center;
}

.card-hover {
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

    .card-hover:hover {
        background-color: #ede9fe; /* light violet */
        transform: scale(1.05);
    }


.shop-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .shop-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .shop-hover .btn {
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .shop-hover:hover .btn {
        background-color: #6d28d9 !important; /* brighter violet */
        transform: scale(1.05);
    }


.product-card {
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    padding: 30px;
    border: 1px solid #eee;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }

.product-icon {
    font-size: 2.5rem;
    color: #6366f1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-card:hover .product-icon {
    color: #7c3aed;
    transform: scale(1.2) translateY(-4px);
}

.btn-view {
    background-color: #6366f1;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .btn-view:hover {
        background-color: #4f46e5;
    }


.testimonial-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

    .testimonial-box:hover {
        transform: translateY(-5px);
    }

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
}

.team-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.img-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

    .img-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #e5e7eb;
        transition: all 0.4s ease;
    }

/* CEO badge */
.ceo-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hover effects */
.team-card:hover img {
    transform: scale(1.1);
    border-color: #0d6efd;
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.35);
}

.team-card:hover .ceo-badge {
    opacity: 1;
    bottom: 10px;
}

.team-card h5 {
    margin-top: 12px;
    font-weight: 600;
}

.team-card p {
    font-size: 14px;
    color: #6c757d;
}

