/* ==========================================
   HERO SECTION STYLES
   ========================================== */

/* Hero Content Animation */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   DUAL PARTNER BADGES - COMPACT VERSION
   ========================================== */

.partner-badges-dual {
    animation: fadeInScale 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Individual Badge Styling */
.partner-badge-dual {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

.partner-badge-dual:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.partner-badge-dual:active {
    transform: translateY(0);
}

/* Service Partner Specific */
.partner-badge-service {
    animation: fadeInScale 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* CSP Advanced Partner Specific */
.partner-badge-csp {
    animation: fadeInScale 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Logo Container Glow on Hover */
.partner-badge-dual div[class*="bg-white"] {
    transition: all 0.3s ease;
}

.partner-badge-dual:hover div[class*="bg-white"] {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   EXISTING STYLES (UNCHANGED)
   ========================================== */

/* Hero Headline */
.hero-headline {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}

/* Metallic Text Effect */
.metallic-text {
    background: linear-gradient(90deg, #666 0%, #fff 45%, #fff 55%, #666 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Hero Subheadlines */
.hero-subheadlines {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.7s;
}

/* Hero Underlined Text */
.hero-underlined-text {
    position: relative;
    display: inline-block;
}

.hero-underlined-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(255,255,255,0.4) 25%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0.4) 75%, 
        rgba(255,255,255,0.8) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Hero Description */
.hero-description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.9s;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.1s;
}

/* Hero CTA Button */
.hero-cta-button {
    box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta-button:hover {
    box-shadow: 0 6px 20px 0 rgba(255, 255, 255, 0.25);
}

.hero-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta-button:active {
    transform: scale(0.98);
}

/* Hero Secondary Button */
.hero-secondary-button {
    position: relative;
    overflow: hidden;
}

.hero-secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: left 0.5s ease;
}

.hero-secondary-button:hover::before {
    left: 100%;
}

.hero-secondary-button:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheadlines span {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta-button {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-secondary-button {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 2rem;
    }
    
    .partner-badges-dual {
        gap: 0.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partner-badge-dual {
        font-size: 9px;
    }
    
    .partner-badge-dual span {
        font-size: 9px;
        letter-spacing: 0.2em;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subheadlines {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .hero-subheadlines span {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-button,
    .hero-secondary-button {
        width: 100%;
        justify-content: center;
    }



    
}