 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            padding-top: 70px; /* Espace pour le header fixe */
        }

        /* Header styles */
        header {
            background: #00008B;
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
        }

        .logo img {
            height: 2.5rem;
            width: 2.5rem;
            object-fit: contain;
        }

        /* Navigation styles */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #FF9EB5;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #FFFFFF;
        }

        /* Hamburger menu styles */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            z-index: 1100;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: white;
            transition: all 0.3s ease;
        }

        /* Animation du hamburger */
        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile styles */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(0,0,139, 0.98);
                width: 100%;
                height: calc(100vh - 70px);
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                backdrop-filter: blur(5px);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .nav-links a {
                font-size: 1.1rem;
                padding: 1rem;
                display: block;
            }
        }

        /* Nouveaux styles pour la section Héro */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 139, 0.7), rgba(255, 158, 181, 0.5)), url('https://images.unsplash.com/photo-1605106702734-205df224ecce');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.2);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cta-button {
            background-color: #FF9EB5;
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        .cta-button:hover {
            background-color: #00008B;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* Améliorations de la section Héro */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 139, 0.7), rgba(255, 158, 181, 0.5)), url('../img/im_ngma.jpeg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
<!-- Ajout des styles pour la section Services -->
        .services {
            padding: 4rem 2rem;
            background-color: #f9f9f9;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #00008B;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

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

        .service-card h3 {
            color: #00008B;
            margin: 1.5rem 0;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services h2 {
                font-size: 2rem;
            }
        }
	.learn-more {
        display: inline-block;
        margin-top: 1.5rem;
        color: #FF9EB5;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }

    .learn-more i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .learn-more:hover {
        color: #00008B;
        border-bottom-color: #00008B;
    }

    .learn-more:hover i {
        transform: translateX(5px);
    }

    @media (max-width: 768px) {
        .learn-more {
            font-size: 0.9rem;
        }
    }
	
	/* Amélioration du header avec animation au scroll */
header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scroll {
    background: rgba(0, 0, 139, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1rem;
}

/* Animation d'entrée pour les cartes services */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card {
    animation: cardEntrance 0.6s ease forwards;
    opacity: 0;
}

/* Délais d'animation pour les cartes */
.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

/* Effet de vague animé dans le hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 80L1200 0V120H0z" fill="%23fff"/></svg>');
    background-size: cover;
    animation: wave 12s infinite linear;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

/* Animation du bouton CTA */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Animation au défilement */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Amélioration des icônes */
.service-card i {
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Loader initial */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00008B;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: loaderFade 1s 2s forwards;
}

@keyframes loaderFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Responsive amélioré */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    .nav-links {
        backdrop-filter: blur(10px);
    }
}
/* Section Projets Récents */
        .projects {
            padding: 4rem 2rem;
            background-color: white;
        }

        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .projects h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #00008B;
            margin-bottom: 3rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

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

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

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(transparent, rgba(0,0,139,0.8));
            color: white;
        }

        .project-category {
            background: #FF9EB5;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .project-card-content {
            padding: 1.5rem;
        }

        .project-card h3 {
            color: #00008B;
            margin-bottom: 0.5rem;
        }

        .project-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #00008B;
            color: white;
            padding: 4rem 2rem 0;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FF9EB5;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section p {
            line-height: 1.6;
            margin: 0.5rem 0;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #FF9EB5;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            font-size: 1.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding: 2rem 0 1rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
		 /* Styles pour la lightbox */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 3000;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .lightbox.active {
        display: flex;
        opacity: 1;
    }

    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        text-align: center;
    }

    .lightbox-img {
        max-height: 80vh;
        width: auto;
        border-radius: 5px;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .lightbox.active .lightbox-img {
        transform: scale(1);
    }

    .lightbox-caption {
        color: white;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .lightbox-close {
        position: absolute;
        top: 25px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .lightbox-close:hover {
        transform: rotate(90deg);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 50px;
        cursor: pointer;
        padding: 20px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .lightbox-nav:hover {
        opacity: 1;
    }

    .lightbox-prev {
        left: 30px;
    }

    .lightbox-next {
        right: 30px;
    }

    @media (max-width: 768px) {
        .lightbox-nav {
            font-size: 30px;
        }
        
        .lightbox-close {
            top: 15px;
            right: 20px;
            font-size: 30px;
        }
    }
	
/* Utilise les variables CSS du thème précédent */
        .services-page {
            padding: 8rem 5% 4rem;
            background: #F8F9FA;
        }

        .service-hero {
            text-align: center;
            margin-bottom: 6rem;
        }

        .service-hero h1 {
            font-size: 3.5rem;
            color: #00008B;
            margin-bottom: 1.5rem;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3.5rem;
            color: #FF9EB5;
            margin-bottom: 1.5rem;
        }

        .service-card h2 {
            color: #00008B;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .service-features {
            list-style: none;
            margin: 2rem 0;
        }

        .service-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .service-features li i {
            color: #FF9EB5;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding: 2rem;
            background: #FFFFFF;
            border-radius: 15px;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '➔';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #FF9EB5;
        }

        @media (max-width: 768px) {
            .service-hero h1 {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }

/* Section Clients & Partenaires */
.clients-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clients-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00008B;
    margin-bottom: 3rem;
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .client-logo {
        height: 120px;
        padding: 1rem;
    }
    
    .clients-section h2 {
        font-size: 2rem;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* style page projets  */

        .projects-page {
            padding: 8rem 5% 4rem;
            background: #F8F9FA;
        }

        .projects-hero {
            text-align: center;
            margin-bottom: 4rem;
        }

        .projects-hero h1 {
            font-size: 3.5rem;
            color: #00008B;
            margin-bottom: 1rem;
        }

        .project-filters {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.8rem 2rem;
            border: 2px solid #FF9EB5;
            border-radius: 30px;
            background: transparent;
            color: #2D2D2D;
            cursor: pointer;
            transition: 0.3s;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #FF9EB5;
            color: #FFFFFF;
        }

        .masonry-grid {
            column-count: 3;
            column-gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-card {
            break-inside: avoid;
            margin-bottom: 2rem;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: 0.3s;
        }

        .project-card img {
            width: 100%;
            height: auto;
			max-height:200px;
            transition: 0.4s;
        }

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(transparent 0%, rgba(5,5,5,0.8) 100%);
            color: #FFFFFF;
            opacity: 0;
            transition: 0.3s;
        }

        .project-card:hover .project-info {
            opacity: 1;
        }
		.project-info h3{
            color:#FF9EB5;
        }
		
		
        .project-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 6rem 0;
            padding: 3rem;
            background: #FFFFFF;
            border-radius: 15px;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 2.5rem;
            color: #FF9EB5;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 2;
            }
        }

        @media (max-width: 768px) {
            .projects-hero h1 {
                font-size: 2.5rem;
            }
            
            .masonry-grid {
                column-count: 1;
            }
        }
		
		
/* Styles Pagination */
.pagination-container {
    padding: 2rem 0;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-prev,
.page-next,
.page-number {
    padding: 0.5rem 1rem;
    border: 2px solid #FF9EB5;
    border-radius: 8px;
    background: transparent;
    color: #00008B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number.active {
    background: #FF9EB5;
    color: white;
    border-color: #FF9EB5;
}

.page-prev:hover,
.page-next:hover,
.page-number:hover:not(.active) {
    background: #00008B;
    color: white;
    border-color: #00008B;
}

.page-prev:disabled,
.page-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Pagination */
.pagination-container {
    padding: 2rem 0;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-prev,
.page-next,
.page-number {
    padding: 0.5rem 1rem;
    border: 2px solid #FF9EB5;
    border-radius: 8px;
    background: transparent;
    color: #00008B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number.active {
    background: #FF9EB5;
    color: white;
    border-color: #FF9EB5;
}

.page-prev:hover:not(:disabled),
.page-next:hover:not(:disabled),
.page-number:hover:not(.active) {
    background: #00008B;
    color: white;
    border-color: #00008B;
}

.page-prev:disabled,
.page-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.project-gallery {
        position: relative;
    }

    .project-gallery img:not(:first-child) {
        display: none;
    }

    .gallery-indicator {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(0,0,139,0.8);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    /* Lightbox améliorée */
    .lightbox-content {
        max-width: 90vw;
        max-height: 90vh;
    }

    .lightbox-carousel {
        display: flex;
        transition: transform 0.5s ease;
    }

    .lightbox-img {
        min-width: 100%;
        height: 80vh;
        object-fit: contain;
    }

    .lightbox-counter {
        position: absolute;
        top: 20px;
        left: 50%;
		height:30px;
		font-size:5px;
		overflow:hidden;
        transform: translateX(-50%);
        color: white;
        background: rgba(0,0,0,0.5);
        padding: 5px 15px;
        border-radius: 20px;
    }
	/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
}

.lightbox-carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.lightbox-img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 40px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}



        .contact-page {
            padding: 8rem 5% 4rem;
            background: #F8F9FA;
        }

        .contact-hero {
            text-align: center;
            margin-bottom: 4rem;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            color: #00008B;
            margin-bottom: 1rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            background: #FFFFFF;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 10px;
            transition: 0.3s;
        }

        .contact-item:hover {
            background: rgba(255,107,0,0.05);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #FF9EB5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 1.2rem;
        }

        .contact-form {
            background: #FFFFFF;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #00008B;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(0,0,0,0.1);
            border-radius: 10px;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: #FF9EB5;
            outline: none;
        }

        .services-checkboxes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .services-checkboxes {
                grid-template-columns: 1fr;
            }
        }