/* Global Styles */
body {
    background: #f5f5f5;
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    width: 100vw;
    height: 100vh; /* full viewport height */
    position: relative;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content .btn {
    display: inline-block;
    background: #df2e38;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 2px solid #df2e38;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background: transparent;
    color: #08cb00;
    border-color: #08cb00;
}

/* Container for inner sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #08cb00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Featured Section Full Width */
.featured {
    width: 100vw;
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}


.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #08cb00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Keep the grid constrained */
.featured-grid {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    gap: 2rem;
}

/* Tablets */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards on tablets */
    }
}

/* Phones */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr; /* 1 card on mobile */
    }
}


.featured-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 8px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.featured-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
    text-transform: uppercase;
}

.featured-card .desc {
    background: #df2e38; /* red background */
    color: #fff;          /* white text */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.featured-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #08cb00;
    margin-top: auto;
    margin-bottom: 1rem;
}

/* Partner Section */
.partner {
    padding: 4rem 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #08cb00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.partner-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Buttons (global) */
.btn {
    display: inline-block;
    background: #df2e38;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 2px solid #df2e38;
    transition: all 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: #08cb00;
    border-color: #08cb00;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        fo
