/* =========================
   RESET & GLOBAL
========================= */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* =========================
   BUTTON BASE
========================= */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

/* =========================
   SECTION SPACING
========================= */
.section-padding {
    padding: 50px 0;
}

/* =========================
   GRID SYSTEM (Reusable)
========================= */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FOOTER COMMON LINK STYLE
========================= */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #eab308;
}
