/* Active Navigation Styles for Partners Page */
nav ul li a.active {
    color: #00ff88 !important;
    position: relative !important;
}

nav ul li a.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #00ff88 !important;
    border-radius: 2px !important;
}



.partners-header {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 92, 56, 0.9), rgba(0, 82, 180, 0.8));
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 92, 56, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(1deg); }
    66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%);
    animation: shimmer 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.1) 0.1%, transparent 0.2%) 0 0 / 20px 20px,
        radial-gradient(circle at 30% 50%, rgba(26, 92, 56, 0.1) 0%, rgba(26, 92, 56, 0.1) 0.1%, transparent 0.2%) 0 0 / 30px 30px,
        radial-gradient(circle at 70% 80%, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.1) 0.1%, transparent 0.2%) 0 0 / 25px 25px;
    opacity: 0.6;
    animation: particle-move 25s linear infinite;
    pointer-events: none;
}

@keyframes particle-move {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 50% 100%, -50% 100%;
    }
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.header-content h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
}

.header-content h1::after {
    content: '✦';
    position: absolute;
    top: -25px;
    right: -30px;
    font-size: 1.8rem;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    animation: float-star-1 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-star-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(90deg) scale(0.9); }
}

.header-content h1::before {
    content: '✦';
    position: absolute;
    top: -35px;
    right: -20px;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.5);
    animation: float-star-2 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-star-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(90deg) scale(1.1); }
}

/* Creative floating elements - Redistributed across screen */
.partners-header::before {
    content: '●';
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 1.2rem;
    color: #00ff88;
    opacity: 0.8;
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.partners-header::after {
    content: '◆';
    position: absolute;
    top: 25%;
    right: 12%;
    font-size: 1.5rem;
    color: #00ff88;
    opacity: 0.7;
    animation: float-dot-2 8s ease-in-out infinite;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* Add triangle element - Top left */
.partners-header .header-bg::before {
    content: '▲';
    position: absolute;
    top: 35%;
    left: 15%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

/* Add square element - Top right */
.partners-header .header-bg::after {
    content: '■';
    position: absolute;
    top: 45%;
    right: 20%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Add hexagon element - Above content */
.header-content::before {
    content: '⬡';
    position: absolute;
    top: -40px;
    left: -50px;
    font-size: 2.2rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-hexagon 15s ease-in-out infinite;
    z-index: 1;
}

/* Add infinity symbol - Below content */
.header-content::after {
    content: '∞';
    position: absolute;
    bottom: -60px;
    right: -40px;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-infinity 18s ease-in-out infinite;
    z-index: 1;
}

/* Add sparkle elements - Distributed */
.partners-header .particles::before {
    content: '✧';
    position: absolute;
    top: 55%;
    left: 25%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.6);
    animation: sparkle-1 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✧';
    position: absolute;
    top: 65%;
    right: 35%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.5);
    animation: sparkle-2 11s ease-in-out infinite;
    z-index: 1;
}
.partners-header .particles::before {
    content: '✧';
    position: absolute;
    top: 45%;
    left: 15%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.6);
    animation: sparkle-1 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✧';
    position: absolute;
    top: 45%;
    right: 65%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.5);
    animation: sparkle-2 11s ease-in-out infinite;
    z-index: 1;
}


/* Add wave element - Above message */
.hero-message::before {
    content: '≈';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.4);
    animation: wave-float 6s ease-in-out infinite;
    z-index: 1;
}

/* Add arrow element - Below message */
.hero-message::after {
    content: '➤';
    position: absolute;
    bottom: -20px;
    right: 30px;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.4);
    animation: arrow-bounce 5s ease-in-out infinite;
    z-index: 1;
}

/* Add rotating gear element - Middle left */
.partners-header .header-bg::before {
    content: '⚙';
    position: absolute;
    top: 55%;
    left: 5%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.35);
    animation: rotate-gear 20s linear infinite;
    z-index: 1;
}

/* Add lightning bolt - Middle right */
.partners-header .header-bg::after {
    content: '⚡';
    position: absolute;
    top: 65%;
    right: 8%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.4);
    animation: lightning-flash 8s ease-in-out infinite;
    z-index: 1;
}

/* Add musical note - Upper right */
.header-content .particles::before {
    content: '♪';
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.3);
    animation: musical-float 13s ease-in-out infinite;
    z-index: 1;
}

/* Add heart element - Lower left */
.header-content .particles::after {
    content: '♥';
    position: absolute;
    bottom: 15%;
    left: 20%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.4);
    animation: heartbeat 4s ease-in-out infinite;
    z-index: 1;
}

/* Add sun element - Top right of message */
.hero-message .particles::before {
    content: '☀';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: sun-rotate 25s linear infinite;
    z-index: 1;
}

/* Add moon element - Bottom left of message */
.hero-message .particles::after {
    content: '☾';
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.3);
    animation: moon-float 16s ease-in-out infinite;
    z-index: 1;
}

/* Animation keyframes for new elements */
@keyframes float-triangle {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-12px) rotate(120deg) scale(1.2); }
    66% { transform: translateY(-6px) rotate(240deg) scale(0.8); }
}

@keyframes float-square {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-18px) rotate(180deg) scale(1.3); }
}

@keyframes float-hexagon {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-8px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-15px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-8px) rotate(270deg) scale(1.2); }
}

@keyframes float-infinity {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    33% { transform: translateY(-10px) scale(1.1) rotate(120deg); }
    66% { transform: translateY(-5px) scale(0.9) rotate(240deg); }
}

/* Enhanced hero section with logo integration and creative elements */

.header-content p {
    font-size: clamp(18px, 3vw, 22px);
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin-top: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-message:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

#partners-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(20, 85, 100, 0.9), rgba(5, 80, 160, 0.9));
    position: relative;
    overflow: hidden;
    z-index: 0;
}

#partners-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0.1%, transparent 0.2%) 0 0 / 15px 15px,
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 0.1%, transparent 0.2%) 0 0 / 25px 25px,
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0.1%, transparent 0.2%) 0 0 / 20px 20px;
    opacity: 0.8;
    animation: particle-move 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particle-move {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 50% 100%, -50% 100%;
    }
}

.section-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.section-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.section-container h2::before,
.section-container h2::after {
    content: '•';
    color: #00ff88;
    display: inline-block;
    margin: 0 15px;
    font-size: 24px;
    vertical-align: middle;
}

.highlight {
    color: #ffffff;
}

.highlight::after {
    display: none;
}

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

.partner-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(0, 255, 136, 0.05) 50%, 
        rgba(0, 82, 180, 0.08) 100%);
    border-radius: 0 30px 30px 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    position: relative;
    text-align: left;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    min-height: 500px;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00ff88, #1A5C38, #0052B4, #00ff88);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.partner-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(26, 92, 56, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    animation: float-bg 8s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(1deg); }
    66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.partner-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 30px 0 30px 30px;
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-image {
    height: 260px;
    width: 260px;
    overflow: hidden;
    position: relative;
    margin: 2rem auto 0;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(0, 255, 136, 0.1));
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.partner-card:hover .partner-image::before {
    transform: translateX(100%);
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.partner-card:hover .partner-image img {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.partner-content {
    padding: 2.5rem;
    background: transparent;
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.partner-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.05), 
        rgba(0, 82, 180, 0.05));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.partner-card:hover .partner-header::before {
    opacity: 1;
}

.partner-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #00ff88;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.8rem;
    flex: 1;
    min-width: 200px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    letter-spacing: 0.5px;
}

.partner-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #1A5C38, #0052B4);
    border-radius: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.partner-card:hover .partner-header h3::after {
    width: 100px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.partner-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Creative floating elements */
.partner-card::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    opacity: 0.7;
    animation: float-dot 4s ease-in-out infinite;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

@keyframes float-dot {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

#partnership-benefits {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

#partnership-benefits h2 {
    color: #1A5C38;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(26, 92, 56, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1A5C38, #0052B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1A5C38;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

#become-partner {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26, 92, 56, 0.9), rgba(0, 82, 180, 0.9));
    color: #fff;
    position: relative;
    overflow: hidden;
}

#become-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0.1%, transparent 0.2%) 0 0 / 15px 15px,
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 0.1%, transparent 0.2%) 0 0 / 25px 25px,
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0.1%, transparent 0.2%) 0 0 / 20px 20px;
    opacity: 0.8;
    animation: particle-move 15s linear infinite;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cta-container h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
}

.cta-container h2::before,
.cta-container h2::after {
    content: '•';
    color: #00ff88;
    display: inline-block;
    margin: 0 15px;
    font-size: 24px;
    vertical-align: middle;
}

.motivation-content {
    margin-bottom: 2rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00ff88;
}

.join-message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #00ff88;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #00ff88;
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .partner-card {
        border-radius: 0 25px 25px 25px;
        min-height: 450px;
    }
    
    .partner-card:hover {
        border-radius: 25px 0 25px 25px;
    }
    
    .partner-image {
        height: 240px;
        width: 240px;
        margin: 1.5rem auto 0;
    }
    
    .partner-content {
        padding: 2rem;
    }
    
    .partner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .partner-header h3 {
        font-size: 1.6rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .partner-image {
        height: 200px;
        width: 200px;
        margin: 1rem auto 0;
    }
    
    .partner-content {
        padding: 1.5rem;
    }
    
    .partner-header h3 {
        font-size: 1.4rem;
    }
}

/* NEW ADDITIONAL ELEMENTS - Better distribution */

/* Top row elements */
.partners-header::before {
    content: '●';
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 1.2rem;
    color: #00ff88;
    opacity: 0.8;
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 2;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Add more top elements */
.partners-header .header-bg::before {
    content: '▲';
    position: absolute;
    top: 20%;
    left: 25%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '■';
    position: absolute;
    top: 18%;
    right: 25%;
    font-size: 1.4rem;
    color: rgba(26, 92, 56, 0.4);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Middle row elements */
.partners-header .particles::before {
    content: '✧';
    position: absolute;
    top: 40%;
    left: 12%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.6);
    animation: sparkle-1 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✧';
    position: absolute;
    top: 45%;
    right: 18%;
    font-size: 1.2rem;
    color: rgba(26, 92, 56, 0.5);
    animation: sparkle-2 11s ease-in-out infinite;
    z-index: 1;
}

/* Add more middle elements */
.partners-header .header-bg::before {
    content: '⚙';
    position: absolute;
    top: 50%;
    left: 8%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.35);
    animation: rotate-gear 20s linear infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '⚡';
    position: absolute;
    top: 55%;
    right: 12%;
    font-size: 1.8rem;
    color: rgba(26, 92, 56, 0.4);
    animation: lightning-flash 8s ease-in-out infinite;
    z-index: 1;
}

/* Lower middle elements */
.partners-header .particles::before {
    content: '◆';
    position: absolute;
    top: 60%;
    left: 20%;
    font-size: 1.5rem;
    color: rgba(26, 92, 56, 0.4);
    animation: float-dot-2 8s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '●';
    position: absolute;
    top: 65%;
    right: 15%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.5);
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
}

/* Bottom row elements */
.partners-header .header-bg::before {
    content: '▲';
    position: absolute;
    top: 75%;
    left: 10%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '■';
    position: absolute;
    top: 80%;
    right: 10%;
    font-size: 1.4rem;
    color: rgba(26, 92, 56, 0.4);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Add corner elements */
.partners-header .particles::before {
    content: '⬡';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-hexagon 15s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '∞';
    position: absolute;
    top: 12%;
    right: 5%;
    font-size: 1.6rem;
    color: rgba(26, 92, 56, 0.3);
    animation: float-infinity 18s ease-in-out infinite;
    z-index: 1;
}

/* Add more corner elements */
.partners-header .header-bg::before {
    content: '♪';
    position: absolute;
    bottom: 15%;
    left: 8%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.3);
    animation: musical-float 13s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '♥';
    position: absolute;
    bottom: 20%;
    right: 8%;
    font-size: 1.2rem;
    color: rgba(26, 92, 56, 0.4);
    animation: heartbeat 4s ease-in-out infinite;
    z-index: 1;
}

/* Add floating dots in corners */
.partners-header::before {
    content: '●';
    position: absolute;
    top: 85%;
    left: 15%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
}

.partners-header::after {
    content: '◆';
    position: absolute;
    top: 88%;
    right: 18%;
    font-size: 1.3rem;
    color: rgba(26, 92, 56, 0.3);
    animation: float-dot-2 8s ease-in-out infinite;
    z-index: 1;
}

/* Add center elements */
.header-content::before {
    content: '✧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.4);
    animation: sparkle-1 7s ease-in-out infinite;
    z-index: 1;
}

.header-content::after {
    content: '●';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: rgba(26, 92, 56, 0.3);
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
}

/* Add more distributed elements */
.partners-header .particles::before {
    content: '▲';
    position: absolute;
    top: 30%;
    left: 35%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '■';
    position: absolute;
    top: 35%;
    right: 35%;
    font-size: 1.3rem;
    color: rgba(26, 92, 56, 0.35);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Add diagonal elements */
.partners-header .header-bg::before {
    content: '⬡';
    position: absolute;
    top: 25%;
    left: 45%;
    font-size: 1.7rem;
    color: rgba(0, 255, 136, 0.2);
    animation: float-hexagon 15s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '∞';
    position: absolute;
    top: 70%;
    right: 45%;
    font-size: 1.5rem;
    color: rgba(26, 92, 56, 0.25);
    animation: float-infinity 18s ease-in-out infinite;
    z-index: 1;
}

/* MASSIVE DUPLICATION OF CREATIVE ELEMENTS - Rich Environment */

/* Top row elements - Multiple duplicates */
.partners-header::before {
    content: '●';
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 1.2rem;
    color: #00ff88;
    opacity: 0.8;
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Add more top elements - Duplicated */
.partners-header .header-bg::before {
    content: '▲';
    position: absolute;
    top: 20%;
    left: 25%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '■';
    position: absolute;
    top: 18%;
    right: 25%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Middle row elements - Duplicated */
.partners-header .particles::before {
    content: '✧';
    position: absolute;
    top: 40%;
    left: 12%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.6);
    animation: sparkle-1 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✧';
    position: absolute;
    top: 45%;
    right: 18%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.5);
    animation: sparkle-2 11s ease-in-out infinite;
    z-index: 1;
}

/* Add more middle elements - Duplicated */
.partners-header .header-bg::before {
    content: '⚙';
    position: absolute;
    top: 50%;
    left: 8%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.35);
    animation: rotate-gear 20s linear infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '⚡';
    position: absolute;
    top: 55%;
    right: 12%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.4);
    animation: lightning-flash 8s ease-in-out infinite;
    z-index: 1;
}

/* Lower middle elements - Duplicated */
.partners-header .particles::before {
    content: '◆';
    position: absolute;
    top: 60%;
    left: 20%;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-2 8s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '●';
    position: absolute;
    top: 65%;
    right: 15%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.5);
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
}

/* Bottom row elements - Duplicated */
.partners-header .header-bg::before {
    content: '▲';
    position: absolute;
    top: 75%;
    left: 10%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '■';
    position: absolute;
    top: 80%;
    right: 10%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Add corner elements - Duplicated */
.partners-header .particles::before {
    content: '⬡';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-hexagon 15s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '∞';
    position: absolute;
    top: 12%;
    right: 5%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-infinity 18s ease-in-out infinite;
    z-index: 1;
}

/* Add more corner elements - Duplicated */
.partners-header .header-bg::before {
    content: '♪';
    position: absolute;
    bottom: 15%;
    left: 8%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.3);
    animation: musical-float 13s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '♥';
    position: absolute;
    bottom: 20%;
    right: 8%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.4);
    animation: heartbeat 4s ease-in-out infinite;
    z-index: 1;
}

/* Add floating dots in corners - Duplicated */
.partners-header::before {
    content: '●';
    position: absolute;
    top: 85%;
    left: 15%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
}

.partners-header::after {
    content: '◆';
    position: absolute;
    top: 88%;
    right: 18%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-dot-2 8s ease-in-out infinite;
    z-index: 1;
}

/* Add center elements - Duplicated */
.header-content::before {
    content: '✧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.4);
    animation: sparkle-1 7s ease-in-out infinite;
    z-index: 1;
}

.header-content::after {
    content: '●';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-dot-1 6s ease-in-out infinite;
    z-index: 1;
}

/* Add more distributed elements - Duplicated */
.partners-header .particles::before {
    content: '▲';
    position: absolute;
    top: 30%;
    left: 35%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-triangle 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '■';
    position: absolute;
    top: 35%;
    right: 35%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-square 9s ease-in-out infinite;
    z-index: 1;
}

/* Add diagonal elements - Duplicated */
.partners-header .header-bg::before {
    content: '⬡';
    position: absolute;
    top: 25%;
    left: 45%;
    font-size: 1.7rem;
    color: rgba(0, 255, 136, 0.2);
    animation: float-hexagon 15s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '∞';
    position: absolute;
    top: 70%;
    right: 45%;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-infinity 18s ease-in-out infinite;
    z-index: 1;
}

/* MASSIVE ADDITIONAL DUPLICATION - Creating Rich Environment */

/* Additional floating circles - Multiple positions */
.partners-header .header-bg::before {
    content: '●';
    position: absolute;
    top: 22%;
    left: 18%;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-dot-1 8s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '●';
    position: absolute;
    top: 28%;
    right: 28%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-2 7s ease-in-out infinite;
    z-index: 1;
}

/* Additional triangles - Multiple positions */
.partners-header .particles::before {
    content: '▲';
    position: absolute;
    top: 38%;
    left: 32%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-triangle 14s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '▲';
    position: absolute;
    top: 42%;
    right: 38%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-triangle 16s ease-in-out infinite;
    z-index: 1;
}

/* Additional squares - Multiple positions */
.partners-header .header-bg::before {
    content: '■';
    position: absolute;
    top: 52%;
    left: 22%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-square 10s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '■';
    position: absolute;
    top: 58%;
    right: 32%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-square 11s ease-in-out infinite;
    z-index: 1;
}

/* Additional diamonds - Multiple positions */
.partners-header .particles::before {
    content: '◆';
    position: absolute;
    top: 68%;
    left: 28%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-2 9s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '◆';
    position: absolute;
    top: 72%;
    right: 25%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-dot-1 7s ease-in-out infinite;
    z-index: 1;
}

/* Additional hexagons - Multiple positions */
.partners-header .header-bg::before {
    content: '⬡';
    position: absolute;
    top: 18%;
    left: 42%;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.2);
    animation: float-hexagon 17s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '⬡';
    position: absolute;
    top: 78%;
    right: 42%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-hexagon 19s ease-in-out infinite;
    z-index: 1;
}

/* Additional infinity symbols - Multiple positions */
.partners-header .particles::before {
    content: '∞';
    position: absolute;
    top: 32%;
    left: 48%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-infinity 20s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '∞';
    position: absolute;
    top: 82%;
    right: 48%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.25);
    animation: float-infinity 22s ease-in-out infinite;
    z-index: 1;
}

/* Additional sparkles - Multiple positions */
.partners-header .header-bg::before {
    content: '✧';
    position: absolute;
    top: 48%;
    left: 35%;
    font-size: 0.8rem;
    color: rgba(0, 255, 136, 0.5);
    animation: sparkle-1 9s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '✧';
    position: absolute;
    top: 62%;
    right: 40%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: sparkle-2 13s ease-in-out infinite;
    z-index: 1;
}

/* Additional gears - Multiple positions */
.partners-header .particles::before {
    content: '⚙';
    position: absolute;
    top: 44%;
    left: 12%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.3);
    animation: rotate-gear 18s linear infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '⚙';
    position: absolute;
    top: 66%;
    right: 15%;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.35);
    animation: rotate-gear 24s linear infinite;
    z-index: 1;
}

/* Additional lightning bolts - Multiple positions */
.partners-header .header-bg::before {
    content: '⚡';
    position: absolute;
    top: 36%;
    left: 38%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.3);
    animation: lightning-flash 10s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '⚡';
    position: absolute;
    top: 74%;
    right: 38%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.35);
    animation: lightning-flash 12s ease-in-out infinite;
    z-index: 1;
}

/* Additional musical notes - Multiple positions */
.partners-header .particles::before {
    content: '♪';
    position: absolute;
    top: 26%;
    left: 35%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.25);
    animation: musical-float 15s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '♪';
    position: absolute;
    top: 76%;
    right: 35%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.3);
    animation: musical-float 17s ease-in-out infinite;
    z-index: 1;
}

/* Additional hearts - Multiple positions */
.partners-header .header-bg::before {
    content: '♥';
    position: absolute;
    top: 34%;
    left: 28%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: heartbeat 5s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '♥';
    position: absolute;
    top: 84%;
    right: 28%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.3);
    animation: heartbeat 6s ease-in-out infinite;
    z-index: 1;
}

/* Additional suns - Multiple positions */
.partners-header .particles::before {
    content: '☀';
    position: absolute;
    top: 16%;
    left: 30%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.3);
    animation: sun-rotate 28s linear infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '☀';
    position: absolute;
    top: 86%;
    right: 30%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.25);
    animation: sun-rotate 30s linear infinite;
    z-index: 1;
}

/* Additional moons - Multiple positions */
.partners-header .header-bg::before {
    content: '☾';
    position: absolute;
    top: 24%;
    left: 40%;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.25);
    animation: moon-float 18s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '☾';
    position: absolute;
    top: 88%;
    right: 40%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.2);
    animation: moon-float 20s ease-in-out infinite;
    z-index: 1;
}

/* Additional waves - Multiple positions */
.partners-header .particles::before {
    content: '≈';
    position: absolute;
    top: 54%;
    left: 45%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.3);
    animation: wave-float 8s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '≈';
    position: absolute;
    top: 64%;
    right: 45%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.25);
    animation: wave-float 10s ease-in-out infinite;
    z-index: 1;
}

/* Additional arrows - Multiple positions */
.partners-header .header-bg::before {
    content: '➤';
    position: absolute;
    top: 46%;
    left: 50%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.3);
    animation: arrow-bounce 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '➤';
    position: absolute;
    top: 56%;
    right: 50%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.25);
    animation: arrow-bounce 9s ease-in-out infinite;
    z-index: 1;
}

/* Ensure text container has higher z-index */
.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin-top: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* HERO SECTION CREATIVE ELEMENTS - MANY STARS & DOTS EVENLY DISTRIBUTED */

/* Clear any conflicting rules and create clean structure */
.partners-header {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 92, 56, 0.9), rgba(0, 82, 180, 0.8));
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* ENHANCED HERO SECTION WITH LOGO INTEGRATION */

/* Logo floating element - Top center */
.header-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: url('./logo-removebg-preview.png') no-repeat center center;
    background-size: contain;
    animation: float-logo 8s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

/* Logo floating element - Bottom center */
.header-content::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: url('./logo-removebg-preview.png') no-repeat center center;
    background-size: contain;
    animation: float-logo-reverse 10s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
}

/* Additional logo elements for branding */
.partners-header .header-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 8%;
    width: 40px;
    height: 40px;
    background: url('./logo-removebg-preview.png') no-repeat center center;
    background-size: contain;
    animation: float-logo-left 12s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
    opacity: 0.7;
}

.partners-header .header-bg::after {
    content: '';
    position: absolute;
    top: 75%;
    right: 10%;
    width: 45px;
    height: 45px;
    background: url('./logo-removebg-preview.png') no-repeat center center;
    background-size: contain;
    animation: float-logo-right 14s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 18px rgba(0, 255, 136, 0.45));
    opacity: 0.8;
}

.hero-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin-top: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-message:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* MASSIVE STAR DISTRIBUTION - EVENLY SPREAD ACROSS ENTIRE SECTION */

/* LEFT SIDE STARS - Multiple rows */
.partners-header::before {
    content: '✦';
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.8rem;
    color: rgba(0, 255, 136, 0.5);
    animation: float-star-left-1 6s ease-in-out infinite;
    z-index: 1;
}

.partners-header::after {
    content: '✦';
    position: absolute;
    top: 28%;
    left: 15%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-left-2 8s ease-in-out infinite;
    z-index: 1;
}

/* More left side stars */
.partners-header .particles::before {
    content: '✦';
    position: absolute;
    top: 45%;
    left: 12%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.45);
    animation: float-star-left-3 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✦';
    position: absolute;
    top: 62%;
    left: 8%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-star-left-4 9s ease-in-out infinite;
    z-index: 1;
}

/* Additional left side stars */
.partners-header .header-bg::before {
    content: '✦';
    position: absolute;
    top: 78%;
    left: 18%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-left-5 10s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '✦';
    position: absolute;
    top: 35%;
    left: 25%;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-star-left-6 11s ease-in-out infinite;
    z-index: 1;
}

/* RIGHT SIDE STARS - Multiple rows */
.partners-header .particles::before {
    content: '✦';
    position: absolute;
    top: 18%;
    right: 10%;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.45);
    animation: float-star-right-1 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✦';
    position: absolute;
    top: 38%;
    right: 15%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-right-2 9s ease-in-out infinite;
    z-index: 1;
}

/* More right side stars */
.partners-header .header-bg::before {
    content: '✦';
    position: absolute;
    top: 58%;
    right: 12%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-star-right-3 10s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '✦';
    position: absolute;
    top: 75%;
    right: 18%;
    font-size: 1.6rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-right-4 11s ease-in-out infinite;
    z-index: 1;
}

/* ADDITIONAL STARS FOR BETTER COVERAGE */
.partners-header .particles::before {
    content: '✦';
    position: absolute;
    top: 52%;
    left: 35%;
    font-size: 0.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-star-extra-1 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✦';
    position: absolute;
    top: 68%;
    left: 42%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-extra-2 13s ease-in-out infinite;
    z-index: 1;
}

/* EXTRA LEFT SIDE STARS - Better Coverage */
.partners-header .header-bg::before {
    content: '✦';
    position: absolute;
    top: 15%;
    left: 5%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-left-extra-1 9s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '✦';
    position: absolute;
    top: 33%;
    left: 18%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-star-left-extra-2 11s ease-in-out infinite;
    z-index: 1;
}

/* More left side stars */
.partners-header .particles::before {
    content: '✦';
    position: absolute;
    top: 48%;
    left: 8%;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.45);
    animation: float-star-left-extra-3 10s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✦';
    position: absolute;
    top: 58%;
    left: 22%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-left-extra-4 12s ease-in-out infinite;
    z-index: 1;
}

/* EXTRA BOTTOM STARS - Better Coverage */
.partners-header .header-bg::before {
    content: '✦';
    position: absolute;
    top: 82%;
    left: 12%;
    font-size: 1.4rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-bottom-1 13s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '✦';
    position: absolute;
    top: 88%;
    left: 25%;
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-star-bottom-2 14s ease-in-out infinite;
    z-index: 1;
}

/* More bottom stars */
.partners-header .particles::before {
    content: '✦';
    position: absolute;
    top: 85%;
    left: 35%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-bottom-3 15s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '✦';
    position: absolute;
    top: 90%;
    left: 45%;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-star-bottom-4 16s ease-in-out infinite;
    z-index: 1;
}

/* Additional bottom center stars */
.partners-header .header-bg::before {
    content: '✦';
    position: absolute;
    top: 87%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-star-bottom-center-1 17s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '✦';
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-star-bottom-center-2 18s ease-in-out infinite;
    z-index: 1;
}

/* MASSIVE DOT DISTRIBUTION - EVENLY SPREAD */

/* LEFT SIDE DOTS */
.partners-header::before {
    content: '●';
    position: absolute;
    top: 22%;
    left: 22%;
    font-size: 1.3rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-left-1 8s ease-in-out infinite;
    z-index: 1;
}

.partners-header::after {
    content: '●';
    position: absolute;
    top: 55%;
    left: 28%;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-dot-left-2 10s ease-in-out infinite;
    z-index: 1;
}

/* More left side dots */
.partners-header .header-bg::before {
    content: '●';
    position: absolute;
    top: 72%;
    left: 20%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-left-3 9s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '●';
    position: absolute;
    top: 85%;
    left: 15%;
    font-size: 0.8rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-dot-left-4 11s ease-in-out infinite;
    z-index: 1;
}

/* CENTER AREA DOTS */
.partners-header .particles::before {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-center-1 7s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '●';
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-dot-center-2 9s ease-in-out infinite;
    z-index: 1;
}

/* RIGHT SIDE DOTS */
.partners-header .header-bg::before {
    content: '●';
    position: absolute;
    top: 32%;
    right: 25%;
    font-size: 1.2rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-right-1 8s ease-in-out infinite;
    z-index: 1;
}

.partners-header .header-bg::after {
    content: '●';
    position: absolute;
    top: 48%;
    right: 32%;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.35);
    animation: float-dot-right-2 10s ease-in-out infinite;
    z-index: 1;
}

/* ADDITIONAL DOTS FOR BETTER COVERAGE */
.partners-header .particles::before {
    content: '●';
    position: absolute;
    top: 82%;
    right: 28%;
    font-size: 1.1rem;
    color: rgba(0, 255, 136, 0.4);
    animation: float-dot-extra-1 12s ease-in-out infinite;
    z-index: 1;
}

.partners-header .particles::after {
    content: '●';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.3);
    animation: float-dot-extra-2 13s ease-in-out infinite;
    z-index: 1;
}

/* ANIMATION KEYFRAMES FOR LOGO AND ALL STARS AND DOTS */

/* Logo animations */
@keyframes float-logo {
    0%, 100% { transform: translateX(-50%) translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-15px) scale(1.1) rotate(5deg); }
}

@keyframes float-logo-reverse {
    0%, 100% { transform: translateX(-50%) translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-12px) scale(0.95) rotate(-3deg); }
}

@keyframes float-logo-left {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-18px) scale(1.05) rotate(8deg); }
}

@keyframes float-logo-right {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-20px) scale(1.1) rotate(-5deg); }
}

/* Left side star animations */
@keyframes float-star-left-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-12px) rotate(180deg) scale(1.1); }
}

@keyframes float-star-left-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-8px) rotate(90deg) scale(0.9); }
}

@keyframes float-star-left-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(270deg) scale(1.2); }
}

@keyframes float-star-left-4 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(120deg) scale(1.05); }
}

@keyframes float-star-left-5 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-13px) rotate(240deg) scale(0.95); }
}

@keyframes float-star-left-6 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-7px) rotate(60deg) scale(1.15); }
}

/* Right side star animations */
@keyframes float-star-right-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-11px) rotate(300deg) scale(1.1); }
}

@keyframes float-star-right-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-9px) rotate(150deg) scale(0.95); }
}

@keyframes float-star-right-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-14px) rotate(210deg) scale(1.2); }
}

@keyframes float-star-right-4 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-6px) rotate(330deg) scale(1.05); }
}

/* Extra star animations */
@keyframes float-star-extra-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-16px) rotate(45deg) scale(1.1); }
}

@keyframes float-star-extra-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-12px) rotate(135deg) scale(0.9); }
}

/* Left side dot animations */
@keyframes float-dot-left-1 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-14px) scale(1.2); }
}

@keyframes float-dot-left-2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-18px) scale(1.1); }
}

@keyframes float-dot-left-3 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-11px) scale(1.3); }
}

@keyframes float-dot-left-4 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(0.9); }
}

/* Center dot animations */
@keyframes float-dot-center-1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) translateY(-12px) scale(1.15); }
}

@keyframes float-dot-center-2 {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) translateY(-16px) scale(1.05); }
}

/* Right side dot animations */
@keyframes float-dot-right-1 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-13px) scale(1.25); }
}

@keyframes float-dot-right-2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-17px) scale(0.95); }
}

/* Extra dot animations */
@keyframes float-dot-extra-1 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes float-dot-extra-2 {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) translateY(-8px) scale(1.2); }
}

/* Extra left side star animations */
@keyframes float-star-left-extra-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-14px) rotate(90deg) scale(1.15); }
}

@keyframes float-star-left-extra-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-9px) rotate(180deg) scale(0.95); }
}

@keyframes float-star-left-extra-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-17px) rotate(270deg) scale(1.2); }
}

@keyframes float-star-left-extra-4 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-11px) rotate(120deg) scale(1.05); }
}

/* Bottom star animations */
@keyframes float-star-bottom-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-13px) rotate(240deg) scale(1.1); }
}

@keyframes float-star-bottom-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-8px) rotate(60deg) scale(0.9); }
}

@keyframes float-star-bottom-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(300deg) scale(1.15); }
}

@keyframes float-star-bottom-4 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(150deg) scale(1.05); }
}

/* Bottom center star animations */
@keyframes float-star-bottom-center-1 {
    0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateX(-50%) translateY(-12px) rotate(180deg) scale(1.1); }
}

@keyframes float-star-bottom-center-2 {
    0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateX(-50%) translateY(-7px) rotate(90deg) scale(0.95); }
}


