/* Partnerships Page CSS - Professional */
:root {
    --primary-color: #002147;
    --secondary-color: #002147;
    --accent-color: #F2A900;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --section-padding: 80px 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Section */
.partnerships-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/gallery-4.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 76px; /* Adjust based on header height */
}

.partnerships-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partnerships-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-bg);
}

/* Partnership Types */
.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.p-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.p-card:hover {
    transform: translateY(-10px);
}

.p-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.p-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Benefits Section */
.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefits-list li {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.benefits-list li i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
}

/* CTA Section */
.partner-cta {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.partner-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.btn-partner {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-partner:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .partnerships-hero h1 {
        font-size: 2.5rem;
    }
    .partnerships-hero {
        height: 50vh;
    }
}
