﻿/* Event Technology & Innovation Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.tech-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/pexels-buxteh-28712136.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.75);
    z-index: 1;
}

.tech-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    background-size: 50px 50px, 30px 30px, 100px 100px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

/* Advanced Technology Section */
.advanced-tech-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

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

.feature-card:hover .feature-image {
    
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.feature-card:hover .feature-image img {
    
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

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

/* Innovations We Offer Section */
.innovations-section {
    padding: 100px 0;
    background: #ffffff;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.innovation-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #014B6F;
}

.innovation-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.innovation-card:hover .innovation-image {
    
    box-shadow: 0 8px 25px rgba(1, 75, 111, 0.3);
}

.innovation-card:hover .innovation-image img {
    
}

.innovation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.innovation-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Virtual & Hybrid Events Section */
.virtual-hybrid-section {
    padding: 100px 0;
    background: white;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 60px;
}

.events-image {
    position: relative;
    height: 100%;
    display: flex;
}

.events-image .image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.events-image .image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.events-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.events-text {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.text-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 30px;
}

.text-content h3:first-child {
    margin-top: 0;
}

.text-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.outcome-highlight {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid #014B6F;
}

.outcome-highlight h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #014B6F;
    margin-bottom: 10px;
}

.outcome-highlight p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .events-text {
        padding-left: 0;
    }
    
    .events-image {
        height: 300px;
    }
    
    .text-content h3 {
        font-size: 1.3rem;
    }
    
    .outcome-highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .virtual-hybrid-section {
        padding: 60px 0;
    }
    
    .events-content {
        gap: 30px;
    }
    
    .events-image {
        height: 250px;
    }
    
    .text-content h3 {
        font-size: 1.2rem;
    }
    
    .outcome-highlight {
        padding: 15px;
    }
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.event-type-card {
    background: #f8fafc;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.event-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.event-type-card:hover {
    transform: translateY(-10px);
    border-color: #1e40af;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
}

.event-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.event-type-card:hover .event-icon {
    
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
}

.event-type-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.event-type-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

.outcome-statement {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.outcome-statement h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.outcome-statement p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Engagement Challenges Section */
.engagement-challenges-section {
    padding: 100px 0;
    background: #f8fafc;
}

.challenges-list {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.challenge-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.challenge-item p {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.6;
}

/* Tech Matters Section */
.tech-matters-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.tech-matters-section .section-header h2 {
    color: white;
}

.tech-matters-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1e40af;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-type-card {
        padding: 40px 20px;
    }
    
    .challenge-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .challenge-item:hover {
        transform: translateY(-5px);
    }
    
    .outcome-statement {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .event-type-card {
        padding: 30px 15px;
    }
    
    .challenge-item {
        padding: 20px 15px;
    }
    
    .outcome-statement {
        padding: 25px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animation on Scroll (AOS) Support */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Performance Optimizations */
.feature-card,
.event-type-card,
.challenge-item {
    will-change: transform;
    contain: layout style paint;
}

.hero-cta-btn,
.cta-button {
    will-change: transform;
    contain: layout style paint;
}

/* Print Styles */
@media print {
    .tech-hero,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-overlay,
    .tech-patterns {
        display: none;
    }
    
    .hero-title,
    .cta-content h2 {
        color: black !important;
    }
}

/* Standardized WhatsApp Button - Consistent across all pages */
.whatsapp-btn,
.whatsapp-chat,
.whatsapp-chat-btn,
[class*="whatsapp"],
[class*="chat-btn"] {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
    transform: none !important;
    contain: none !important;
    perspective: none !important;
    filter: none !important;
    isolation: auto !important;
    mix-blend-mode: normal !important;
    backface-visibility: visible !important;
    will-change: auto !important;
    float: none !important;
    clear: none !important;
    vertical-align: baseline !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    mask: none !important;
    object-fit: fill !important;
    object-position: 50% 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transition: none !important;
    font-size: 26px !important;
    justify-content: center !important;
    align-items: center !important;
}

.whatsapp-btn:hover,
.whatsapp-chat:hover,
.whatsapp-chat-btn:hover,
[class*="whatsapp"]:hover,
[class*="chat-btn"]:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: none !important;
}

/* Standardized Header - Consistent across all pages */
.new-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: visible;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transform: none !important;
    contain: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    bottom: auto !important;
    height: 80px !important;
    filter: none !important;
    perspective: none !important;
}

