﻿
body {
    background-color: #fffaf3;
    font-family: 'Poppins', sans-serif;
    color: #3c3c3c;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('/image/GroupPhoto.JPG') center/cover no-repeat;
    overflow: hidden;
}

    .hero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(90, 7, 23, 0.4);
        z-index: 1;
    }

/* Right side slider container */
.side-slider {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 652px;
    height: 380px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Each slide */
.slide {
    display: none;
    width: 100%;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

    /* Active slide */
    .slide.active {
        display: block;
        animation: fadeIn 1.5s ease-in-out;
    }

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .side-slider {
        position: relative;
        width: 90%;
        height: 250px;
        margin: 0 auto;
        right: 0;
        transform: none;
        top: auto;
    }
}

.team-image {
    text-align: center;
    padding: 60px 0 30px;
    background-color: #fff;
}

    .team-image img {
        width: 85%;
        max-width: 1200px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease;
    }

        .team-image img:hover {
            transform: scale(1.02);
        }

/* Subtitle */
.subtitle-text {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: #b8860b;
    margin-bottom: 60px;
}

/* Our Team Section */
.team-section {
    background-color: #fff;
    padding: 60px 8%;
    text-align: center;
}

    .team-section h2 {
        font-family: 'Playfair Display', serif;
        color: #800000;
        font-weight: 700;
        margin-bottom: 50px;
    }

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-member {
    background-color: #fffaf3;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 280px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-8px);
    }

    .team-member img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #b8860b;
        margin-bottom: 20px;
    }

    .team-member h5 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: #800000;
        margin-bottom: 8px;
    }

    .team-member p {
        font-size: 0.95rem;
        color: #555;
    }

/* About Section */
.about-section {
    padding: 80px 10%;
    background-color: #fff;
}

    .about-section h2 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: #800000;
        margin-bottom: 20px;
    }

    .about-section p {
        line-height: 1.8;
        margin-bottom: 20px;
        color: #333;
    }

/* Mission & Vision */
.mission-vision-lux {
    padding: 100px 8%;
    background: linear-gradient(135deg, #fff4ea 0%, #fffaf3 100%);
    text-align: center;
}

    .mission-vision-lux h2 {
        color: #800000;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
    }

.mv-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.mv-box {
    flex: 1 1 45%;
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .mv-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 0;
        background: linear-gradient(90deg, #b8860b, #800000);
        transition: 0.6s;
    }

    .mv-box:hover::before {
        width: 100%;
    }

    .mv-box:hover {
        transform: translateY(-8px);
    }

    .mv-box i {
        font-size: 35px;
        color: #b8860b;
        margin-bottom: 20px;
    }

    .mv-box h3 {
        color: #800000;
        font-family: 'Playfair Display', serif;
        margin-bottom: 20px;
    }

    .mv-box p {
        line-height: 1.8;
        color: #333;
    }

.subtitle {
    color: #5a5a5a;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Watermark Logos */
.watermark-logos {
    text-align: center;
    padding: 100px 0;
    position: relative;
    background-color: #fff;
}

    .watermark-logos img {
        opacity: 0.12;
        width: 180px;
        margin: 0 30px;
        transition: opacity 0.3s ease;
    }

        .watermark-logos img:hover {
            opacity: 0.3;
        }

@@media (max-width: 992px) {
    .mv-box {
        flex: 1 1 100%;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .watermark-logos img {
        width: 130px;
        margin: 10px;
    }
}
/* CEO Unique Section */
.ceo-section {
    padding: 120px 8%;
    background: linear-gradient(180deg, #fffaf3 0%, #fff8ee 100%);
    position: relative;
    overflow: hidden;
}

    /* Decorative gold blur */
    .ceo-section::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -120px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(184,134,11,0.2), transparent 70%);
        filter: blur(60px);
        z-index: 0;
    }

/* CEO Image Style */
.ceo-image-wrap {
    position: relative;
    display: inline-block;
}

.ceo-image {
    width: 100%;
    max-width: 400px;
    border-radius: 50% 50% 0 50%;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

    .ceo-image:hover {
        transform: rotate(0deg) scale(1.03);
    }

.ceo-content {
    position: relative;
    z-index: 1;
}

.ceo-title {
    font-family: 'Playfair Display', serif;
    color: #b8860b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ceo-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #800000;
    margin-bottom: 10px;
}

.ceo-role {
    color: #b8860b;
    font-weight: 500;
    margin-bottom: 25px;
}

.ceo-text {
    color: #3c3c3c;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1rem;
}

.ceo-quote {
    margin-top: 25px;
    font-style: italic;
    color: #800000;
    font-size: 1.1rem;
    border-left: 3px solid #b8860b;
    padding-left: 20px;
}

@media (max-width: 992px) {
    .ceo-section {
        padding: 80px 5%;
    }

    .ceo-image {
        max-width: 300px;
        border-radius: 50%;
        transform: rotate(0);
    }

    .ceo-name {
        font-size: 2rem;
    }

    .ceo-quote {
        font-size: 1rem;
    }
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

    .overlay-content h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
        letter-spacing: 1px;
    }

    .overlay-content p {
        font-size: 1.3rem;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
        letter-spacing: 0.5px;
    }

