/* Modern Home Page Styles - Dark Theme with New Colors */

/* Global Dark Theme */
body {
    background-color: #0b1220 !important;
    color: #fff !important;
}

/* Navbar Dark Theme Override */
.navbar {
    background: rgba(11, 18, 32, 0.95) !important;
    border-bottom: 2px solid #38d8ff !important;
}

.navbar-nav .nav-link:hover {
    color: #38d8ff !important;
}

.navbar-nav .nav-link::after {
    background: #38d8ff !important;
}

/* Hero Section Modern */
.hero-section-modern {
    position: relative;
    background: linear-gradient(135deg, #0b1220 0%, #1a2332 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('/assets/img/slider-1.jpg') center/cover; */
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 216, 255, 0.1) 0%, rgba(56, 216, 255, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #38d8ff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #38d8ff;
}

/* Section Titles Modern */
.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* About Section Modern */
.about-section-modern {
    background: linear-gradient(135deg, #0b1220 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2338d8ff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-content {
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-align: justify;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(56, 216, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(56, 216, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    border-radius: 0 2px 2px 0;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(56, 216, 255, 0.1);
    border-color: rgba(56, 216, 255, 0.4);
    box-shadow: 0 10px 30px rgba(56, 216, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1220;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid #38d8ff;
    box-shadow: 0 5px 15px rgba(56, 216, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(56, 216, 255, 0.4);
}

.feature-content h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-actions .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 216, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.about-actions .btn:hover::before {
    left: 100%;
}

.about-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(56, 216, 255, 0.2);
    border: 3px solid #38d8ff;
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(56, 216, 255, 0.3);
}

.image-container img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(56, 216, 255, 0.95), rgba(11, 18, 32, 0.95));
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #38d8ff;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(56, 216, 255, 0.3);
}

.overlay-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #38d8ff;
}

.overlay-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Services Section Modern */
.services-section-modern {
    background: #1a2332;
}

.service-card {
    background: #0b1220;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(56, 216, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #38d8ff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(56, 216, 255, 0.2);
    border-color: #38d8ff;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid #38d8ff;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #38d8ff;
    color: #0b1220;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-link {
    color: #38d8ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

/* Testimonials Section Modern */
.testimonials-section-modern {
    background: #0b1220;
}

.testimonial-card {
    background: #1a2332;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    border: 2px solid #38d8ff;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(56, 216, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.testimonial-author {
    border-top: 2px solid #38d8ff;
    padding-top: 1rem;
}

.author-info h5 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Companies Section Modern */
.companies-section-modern {
    background: #1a2332;
}

.customer-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-height: 60px;
    object-fit: contain;
}

.customer-logo:hover {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 10px #38d8ff);
}

/* Events Section Modern */
.events-section-modern {
    background: linear-gradient(135deg, #0b1220 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.events-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="events-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2338d8ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23events-grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Featured Event Card Modern */
.featured-event-card-modern {
    background: #1a2332;
    border-radius: 2rem;
    padding: 3rem;
    border: 2px solid #38d8ff;
    box-shadow: 0 25px 50px rgba(56, 216, 255, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.featured-event-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 216, 255, 0.05) 0%, rgba(11, 18, 32, 0.05) 100%);
    z-index: -1;
}

.event-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #38d8ff;
}

.event-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.event-description-modern {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.event-meta-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-info-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(56, 216, 255, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(56, 216, 255, 0.2);
}

.event-info-modern i {
    color: #38d8ff;
    font-size: 1.2rem;
    width: 20px;
}

.event-info-modern span {
    color: #fff;
    font-weight: 500;
}

.event-features-modern h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-features-modern ul {
    list-style: none;
    padding: 0;
}

.event-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
    opacity: 0.9;
}

.event-features-modern li i {
    color: #38d8ff;
    font-size: 1rem;
}

.event-actions-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Event Cards Modern */
.event-card-modern {
    background: #1a2332;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid #38d8ff;
    box-shadow: 0 15px 30px rgba(56, 216, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(56, 216, 255, 0.2);
    border-color: #38d8ff;
}

.event-image-modern {
    position: relative;
    overflow: hidden;
}

.event-image-modern img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.event-card-modern:hover .event-image-modern img {
    transform: scale(1.1);
}

.event-date-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #38d8ff;
    box-shadow: 0 5px 15px rgba(56, 216, 255, 0.3);
}

.event-date-modern .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-modern .month {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.event-content-modern {
    padding: 2rem;
}

.event-content-modern h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.event-content-modern p {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details-modern p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.event-details-modern i {
    color: #38d8ff;
    width: 16px;
}

/* Event Categories Modern */
.event-categories-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-btn-modern {
    background: transparent;
    border: 2px solid #38d8ff;
    color: #38d8ff;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn-modern:hover,
.category-btn-modern.active {
    background: #38d8ff;
    color: #0b1220;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 216, 255, 0.3);
}

/* Events CTA Modern */
.events-cta-modern {
    background: rgba(56, 216, 255, 0.1);
    padding: 3rem;
    border-radius: 2rem;
    border: 2px solid rgba(56, 216, 255, 0.2);
    position: relative;
    z-index: 2;
}

.events-cta-modern h4 {
    margin-bottom: 1rem;
}

.events-cta-modern p {
    margin-bottom: 2rem;
}

/* Contact Section Modern */
.contact-section-modern {
    background: #0b1220;
}

.contact-card-modern {
    background: #1a2332;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(56, 216, 255, 0.1);
    border: 2px solid #38d8ff;
}

.contact-info-modern h4,
.contact-form-modern h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1220;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 2px solid #38d8ff;
}

.method-info h6 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-form-modern .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-modern .form-control {
    border: 2px solid #38d8ff;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #0b1220;
    color: #fff;
}

.contact-form-modern .form-control:focus {
    border-color: #38d8ff;
    box-shadow: 0 0 0 0.2rem rgba(56, 216, 255, 0.25);
    background-color: #0b1220;
    color: #fff;
}

.contact-form-modern .form-control::placeholder {
    color: #fff;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .contact-card-modern {
        padding: 2rem;
    }
    
    .contact-methods {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-card-modern {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #38d8ff, #0b1220);
    border: 2px solid #38d8ff;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b1220, #38d8ff);
    color: #38d8ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 216, 255, 0.3);
}

.btn-outline-primary {
    border: 2px solid #38d8ff;
    color: #38d8ff;
    background: transparent;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #38d8ff;
    color: #0b1220;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 216, 255, 0.3);
}
