/* Project Gallery Section */
    .projects-gallery-section {
        background: white;
        padding: 100px 20px;
    }

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

    .projects-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .projects-badge {
        display: inline-block;
        background: linear-gradient(135deg, #30409e 0%, #bc2d39 100%);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .projects-header h2 {
        font-size: 3rem;
        color: #30409e;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .projects-header p {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Swiper Customization */
    .projects-swiper {
        padding: 20px 0 60px;
        overflow: hidden;
    }

    .project-slide {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: all 0.4s ease;
        height: 450px;
    }

    .project-slide:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }

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

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

    .project-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(48, 64, 158, 0.95) 0%, rgba(48, 64, 158, 0) 100%);
        padding: 30px 25px;
        transform: translateY(10px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .project-slide:hover .project-overlay {
        transform: translateY(0);
        opacity: 1;
    }

    .project-title {
        color: white;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .project-description {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .project-location {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: white;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .project-location svg {
        width: 16px;
        height: 16px;
        stroke: white;
    }

    /* Swiper Navigation Buttons */
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: none;
        border-radius: 50%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
        color: #ccc;
        font-weight: 900;
font-size: 22px;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: #bc2d39;
        transform: scale(1.1);
    }

    .swiper-button-next:hover:after,
    .swiper-button-prev:hover:after {
        color: white;
    }

    /* Swiper Pagination */
.swiper-pagination {
	position: relative;

}

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #30409e;
        opacity: 0.3;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        background: #bc2d39;
        width: 30px;
        border-radius: 6px;
    }

    /* Lightbox Styles */
    .lightbox-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

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

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

    .lightbox-image {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 10px;
    }

    .lightbox-info {
        background: rgba(255, 255, 255, 0.95);
        padding: 20px 25px;
        border-radius: 10px;
        margin-top: 20px;
    }

    .lightbox-info h3 {
        color: #30409e;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .lightbox-info p {
        color: #555;
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .lightbox-close {
        position: absolute;
        top: -50px;
        right: 0;
        width: 45px;
        height: 45px;
        background: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10000;
    }

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

    .lightbox-close svg {
        width: 24px;
        height: 24px;
        stroke: #30409e;
        transition: stroke 0.3s ease;
    }

    .lightbox-close:hover svg {
        stroke: white;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10000;
    }

    .lightbox-nav:hover {
        background: #bc2d39;
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav svg {
        width: 24px;
        height: 24px;
        stroke: #30409e;
        stroke-width: 3;
        transition: stroke 0.3s ease;
    }

    .lightbox-nav:hover svg {
        stroke: white;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        position: absolute;
        top: -50px;
        left: 0;
        background: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 700;
        color: #30409e;
        font-size: 1rem;
    }

    @media (max-width: 968px) {
        .projects-header h2 {
            font-size: 2.2rem;
        }

        .project-slide {
            height: 350px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }

        .lightbox-nav {
            width: 40px;
            height: 40px;
        }

        .lightbox-close {
            top: -45px;
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 480px) {
        .project-slide {
            height: 300px;
        }

        .lightbox-info {
            padding: 15px 20px;
        }

        .lightbox-info h3 {
            font-size: 1.2rem;
        }

        .lightbox-counter {
            font-size: 0.9rem;
            padding: 8px 16px;
        }
    }