.black-opacity-95 {
    color: #000 !important;
    opacity: .95 !important;
}

.line-height-1-8 {
    line-height: 1.8 !important;
}

.fs-18 {
    font-size: 16px !important;
}

.gallery-section {
    background: #f8f9fa;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 60px 20px 15px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: white;
    font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.about-caption h2 {
    font-size: 25px;
    color: #162b9e;
    line-height: 0.15;
}

.about-caption span {
    display: inline-block;
    color: #dd242e !important;
    font-weight: 400;
    font-size: 35px;
    position: relative;
    line-height: 1;
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 9;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    border: 2px solid #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    background: #ffffff;
    color: #162b9e;
    transform: rotate(90deg);
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #ffffff;
    color: white;
    font-size: 14px;
    user-select: none;
}

.lightbox-nav:hover {
    background: white;
    color: #162b9e;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blue-text {
    color: #162b9e !important;
}

.culture-item {
    margin-bottom: 30px;
}

.culture-item h4 {
    color: #162b9e;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.culture-item p {
    color: #555;
    line-height: 1.7;
}

.values-list {
    list-style: none;
}

.values-list strong {
    color: #747474;
}

.why-choose-section {
    background: #F5F9FF;
}

.why-image {
    background: #D1DEFA;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 600px;
}

.why-image img {
    max-width: 100%;
    filter: brightness(1.1);
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.years-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: #ffffff;
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.years-badge .number {
    font-size: 28px;
    font-weight: 700 !important;
    line-height: 1;
    color: #ffffff;
}

.years-badge .label {
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.2;
}

.gallery-item.loading {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive */
@media (min-width: 500px) {
    .years-badge {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
    }

    .years-badge .label {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (min-width: 576px) {
    .about-caption h2 {
        font-size: 30px;
    }

    .about-caption span {
        font-size: 45px;
        line-height: 1;
    }
}

@media (min-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}

@media (min-width: 992px) {
    .years-badge {
        padding: 12px 25px;
    }

    .years-badge .label {
        line-height: 1.5;
    }

    .about-caption h2 {
        font-size: 35px;
    }

    .about-caption span {
        font-size: 50px;
        line-height: 1;
    }
}

@media (min-width: 1200px) {
    .years-badge {
        top: 20px;
        left: 20px;
        padding: 20px 25px;
    }

    .years-badge .number {
        font-size: 48px;
    }

    .years-badge .label {
        font-size: 15px;
    }

    .about-caption h2 {
        font-size: 40px;
    }

    .about-caption span {
        font-size: 60px;
        line-height: 1;
    }

    .fs-18 {
        font-size: 18px !important;
    }
}