:root {
    --primary-gold: #e6c26e;
    --dark-bg: #222222;
    --light-bg: #f8f9fa;
    --accent-purple: #9333ea;
}


.container-custom {
    max-width: 1200px;
    margin: 0 auto;
}


/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 3rem 0;
}



.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 0.95rem;
}

/* Section Styling */
.section-title {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title .brand {
    color: var(--primary-gold);
}

/* Feature Cards */
.feature-card {
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card-dark {
    background-color: var(--dark-bg);
    color: white;
}

.feature-card-light {
    background-color: var(--light-bg);
    color: #333;
}

.feature-card-gold {
    background-color: var(--primary-gold);
    color: #222;
}

.feature-card-purple {
    background-color: var(--accent-purple);
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* OEM/ODM Section */
.oem-section {
    background: linear-gradient(to right, #f0f0f0 50%, var(--accent-purple) 50%);
    border-radius: 12px;
    overflow: hidden;
}

.oem-left {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oem-left img {
    max-width: 100%;
    height: auto;
}

.oem-right {
    padding: 2rem;
    color: white;
}

.oem-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.oem-right p {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

.content{
    margin:0 auto;
}
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.contact-info h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.social-icons a {
    color: #333;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-icons a img{
    width: 80px;
}

.btn-submit {
    background-color: #f1c40f;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    border-radius: 4px;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .oem-section {
        background: var(--accent-purple);
    }
    .oem-left {
        background: #f0f0f0;
    }
    .hero h1 {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }

    .content{
        margin:0;
    }

    .social-icons a img{
        width: 40px;
    }

}