/* Hero Section */
.partner-hero {
    position: relative;
    margin-top: -100px;
    background-image: url("../images/hdf3.ced1c8abeb9e.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 6rem;
    margin-bottom: 5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.92), rgba(184, 84, 80, 0.88));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
}

.stat-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-orange);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Section Title */
.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-title-center h2.text-white {
    color: white;
}

.section-title-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-title-center p.text-white {
    color: rgba(255, 255, 255, 0.95);
}

/* Why Partner Section */
.why-partner-section {
    padding: 5rem 0;
    background: white;
}

.partner-image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.why-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.why-content>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.value-text p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Partnership Types Section */
.partnership-types-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.partnership-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-red));
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.partnership-card.featured {
    border: 3px solid var(--accent-orange);
    transform: scale(1.02);
}

.partnership-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.featured-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    padding: 8px 45px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    transition: transform 0.3s ease;
}

.partnership-card:hover .partnership-icon {
    transform: scale(1.1) rotate(5deg);
}

.partnership-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.partnership-card>p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.partnership-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f0f8ff;
}

.partnership-benefits li:last-child {
    border-bottom: none;
}

.partnership-benefits li i {
    color: var(--accent-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-partnership {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partnership:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    color: white;
}

/* Current Partners Section */
.current-partners-section {
    padding: 5rem 0;
    background: white;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.partner-item {
    text-align: center;
}

.partner-logo-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #f0f8ff;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-box {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.partner-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Partnership Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-orange), var(--primary-red));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Partner Form Section */
.partner-form-section {
    padding: 5rem 0;
    background: white;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.section-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8f4f8;
    font-family: 'Poppins', sans-serif;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e8f4f8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .partner-image-wrapper {
        margin-bottom: 2rem;
    }

    .partner-image {
        height: 400px;
    }

    .partnership-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        padding: 6rem 0 4rem;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-box {
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .partnership-card.featured {
        transform: scale(1);
    }

    .partnership-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .partners-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title-center h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .value-point {
        flex-direction: column;
        text-align: center;
    }

    .value-icon {
        margin: 0 auto;
    }
}