/* About Section */
.about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin-top: 0;
    /* Ensure About section is properly positioned and visible */
    position: relative;
    z-index: 2;
    clear: both;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}


.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    /* Remove animations */
}

.about-text strong {
    color: #667eea;
    font-weight: 600;
}

/* Photo Gallery */
.photo-gallery {
    /* Remove animation and max-width constraint */
    width: 100%;
    margin: 0;
}

.photo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.photo-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.photo-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: grab;
}

.photo-wrapper:active {
    cursor: grabbing;
}

.gallery-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: 20px 20px 0 0;
}

.gallery-photo.active {
    opacity: 1;
}

/* Navigation Buttons */
.photo-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    opacity: 0;
    transform: scale(0.8);
}

.photo-container:hover .nav-btn {
    opacity: 1;
    transform: scale(1);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.nav-btn i {
    color: #667eea;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-btn:hover i {
    color: #764ba2;
}

/* Photo Indicators */
.photo-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.indicator:hover {
    background: rgba(102, 126, 234, 0.6);
    transform: scale(1.1);
}

.indicator.active:hover {
    transform: scale(1.3);
}

/* Remove animation keyframes since we're not using them */

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 2.5rem;
    }

    .photo-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .photo-gallery {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }

    .photo-wrapper {
        height: 400px;
    }

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

    .nav-btn i {
        font-size: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .photo-gallery {
        max-width: 100%;
    }

    .photo-wrapper {
        height: 350px;
    }

    .photo-navigation {
        padding: 0 0.5rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .photo-indicators {
        padding: 1rem;
        gap: 0.6rem;
    }
}

@media (max-width: 320px) {
    .photo-wrapper {
        height: 300px;
    }

    .about-text p {
        font-size: 1rem;
    }
}