/* Partnerships Page Styles - Premium 30 Crore UI Design */

.partnerships-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.partnerships-hero-bg {
    position: absolute;
    inset: 0;
}

/* Premium Gradient Meshes */
.partnerships-gradient-mesh-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40rem;
    height: 40rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(147, 51, 234, 0.3), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    filter: blur(5rem);
    animation: floatPartnership1 15s ease-in-out infinite;
    opacity: 0.8;
}

.partnerships-gradient-mesh-2 {
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 35rem;
    height: 35rem;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.3), rgba(6, 182, 212, 0.35), rgba(168, 85, 247, 0.2));
    border-radius: 50%;
    filter: blur(4.5rem);
    animation: floatPartnership2 18s ease-in-out infinite;
    opacity: 0.9;
}

.partnerships-gradient-mesh-3 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 28rem;
    height: 28rem;
    background: linear-gradient(225deg, rgba(168, 85, 247, 0.25), rgba(236, 72, 153, 0.2), rgba(34, 197, 94, 0.15));
    border-radius: 50%;
    filter: blur(3.5rem);
    animation: floatPartnership3 12s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes floatPartnership1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(120px, -80px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-60px, 100px) scale(0.9) rotate(240deg); }
}

@keyframes floatPartnership2 {
    0%, 100% { transform: translate(0, 0) scale(1.1) rotate(0deg); }
    50% { transform: translate(-100px, 80px) scale(0.8) rotate(180deg); }
}

@keyframes floatPartnership3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -30px) scale(1.2) rotate(90deg); }
    75% { transform: translate(-40px, 60px) scale(0.9) rotate(270deg); }
}

/* Sophisticated Grid Pattern */
.partnerships-animated-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        linear-gradient(rgba(147, 51, 234, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 120px 120px, 120px 120px;
    animation: gridMovePartnership 20s linear infinite;
}

@keyframes gridMovePartnership {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px, 120px 120px, 120px 120px; }
}

/* Floating Particles */
.partnerships-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Premium Floating Orbs */
.partnerships-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
    border-radius: 50%;
    animation: orbitFloat1 20s linear infinite;
}

.partnerships-particles::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
    border-radius: 50%;
    animation: orbitFloat2 25s linear infinite reverse;
}

@keyframes orbitFloat1 {
    0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

@keyframes orbitFloat2 {
    0% { transform: rotate(0deg) translateX(300px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(300px) rotate(-360deg); }
}

.partnerships-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.partnerships-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.partnerships-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 10s; }
.partnerships-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.partnerships-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 11s; }
.partnerships-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
.partnerships-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 9s; }
.partnerships-particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 15s; }
.partnerships-particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 12s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% { 
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Hero Grid Layout */
.partnerships-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .partnerships-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Hero Content Styling */
.partnerships-hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .partnerships-hero-content {
        text-align: left;
    }
}

.partnerships-hero-badge {
    position: relative;
    display: inline-flex;
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    border-radius: 2rem;
    filter: blur(8px);
    z-index: -1;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.partnerships-hero-text {
    margin-bottom: 3rem;
}

.partnerships-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 40%, #c7d2fe 70%, rgba(255, 255, 255, 0.9) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
}

@media (min-width: 640px) {
    .partnerships-main-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .partnerships-main-title {
        font-size: 4.5rem;
    }
}

.title-line {
    display: inline-block;
    animation: titleReveal 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partnerships-hero-subtitle {
    font-size: 2.25rem;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    margin: 0;
    animation: subtitleReveal 1.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
    font-family: 'Inter', sans-serif;
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partnerships-hero-cta {
    animation: ctaReveal 1.5s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes ctaReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partnerships-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.4),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.partnerships-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partnerships-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.5),
        0 10px 25px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

.partnerships-cta-btn:hover::before {
    opacity: 1;
}

/* Premium Section Styling */
.partnerships-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%);
    position: relative;
}

.partnerships-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.partnerships-section-header {
    text-align: left;
    margin-bottom: 80px;
    padding-left: 3cm;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1.5rem;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* Why Partner Visualization */
.partnerships-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.why-partner-section {
    width: 100%;
    max-width: 600px;
}

.partner-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partner-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.partner-section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Revolving Earth Container */
.revolving-earth-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

/* Central Earth */
.earth-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.earth-globe {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: earthRotate 20s linear infinite;
}

@keyframes earthRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Orbital Rings */
.orbital-ring {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: ringRotate1 15s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: ringRotate2 25s linear infinite reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation: ringRotate3 35s linear infinite;
}

@keyframes ringRotate1 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotate2 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotate3 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Revolving Boxes */
.revolving-boxes {
    position: relative;
    width: 100%;
    height: 100%;
}

.partner-box {
    position: absolute;
    width: 180px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.partner-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Box Positioning and Animation */
.box-1 {
    animation-name: revolveBox1;
    transform-origin: 225px 225px;
}

.box-2 {
    animation-name: revolveBox2;
    transform-origin: 225px 225px;
    animation-delay: -5s;
}

.box-3 {
    animation-name: revolveBox3;
    transform-origin: 225px 225px;
    animation-delay: -10s;
}

.box-4 {
    animation-name: revolveBox4;
    transform-origin: 225px 225px;
    animation-delay: -15s;
}

@keyframes revolveBox1 {
    0% { transform: rotate(0deg) translateX(135px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(135px) rotate(-360deg); }
}

@keyframes revolveBox2 {
    0% { transform: rotate(0deg) translateX(135px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(135px) rotate(-360deg); }
}

@keyframes revolveBox3 {
    0% { transform: rotate(0deg) translateX(135px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(135px) rotate(-360deg); }
}

@keyframes revolveBox4 {
    0% { transform: rotate(0deg) translateX(135px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(135px) rotate(-360deg); }
}

/* Box Content */
.box-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.box-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.box-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .revolving-earth-container {
        width: 350px;
        height: 350px;
    }
    
    .partner-box {
        width: 140px;
        padding: 1rem;
    }
    
    .box-1, .box-2, .box-3, .box-4 {
        transform-origin: 175px 175px;
    }
    
    @keyframes revolveBox1 {
        0% { transform: rotate(0deg) translateX(105px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(105px) rotate(-360deg); }
    }
    
    @keyframes revolveBox2 {
        0% { transform: rotate(0deg) translateX(105px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(105px) rotate(-360deg); }
    }
    
    @keyframes revolveBox3 {
        0% { transform: rotate(0deg) translateX(105px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(105px) rotate(-360deg); }
    }
    
    @keyframes revolveBox4 {
        0% { transform: rotate(0deg) translateX(105px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(105px) rotate(-360deg); }
    }
    
    .ring-1 { width: 150px; height: 150px; }
    .ring-2 { width: 230px; height: 230px; }
    .ring-3 { width: 310px; height: 310px; }
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.partnership-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
    position: relative;
    animation: cardSlideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(60px) rotateX(10deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.partnership-card:nth-child(1) { animation-delay: 0.1s; }
.partnership-card:nth-child(2) { animation-delay: 0.2s; }
.partnership-card:nth-child(3) { animation-delay: 0.3s; }
.partnership-card:nth-child(4) { animation-delay: 0.4s; }
.partnership-card:nth-child(5) { animation-delay: 0.5s; }
.partnership-card:nth-child(6) { animation-delay: 0.6s; }
.partnership-card:nth-child(7) { animation-delay: 0.7s; }
.partnership-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes cardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(10deg) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-20px) rotateX(0deg) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 60px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
}

.partnership-card:hover::before {
    opacity: 1;
}

.partnership-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.partnership-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.6));
    pointer-events: none;
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

.partnership-card:hover .partnership-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.05) contrast(1.3) saturate(1.2);
}

.partnership-content {
    padding: 35px;
    position: relative;
}

.partnership-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.partnership-content h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.partnership-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 80px 0;
    background: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3949ab, #5c6bc0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #ffffff;
    color: #1a237e;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .partnership-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
        justify-content: center;
    }
}

/* Platform Image Card Link Styling */
.platform-image-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.platform-image-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.platform-image-card:hover .platform-card-title {
    color: #5c6bc0;
}