/* Start custom CSS for html, class: .elementor-element-accc3f3 *//* ===================================
   PARTNERSHIPS PAGE STYLING
   =================================== */

/* Main Container */
.partnerships-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
}

/* Page Header */
.partnerships-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #720000 0%, #7c1000 50%, #d39b00 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(114, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.partnerships-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.partnerships-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partnerships-subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.intro-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.intro-content {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    border-left: 6px solid #720000;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Highlights Box */
.highlights-box {
    background: linear-gradient(135deg, rgba(114, 0, 0, 0.05) 0%, rgba(211, 155, 0, 0.05) 100%);
    border-left: 5px solid #d39b00;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
}

.highlights-title {
    font-size: 20px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlights-title::before {
    content: '🤝';
    font-size: 24px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d39b00;
    font-weight: 700;
    font-size: 18px;
}

/* Partners Section */
.partners-section {
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.partners-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.partners-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
    border-radius: 2px;
}

/* Logo Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.partner-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(114, 0, 0, 0.15);
    border-color: #720000;
}

.partner-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 50px 0;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(114, 0, 0, 0.15);
    border-color: #720000;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(114, 0, 0, 0.05) 0%, rgba(211, 155, 0, 0.05) 100%);
    border-radius: 20px;
    border: 3px solid #f0f0f0;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1024px) {
    .partnerships-container {
        padding: 40px 15px;
    }
    
    .partnerships-title {
        font-size: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .partnerships-header {
        padding: 40px 20px;
    }
    
    .partnerships-title {
        font-size: 32px;
    }
    
    .partnerships-subtitle {
        font-size: 18px;
    }
    
    .intro-content {
        padding: 30px 25px;
    }
    
    .intro-content p {
        font-size: 17px;
    }
    
    .partners-section-title {
        font-size: 28px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    .partner-card {
        padding: 20px;
        min-height: 120px;
    }
    
    .partner-logo {
        max-height: 70px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .partnerships-container {
        padding: 30px 10px;
    }
    
    .partnerships-header {
        padding: 30px 15px;
    }
    
    .partnerships-title {
        font-size: 26px;
    }
    
    .partnerships-subtitle {
        font-size: 16px;
    }
    
    .intro-content {
        padding: 25px 20px;
    }
    
    .intro-content p {
        font-size: 16px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .partner-card {
        padding: 15px;
        min-height: 100px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 26px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .partnerships-container {
        padding: 20px;
    }
    
    .partnerships-header {
        background: #720000;
        box-shadow: none;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .partner-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}/* End custom CSS */