/* ===========================================
   INDEX.CSS - Home Page ONLY
   =========================================== */

/* 1. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding-top: 100px;
}
/* Home Page Hero Image */
.index-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.75)
        ),
        url("../images/FB_IMG_1750351023916.jpg") center / cover no-repeat;
}


.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--light);
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray);
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. Features Section */
.features {
    background-color: var(--dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 36px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
}

/* 3. About Preview Section */
.about {
    background-color: var(--secondary);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 59, 48, 0.3);
}

.experience-badge h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 500;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--light);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 16px;
}

.about-list {
    margin: 30px 0;
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light);
}

.about-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 18px;
}

/* 4. Products Preview */
.products {
    background-color: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-header {
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 1;
}

.product-image {
    position: relative;
    z-index: 2;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 180px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-image .slideimg1 {
    width: 230px;
}

.product-body {
    padding: 30px;
}

.product-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.product-features {
    margin: 20px 0;
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 14px;
}

.product-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 12px;
}

.product-cta {
    text-align: center;
    margin-top: 30px;
}

/* 5. Stats Section */
.stats {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 59, 48, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
}

.stat-card h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-card p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

/* 6. Home Page Responsive */
@media (max-width: 1200px) {
    .features-grid,
    .products-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .products-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}
/* Add to index.css, products.css, about.css - Enhanced Hover Effects */
/* =========================================== */

/* 3D Card Hover Effect */
.product-card, .feature-card, .value-card {
    position: relative;
    overflow: hidden;
}

.product-card::before, .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.7s ease;
}

.product-card:hover::before, .feature-card:hover::before {
    left: 100%;
}

/* Glow Effect on Hover */
.product-card:hover, .feature-card:hover {
    box-shadow: 
        0 20px 40px rgba(255, 59, 48, 0.2),
        0 0 30px rgba(255, 59, 48, 0.1);
}

/* Button Hover Enhancement */
.btn-primary:hover {
    animation: pulse 1s infinite;
    box-shadow: 
        0 10px 25px rgba(255, 59, 48, 0.4),
        0 0 20px rgba(255, 59, 48, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 
            0 10px 25px rgba(255, 59, 48, 0.4),
            0 0 20px rgba(255, 59, 48, 0.2);
    }
    70% {
        box-shadow: 
            0 10px 30px rgba(255, 59, 48, 0.6),
            0 0 25px rgba(255, 59, 48, 0.3);
    }
    100% {
        box-shadow: 
            0 10px 25px rgba(255, 59, 48, 0.4),
            0 0 20px rgba(255, 59, 48, 0.2);
    }
}
/* Add to index.css */
/* =========================================== */

/* Hero Image Animation */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Feature Card Hover Enhancement */
.feature-card:hover .feature-icon {
    animation: heartBeat 1.3s ease-in-out;
}

/* Product Card Entrance Animation */
.product-card {
    animation: popIn 0.7s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

/* Stat Card Counter Animation */
.stat-card h3 {
    animation: countUp 2s ease forwards;
}