/* Resetting default margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic setup for html, body */
html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #181818;
    color: #ecf0f1;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #222;
    color: #ecf0f1;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Partners Section */
.partner-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
}

.partner-card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Makes the layout responsive */
}

/* Individual Partner Cards */
.partner-card {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    width: 30%; /* Cards side-by-side */
    text-align: center;
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-card img {
    width: 80%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.partner-card h5 {
    color: #1abc9c;
    margin-top: 10px;
}

.partner-card p {
    font-size: 14px;
    color: #bdc3c7;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #ecf0f1;
    width: 100%;
    background-color: #232323;
    border-top: 3px solid #3498db;
    margin-top: auto; /* Ensures footer stays at the bottom */
}

footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
    color: #1abc9c;
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.footer-links a {
    font-size: 16px;
}

.footer-links a:hover {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .partner-card {
        width: 100%; /* Stack cards on smaller screens */
    }
}
