﻿:root {
    --n-primary: #28a745;
    --n-primary-light: #20c997;
    --n-secondary: #2c5364;
    --n-accent: #49a760;
    --n-darker: #0d1117;
    --n-light: #ffffff;
    --n-gray: #6c757d;
    --n-gray-light: #f8f9fa;
    --n-success: #28a745;
    --n-warning: #ffc107;
    --n-danger: #dc3545;
    --n-info: #17a2b8;
    --n-gradient-primary: linear-gradient( 135deg, var(--n-primary) 0%, var(--n-primary-light) 100% );
    --n-gradient-dark: linear-gradient( 135deg, var(--n-dark) 0%, var(--n-darker) 100% );
    --n-gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --n-gradient-gold: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --n-gradient-sunset: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    --n-gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --n-gradient-forest: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
    --n-gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    --n-gradient-pink: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --n-gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --n-gradient-rainbow: linear-gradient( 45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3 );
    --n-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --n-shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    --n-shadow-colored: 0 15px 35px rgba(40, 167, 69, 0.3);
    --n-shadow-premium: 0 25px 50px rgba(102, 126, 234, 0.25);
    --n-shadow-glow: 0 0 40px rgba(32, 201, 151, 0.4);
    --n-shadow-neon: 0 0 20px currentColor;
    --n-radius: 20px;
    --n-radius-small: 12px;
    --n-radius-large: 30px;
    --n-radius-xl: 40px;
    --n-radius-full: 50%;
    --n-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --n-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --n-transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    transition: transform var(--transition-normal);
    font-size: 0.8rem;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 250px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

    .dropdown-item:hover {
        background: var(--gradient-primary);
        color: var(--text-light);
        text-decoration: none;
        transform: translateX(-5px);
    }

    .dropdown-item i {
        width: 20px;
        text-align: center;
        font-size: 1rem;
    }



/* ===== CONTAINER & LAYOUT ===== */
.n-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.n-section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    transition: var(--n-transition-smooth);
}

    .n-section:last-of-type {
        border-bottom: none;
    }

    .n-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--n-gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .n-section.active::before {
        opacity: 1;
    }

.n-section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

    .n-section-title::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--n-gradient-primary);
        border-radius: 2px;
    }

    .n-section-title h2 {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        background: var(--n-gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 25px;
    }

    .n-section-title p {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 700px;
        margin: 0 auto;
    }

/* ===== ADVANCED SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: var(--n-darker);
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: var(--n-gradient-primary);
    border-radius: 10px;
    border: 3px solid var(--n-darker);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient( 135deg, var(--n-primary-light) 0%, var(--n-primary) 100% );
        box-shadow: var(--n-shadow-glow);
    }

/* ===== ULTRA PROFESSIONAL HEADER ===== */
.n-header-ultra {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: var(--n-transition-smooth);
}

.n-header-mega-top {
    background: var(--n-gradient-primary);
    padding: 10px 0;
    font-size: 14px;
    color: var(--n-light);
    overflow: hidden;
    position: relative;
}

    .n-header-mega-top::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.1), transparent );
        animation: n-shimmer 3s infinite;
    }

.n-header-mega-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.n-social-mega {
    display: flex;
    gap: 15px;
}

    .n-social-mega a {
        color: var(--n-light);
        font-size: 16px;
        transition: var(--n-transition-smooth);
        padding: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .n-social-mega a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px) scale(1.1);
            box-shadow: var(--n-shadow-neon);
        }

.n-contact-mega {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .n-contact-mega span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
    }

.n-header-mega-main {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--n-shadow-heavy);
    padding: 20px 0;
}

.n-header-mega-nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.n-logo-mega {
    display: flex;
    align-items: center;
    gap: 25px;
}

.n-logo-icon-mega {
    width: 80px;
    height: 80px;
    background: var(--n-gradient-primary);
    border-radius: var(--n-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--n-light);
    box-shadow: var(--n-shadow-colored);
    animation: n-logoMega 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

    .n-logo-icon-mega::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient( from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        animation: n-logoRotate 4s linear infinite;
    }

.n-logo-text-mega {
    font-size: 36px;
    font-weight: 900;
    background: var(--n-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.n-nav-mega {
    display: flex;
    gap: 50px;
    align-items: center;
}

.n-nav-item-mega {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: var(--n-transition-smooth);
    padding: 18px 25px;
    border-radius: var(--n-radius-small);
    overflow: hidden;
}

    .n-nav-item-mega::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--n-gradient-primary);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .n-nav-item-mega:hover::before {
        left: 0;
    }

    .n-nav-item-mega:hover {
        color: var(--n-light);
        transform: translateY(-3px);
    }

.n-mega-cta {
    background: var(--n-gradient-primary);
    color: var(--n-light);
    padding: 18px 35px;
    border-radius: var(--n-radius-large);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--n-transition);
    box-shadow: var(--n-shadow-colored);
    position: relative;
    overflow: hidden;
}

    .n-mega-cta:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: var(--n-shadow-heavy);
        color: var(--n-light);
    }

    .n-mega-cta::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.6s;
    }

    .n-mega-cta:hover::before {
        left: 100%;
    }

/* ===== PAGE HEADER SECTION ===== */
.page-header {
    position: relative;
    padding: 200px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80") center/cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.page-header:hover .page-header__bg {
    transform: scale(1.05);
}

.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(13, 17, 23, 0.85) 0%, rgba(40, 167, 69, 0.75) 50%, rgba(32, 201, 151, 0.8) 100% );
    z-index: 2;
}

.page-header__content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: n-pageHeaderSlideUp 1s ease-out;
    width: 100%;
}

/* ===== BREADCRUMB ===== */
.page-breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--n-radius-large);
    padding: 12px 24px;
    display: inline-flex;
    max-width: 90%;
    box-sizing: border-box;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: var(--n-radius-small);
    transition: var(--n-transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
}

    .breadcrumb-link:hover {
        color: var(--n-light);
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .breadcrumb-link i {
        font-size: 12px;
    }

.breadcrumb-current span {
    color: var(--n-primary-light);
    font-weight: 700;
    padding: 6px 10px;
    background: rgba(32, 201, 151, 0.2);
    border-radius: var(--n-radius-small);
    border: 1px solid rgba(32, 201, 151, 0.3);
    font-size: 13px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0 3px;
    font-size: 12px;
}

/* Hide some breadcrumb items on small screens */
.breadcrumb-mobile-hidden {
    display: flex;
}

/* ===== PAGE TITLE ===== */
.page-header__title-wrapper {
    margin-bottom: 50px;
}

.page-title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    background: linear-gradient( 135deg, var(--n-light) 0%, var(--n-primary-light) 50%, var(--n-light) 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: n-titleGlow 3s ease-in-out infinite alternate;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== PAGE HEADER STATS ===== */
.page-header__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--n-radius);
    padding: 18px 15px;
    text-align: center;
    transition: var(--n-transition);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

    .stat-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--n-gradient-primary);
        opacity: 0;
        transition: all 0.5s ease;
    }

    .stat-item:hover::before {
        left: 0;
        opacity: 0.2;
    }

    .stat-item:hover {
        transform: translateY(-6px) scale(1.03);
        border-color: var(--n-primary-light);
        box-shadow: 0 15px 30px rgba(32, 201, 151, 0.3);
    }

    .stat-item .stat-number {
        display: block;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--n-primary-light);
        margin-bottom: 6px;
        position: relative;
        z-index: 2;
        line-height: 1;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
        color: #2fcd9d;
        font-weight: 600;
        position: relative;
        z-index: 2;
        line-height: 1.2;
    }

/* ===== SCROLL INDICATOR ===== */
.page-header__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: n-scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--n-transition-smooth);
}

    .scroll-arrow:hover {
        border-color: var(--n-primary-light);
        background: rgba(32, 201, 151, 0.2);
        transform: scale(1.1);
    }

    .scroll-arrow i {
        color: rgba(255, 255, 255, 0.8);
        font-size: 18px;
        animation: n-arrowFloat 1.5s ease-in-out infinite;
    }

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BUTTONS SECTION ===== */
.buttons-section {
    background: linear-gradient( 135deg, var(--n-darker) 0%, var(--n-dark) 50%, var(--n-darker) 100% );
    position: relative;
}

    .buttons-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill-rule='evenodd'><g fill='%23ffffff' fill-opacity='0.015'><polygon points='30,0 60,30 30,60 0,30'/></g></g></svg>");
        pointer-events: none;
    }

.n-buttons-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.n-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: var(--n-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--n-transition);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

    .n-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent );
        transition: left 0.7s;
    }

    .n-btn:hover::before {
        left: 100%;
    }

.n-btn-primary {
    background: var(--n-gradient-primary);
    color: var(--n-light);
    box-shadow: var(--n-shadow-colored);
}

    .n-btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--n-shadow-heavy);
        color: var(--n-light);
    }

.n-btn-premium {
    background: var(--n-gradient-premium);
    color: var(--n-light);
    box-shadow: var(--n-shadow-premium);
}

    .n-btn-premium:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        color: var(--n-light);
    }

.n-btn-gold {
    background: var(--n-gradient-gold);
    color: var(--n-dark);
    box-shadow: 0 15px 35px rgba(247, 151, 30, 0.3);
}

    .n-btn-gold:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 20px 40px rgba(247, 151, 30, 0.4);
        color: var(--n-dark);
    }

.n-btn-sunset {
    background: var(--n-gradient-sunset);
    color: var(--n-light);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

    .n-btn-sunset:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
        color: var(--n-light);
    }

.n-btn-neon {
    background: transparent;
    color: var(--n-primary-light);
    border: 2px solid var(--n-primary-light);
    box-shadow: 0 0 10px var(--n-primary-light), inset 0 0 10px rgba(32, 201, 151, 0.1);
    animation: n-neonPulse 2s ease-in-out infinite alternate;
}

    .n-btn-neon:hover {
        background: var(--n-primary-light);
        color: var(--n-dark);
        box-shadow: 0 0 20px var(--n-primary-light), 0 0 40px var(--n-primary-light), inset 0 0 20px rgba(32, 201, 151, 0.2);
    }

.n-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--n-light);
}

    .n-btn-glass:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        color: var(--n-light);
    }

.n-btn-3d {
    background: var(--n-gradient-primary);
    color: var(--n-light);
    box-shadow: 0 10px 0 #1e7e34, 0 15px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

    .n-btn-3d:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 0 #1e7e34, 0 25px 30px rgba(0, 0, 0, 0.4);
        color: var(--n-light);
    }

.n-btn-gradient-animated {
    background: var(--n-gradient-rainbow);
    color: var(--n-light);
    background-size: 300%;
    animation: n-gradientShift 3s ease infinite;
}

    .n-btn-gradient-animated:hover {
        animation-duration: 1s;
        transform: translateY(-3px) scale(1.05);
        color: var(--n-light);
    }

/* ===== VERTICAL BUTTONS ===== */
.n-buttons-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.n-btn-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    border-radius: var(--n-radius-large);
    text-decoration: none;
    transition: var(--n-transition);
    position: relative;
    overflow: hidden;
    min-height: 250px;
    justify-content: center;
}

.n-btn-vertical-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
    transition: var(--n-transition);
}

.n-btn-vertical-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.n-btn-vertical-desc {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

.n-btn-vertical-1 {
    background: var(--n-gradient-primary);
    color: var(--n-light);
    box-shadow: var(--n-shadow-colored);
}

    .n-btn-vertical-1:hover {
        transform: translateY(-15px) rotateY(10deg);
        box-shadow: var(--n-shadow-heavy);
        color: var(--n-light);
    }

    .n-btn-vertical-1 .n-btn-vertical-icon {
        background: rgba(255, 255, 255, 0.2);
        color: var(--n-light);
    }

    .n-btn-vertical-1:hover .n-btn-vertical-icon {
        transform: scale(1.2) rotate(360deg);
    }

.n-btn-vertical-2 {
    background: var(--n-gradient-premium);
    color: var(--n-light);
    box-shadow: var(--n-shadow-premium);
}

    .n-btn-vertical-2:hover {
        transform: translateY(-15px) rotateY(-10deg);
        box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
        color: var(--n-light);
    }

    .n-btn-vertical-2 .n-btn-vertical-icon {
        background: rgba(255, 255, 255, 0.2);
        color: var(--n-light);
    }

    .n-btn-vertical-2:hover .n-btn-vertical-icon {
        transform: scale(1.2) rotate(-360deg);
    }

/* ===== CATALOG BUTTONS ENHANCED ===== */
.n-catalog-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.n-catalog-btn-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--n-gradient-primary);
    color: var(--n-light);
    text-decoration: none;
    border-radius: var(--n-radius);
    padding: 25px 30px;
    box-shadow: var(--n-shadow-colored);
    transition: var(--n-transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

    .n-catalog-btn-enhanced::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.8s;
    }

    .n-catalog-btn-enhanced:hover::before {
        left: 100%;
    }

    .n-catalog-btn-enhanced:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--n-shadow-heavy);
        color: var(--n-light);
    }

.n-catalog-content-enhanced {
    display: flex;
    align-items: center;
    flex: 1;
}

.n-catalog-icon-enhanced {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--n-radius-small);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: var(--n-transition);
}

.n-catalog-btn-enhanced:hover .n-catalog-icon-enhanced {
    transform: scale(1.1) rotate(10deg);
}

.n-catalog-info-enhanced {
    text-align: right;
    line-height: 1.4;
}

.n-catalog-title-enhanced {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.n-catalog-subtitle-enhanced {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.n-catalog-arrow-enhanced {
    margin-right: 20px;
    font-size: 20px;
    transition: var(--n-transition);
}

.n-catalog-btn-enhanced:hover .n-catalog-arrow-enhanced {
    transform: translateX(-8px);
}

/* ===== CARDS SECTION ===== */
.cards-section {
    background: linear-gradient( 135deg, var(--n-dark) 0%, var(--n-darker) 50%, var(--n-dark) 100% );
    position: relative;
}

    .cards-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><g fill-rule='evenodd'><g fill='%23ffffff' fill-opacity='0.01'><circle cx='20' cy='20' r='1'/></g></g></svg>");
        pointer-events: none;
    }

.n-cards-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.n-card-ultra {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--n-radius-large);
    overflow: hidden;
    transition: var(--n-transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

    .n-card-ultra::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--n-gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .n-card-ultra:hover::after {
        opacity: 1;
    }

    .n-card-ultra::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--n-gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .n-card-ultra:hover::before {
        opacity: 0.1;
    }

    .n-card-ultra:hover {
        transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
        border-color: var(--n-primary-light);
        box-shadow: var(--n-shadow-heavy);
    }

.n-card-ultra-image {
    height: 250px;
    background: var(--n-gradient-primary);
    position: relative;
    overflow: hidden;
}

    .n-card-ultra-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://cdn.builder.io/o/assets%2F72bca718268247be9b8f5ec44e899551%2F06e6c6a6cd7b4254984136308c4f3d86?alt=media&token=4ad761f8-aeb2-4dc8-9130-0d60d113b6d7&apiKey=72bca718268247be9b8f5ec44e899551") center/cover;
        transition: var(--n-transition);
    }

.n-card-ultra:hover .n-card-ultra-image::before {
    transform: scale(1.1) rotate(2deg);
}

.n-card-ultra-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--n-gradient-gold);
    color: var(--n-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    animation: n-badgePulse 2s ease-in-out infinite;
}

.n-card-ultra-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.n-card-ultra-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--n-light);
}

.n-card-ultra-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.n-card-ultra-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.n-card-ultra-stat {
    text-align: center;
}

.n-card-ultra-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--n-primary-light);
    display: block;
}

.n-card-ultra-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== EVENTS SECTION ===== */
.events-section {
    background: linear-gradient( 135deg, var(--n-darker) 0%, var(--n-dark) 100% );
    position: relative;
}

    .events-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'><g fill-rule='evenodd'><g fill='%23ffffff' fill-opacity='0.02'><rect width='2' height='2' x='24' y='24'/></g></g></svg>");
        pointer-events: none;
    }

.n-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.n-event-card-ultra {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--n-radius-large);
    overflow: hidden;
    transition: var(--n-transition);
    position: relative;
}

    .n-event-card-ultra:hover {
        transform: translateY(-20px) scale(1.02);
        border-color: var(--n-primary-light);
        box-shadow: var(--n-shadow-heavy);
    }

.n-event-image-ultra {
    height: 300px;
    background: var(--n-gradient-premium);
    position: relative;
    overflow: hidden;
}

    .n-event-image-ultra::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://cdn.builder.io/o/assets%2F72bca718268247be9b8f5ec44e899551%2F06e6c6a6cd7b4254984136308c4f3d86?alt=media&token=4ad761f8-aeb2-4dc8-9130-0d60d113b6d7&apiKey=72bca718268247be9b8f5ec44e899551") center/cover;
        transition: var(--n-transition);
    }

.n-event-card-ultra:hover .n-event-image-ultra::before {
    transform: scale(1.15);
}

.n-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 45deg, rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.8) );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--n-transition);
}

.n-event-card-ultra:hover .n-event-overlay {
    opacity: 1;
}

.n-event-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--n-light);
    backdrop-filter: blur(10px);
    transform: scale(0);
    transition: var(--n-transition);
}

.n-event-card-ultra:hover .n-event-play-btn {
    transform: scale(1);
}

.n-event-content-ultra {
    padding: 40px;
}

.n-event-date-ultra {
    background: var(--n-gradient-primary);
    color: var(--n-light);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.n-event-title-ultra {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--n-light);
    line-height: 1.3;
}

.n-event-description-ultra {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.n-event-meta-ultra {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

    .n-event-meta-ultra i {
        color: var(--n-primary-light);
        margin-left: 5px;
    }

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: linear-gradient( 135deg, var(--n-dark) 0%, var(--n-darker) 100% );
    position: relative;
}

    .projects-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill-rule='evenodd'><g fill='%23ffffff' fill-opacity='0.01'><path d='M40,0 L80,40 L40,80 L0,40 Z'/></g></g></svg>");
        pointer-events: none;
    }

.n-projects-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    grid-auto-rows: auto;
}

.n-project-card-ultra {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--n-radius-large);
    overflow: hidden;
    transition: var(--n-transition);
    position: relative;
}

    .n-project-card-ultra:hover {
        transform: translateY(-15px) rotateX(5deg);
        border-color: var(--n-primary-light);
        box-shadow: var(--n-shadow-heavy);
    }

.n-project-image-ultra {
    height: 280px;
    background: var(--n-gradient-forest);
    position: relative;
    overflow: hidden;
}

    .n-project-image-ultra::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://cdn.builder.io/o/assets%2F72bca718268247be9b8f5ec44e899551%2F06e6c6a6cd7b4254984136308c4f3d86?alt=media&token=4ad761f8-aeb2-4dc8-9130-0d60d113b6d7&apiKey=72bca718268247be9b8f5ec44e899551") center/cover;
        transition: var(--n-transition);
    }

.n-project-card-ultra:hover .n-project-image-ultra::before {
    transform: scale(1.1);
}

.n-project-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9) );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--n-transition);
}

.n-project-card-ultra:hover .n-project-info-overlay {
    opacity: 1;
}

.n-project-view-btn-ultra {
    background: rgba(255, 255, 255, 0.2);
    color: var(--n-light);
    padding: 15px 30px;
    border-radius: var(--n-radius);
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: var(--n-transition);
    margin-bottom: 15px;
}

.n-project-card-ultra:hover .n-project-view-btn-ultra {
    transform: translateY(0);
}

.n-project-content-ultra {
    padding: 35px;
}

.n-project-title-ultra {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--n-light);
}

.n-project-description-ultra {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.n-project-stats-ultra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.n-project-stat-ultra {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--n-radius-small);
}

.n-project-stat-value-ultra {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--n-primary-light);
    display: block;
}

.n-project-stat-label-ultra {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient( 135deg, var(--n-darker) 0%, var(--n-dark) 100% );
    position: relative;
}

    .gallery-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill-rule='evenodd'><g fill='%23ffffff' fill-opacity='0.008'><circle cx='50' cy='50' r='3'/></g></g></svg>");
        pointer-events: none;
    }

.n-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    grid-auto-rows: 300px;
}

.n-gallery-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--n-radius-large);
    overflow: hidden;
    transition: var(--n-transition);
    position: relative;
}

    .n-gallery-item:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--n-primary-light);
        box-shadow: var(--n-shadow-heavy);
    }

    .n-gallery-item:nth-child(3n) {
        grid-row: span 2;
    }

.n-gallery-image {
    width: 100%;
    height: 100%;
    background: var(--n-gradient-premium);
    position: relative;
    overflow: hidden;
}

    .n-gallery-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://cdn.builder.io/o/assets%2F72bca718268247be9b8f5ec44e899551%2F06e6c6a6cd7b4254984136308c4f3d86?alt=media&token=4ad761f8-aeb2-4dc8-9130-0d60d113b6d7&apiKey=72bca718268247be9b8f5ec44e899551") center/cover;
        transition: var(--n-transition);
    }

.n-gallery-item:hover .n-gallery-image::before {
    transform: scale(1.2);
}

.n-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    transform: translateY(100%);
    transition: var(--n-transition);
}

.n-gallery-item:hover .n-gallery-overlay {
    transform: translateY(0);
}

.n-gallery-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--n-light);
    margin-bottom: 10px;
}

.n-gallery-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes n-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes n-logoMega {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
        filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.5));
    }

    50% {
        transform: translateY(-15px) rotateZ(5deg);
        filter: drop-shadow(0 0 25px rgba(40, 167, 69, 0.8));
    }
}

@keyframes n-logoRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes n-neonPulse {
    from {
        box-shadow: 0 0 10px var(--n-primary-light), inset 0 0 10px rgba(32, 201, 151, 0.1);
    }

    to {
        box-shadow: 0 0 20px var(--n-primary-light), 0 0 30px var(--n-primary-light), inset 0 0 20px rgba(32, 201, 151, 0.2);
    }
}

@keyframes n-gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes n-badgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes n-pageHeaderSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes n-titleGlow {
    from {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    to {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(32, 201, 151, 0.4);
    }
}

@keyframes n-scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes n-arrowFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.n-animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--n-transition);
}

    .n-animate-on-scroll.n-animated {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .n-nav-mega {
        gap: 30px;
    }

    .n-nav-item-mega {
        font-size: 18px;
        padding: 15px 20px;
    }

    .page-header {
        padding: 160px 0 70px;
        min-height: 55vh;
    }

    .page-header__content {
        padding: 0 20px;
    }

    .breadcrumb-list {
        padding: 15px 20px;
        gap: 8px;
        max-width: 95%;
    }

    .breadcrumb-link,
    .breadcrumb-current span {
        font-size: 12px;
        padding: 5px 8px;
    }

    .page-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 20px;
    }

    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .page-header__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
        padding: 0 30px;
    }

    .stat-item {
        padding: 15px 10px;
    }

        .stat-item .stat-number {
            font-size: 1.6rem;
        }

        .stat-item .stat-label {
            font-size: 0.75rem;
        }

    /* Hide middle breadcrumb items on tablet */
    .breadcrumb-mobile-hidden:nth-child(3),
    .breadcrumb-mobile-hidden:nth-child(4),
    .breadcrumb-mobile-hidden:nth-child(5),
    .breadcrumb-mobile-hidden:nth-child(6) {
        display: none;
    }
}

@media (max-width: 768px) {
    .n-header-mega-top {
        display: none;
    }

    .n-nav-mega {
        display: none;
    }

    .page-header {
        padding: 140px 0 50px;
        min-height: 45vh;
    }

    .page-header__content {
        padding: 0 15px;
    }

    .page-breadcrumb {
        margin-bottom: 25px;
    }

    .breadcrumb-list {
        padding: 12px 16px;
        gap: 4px;
        max-width: 95%;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .breadcrumb-list::-webkit-scrollbar {
            display: none;
        }

    .breadcrumb-link,
    .breadcrumb-current span {
        font-size: 11px;
        padding: 4px 6px;
        white-space: nowrap;
    }

        .breadcrumb-link i {
            font-size: 10px;
        }

    .breadcrumb-separator {
        font-size: 10px;
        margin: 0 2px;
    }

    .page-header__title-wrapper {
        margin-bottom: 30px;
    }

    .page-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.5;
    }

    .page-header__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 320px;
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .stat-item {
        padding: 12px 8px;
        min-width: 0;
    }

        .stat-item .stat-number {
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .stat-item .stat-label {
            font-size: 0.7rem;
            line-height: 1.1;
        }

    .page-header__scroll-indicator {
        bottom: 15px;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

        .scroll-arrow i {
            font-size: 12px;
        }

    .scroll-text {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    /* Hide most breadcrumb items on mobile - show only home and current */
    .breadcrumb-mobile-hidden:not(:first-child):not(:last-child) {
        display: none;
    }

    /* Keep only essential breadcrumb items visible */
    .breadcrumb-item:nth-child(n + 3):nth-child(-n + 6) {
        display: none;
    }

    /* Add ellipsis indicator for hidden items */
    .breadcrumb-list::before {
        content: "...";
        color: rgba(255, 255, 255, 0.5);
        font-size: 11px;
        order: 2;
        padding: 4px 6px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .page-header {
        padding: 130px 0 40px;
    }

    .page-header__content {
        padding: 0 10px;
    }

    .page-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }

    .page-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .page-header__stats {
        max-width: 280px;
        gap: 10px;
    }

    .stat-item {
        padding: 10px 6px;
    }

        .stat-item .stat-number {
            font-size: 1.3rem;
        }

        .stat-item .stat-label {
            font-size: 0.65rem;
        }

    .n-buttons-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .n-buttons-vertical,
    .n-catalog-buttons,
    .n-cards-grid-ultra,
    .n-events-grid,
    .n-projects-masonry {
        grid-template-columns: 1fr;
    }

    .n-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 250px;
    }

    .n-gallery-item:nth-child(3n) {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .n-logo-text-mega {
        font-size: 24px;
    }

    .n-container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===== SECTION NAVIGATION ===== */
.section-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--n-transition-smooth);
    position: relative;
}

    .section-nav-dot.active {
        background: var(--n-primary-light);
        border-color: var(--n-primary-light);
        box-shadow: 0 0 15px rgba(32, 201, 151, 0.5);
    }

    .section-nav-dot:hover {
        transform: scale(1.3);
        background: rgba(255, 255, 255, 0.6);
    }

    .section-nav-dot::after {
        content: attr(data-section);
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .section-nav-dot:hover::after {
        opacity: 1;
    }

/* ===== UTILITY CLASSES ===== */
.n-text-center {
    text-align: center;
}

.n-mb-4 {
    margin-bottom: 2rem;
}

.n-mt-4 {
    margin-top: 2rem;
}

.n-py-5 {
    padding: 3rem 0;
}

.n-delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.n-delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.n-delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.n-delay-4 {
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.n-delay-5 {
    animation-delay: 1s;
    animation-fill-mode: both;
}

.n-delay-6 {
    animation-delay: 1.2s;
    animation-fill-mode: both;
}


























/* Language Toggle */
.e-lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.e-lang-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

    .e-lang-btn.active {
        background: linear-gradient(45deg, #28a745, #20c997);
        color: white;
        box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
    }

/* Header Styles */
.e-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.e-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.e-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.e-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: e-logoGlow 3s ease-in-out infinite;
}

.e-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.e-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.e-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.e-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

    .e-nav-link:hover {
        color: #28a745;
        transform: translateY(-2px);
    }

    .e-nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #28a745, #20c997);
        transition: width 0.3s ease;
    }

    .e-nav-link:hover::after {
        width: 100%;
    }

/* Page Header */
.e-page-header {
    padding: 120px 0 80px;
    background: linear-gradient( 135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100% );
    position: relative;
    text-align: center;
}

    .e-page-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=1920&h=1080") center/cover;
        opacity: 0.1;
        z-index: -1;
    }

.e-page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: e-titleGlow 2s ease-in-out infinite alternate;
}

.e-page-subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Events Section */
.e-video-one {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(181deg, #667eea 0%, #28a745f7 76%);
    /*  min-height: 100vh;*/
}

.e-video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 1;
}

.e-video-one .e-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.e-section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .e-section-title h2 {
        font-size: 42px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

      /*  .e-section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #49a760, #007bff);
            border-radius: 2px;
        }*/

    .e-section-title p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Events Slider Container */
.e-events-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
   /* background: white;*/
}

/* Events Slider */
.e-events-slider {
    position: relative;
    height: 600px;
}

/* Event Slide */
.e-event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    transform: translateX(30px);
}

    .e-event-slide.e-active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

/* Event Media Container */
.e-event-media-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    min-width: 300px;
    transition: flex 0.3s ease;
}

.e-event-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.e-event-slide:hover .e-event-media {
    transform: scale(1.05);
}

.e-event-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Drag Resize Handle */
.e-resize-handle {
    width: 8px;
    background: linear-gradient(180deg, #49a760, #007bff);
    cursor: col-resize;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .e-resize-handle:hover {
        width: 12px;
        background: linear-gradient(180deg, #28a745, #007bff);
        box-shadow: 0 0 15px rgba(73, 167, 96, 0.4);
    }

    .e-resize-handle::before {
        content: "";
        position: absolute;
        width: 3px;
        height: 40px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        left: 1px;
    }

    .e-resize-handle:not(:hover)::after {
        content: "";
        position: absolute;
        width: 3px;
        height: 40px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 2px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        left: 4px;
    }

    .e-resize-handle.e-dragging {
        background: linear-gradient(180deg, #20c997, #fd7e14);
        box-shadow: 0 0 20px rgba(32, 201, 151, 0.6);
        width: 15px;
    }

        .e-resize-handle.e-dragging::before,
        .e-resize-handle.e-dragging::after {
            background: rgba(255, 255, 255, 0.8);
            height: 40px;
        }

    /* Resize Handle Tooltip */
    .e-resize-handle:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 100;
        pointer-events: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        animation: fadeInTooltip 0.3s ease;
    }

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Enhanced Visual Feedback */
.e-events-slider-container.e-resizing {
    user-select: none;
}

    .e-events-slider-container.e-resizing .e-event-slide {
        pointer-events: none;
    }

    .e-events-slider-container.e-resizing .e-resize-handle {
        z-index: 1000;
    }

    .e-events-slider-container.e-resizing * {
        cursor: col-resize !important;
    }

/* Add smooth transitions when not dragging */
.e-event-media-container:not(.e-no-transition),
.e-event-details:not(.e-no-transition) {
    transition: flex 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smoother drag experience */
.e-event-slide {
    will-change: transform;
}

.e-event-media-container,
.e-event-details {
    will-change: flex;
}

/* Improved cursor feedback */
.e-resize-handle {
    will-change: width, background, box-shadow;
}

/* Play Button */
.e-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #49a760;
    color: white;
    border: none;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 6;
    box-shadow: 0 8px 25px rgba(73, 167, 96, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .e-play-button:hover {
        background: #28a745;
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 12px 35px rgba(73, 167, 96, 0.6);
    }

    .e-play-button i {
        margin-left: 3px;
    }

    .e-play-button.e-hidden {
        display: none !important;
    }

/* Media Overlay */
.e-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100% );
}

/* Project Count Badge */
.e-project-count {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #49a760;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    z-index: 5;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(73, 167, 96, 0.3);
}

/* Event Details */
.e-event-details {
    flex: 1;
    padding: 50px 40px;
    background: white;
    /*   display: flex;*/
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #2c3e50;
    min-width: auto;
    transition: flex 0.3s ease;
    overflow-y: auto;
}

/* Event Date Badge */
.e-event-date-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #49a760, #007bff);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(73, 167, 96, 0.3);
    min-width: 80px;
}

    .e-event-date-badge .e-day {
        display: block;
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
    }

    .e-event-date-badge .e-month {
        display: block;
        font-size: 13px;
        text-transform: uppercase;
        margin: 5px 0;
        font-weight: 500;
    }

    .e-event-date-badge .e-year {
        display: block;
        font-size: 16px;
        font-weight: 600;
    }

/* Event Info */
.e-event-info {
    /*padding-left: 120px;*/
}

.e-event-category {
    color: #49a760;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.e-event-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.e-event-info p {
    color: #6c757d;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Event Meta */
.e-event-meta {
    margin-bottom: 30px;
}

    .e-event-meta span {
        display: block;
        color: #495057;
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .e-event-meta i {
        color: #49a760;
        margin-left: 10px;
        width: 18px;
        font-size: 16px;
    }

/* Event Actions */
.e-event-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .e-event-actions .e-btn {
        padding: 15px 30px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.4s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .e-event-actions .e-btn-primary {
        background: linear-gradient(135deg, #49a760, #007bff);
        color: white;
        box-shadow: 0 5px 15px rgba(73, 167, 96, 0.3);
    }

        .e-event-actions .e-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(73, 167, 96, 0.4);
        }

    .e-event-actions .e-btn-outline {
        background: transparent;
        color: #49a760;
        border: 2px solid #49a760;
    }

        .e-event-actions .e-btn-outline:hover {
            background: #49a760;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(73, 167, 96, 0.3);
        }

/* Slider Controls */
.e-events-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.e-slider-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: #2c3e50;
    font-size: 18px;
}

    .e-slider-btn:hover {
        background: #49a760;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(73, 167, 96, 0.4);
    }

/* Mobile Navigation */
.e-mobile-nav {
    display: none;
    position: relative;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 0px;
    padding: 10px 20px;
    gap: 15px;
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.e-mobile-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .e-mobile-nav-btn:hover,
    .e-mobile-nav-btn:active {
        background: #49a760;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(73, 167, 96, 0.5);
    }

/* Slider Pagination */
.e-events-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.e-pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

    .e-pagination-dot::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        background: #49a760;
        border-radius: 50%;
        transition: all 0.4s ease;
    }

    .e-pagination-dot.e-active::before,
    .e-pagination-dot:hover::before {
        width: 100%;
        height: 100%;
    }

    .e-pagination-dot.e-active {
        background: #49a760;
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(73, 167, 96, 0.5);
    }

/* Animations */
@keyframes e-logoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(40, 167, 69, 0.6);
    }
}

@keyframes e-titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(40, 167, 69, 0.6));
    }
}

@keyframes e-slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .e-header-container {
        padding: 0 15px;
    }

    .e-nav-menu {
        display: none;
    }

    .e-lang-toggle {
        order: -1;
    }

    .e-page-title {
        font-size: 32px;
    }

    .e-page-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .e-video-one {
        padding: 60px 0;
    }

    .e-section-title h2 {
        font-size: 28px;
    }

    .e-section-title p {
        font-size: 16px;
        padding: 0 20px;
    }

    .e-events-slider-container {
        margin: 0 15px;
        border-radius: 15px;
    }

    .e-events-slider {
        height: auto;
        min-height: 500px;
    }

    .e-event-slide {
        flex-direction: column;
    }

    .e-event-media-container {
        height: 250px;
        flex: none;
        min-width: auto;
    }

    .e-resize-handle {
        display: none;
    }

    .e-event-details {
        padding: 30px 20px;
    }

    .e-event-date-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        display: inline-block;
    }

    .e-event-info {
        padding-left: 0;
    }

        .e-event-info h3 {
            font-size: 24px;
        }

        .e-event-info p {
            font-size: 15px;
        }

    .e-events-slider-controls {
        display: none;
    }

    .e-mobile-nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .e-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .e-project-count {
        right: 15px;
        bottom: 15px;
        padding: 8px 15px;
        font-size: 13px;
    }

    .e-event-actions {
        flex-direction: column;
        gap: 15px;
    }

        .e-event-actions .e-btn {
            justify-content: center;
            width: 100%;
            padding: 12px 25px;
        }
}

@media (max-width: 480px) {
    .e-logo-text {
        font-size: 18px;
    }

    .e-page-title {
        font-size: 24px;
    }

    .e-section-title h2 {
        font-size: 24px;
    }

    .e-events-slider {
        min-height: 450px;
    }

    .e-event-media-container {
        height: 200px;
    }

    .e-event-details {
        padding: 20px 15px;
    }

    .e-event-info h3 {
        font-size: 20px;
    }

    .e-events-slider-pagination {
        gap: 10px;
        margin-top: 30px;
    }

    .e-pagination-dot {
        width: 12px;
        height: 12px;
    }
}


[dir="ltr"] .e-event-date-badge {
    left: auto;
    right: 30px;
}

[dir="ltr"] .e-project-count {
    right: auto;
    left: 30px;
}

[dir="ltr"] .e-event-meta i {
    margin-left: 0;
    margin-right: 10px;
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .e-slider-btn {
        width: 50px;
        height: 50px;
    }

    .e-play-button {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .e-pagination-dot {
        width: 16px;
        height: 16px;
    }
}

/* Accessibility Improvements */
.e-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;
}

/* Focus Styles */
.e-slider-btn:focus,
.e-pagination-dot:focus,
.e-play-button:focus,
.e-btn:focus,
.e-mobile-nav-btn:focus,
.e-lang-btn:focus {
    outline: 2px solid #49a760;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .e-event-slide {
        border: 2px solid #fff;
    }

    .e-pagination-dot {
        border: 2px solid #fff;
    }
}













/* Language Toggle */
.c-lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.c-lang-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

    .c-lang-btn.active {
        background: linear-gradient(45deg, #28a745, #20c997);
        color: white;
        box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
    }



/* Page Header */
.c-page-header {
    padding: 120px 0 80px;
    background: linear-gradient( 135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100% );
    position: relative;
    text-align: center;
}

    .c-page-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=1920&h=1080") center/cover;
        opacity: 0.1;
        z-index: -1;
    }

.c-page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: c-titleGlow 2s ease-in-out infinite alternate;
}

.c-page-subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Certificates Section */
.c-certificates-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(181deg, #667eea 0%, #28a745f7 76%);
    min-height: 100vh;
}

.c-certificates-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 1;
}

.c-certificates-section .c-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.c-section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

    .c-section-title h2 {
        font-size: 42px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

        .c-section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #49a760, #007bff);
            border-radius: 2px;
        }

    .c-section-title p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Certificates Container */
.c-certificates-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

/* Certificates Grid */
.c-certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    width: 100%;
    /*  max-width: 900px;*/
}

/* Certificate Circle */
.c-certificate-circle {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

    .c-certificate-circle:hover {
        transform: translateY(-15px) scale(1.05);
    }

/* Circle Background */
.c-circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.c-certificate-circle:hover .c-circle-bg {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 20px 40px rgba(40, 167, 69, 0.3);
}

/* Style 1: Glass Effect */
.c-style-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

    .c-style-glass::before {
        content: "";
        position: absolute;
        top: 20%;
        left: 20%;
        width: 60%;
        height: 60%;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.3), transparent );
        border-radius: 50%;
        filter: blur(10px);
    }

/* Style 2: Gradient Effect */
.c-style-gradient {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

    .c-style-gradient::before {
        content: "";
        position: absolute;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.2), transparent );
        border-radius: 50%;
    }

/* Style 3: Neon Effect */
.c-style-neon {
    background: linear-gradient(135deg, #49a760, #007bff);
    border: 3px solid #007bff;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3);
}

    .c-style-neon::before {
        content: "";
        position: absolute;
        top: 15%;
        left: 15%;
        width: 70%;
        height: 70%;
        background: radial-gradient( circle, rgba(255, 255, 255, 0.3), transparent 70% );
        border-radius: 50%;
    }

/* Certificate Icon */
.c-certificate-icon {
    font-size: 48px;
    color: white;
    z-index: 2;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.c-certificate-circle:hover .c-certificate-icon {
    transform: scale(1.1) rotateY(360deg);
}

/* Certificate Info */
.c-certificate-info {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    text-align: center;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

    .c-certificate-info::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: none;
        border-right: none;
        border-radius: 3px 0 0 0;
        transform: translateX(-50%) rotate(45deg);
        backdrop-filter: blur(20px);
    }

.c-certificate-circle:hover .c-certificate-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    bottom: -90px;
}

.c-cert-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-cert-description {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 18px;
    font-weight: 500;
}

.c-cert-status {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

    .c-cert-status::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 ease;
    }

.c-certificate-circle:hover .c-cert-status::before {
    left: 100%;
}

.c-cert-date {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
}

    .c-cert-date i {
        color: #28a745;
        font-size: 12px;
    }

.c-status-active {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.c-status-certified {
    background: linear-gradient(45deg, #49a760, #007bff);
    color: white;
}

.c-status-renewed {
    background: linear-gradient(45deg, #007bff, #007bff);
    color: white;
}

/* Floating Animation */
.c-certificate-circle:nth-child(1) {
    animation: c-float1 6s ease-in-out infinite;
}

.c-certificate-circle:nth-child(2) {
    animation: c-float2 6s ease-in-out infinite;
    animation-delay: -2s;
}

.c-certificate-circle:nth-child(3) {
    animation: c-float3 6s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes c-float1 {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }

    50% {
        transform: translateY(-10px) rotateZ(1deg);
    }
}

@keyframes c-float2 {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }

    50% {
        transform: translateY(-15px) rotateZ(-1deg);
    }
}

@keyframes c-float3 {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }

    50% {
        transform: translateY(-8px) rotateZ(1.5deg);
    }
}

/* Animations */
@keyframes c-logoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(40, 167, 69, 0.6);
    }
}

@keyframes c-titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(40, 167, 69, 0.6));
    }
}

@keyframes c-slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {


    .c-nav-menu {
        display: none;
    }

    .c-page-title {
        font-size: 32px;
    }

    .c-page-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .c-certificates-section {
        padding: 60px 0;
    }

    .c-section-title h2 {
        font-size: 28px;
    }

    .c-section-title p {
        font-size: 16px;
        padding: 0 20px;
    }

    .c-certificates-container {
        margin: 0 15px;
        border-radius: 15px;
        padding: 40px 20px;
        min-height: auto;
    }

    .c-certificates-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .c-certificate-circle {
        width: 180px;
        height: 180px;
    }

    .c-certificate-icon {
        font-size: 40px;
    }

    .c-certificate-info {
       /* width: 200px;*/
        bottom: -50px;
    }

    .c-certificate-circle:hover .c-certificate-info {
        bottom: -60px;
    }
}

@media (max-width: 480px) {
    .c-logo-text {
        font-size: 18px;
    }

    .c-page-title {
        font-size: 24px;
    }

    .c-section-title h2 {
        font-size: 24px;
    }

    .c-certificate-circle {
        width: 160px;
        height: 160px;
    }

    .c-certificate-icon {
        font-size: 36px;
    }

    .c-certificates-container {
        padding: 30px 15px;
    }
}

/* RTL/LTR Adjustments */
[dir="ltr"] .c-certificate-info {
    text-align: center;
}

/* Accessibility */
.c-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;
}

/* Focus Styles */
.c-certificate-circle:focus,
.c-lang-btn:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
















/* Projects Section - Premium Modern Design */
.naqqar-projects-section {
    /*  min-height: 100vh;*/
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at 25% 25%, rgba(40, 167, 69, 0.12) 0%, transparent 40%), radial-gradient(circle at 75% 75%, rgba(32, 201, 151, 0.08) 0%, transparent 40%), radial-gradient(circle at 50% 0%, rgba(16, 21, 62, 0.3) 0%, #1f4e3d 50%), linear-gradient(135deg, rgb(31 78 61) 0%, rgb(31 78 61) 30%, rgb(31 78 61) 70%, rgb(31 78 61) 100%);
    z-index: 1;
    overflow: hidden;
}

    /* Enhanced Background Animation */
    /*.naqqar-projects-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient( circle at 15% 15%, rgba(40, 167, 69, 0.1) 0%, transparent 40% ), radial-gradient( circle at 85% 85%, rgba(32, 201, 151, 0.08) 0%, transparent 40% ), radial-gradient( circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 30% );
        z-index: -1;
        animation: backgroundShift 8s ease-in-out infinite alternate;
    }*/

@keyframes backgroundShift {
    0% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1.05) rotate(0.5deg);
    }
}

/* Modern Texture Overlay */
.naqqar-projects-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient( 45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25% ), linear-gradient(-45deg, rgba(40, 167, 69, 0.02) 25%, transparent 25%), radial-gradient( circle at 40% 60%, rgba(32, 201, 151, 0.04) 1px, transparent 1px );
    background-size: 60px 60px, 60px 60px, 25px 25px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Block Title */
.block-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.block-title__image {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    margin: 0 auto 30px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
    }

    100% {
        box-shadow: 0 0 30px rgba(40, 167, 69, 0.7);
    }
}

/*.block-title p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}*/
/*
.block-title h3 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    background: linear-gradient( 135deg, #ffffff 0%, rgba(40, 167, 69, 0.9) 50%, #ffffff 100% );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/

/* Main Slider Container */
.projects-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Enhanced Swiper Container */
.naqqar-swiper-container {
    flex: 1;
    position: relative;
    height: 600px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(40, 167, 69, 0.05) 100% );
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(40, 167, 69, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

    .naqqar-swiper-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(40, 167, 69, 0.2), 0 0 30px rgba(40, 167, 69, 0.1);
    }
 
.swiper-wrapper {
    position: relative;
    z-index: 1;
}

.swiper-slide {
    position: relative;
    z-index: 1;
}

/* Enhanced Slide Content */
.naqqar-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
}

    .naqqar-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(0.85) contrast(1.1) saturate(1.1);
    }

    .naqqar-slide:hover img {
        transform: scale(1.08);
        filter: brightness(0.95) contrast(1.2) saturate(1.2);
    }

/* Enhanced Content Overlay */
.naqqar-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient( 180deg, transparent 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.9) 100% );
    backdrop-filter: blur(15px);
    transition: all 0.6s ease;
    border-top: 2px solid rgba(40, 167, 69, 0.3);
}

    .naqqar-slide-content h3 {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        line-height: 1.4;
        margin: 0;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
        background: linear-gradient( 135deg, #ffffff 0%, rgba(40, 167, 69, 0.8) 100% );
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Enhanced Navigation */
.side-navigation {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.nav-button {
    width: 70px;
    height: 70px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.12) 0%, rgba(40, 167, 69, 0.08) 100% );
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

    .nav-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent );
        transition: left 0.5s ease;
    }

    .nav-button:hover::before {
        left: 100%;
    }

    .nav-button:hover {
        background: linear-gradient(135deg, #28a745, #20c997);
        border-color: rgba(40, 167, 69, 0.8);
        transform: scale(1.15) translateY(-2px);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

/* Enhanced Pagination */
.side-pagination {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.pagination-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

    .pagination-dot::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        background: linear-gradient(45deg, #28a745, #20c997);
        border-radius: 50%;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pagination-dot:hover,
    .pagination-dot.active {
        background: transparent;
        border-color: rgba(40, 167, 69, 0.8);
        transform: scale(1.3);
        box-shadow: 0 0 25px rgba(40, 167, 69, 0.5);
    }

        .pagination-dot:hover::before,
        .pagination-dot.active::before {
            width: 100%;
            height: 100%;
        }

/* Enhanced Progress Bar */
.auto-progress {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    border-radius: 6px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .naqqar-projects-section {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .block-title {
        margin-bottom: 50px;
    }

        .block-title h3 {
            font-size: 32px;
        }

    .projects-slider-container {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .naqqar-swiper-container {
        height: 450px !important;
        margin: 0 15px;
        width: auto;
        max-width: calc(100vw - 30px);
        border-radius: 24px;
    }

    .naqqar-slide {
        border-radius: 24px;
    }

    .naqqar-slide-content {
        padding: 30px 20px;
    }

        .naqqar-slide-content h3 {
            font-size: 20px;
        }

    .side-navigation {
        display: none !important;
    }

    .mobile-navigation {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin-top: 30px;
    }

    .mobile-nav-button {
        width: 55px;
        height: 55px;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.12) 0%, rgba(40, 167, 69, 0.08) 100% );
        border: 2px solid rgba(40, 167, 69, 0.3);
        border-radius: 50%;
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.4s ease;
        display: flex !important;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

        .mobile-nav-button:hover,
        .mobile-nav-button:active {
            background: linear-gradient(135deg, #28a745, #20c997);
            border-color: rgba(40, 167, 69, 0.8);
            transform: scale(1.1);
        }

    .mobile-pagination {
        display: flex !important;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        padding: 15px 25px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 30px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(40, 167, 69, 0.2);
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

        .mobile-pagination .pagination-dot {
            width: 14px;
            height: 14px;
        }

    .auto-progress {
        width: 180px;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .naqqar-projects-section {
        padding: 60px 0 40px;
    }

    .block-title h3 {
        font-size: 28px;
    }

    .naqqar-swiper-container {
        height: 400px;
        margin: 0 10px;
    }

    .mobile-nav-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* Desktop only navigation */
@media (min-width: 769px) {
    .mobile-navigation,
    .mobile-pagination {
        display: none;
    }
}

/* Focus and Accessibility */
.nav-button:focus,
.mobile-nav-button:focus,
.pagination-dot:focus {
    outline: 3px solid #28a745;
    outline-offset: 3px;
}

/* Performance optimizations */
.naqqar-swiper-container {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
































.g-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

    .g-fullscreen-modal.active {
        display: flex;
    }

.g-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}























