/* ===========================
   UNIQUE PAGE DESIGNS  
   =========================== */

/* Text Gradients */
.text-gradient-orange {
    background: linear-gradient(135deg, #ff9a56, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ADVERTISERS PAGE - White Background with Black and Blue Text */
.tech-hero-section {
    min-height: 100vh;
    background: #ffffff; /* Changed to white background */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.tech-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1); /* Light blue background */
    color: #0066ff; /* Blue text */
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.tech-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #000000; /* Black text */
    line-height: 1.1;
    margin-bottom: 24px;
}

.tech-highlight {
    color: #0066ff; /* Blue for highlights */
}

.tech-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #333333; /* Dark gray for descriptions */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(0, 102, 255, 0.7);
    animation: floatUpDown 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Platform Features Section for Advertisers */
.platform-features {
    background: #f8fafc; /* Light background */
    color: #333333; /* Dark text */
    padding: 100px 0;
}

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

.section-header-tech h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000; /* Black heading */
}

.section-header-tech p {
    font-size: 1.2rem;
    color: #666666; /* Gray subtext */
}

.features-grid-tech {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card-tech {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card-tech:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.feature-icon-tech {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.feature-card-tech h3 {
    color: #000000; /* Black heading */
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card-tech p {
    color: #666666; /* Gray text */
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-metrics .metric {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tech Contact Form Section */
.get-started-tech {
    background: white;
    padding: 100px 0;
}

.form-header-tech h2 {
    color: #000000; /* Black heading */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-header-tech p {
    color: #666666; /* Gray text */
    font-size: 1.1rem;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

.advertisers-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.advertisers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advertisers-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.btn-advertisers-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.advertisers-dashboard-preview {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ABOUT PAGE - Clean White Theme with Spider Animation */
.about-hero-timeline {
    min-height: 100vh;
    background: white;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}

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

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.floating-data-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #3b82f6;
    animation: dataIconFloat 15s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    25% { transform: translateY(-40px) scale(1.2); opacity: 1; }
    50% { transform: translateY(-80px) scale(0.8); opacity: 0.9; }
    75% { transform: translateY(-40px) scale(1.1); opacity: 1; }
}

@keyframes dataIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-15px) rotate(240deg); }
}

.about-timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.timeline-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 90%;
}

.timeline-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.quick-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quick-stat-item:hover {
    transform: translateY(-3px);
    background: #f1f5f9;
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.timeline-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-timeline-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.btn-timeline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-timeline-secondary {
    background: #f8fafc;
    color: #1e293b;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.btn-timeline-secondary:hover {
    transform: translateY(-2px);
    background: #f1f5f9;
    border-color: #3b82f6;
    color: #3b82f6;
}

.timeline-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.innovation-showcase {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.innovation-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.innovation-card.featured {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

.innovation-card:hover {
    transform: translateX(10px) scale(1.02);
    background: #f1f5f9;
    border-color: #3b82f6;
}

.card-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    min-width: 60px;
}

.card-content h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.card-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid #3b82f6;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: auto;
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

/* Interactive Story Section */
.interactive-story-section {
    padding: 120px 0;
    background: white;
}

.story-timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-timeline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-timeline-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.story-timeline-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.interactive-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #06b6d4, #0ea5e9, #06b6d4);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-event {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.timeline-event.active {
    opacity: 1;
}

.timeline-event:nth-child(even) {
    direction: rtl;
}

.timeline-event:nth-child(even) * {
    direction: ltr;
}

.event-marker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.marker-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #06b6d4;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

.event-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.event-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.event-year {
    font-size: 1rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content h4 {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-chip {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #93c5fd;
}

.event-image {
    width: 200px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.event-image:hover img {
    transform: scale(1.1);
}

/* Leadership Team Section */
.leadership-team-section {
    padding: 120px 0;
    background: white;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 211, 77, 0.15);
    backdrop-filter: blur(10px);
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(252, 211, 77, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

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

.leader-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.leader-card:hover {
    transform: translateY(-10px);
    background: #f1f5f9;
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
}

.leader-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.leader-card:hover .leader-image-container {
    border-color: #06b6d4;
    transform: scale(1.05);
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 182, 212, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: white;
    color: #06b6d4;
    transform: scale(1.1);
}

.leader-name {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-title {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.leader-expertise {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Innovation Lab Section */
.innovation-lab-section {
    padding: 120px 0;
    background: white;
}

.innovation-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-innovation {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.innovation-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.innovation-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.innovation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.innovation-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    transform: scaleX(0);
    transition: all 0.4s ease;
}

.innovation-feature:hover::before {
    transform: scaleX(1);
}

.innovation-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.innovation-feature:hover .feature-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.innovation-feature h4 {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
}

.innovation-feature p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* AFFILIATES PAGE - White Background with Black and Blue Text */
.money-hero-section {
    min-height: 100vh;
    background: #ffffff; /* Changed to white background */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

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

.money-rain .money-bill {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 102, 255, 0.3); /* Blue money icons */
    animation: moneyFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.success-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0066ff;
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.money-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.money-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1); /* Light blue background */
    color: #0066ff; /* Blue text */
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.money-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #000000; /* Black text */
    line-height: 1.1;
    margin-bottom: 24px;
}

.money-highlight {
    color: #0066ff; /* Blue for highlights */
}

.money-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #333333; /* Dark gray for descriptions */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Benefits Section for Affiliates */
.benefits-money {
    background: #f8fafc; /* Light background */
    color: #333333; /* Dark text */
    padding: 100px 0;
}

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

.section-header-money h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000; /* Black heading */
    margin-bottom: 15px;
}

.section-header-money p {
    font-size: 1.1rem;
    color: #666666; /* Gray text */
}

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

.benefit-card-money {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.benefit-card-money:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.benefit-icon-money {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card-money h3 {
    color: #000000; /* Black heading */
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card-money p {
    color: #666666; /* Gray text */
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-highlight {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Join Agency Section */
.join-Agencies-money {
    background: white;
    padding: 100px 0;
}

.form-header-money h2 {
    color: #000000; /* Black heading */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-header-money p {
    color: #666666; /* Gray text */
    font-size: 1.1rem;
}

/* Earning Tiers */
.earning-tiers {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.tier-item {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tier-item.featured {
    background: rgba(0, 102, 255, 0.1);
    border-color: #0066ff;
    transform: scale(1.05);
}

.tier-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.tier-badge.bronze {
    background: #f59e0b;
    color: white;
}

.tier-badge.gold {
    background: #eab308;
    color: white;
}

.tier-badge.diamond {
    background: #0066ff;
    color: white;
}

.tier-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000; /* Black text */
    margin-bottom: 5px;
}

.tier-label {
    font-size: 0.9rem;
    color: #666666; /* Gray text */
}

.tier-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066ff;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Money Action Buttons */
.money-action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-money-primary {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.btn-money-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4);
}

.btn-money-secondary {
    background: #f8fafc;
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.btn-money-secondary:hover {
    transform: translateY(-2px);
    background: #f1f5f9;
    border-color: #0066ff;
    color: #0066ff;
}

.affiliates-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-affiliates-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.earning-level {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.earning-level.featured {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advertisers-hero-content,
    .about-timeline-grid,
    .affiliates-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-img {
        height: 300px;
    }
    
    .timeline-quick-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-timeline-primary,
    .btn-timeline-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .innovation-showcase {
        gap: 20px;
    }
    
    .innovation-card {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .timeline-track {
        left: 30px;
    }
    
    .timeline-event {
        grid-template-columns: auto 1fr;
        gap: 20px;
        padding-left: 80px;
    }
    
    .timeline-event:nth-child(even) {
        direction: ltr;
    }
    
    .event-image {
        grid-column: 1 / -1;
        width: 100%;
        height: 200px;
        margin-top: 20px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .innovation-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .floating-data-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* CONTACT PAGE - Professional Service Theme */
.contact-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

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

.floating-contact-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    animation: floatUpDown 8s ease-in-out infinite;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-card-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.contact-form-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modern-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-contact-form label {
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-contact-form label i {
    color: #3b82f6;
    width: 16px;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 5px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.submit-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

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

.btn-contact-submit.loading .submit-loader {
    display: block;
}

.btn-contact-submit.loading span {
    display: none;
}

.form-response {
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
}

.form-response.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-response.error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid #f87171;
}

.contact-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

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

.contact-features-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-features-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.contact-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.contact-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-feature h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .modern-contact-form .form-row {
        flex-direction: column;
    }
    
    .contact-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}