﻿
/* ===============================
   ECOSYSTEM & PARTNERSHIPS
   =============================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.ecosystem-partnerships-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 40%, rgba(45, 45, 45, 0.8) 100%), url('your-image-path.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    animation: fadeInUp 1s ease-out;
}

    .ecosystem-partnerships-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/* Title Styling */
.ecosystem-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ecosystem-partnerships-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Card Styling */
.ecosystem-card {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .ecosystem-card:hover {
        transform: translateY(-10px); /* Elevates card on hover */
        box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
    }

/* Icon Styling */
.ecosystem-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #f1c40f;
}

.ecosystem-icon {
    display: inline-block;
    font-size: 2.5rem;
}

/* Text Styling */
.ecosystem-card h6 {
    font-size: 1.2rem;
    font-weight: 600;
}

.ecosystem-text-light {
    color: #ccc; /* Light gray for text */
}

small {
    font-size: 0.875rem; /* Slightly smaller text */
    color: #bbb; /* Muted text for conditions */
}

/* Responsive Design */
@media (max-width: 992px) {
    .ecosystem-partnerships-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .ecosystem-card {
        padding: 25px;
    }

    .ecosystem-partnerships-section h3 {
        font-size: 1.8rem;
    }

    .ecosystem-text-light {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .ecosystem-card {
        margin-bottom: 20px;
    }

    .ecosystem-partnerships-section h3 {
        font-size: 1.6rem;
    }

    .ecosystem-text-light {
        font-size: 1rem;
    }
}




/* ===============================
   DEALERSHIPS
   =============================== */

/* Section Styling */
.dealerships-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 40%, rgba(45, 45, 45, 0.8) 100%), url('your-image-path.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

    .dealerships-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/* Title Styling */
.dealerships-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dealerships-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

    .dealerships-section h3:hover {
        color: #f39c12; /* Slightly darker yellow on hover */
    }

/* Item Styling */
.dealership-item {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    border-radius: 20px;
    padding: 35px;
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4); /* Stronger shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .dealership-item:hover {
        transform: translateY(-15px); /* Elevates card on hover */
        box-shadow: 0 8px 45px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
    }

    /* Text Styling */
    .dealership-item h6 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #f39c12; /* Gold color for the title of each item */
        text-transform: capitalize;
    }

    .dealership-item .dealership-icon {
        font-size: 3rem;
        color: #f39c12;
        margin-bottom: 15px;
    }

.text-soft {
    color: #ccc; /* Light gray for text */
    font-size: 1rem;
}

small {
    font-size: 0.875rem; /* Slightly smaller text */
    color: #bbb; /* Muted text for conditions */
}

/* Responsive Design */
@media (max-width: 992px) {
    .dealerships-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .dealership-item {
        padding: 30px;
    }

    .dealerships-section h3 {
        font-size: 2rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .dealership-item {
        margin-bottom: 25px;
    }

    .dealerships-section h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        width: 100%;
    }
}



/* ===============================
   PRIVATE SELLERS
   =============================== */

/* Section Styling */
.private-sellers-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 40%, rgba(45, 45, 45, 0.8) 100%), url('your-image-path.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
}

    .private-sellers-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/* Title Styling */
.private-sellers-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.private-sellers-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

    .private-sellers-section h3:hover {
        color: #f39c12; /* Slightly darker yellow on hover */
    }

/* Item Styling */
.private-seller-item {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    border-radius: 20px;
    padding: 35px;
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4); /* Stronger shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .private-seller-item:hover {
        transform: translateY(-15px); /* Elevates card on hover */
        box-shadow: 0 8px 45px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
    }

/* Content Styling */
.private-seller-content h6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f39c12; /* Gold color for the title of each item */
    text-transform: capitalize;
}

.private-seller-content .private-seller-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 15px;
}

/* Text Styling */
.text-soft {
    color: #ccc; /* Light gray for text */
    font-size: 1rem;
}

small {
    font-size: 0.875rem; /* Slightly smaller text */
    color: #bbb; /* Muted text for conditions */
}

/* Responsive Design */
@media (max-width: 992px) {
    .private-sellers-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .private-seller-item {
        padding: 30px;
    }

    .private-sellers-section h3 {
        font-size: 2rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .private-seller-item {
        margin-bottom: 25px;
    }

    .private-sellers-section h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        width: 100%;
    }
}




/* ===============================
   SPONSORSHIPS
   =============================== */

/* Section Styling */
.sponsorships-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 40%, rgba(45, 45, 45, 0.8) 100%), url('your-image-path.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
}

    .sponsorships-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/* Title Styling */
.sponsorships-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsorships-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

    .sponsorships-section h3:hover {
        color: #f39c12; /* Slightly darker yellow on hover */
    }

/* Item Styling */
.sponsorship-item {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    border-radius: 20px;
    padding: 35px;
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); /* Stronger shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .sponsorship-item:hover {
        transform: translateY(-15px); /* Elevates card on hover */
        box-shadow: 0 8px 45px rgba(0, 0, 0, 0.6); /* Stronger shadow on hover */
    }

/* Content Styling */
.sponsorship-content h6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f39c12; /* Gold color for the title of each item */
    text-transform: capitalize;
}

.sponsorship-content .sponsorship-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 15px;
}

/* Text Styling */
.text-soft {
    color: #ccc; /* Light gray for text */
    font-size: 1rem;
}

small {
    font-size: 0.875rem; /* Slightly smaller text */
    color: #bbb; /* Muted text for conditions */
}

/* CTA Button Styling */
.btn-accent {
    background-color: #f1c40f;
    color: #121212;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-accent:hover,
    .btn-accent:focus {
        background-color: #f39c12;
        color: #fff;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .sponsorships-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .sponsorship-item {
        padding: 30px;
    }

    .sponsorships-section h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .sponsorship-item {
        margin-bottom: 25px;
    }

    .sponsorships-section h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        width: 100%;
    }
}