/* About Section */
.about-section {
    min-height: 100vh;
    background-color: #E7E0D8;
    /* Warm beige background */
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* Left side - Text content */
.about-left {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.about-left h2 {
    font-size: 3rem;
    color: #0F122A;
    /* Navy blue */
    margin-bottom: 30px;
    font-weight: 700;
}

.about-left p {
    font-size: 1.1rem;
    color: #6C7A89;
    /* Gray blue */
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.about-know-more-btn {
    background-color: #0F122A;
    /* Navy blue */
    color: #E7E0D8;
    /* Warm beige */
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.about-know-more-btn:hover {
    background-color: #6C7A89;
    /* Gray blue */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 18, 42, 0.3);
}

/* Right side - Photo slideshow */
.about-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-slideshow {
    width: 100%;
    max-width: 550px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 18, 42, 0.2);
    position: relative;
    z-index: 3;
}

.about-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.about-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Navy blue decorative canvas */
.navy-canvas {
    position: absolute;
    width: 400px;
    height: 500px;
    background-color: #0F122A;
    /* Navy blue */
    border-radius: 20px;
    z-index: 1;
    top: 50%;
    right: 8%;
    transform: translateY(-50%) rotate(-5deg);
    opacity: 0.15;
}

/* Additional decorative element */
.about-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #AC9D8D;
    /* Light brown */
    border-radius: 50%;
    top: -100px;
    left: -100px;
    opacity: 0.1;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .about-left {
        max-width: 100%;
        text-align: center;
    }

    .about-left h2 {
        font-size: 2.5rem;
    }

    .about-right {
        width: 100%;
    }

    .about-slideshow {
        max-width: 100%;
        width: 100%;
        height: 350px;
    }

    .navy-canvas {
        width: 300px;
        height: 400px;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 5%;
    }

    .about-left h2 {
        font-size: 2rem;
    }

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

    .about-know-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about-right {
        width: 100%;
    }

    .about-slideshow {
        width: 100%;
        height: 300px;
    }

    .navy-canvas {
        width: 250px;
        height: 350px;
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .about-left h2 {
        font-size: 1.8rem;
    }

    .about-right {
        width: 100%;
    }

    .about-slideshow {
        width: 100%;
        height: 250px;
    }

    .navy-canvas {
        width: 200px;
        height: 300px;
        opacity: 0.08;
    }
}