/* FINAL MERGED STYLE.CSS — Advanced Mobile Menu Enabled */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #102747;
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --dark-bg: #0a1628;
    --text-light: #ffffff;
    --text-gray: #b0b8c8;
    --accent-blue: #1a3a5f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}



.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* About Summit Section */
.about-summit {
    background: var(--primary-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(16, 39, 71, 0.3) 100%);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-list .icon {
    background: var(--gold);
    color: var(--primary-blue);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Partners Section */
.partners-section {
    background: var(--dark-bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-category {
    text-align: center;
}

.partner-category h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.partner-logos {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logos:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.partner-logos img {
    max-width: 200px;
    max-height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logos:hover img {
    opacity: 1;
}

/* Chief Guests Section */
.chief-guests {
    background: var(--primary-blue);
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.guest-card {
    background: rgba(10, 22, 40, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.guest-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.guest-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guest-card:hover .guest-image img {
    transform: scale(1.05);
}

.guest-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guest-info {
    padding: 30px;
    text-align: center;
}

.guest-info h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.guest-title {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.guest-org {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Speakers Section */
.speakers-section {
    background: var(--dark-bg);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.speaker-card {
    background: var(--primary-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.speaker-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.speaker-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.1);
}

.speaker-info {
    padding: 20px;
    text-align: center;
}

.speaker-info h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.speaker-title {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-org {
    color: var(--text-gray);
    font-size: 13px;
}

/* Tracks Section */
.tracks-section {
    background: var(--primary-blue);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.track-card {
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.track-card:hover {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.8);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.track-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.track-card:hover .track-icon {
    transform: scale(1.1) rotate(5deg);
}

.track-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.track-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.track-subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.track-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
    background: var(--dark-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.highlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.highlight-image {
    width: 100%;
    height: 100%;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
    transform: translateY(80px);
    transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-content {
    transform: translateY(0);
}

.highlight-content h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

.highlight-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--primary-blue);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background: rgba(10, 22, 40, 0.5);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 50px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.contact-item h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-form {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1496065187959-7f07b8353c55') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: var(--primary-blue);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Success Message */
.success-message {
    background: var(--gold);
    color: var(--primary-blue);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Page Styles */

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 150px 0 100px;
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

.announcement-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.announcement-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.announcement-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.announcement-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 32px;
}

.summit-overview {
    background: var(--primary-blue);
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: rgba(10, 22, 40, 0.5);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 32px;
}

.key-figures {
    background: var(--dark-bg);
    padding: 100px 0;
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.figure-card {
    background: var(--primary-blue);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.figure-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.figure-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.figure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.figure-content {
    padding: 30px;
}

.figure-title {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

.content-section {
    padding: 80px 0;
}

.leader-profile {
    margin-bottom: 60px;
}

.leader-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.leader-image-large {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.leader-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-content h2 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.leader-description {
    margin-top: 20px;
}

.leader-description h4 {
    color: var(--gold);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contributions-list {
    list-style: none;
    margin-top: 15px;
}

.contributions-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-gray);
    line-height: 1.6;
}

.contributions-list li strong {
    color: var(--text-light);
}

.expertise-areas,
.achievements-section {
    margin-top: 30px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.expertise-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.expertise-item i {
    color: var(--gold);
    font-size: 24px;
}

.awards-grid {
    display: grid;
    gap: 20px;
    margin-top: 15px;
}

.award-item {
    display: flex;
    gap: 20px;
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.award-item i {
    color: var(--gold);
    font-size: 32px;
}

.award-item h5 {
    color: var(--gold);
    margin-bottom: 5px;
}

.impact-stats {
    margin-top: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.stat-item-large {
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 12px;
}

.vision-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(16, 39, 71, 0.5) 100%);
    padding: 60px;
    border-radius: 16px;
    border: 2px solid var(--gold);
    text-align: center;
}

.highlight-box h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.vision-point i {
    font-size: 40px;
    color: var(--gold);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.content-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.content-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 28px;
}

.content-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Impact Areas Styles */

.impact-area-detail {
    margin-bottom: 60px;
}

.impact-area-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.impact-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 48px;
    flex-shrink: 0;
}

.impact-area-header h2 {
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.impact-area-header p {
    color: var(--gold);
    font-size: 18px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.impact-image-section {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.impact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-box {
    background: rgba(10, 22, 40, 0.3);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.5);
}

.feature-box h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Form Styles */

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: var(--primary-blue);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.8);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    cursor: pointer;
}

.checkbox-label input[type=\"checkbox\"] {
    width: 20px;
    height: 20px;
}

.contact-info-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 32px;
}

.contact-info-card h3 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Blog Styles */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--primary-blue);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta i {
    color: var(--gold);
}

.blog-content h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.newsletter-section {
    background: var(--primary-blue);
    padding: 80px 0;
}

.newsletter-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-box p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* MKIC Styles */

.mkic-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mkic-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.mkic-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mkic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.capability-card {
    background: rgba(10, 22, 40, 0.5);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 32px;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--primary-blue);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.partnership-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partnership-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.partnership-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.partnership-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.partnership-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

.sponsorship-box {
    background: rgba(10, 22, 40, 0.5);
    padding: 60px;
    border-radius: 16px;
    border: 2px solid var(--gold);
    text-align: center;
}

.sponsorship-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sponsorship-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.benefit-item i {
    color: var(--gold);
    font-size: 24px;
}

/* Responsive */

@media (max-width: 968px) {
    .page-title {
        font-size: 42px;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mkic-hero {
        grid-template-columns: 1fr;
    }

    .impact-area-header {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .expertise-grid,
    .sponsorship-benefits {
        grid-template-columns: 1fr;
    }
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 50%, var(--dark-bg) 100%);
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--gold-light);
    border-radius: 30%;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--gold);
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: var(--gold-light);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 40%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease, background 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    max-height: 100px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    padding: 15px 0;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
    padding-left: 30px;
}

.logo-animation {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-animation:hover {
    transform: scale(1.05);
}

.logo-animation i {
    animation: pulse-icon 2s infinite;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 22, 40, 0.98);
        width: 100%;
        padding: 40px;
        transition: left 0.3s ease;
        gap: 10px;
        height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-nav {
        display: none;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #C9A961 100%);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.animate-btn {
    animation: button-glow 2s infinite;
}

@keyframes button-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

.pulse-btn {
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in 30s infinite alternate;
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(16, 39, 71, 0.9) 50%,
            rgba(10, 22, 40, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.animate-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #F4E4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.knowledge-text {
    animation: text-glow 2s infinite alternate;
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.text-center {
    text-align: center;
}

/* Announcement Section */
.announcement-section {
    background: var(--dark-bg);
    position: relative;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.announcement-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.announcement-card:hover .card-glow {
    opacity: 1;
    animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.announcement-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.4s ease;
}

.rotate-on-hover {
    transition: transform 0.4s ease;
}

.announcement-card:hover .rotate-on-hover {
    transform: rotateY(360deg);
}

.announcement-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.announcement-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Knowledge Flow Section */
.knowledge-flow-section {
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.knowledge-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.flow-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.pulse-animation {
    animation: pulse-scale-flow 2s infinite;
}

@keyframes pulse-scale-flow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    }
}

.flow-step h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.flow-step p {
    color: var(--text-gray);
}

.flow-arrow {
    font-size: 32px;
    color: var(--gold);
}

.animate-arrow {
    animation: arrow-move 2s infinite;
}

@keyframes arrow-move {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Summit Overview */
.summit-overview {
    background: var(--dark-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
}

.rotate-3d {
    transition: transform 0.6s ease;
}

.overview-card:hover .rotate-3d {
    transform: rotateY(180deg);
}

.overview-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.overview-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Key Figures */
.key-figures {
    background: var(--primary-blue);
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.figure-card {
    background: rgba(10, 22, 40, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.hover-float:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.figure-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.image-reveal {
    position: relative;
}

.figure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.figure-card:hover .figure-image img {
    transform: scale(1.15);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 50%);
}

.figure-content {
    padding: 30px;
}

.figure-content h3 {
    font-size: 26px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.figure-title {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

.contribution-list {
    list-style: none;
    margin-top: 20px;
}

.contribution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contribution-list i {
    color: var(--gold);
    margin-top: 4px;
}

/* Summit Tracks */
.tracks-section {
    background: var(--dark-bg);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.track-card {
    background: var(--primary-blue);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.track-modern {
    background: linear-gradient(135deg, rgba(16, 39, 71, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
}

.track-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.track-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.track-card:hover .track-number {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.2) rotate(5deg);
}

.track-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
}

.track-card:hover .track-icon-modern {
    transform: rotateY(360deg) scale(1.1);
}

.track-card h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.track-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.track-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MKIC Section */
.mkic-section {
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.mkic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.mkic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.mkic-card {
    background: rgba(10, 22, 40, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.mkic-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: rgba(10, 22, 40, 0.8);
}

.mkic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
}

.mkic-card:hover .mkic-icon {
    transform: rotateY(360deg);
}

.mkic-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.mkic-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.mkic-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(16, 39, 71, 0.5) 100%);
    padding: 60px;
    border-radius: 16px;
    border: 2px solid var(--gold);
    text-align: center;
}

.highlight-content h3 {
    font-size: 32px;
    color: var(--gold);
    margin: 20px 0;
}

.highlight-content p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mkic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 22, 40, 0.5);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item i {
    color: var(--gold);
    font-size: 20px;
}

.feature-item span {
    color: var(--text-light);
    font-weight: 600;
}

/* Dynamic Knowledge Banks */
.knowledge-banks-section {
    background: var(--dark-bg);
}

.banks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banks-visual {
    position: relative;
}

.bank-animation {
    width: 100%;
    height: 400px;
    position: relative;
}

.bank-node {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: node-float 4s infinite ease-in-out;
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.node-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.node-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes node-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -20px);
    }
}

.bank-node i {
    font-size: 36px;
    margin-bottom: 5px;
}

.bank-node span {
    font-size: 14px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animated-line {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 10;
    animation: line-animate 2s linear infinite;
}

@keyframes line-animate {
    to {
        stroke-dashoffset: -20;
    }
}

.banks-info h3 {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.banks-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.banks-features {
    list-style: none;
}

.banks-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.banks-features li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.banks-features i {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
}

.banks-features strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
}

.banks-features p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Impact Areas */
.impact-areas-section {
    background: var(--primary-blue);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    position: relative;
    padding: 50px 30px;
    border-radius: 16px;
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:hover .impact-bg {
    opacity: 1;
}

.impact-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.impact-card i {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.impact-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.impact-card h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.impact-card p {
    color: var(--text-gray);
}

/* Timeline Section */
.timeline-section {
    background: var(--dark-bg);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-light) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    z-index: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.timeline-content {
    width: 45%;
    background: var(--primary-blue);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.timeline-date {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1496065187959-7f07b8353c55') center/cover;
    opacity: 0.1;
    animation: bg-zoom 30s infinite alternate;
}

@keyframes bg-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--primary-blue);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.8);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Success Message */
.success-message {
    background: var(--gold);
    color: var(--primary-blue);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .banks-content {
        grid-template-columns: 1fr;
    }

    .bank-animation {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .knowledge-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .figures-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #102747;
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --dark-bg: #0a1628;
    --text-light: #ffffff;
    --text-gray: #b0b8c8;
    --accent-blue: #1a3a5f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 50%, var(--dark-bg) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease, background 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-animation {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-animation:hover {
    transform: scale(1.05);
}

.logo-animation i {
    animation: pulse-icon 2s infinite;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    padding: 15px 0;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
    padding-left: 30px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 22, 40, 0.98);
        width: 100%;
        padding: 40px;
        transition: left 0.3s ease;
        gap: 10px;
        height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-nav {
        display: none;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #C9A961 100%);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.animate-btn {
    animation: button-glow 2s infinite;
}

@keyframes button-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

.pulse-btn {
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

/* Background Video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in 30s infinite alternate;
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(16, 39, 71, 0.9) 50%,
            rgba(10, 22, 40, 0.95) 100%);
}

/* Floating Knowledge Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-element {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: float-drift 15s infinite ease-in-out;
}

.float-element i {
    font-size: 18px;
}

.float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
}

.float-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 6s;
}

.float-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 9s;
}

.float-5 {
    top: 50%;
    left: 5%;
    animation-delay: 12s;
}

@keyframes float-drift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -15px) rotate(2deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(-10px, -25px) rotate(-1deg);
        opacity: 1;
    }

    75% {
        transform: translate(15px, -10px) rotate(1deg);
        opacity: 0.8;
    }
}

/* Knowledge Flow Animation */
.knowledge-flow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.flow-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particle-flow 8s infinite linear;
}

.flow-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.flow-particle:nth-child(2) {
    left: 30%;
    animation-delay: 1.6s;
}

.flow-particle:nth-child(3) {
    left: 50%;
    animation-delay: 3.2s;
}

.flow-particle:nth-child(4) {
    left: 70%;
    animation-delay: 4.8s;
}

.flow-particle:nth-child(5) {
    left: 90%;
    animation-delay: 6.4s;
}

@keyframes particle-flow {
    0% {
        top: 100%;
        opacity: 0;
        transform: scale(0);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    90% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        top: -10%;
        opacity: 0;
        transform: scale(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-label {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 2px;
}

.animate-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        transform: scale(1.05);
    }
}

/* Enhanced Title */
.hero-title {
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 10px;
}

.title-line-3 {
    display: block;
    font-size: 64px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #F4E4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.knowledge-text {
    color: var(--text-light);
}

.glow-text {
    animation: text-glow 2s infinite alternate;
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

.revolution-text {
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Enhanced Subtitle */
.hero-subtitle-wrapper {
    max-width: 900px;
    margin: 0 auto 50px;
}

.hero-subtitle-main {
    font-size: 20px;
    margin-bottom: 25px;
}

.aegis-text {
    color: var(--gold);
    font-weight: 700;
}

.aegis-text span {
    color: var(--gold);
    font-size: 25px;
    font-weight: 700;
}

.concept-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.concept-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.concept-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.concept-divider {
    color: var(--gold);
    font-size: 20px;
    opacity: 0.5;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-description strong {
    color: var(--text-light);
    font-weight: 700;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.btn-subtext {
    font-size: 12px;
    opacity: 0.8;
}

.hero-cta .btn-primary .btn-icon {
    background: rgba(16, 39, 71, 0.2);
    color: var(--primary-blue);
}

.hero-cta .btn-secondary .btn-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Enhanced Statistics */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.stat-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 20px;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 12px;
    color: var(--text-gray);
}

/* Revolution Preview */
.revolution-preview {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.preview-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.preview-title i {
    font-size: 24px;
}

.transformation-items {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.transform-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 39, 71, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.transform-item:hover {
    background: rgba(16, 39, 71, 0.5);
    border-color: var(--gold);
    transform: translateX(10px);
}

.transform-from {
    color: var(--text-gray);
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.transform-item i {
    color: var(--gold);
    font-size: 20px;
    animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

.transform-to {
    color: var(--gold);
    font-weight: 700;
    flex: 1;
    text-align: right;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.scroll-text {
    text-align: center;
}

.scroll-text span {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-subtext {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

.mouse-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    animation: mouse-bounce 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.scroll-arrows i {
    color: var(--gold);
    font-size: 12px;
    opacity: 0;
    animation: arrow-cascade 2s infinite;
}

.scroll-arrows i:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrows i:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrows i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes mouse-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes arrow-cascade {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.text-center {
    text-align: center;
}

/* Announcement Section */
.announcement-section {
    background: var(--dark-bg);
    position: relative;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.announcement-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.announcement-card:hover .card-glow {
    opacity: 1;
    animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.announcement-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.4s ease;
}

.rotate-on-hover {
    transition: transform 0.4s ease;
}

.announcement-card:hover .rotate-on-hover {
    transform: rotateY(360deg);
}

.announcement-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.announcement-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Knowledge Flow Section */
.knowledge-flow-section {
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.knowledge-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.flow-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.pulse-animation {
    animation: pulse-scale-flow 2s infinite;
}

@keyframes pulse-scale-flow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    }
}

.flow-step h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.flow-step p {
    color: var(--text-gray);
}

.flow-arrow {
    font-size: 32px;
    color: var(--gold);
}

.animate-arrow {
    animation: arrow-move 2s infinite;
}

@keyframes arrow-move {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Summit Overview */
.summit-overview {
    background: var(--dark-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
}

.rotate-3d {
    transition: transform 0.6s ease;
}

.overview-card:hover .rotate-3d {
    transform: rotateY(180deg);
}

.overview-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.overview-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Key Figures */
.key-figures {
    background: var(--primary-blue);
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.figure-card {
    background: rgba(10, 22, 40, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.hover-float:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.figure-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.image-reveal {
    position: relative;
}

.figure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.figure-card:hover .figure-image img {
    transform: scale(1.15);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 50%);
}

.figure-content {
    padding: 30px;
}

.figure-content h3 {
    font-size: 26px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.figure-title {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

.contribution-list {
    list-style: none;
    margin-top: 20px;
}

.contribution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contribution-list i {
    color: var(--gold);
    margin-top: 4px;
}

/* MKIC Section */
.mkic-section {
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.mkic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.mkic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.mkic-card {
    background: rgba(10, 22, 40, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.mkic-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: rgba(10, 22, 40, 0.8);
}

.mkic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
}

.mkic-card:hover .mkic-icon {
    transform: rotateY(360deg);
}

.mkic-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Dynamic Knowledge Banks */
.knowledge-banks-section {
    background: var(--dark-bg);
}

.banks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banks-visual {
    position: relative;
}

.bank-animation {
    width: 100%;
    height: 400px;
    position: relative;
}

.bank-node {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: node-float 4s infinite ease-in-out;
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.node-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.node-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes node-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -20px);
    }
}

.bank-node i {
    font-size: 36px;
    margin-bottom: 5px;
}

.bank-node span {
    font-size: 14px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animated-line {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 10;
    animation: line-animate 2s linear infinite;
}

@keyframes line-animate {
    to {
        stroke-dashoffset: -20;
    }
}

.banks-info h3 {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.banks-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.banks-features {
    list-style: none;
}

.banks-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.banks-features li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.banks-features i {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
}

.banks-features strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
}

.banks-features p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1496065187959-7f07b8353c55') center/cover;
    opacity: 0.1;
    animation: bg-zoom 30s infinite alternate;
}

@keyframes bg-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Animations */
.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .banks-content {
        grid-template-columns: 1fr;
    }

    .bank-animation {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .hero-title .title-line-1 {
        font-size: 36px;
    }

    .hero-title .title-line-2 {
        font-size: 48px;
    }

    .hero-title .title-line-3 {
        font-size: 42px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .knowledge-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .figures-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .concept-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .concept-divider {
        display: none;
    }

    .floating-elements {
        display: none;
    }

    .revolution-preview {
        padding: 25px;
    }

    .transformation-items {
        gap: 15px;
    }

    .transform-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .transform-from,
    .transform-to {
        text-align: center;
    }

    .transform-item i {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .hero-title .title-line-1 {
        font-size: 28px;
    }

    .hero-title .title-line-2 {
        font-size: 36px;
    }

    .hero-title .title-line-3 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        min-width: 250px;
    }

    .concept-item {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ======================================
   FINAL NAVBAR – ALWAYS ONE LINE FIX
====================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    /* reduced height */
    background: rgba(10, 22, 40, 0.96);
    display: flex;
    align-items: center;
    z-index: 999;
    padding: 0;
}

/* WRAPPER */
.nav-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    /* reduced padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 58px;
    /* reduced */
    width: auto;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    /* smaller gap */
    white-space: nowrap;
    /* prevents line break 100% */
}

.nav-menu>li {
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    padding: 4px 0;
}

/* Dropdown arrow smaller */
.nav-menu i {
    font-size: 10px;
    margin-left: 2px;
    color: #D4AF37;
}

/* BUTTON (Register Interest) */
.btn-nav .btn-primary {
    padding: 10px 20px;
    /* reduced */
    font-size: 14px;
    border-radius: 8px;
    height: auto;
    white-space: nowrap;
    /* prevents wrapping */
}

/* Prevent wrapping under any condition */
.navbar * {
    white-space: nowrap !important;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .btn-nav {
        display: none;
    }
}

/* ===== MOBILE RESPONSIVE + ADVANCED MENU ===== */

/* ================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Professional Mobile-First Enhancements
================================================ */

/* ===== BASE MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    /* Container adjustments */
    .container {
        padding: 0 16px !important;
        max-width: 100%;
    }

    /* Section padding */
    section {
        padding: 50px 0 !important;
    }

    /* ===== NAVIGATION ===== */
    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .nav-wrapper {
        padding: 0 !important;
    }

    .logo img {
        height: 45px !important;
    }

    /* Mobile toggle button */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        position: relative;
    }

    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile menu - Fixed styling */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(16, 39, 71, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        list-style: none;
    }

    .nav-menu.active {
        right: 0;
        display: flex !important;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        list-style: none;
    }

    .nav-menu>li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px !important;
        font-size: 16px !important;
        width: 100%;
        color: #ffffff !important;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: normal !important;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(212, 175, 55, 0.15);
        color: var(--gold) !important;
        padding-left: 32px !important;
    }

    /* Dropdown toggle styling */
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: auto;
        font-size: 12px !important;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    /* Dropdown menu mobile */
    .dropdown-menu {
        position: static !important;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-radius: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 800px;
        padding: 8px 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
        list-style: none;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 14px 24px 14px 40px !important;
        font-size: 14px !important;
        color: var(--text-gray) !important;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: normal !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        color: var(--gold) !important;
        background: rgba(212, 175, 55, 0.1);
        padding-left: 48px !important;
    }

    /* Hide desktop register button on mobile */
    .btn-nav {
        display: none !important;
    }

    /* Add mobile menu overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    /* ===== HERO SECTION ===== */
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px !important;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-badge {
        padding: 12px 20px;
        margin-bottom: 25px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .badge-icon {
        margin-right: 0 !important;
    }

    .badge-label {
        font-size: 12px !important;
    }

    .badge-subtitle {
        font-size: 11px !important;
    }

    /* Hero title */
    .hero-title {
        margin-bottom: 25px !important;
    }

    .hero-title .title-line-1 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .hero-title .title-line-2 {
        font-size: 32px !important;
        line-height: 1.2;
        margin: 8px 0;
    }

    .hero-title .title-line-3 {
        font-size: 28px !important;
    }

    /* Hero subtitle */
    .hero-subtitle-wrapper {
        margin-bottom: 30px;
    }

    .hero-subtitle-wrapper img {
        height: 60px !important;
        margin-bottom: 15px;
    }

    .hero-subtitle-main {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .aegis-text {
        font-size: 15px !important;
    }

    /* Concept highlights */
    .concept-highlights {
        flex-direction: column !important;
        gap: 12px !important;
        margin: 20px 0;
    }

    .concept-item {
        font-size: 13px !important;
        padding: 10px 16px !important;
        justify-content: center;
    }

    .concept-item i {
        font-size: 14px;
    }

    .concept-divider {
        display: none !important;
    }

    .hero-description {
        font-size: 15px !important;
        line-height: 1.7;
    }

    /* Hero stats */
    .hero-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        margin-top: 30px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-icon {
        font-size: 28px !important;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 32px !important;
    }

    .stat-label {
        font-size: 12px !important;
    }

    .stat-description {
        font-size: 11px !important;
    }

    /* Revolution preview */
    .revolution-preview {
        padding: 20px !important;
        margin-top: 30px;
    }

    .preview-title {
        font-size: 14px !important;
        margin-bottom: 15px;
    }

    .transformation-items {
        gap: 12px !important;
    }

    .transform-item {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px;
    }

    .transform-from,
    .transform-to {
        font-size: 13px !important;
        text-align: center;
    }

    .transform-item i {
        transform: rotate(90deg);
        font-size: 16px;
    }

    /* Floating elements - hide on mobile */
    .floating-elements {
        display: none !important;
    }

    .knowledge-flow-animation {
        display: none !important;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 20px;
        font-size: 10px;
    }

    /* ===== SECTION HEADERS ===== */
    .section-header h2 {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 15px !important;
        line-height: 1.6;
    }

    /* ===== BUTTONS ===== */
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px !important;
        font-size: 15px !important;
        min-width: 200px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .btn-large {
        padding: 16px 32px !important;
        font-size: 16px !important;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100%;
    }

    /* ===== GRIDS ===== */
    .announcement-grid,
    .overview-grid,
    .mkic-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .figures-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .tracks-grid,
    .speakers-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .guests-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* ===== CARDS ===== */
    .announcement-card,
    .overview-card,
    .mkic-card,
    .track-card {
        padding: 25px 20px !important;
    }

    .announcement-icon,
    .card-icon,
    .mkic-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .announcement-card h3,
    .overview-card h3,
    .mkic-card h3,
    .track-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .announcement-card p,
    .overview-card p,
    .mkic-card p,
    .track-card p {
        font-size: 14px !important;
        line-height: 1.6;
    }

    /* ===== KNOWLEDGE FLOW ===== */
    .knowledge-flow {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .flow-step {
        width: 100%;
    }

    .flow-arrow {
        transform: rotate(90deg) !important;
        margin: 10px 0;
    }

    .flow-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 32px !important;
    }

    .flow-step h3 {
        font-size: 18px !important;
    }

    .flow-step p {
        font-size: 14px !important;
    }

    /* ===== FIGURE CARDS ===== */
    .figure-card {
        margin-bottom: 20px;
    }

    .figure-image {
        height: 350px !important;
    }

    .figure-content {
        padding: 25px 20px !important;
    }

    .figure-content h3 {
        font-size: 22px !important;
    }

    .figure-title {
        font-size: 15px !important;
    }

    .expertise-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .expertise-tags .tag {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }

    .contribution-list li {
        font-size: 14px !important;
        padding: 8px 0;
    }

    /* ===== DYNAMIC KNOWLEDGE BANKS ===== */
    .banks-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .bank-animation {
        height: 280px !important;
        margin-bottom: 20px;
    }

    .bank-node {
        width: 70px !important;
        height: 70px !important;
        font-size: 24px !important;
    }

    .bank-node span {
        font-size: 11px !important;
    }

    .banks-features li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }

    .banks-features strong {
        font-size: 15px !important;
    }

    .banks-features p {
        font-size: 13px !important;
    }

    /* ===== GUEST & SPEAKER CARDS ===== */
    .guest-card,
    .speaker-card {
        margin-bottom: 20px;
    }

    .guest-image {
        height: 350px !important;
    }

    .speaker-image {
        height: 280px !important;
    }

    .guest-info,
    .speaker-info {
        padding: 20px !important;
    }

    .guest-info h3 {
        font-size: 20px !important;
    }

    .speaker-info h4 {
        font-size: 16px !important;
    }

    .guest-badge {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 10px !important;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-content {
        padding: 30px 20px !important;
    }

    .testimonial-text {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        padding-left: 0 !important;
        gap: 15px;
    }

    .testimonial-author img {
        width: 50px !important;
        height: 50px !important;
    }

    .testimonial-author h4 {
        font-size: 16px !important;
    }

    .testimonial-author p {
        font-size: 13px !important;
    }

    /* ===== CONTACT SECTION ===== */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-form {
        padding: 25px 20px !important;
    }

    .contact-info h3 {
        font-size: 22px !important;
        margin-bottom: 20px;
    }

    .contact-item {
        padding: 16px !important;
        margin-bottom: 20px;
    }

    .contact-item h4 {
        font-size: 16px !important;
    }

    .contact-item p {
        font-size: 14px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px !important;
        font-size: 15px !important;
    }

    /* ===== CTA SECTION ===== */
    .cta-content h2 {
        font-size: 26px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 15px !important;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* ===== FOOTER ===== */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 15px;
        display: block;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 16px !important;
        margin-bottom: 15px;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }

    .footer-links li {
        margin-bottom: 0 !important;
    }

    .footer-links a {
        font-size: 13px !important;
    }

    .social-links {
        justify-content: center !important;
        gap: 12px;
    }

    .social-links a {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px !important;
    }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }

    /* ===== HIGHLIGHT CARDS ===== */
    .highlight-card {
        height: 320px !important;
    }

    .highlight-content {
        padding: 20px !important;
    }

    .highlight-content h3 {
        font-size: 18px !important;
    }

    .highlight-content p {
        font-size: 13px !important;
    }
}

/* ===== EXTRA SMALL DEVICES (< 480px) ===== */
@media (max-width: 480px) {

    .hero-title .title-line-1 {
        font-size: 20px !important;
    }

    .hero-title .title-line-2 {
        font-size: 28px !important;
    }

    .hero-title .title-line-3 {
        font-size: 24px !important;
    }

    .section-header h2 {
        font-size: 24px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
    }

    .stat-number {
        font-size: 28px !important;
    }

    .concept-item {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-width: 180px;
    }

    .cta-content h2 {
        font-size: 22px !important;
    }

    .nav-menu {
        width: 90%;
    }
}

/* ===== TABLET LANDSCAPE (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {

    .container {
        padding: 0 30px !important;
    }

    .hero-title .title-line-1 {
        font-size: 36px !important;
    }

    .hero-title .title-line-2 {
        font-size: 52px !important;
    }

    .hero-title .title-line-3 {
        font-size: 46px !important;
    }

    .section-header h2 {
        font-size: 38px !important;
    }

    .announcement-grid,
    .overview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .mkic-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {

    /* Larger touch targets */
    .nav-link,
    .dropdown-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
    }

    /* Remove hover effects on touch devices */
    .announcement-card:hover,
    .overview-card:hover,
    .mkic-card:hover,
    .track-card:hover {
        transform: none;
    }

    /* Disable complex animations on touch */
    .float-element,
    .flow-particle {
        animation: none !important;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px !important;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .nav-menu {
        height: calc(100vh - 70px);
    }
}
/* FINAL MERGED STYLE.CSS — Advanced Mobile Menu Enabled */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #102747;
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --dark-bg: #0a1628;
    --text-light: #ffffff;
    --text-gray: #b0b8c8;
    --accent-blue: #1a3a5f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ====================================================
   WHATSAPP-STYLE MOBILE MENU - WORLD CLASS DESIGN
   Modern, Smooth, and Expandable Mobile Navigation
==================================================== */

/* Mobile Menu Toggle Button - WhatsApp Style */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* Hamburger Lines with WhatsApp-style Animation */
.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    margin: 2px 0;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Menu Container - Slide from Right */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, 
            rgba(10, 22, 40, 0.98) 0%, 
            rgba(16, 39, 71, 0.98) 50%, 
            rgba(10, 22, 40, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        
        /* Layout */
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
        
        /* Animation */
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        
        /* Scrollbar Styling */
        scrollbar-width: thin;
        scrollbar-color: var(--gold) transparent;
    }
    
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 2px;
    }

    /* Show Menu */
    .nav-menu.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .nav-menu::before {
        content: '';
        display: block;
        height: 20px;
        background: #0a1628;
        position: relative;
        margin-bottom: 0;
    }

   

    /* Menu Items */
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.3s ease forwards;
    }

    .nav-menu.active > li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active > li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active > li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active > li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active > li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active > li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active > li:nth-child(7) { animation-delay: 0.4s; }
    .nav-menu.active > li:nth-child(8) { animation-delay: 0.45s; }
    .nav-menu.active > li:nth-child(9) { animation-delay: 0.5s; }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Navigation Links */
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        white-space: nowrap;
        border-left: 4px solid transparent;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus {
        
    }

    .nav-menu .nav-link:active {
        background: rgba(212, 175, 55, 0.25);
        transform: scale(0.98);
    }

    /* Dropdown Arrows */
    .nav-menu .dropdown-toggle i {
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-left: auto;
        color: var(--gold);
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    /* Dropdown Menus - WhatsApp Style Expansion */
    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin: 0;
        padding: 0;
        list-style: none;
        transform: translateY(-10px);
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding: 8px 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .dropdown.active .dropdown-menu li {
        opacity: 1;
        transform: translateX(0);
    }

    .dropdown.active .dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
    .dropdown.active .dropdown-menu li:nth-child(2) { transition-delay: 0.15s; }
    .dropdown.active .dropdown-menu li:nth-child(3) { transition-delay: 0.2s; }
    .dropdown.active .dropdown-menu li:nth-child(4) { transition-delay: 0.25s; }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 14px 20px 14px 45px;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
        transition: all 0.3s ease;
        position: relative;
        border-left: 4px solid transparent;
    }

    .dropdown-menu a::before {
        content: '•';
        position: absolute;
        left: 30px;
        color: var(--gold);
        font-size: 16px;
        opacity: 0.6;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold);
        border-left-color: var(--gold);
        padding-left: 50px;
        transform: translateX(5px);
    }

    /* Mobile CTA Button */
    .mobile-cta {
        margin-top: auto;
        padding: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .mobile-register-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 24px;
        background: linear-gradient(135deg, var(--gold) 0%, #C9A961 100%);
        color: var(--primary-blue);
        text-decoration: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .mobile-register-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    }

    .mobile-register-btn i {
        font-size: 18px;
    }

    /* Hide Desktop Elements */
    .btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Status Indicator */
.mobile-menu-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 0 10px var(--gold);
}

.mobile-menu-indicator.active {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Touch Gestures Enhancement */
@media (max-width: 968px) {
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .mobile-toggle,
    .nav-menu,
    .dropdown-menu,
    .mobile-overlay {
        transition: none;
    }
    
    .nav-menu > li {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .mobile-toggle {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger-line {
        background: #ffffff;
    }
    
    .nav-menu {
        background: rgba(0, 0, 0, 0.95);
        border-left-color: #ffffff;
    }
}

/* Focus Styles for Keyboard Navigation */
.mobile-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-menu .nav-link:focus-visible,
.dropdown-menu a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease, background 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    max-height: 100px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    padding: 15px 0;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
    padding-left: 30px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #C9A961 100%);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Rest of your existing styles... */
/* I'll include the essential parts to keep the file manageable */

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 10px;
}

.title-line-3 {
    display: block;
    font-size: 64px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #F4E4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title .title-line-1 {
        font-size: 36px;
    }
    
    .hero-title .title-line-2 {
        font-size: 48px;
    }
    
    .hero-title .title-line-3 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .hero-title .title-line-1 {
        font-size: 28px;
    }
    
    .hero-title .title-line-2 {
        font-size: 36px;
    }
    
    .hero-title .title-line-3 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Additional styles for your existing components would go here... */
/* This is a condensed version focusing on the mobile menu integration */

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 50%, var(--dark-bg) 100%);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* ---------------------------
   FIX 1: MOBILE MENU FULL WIDTH
   --------------------------- */
@media (max-width: 968px) {

    /* Mobile menu container */
    #navMenu {
        width: 85% !important;
        max-width: 360px;
        height: 100vh;
        overflow-y: auto !important;
        padding: 20px;
        background: #0a1628;
    }

    /* Each menu item */
    #navMenu li {
        width: 100%;
    }

    /* Fix dropdown toggle */
    #navMenu .dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 18px 15px;
        color: white;
    }

    /* ---------------------------
       FIX 2: SUBMENU FULL WIDTH
       --------------------------- */
    #navMenu .dropdown-menu {
        width: 100% !important;
        display: none;
        flex-direction: column;
        background: #0f213a;
        border-left: 3px solid #d4af37;
        padding: 0;
        margin: 0;
    }

    /* When dropdown is active */
    #navMenu .dropdown.active .dropdown-menu {
        display: flex !important;
    }

    /* Submenu items */
    #navMenu .dropdown-menu li a {
        width: 100%;
        padding: 14px 20px;
        color: #c9d3e2;
        display: block;
        background: #102747;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    #navMenu .dropdown-menu li a:hover {
        background: #1a3a5f;
        color: #fff;
    }
}



@media (max-width: 968px) {

    /* Style the dropdown container */
    .dropdown-menu {
        position: relative !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        display: none !important;
    }

    /* Show submenu when active */
    .dropdown.active > .dropdown-menu {
        display: block !important;
    }

    /* Each submenu item looks like main menu blocks */
    .dropdown-menu li {
        width: 100% !important;
        margin: 10px 0 !important;
        list-style: none;
    }

    .dropdown-menu li a {
        display: block !important;
        width: 100% !important;

        /* SAME STYLE AS MAIN MENU BLOCK */
        background: #102747 !important;     /* matches your main menu blocks */
        color: #ffffff !important;
        padding: 18px 20px !important;
        border: 2px solid rgba(212, 175, 55, 0.2) !important;
        border-radius: 8px !important;

        font-size: 16px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Hover effect to match main menu */
    .dropdown-menu li a:hover {
        background: #1a3a5f !important;
        border-color: var(--gold) !important;
        transform: translateY(-2px);
    }

    /* Remove old thin list look */
    .dropdown-menu li a::before,
    .dropdown-menu li a::after {
        display: none !important;
    }
}


/* ------------------------------------------------------------------
   MOBILE NAV: CLEAN SUBMENU THAT LOOKS LIKE NORMAL MENU ITEMS
------------------------------------------------------------------- */
@media (max-width: 968px) {

    /* The whole nav menu behaves as simple block */
    #navMenu {
        display: block !important;
    }

    /* REMOVE flex on li */
    #navMenu li {
        display: block !important;
        width: 100% !important;
    }

    /* Parent button ("About") */
    .dropdown-toggle {
        
    }

    /* REMOVE ALL desktop dropdown positioning */
    .dropdown-menu {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        width: 100% !important;
        display: none !important;
    }

    /* SHOW submenu when active */
    .dropdown.active > .dropdown-menu {
        display: block !important;
    }

    /* SUBMENU ITEMS → EXACT SAME STYLE AS MAIN MENU */
    .dropdown-menu li a {
        
    }

    .dropdown-menu li a:hover {
        border-color: var(--gold) !important;
    }
}
.logo-animation{
    margin-top:20px!important;
}
.logo-animation a{
    padding-top:10px!important;
}
.logo-animation a{
    padding-bottom:20px!important;
}

