/* SocialJobs - Custom CSS */

/* Hero Gradient Background */
.hero-gradient {
    background: linear-gradient(135deg, #052240 0%, #084682 50%, #0a5a9e 100%);
}

/* Dot Pattern */
.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2596be 0%, #cdd155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

/* Glow Effects */
.glow-azure {
    box-shadow: 0 0 40px rgba(37, 150, 190, 0.2);
}

.glow-lime {
    box-shadow: 0 0 40px rgba(205, 209, 85, 0.2);
}

/* Primary Button with Glow */
.btn-primary-glow {
    background: linear-gradient(135deg, #2596be 0%, #cdd155 100%);
    box-shadow: 0 4px 20px rgba(37, 150, 190, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    box-shadow: 0 8px 30px rgba(37, 150, 190, 0.5);
}

/* Pulse Dot Animation */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #cdd155;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
    top: -40px;
    right: 20px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: -30px;
    right: 40px;
    left: auto;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Platform Cards */
.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 150, 190, 0.3);
    box-shadow: 0 0 30px rgba(37, 150, 190, 0.15);
    transform: translateY(-5px);
}

.platform-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2596be 0%, #cdd155 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

/* Use Case Cards */
.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2596be 0%, #cdd155 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

/* Differential Cards */
.diff-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.diff-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2596be 0%, #cdd155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

/* Generation Cards */
.gen-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.gen-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.gen-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #8ba0a9;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.gen-badge-active {
    background: linear-gradient(135deg, #2596be 0%, #cdd155 100%);
    color: white;
}

/* Trust Cards */
.trust-card {
    background: #f0f4f6;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Radial Glow */
.radial-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Navigation Styles */
#navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background-color: #084682;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-badge {
        display: none;
    }

    .diff-number {
        font-size: 36px;
    }
}

/* Contact Form Inputs */
.contact-input {
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.contact-input:focus {
    background-color: #ffffff;
}

.contact-input::placeholder {
    color: #8ba0a9;
}

/* reCAPTCHA Container */
.g-recaptcha {
    display: inline-block;
}

/* Selection Color */
::selection {
    background: rgba(37, 150, 190, 0.3);
    color: #0e252f;
}