
/* HERO SECTION */
.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 8%;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 700px;
}

/* .hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ee161f;
}

.hero-text p {
   
    font-size: 16px;
    color: #dcdcdc;
} */


.hero-text h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 800;
    color: #ee161f;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(238, 22, 31, 0.5);
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #dcdcdc;
    max-width: 780px;
    margin: auto;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}


.hero-img img {
    width: 380px;
    max-width: 100%;
   
}

/* CARD SECTION */
.cards {
    width: 100%;
    padding: 60px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    font-size: 14px;
    color: #dcdcdc;
}

