* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: "Poppins", sans-serif;

}
img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
:root {
    --yellow: #f9ed32;
    --black: #000000;
    --gray: #3a3939;
    --light-gray: #f2f2f2;
}
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: "Poppins", sans-serif;
}

:root {
    --yellow: #f9ed32;
    --black: #000000;
    --gray: #3a3939;
    --light-gray: #f2f2f2;
}

/* Global container */
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Header Section */
.header {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-gray);
}

.header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--gray);
}


/* Call to Action Section */
.cta {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--light-gray);
}

.cta h2 {
    font-size: 2.8rem; /* Responsive-friendly */
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--black);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.cta .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(228, 229, 28, 0.5);
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}



.cta .btn:hover {
    background-color: var(--black);
    color: var(--yellow);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.cta .btn:hover::after {
    width: 200%;
    height: 200%;
}

/* For better mobile responsiveness */
@media (max-width: 600px) {
    .cta h2 {
        font-size: 2rem;
    }
    .cta p {
        font-size: 1rem;
    }
    .cta .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
/* Two Sides Section */
.two-sides {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.two-sides .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.two-sides .left-side {
    width: 50%;
    padding-right: 20px;
}

.two-sides .left-side p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.features-list li {
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.features-list li .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #6a0174; /* Yellow color for checkmark */
    font-size: 1.2rem;
}

.right-side {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    outline: 3px solid #1e0055;
}

.types-of-patches {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}
.types-of-patches .section-title {
    font-size: 36px;
    color: #1e0055;
    margin-bottom: 40px;
}
.patch-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.patch-cards .card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
    outline: 3px solid #6a0174;
}
.patch-cards .card:hover {
    transform: translateY(-10px);
}
.patch-cards img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}
.patch-cards .card-title {
    font-size: 1.5rem;
    color: var(--black);
    color: #6a0174;
    margin: 15px 0;
}
.patch-cards p {
    font-size: 1rem;
    color: #6a0174;
}

.brands {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.brands .section-title {
    font-size: 36px;
    color: var(--black);
    color: #1e0055;
    margin-bottom: 40px;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.brand-logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.brand-logo img:hover {
    transform: scale(1.1);
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .patch-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-card {
        flex-basis: 100%;
    }

    .header h1 {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 28px;
    }
    .two-sides .container {
        flex-direction: column;
    }

    .two-sides .left-side, 
    .right-side {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }

    .left-side {
        padding-right: 0;
    }
    .patch-cards {
        grid-template-columns: 1fr;
    }
    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .brand-logos {
        grid-template-columns: 1fr;
    }
}
