/* =========================================
   GENERAL PAGE STYLE
========================================= */
body {
    margin: 0;
    background: #000;
    color: #e6e6e6;
    font-family: "Segoe UI", sans-serif;
}

/* =========================================
   LANGUAGE SWITCH
========================================= */
.lang-switch {
    position: absolute;
    top: 8px;
    right: 30px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.lang-switch button {
    width: 90px;
    height: 34px;
    padding: 0;
    background: #c9a856;
    color: #000;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.lang-switch button:hover {
    background: #d8b864;
}

/* =========================================
   HEADER
========================================= */
.main-header {
    background: #0d0d0d;
    padding: 55px 60px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.main-header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-header a {
    margin-left: 0;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
}

.main-header a:hover,
.main-header .active {
    color: #c9a856;
}

/* =========================================
   PAGE TITLE
========================================= */
.section-title {
    font-size: 42px;
    color: #c9a856;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-shadow:
        0 0 12px rgba(201,168,86,0.4),
        0 0 25px rgba(201,168,86,0.2);
    opacity: 0;
    animation: fadeInUp 1s forwards ease-out;
}

.section-title::after {
    content: "";
    width: 180px;
    height: 3px;
    margin: 12px auto 0;
    display: block;
    background: linear-gradient(to right, transparent, #c9a856, transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   HERO SECTION
========================================= */
.ceo-hero {
    padding: 80px 20px;
    background: radial-gradient(circle, rgba(201,168,86,0.14), transparent 70%);
}

/* =========================================
   CEO SECTION
========================================= */
.ceo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.ceo-photo {
    position: relative;
    width: 360px;
    height: 360px;
    margin-bottom: 30px;
}

.ceo-photo img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e6c56b;
    box-shadow:
        0 0 25px rgba(201,168,86,0.8),
        0 0 55px rgba(201,168,86,0.6),
        0 0 120px rgba(201,168,86,0.45),
        0 0 180px rgba(201,168,86,0.3);
    animation: singleGlowPulse 4s infinite ease-in-out;
}

@keyframes singleGlowPulse {
    0% {
        box-shadow:
            0 0 25px rgba(201,168,86,0.75),
            0 0 60px rgba(201,168,86,0.55),
            0 0 120px rgba(201,168,86,0.4),
            0 0 180px rgba(201,168,86,0.25);
    }

    50% {
        box-shadow:
            0 0 40px rgba(201,168,86,1),
            0 0 95px rgba(201,168,86,0.75),
            0 0 160px rgba(201,168,86,0.55),
            0 0 220px rgba(201,168,86,0.4);
    }

    100% {
        box-shadow:
            0 0 25px rgba(201,168,86,0.75),
            0 0 60px rgba(201,168,86,0.55),
            0 0 120px rgba(201,168,86,0.4),
            0 0 180px rgba(201,168,86,0.25);
    }
}

/* =========================================
   CEO TEXT
========================================= */
.ceo-message {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.ceo-name {
    color: #c9a856;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0 12px;
}

.ceo-position {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.ceo-message p {
    color: #230a0a;
    font-size: 20px;
    line-height: 2;
    text-align: center;
    margin-bottom: 18px;
}

/* =========================================
   SIGNATURE
========================================= */
.ceo-signature {
    margin-top: 20px;
    text-align: center;
}

.animated-signature span {
    font-family: "Segoe Script", cursive;
    font-size: 38px;
    color: #c9a856;
    opacity: 0;
    display: inline-block;
    animation: signatureWrite 4s ease forwards;
}

.ceo-signature small,
.ceo-signature p {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}

@keyframes signatureWrite {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* =========================================
   CO-FOUNDER SECTION
========================================= */
.leader-section {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle, rgba(201,168,86,0.10), transparent 70%);
}

.leader-title {
    font-size: 36px;
    color: #c9a856;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.leader-line {
    width: 120px;
    height: 3px;
    background: #c9a856;
    margin: 0 auto 40px;
    border-radius: 3px;
}

.leader-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.leader-photo-frame {
    width: 360px;
    height: 360px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: visible;
}

.leader-photo {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e6c56b;
    box-shadow:
        0 0 25px rgba(201,168,86,0.8),
        0 0 55px rgba(201,168,86,0.6),
        0 0 120px rgba(201,168,86,0.45),
        0 0 180px rgba(201,168,86,0.3);
    animation: singleGlowPulse 4s infinite ease-in-out;
}

.leader-name {
    color: #c9a856;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.leader-position {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.leader-message {
    color: #230a0a;
    font-size: 20px;
    line-height: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================
   RTL SUPPORT
========================================= */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .main-header {
    direction: rtl;
}

body.rtl .main-header a {
    margin-right: 0;
}

body.rtl .ceo-section,
body.rtl .leader-section,
body.rtl .ceo-name,
body.rtl .ceo-position,
body.rtl .ceo-signature,
body.rtl .leader-name,
body.rtl .leader-position,
body.rtl .leader-message {
    text-align: center;
}

body.rtl .ceo-message p {
    text-align: center;
    direction: rtl;
}

/* =========================================
   FOOTER
========================================= */
.main-footer {
    background: #0d0d0d;
    padding: 20px;
    text-align: center;
    color: #aaa;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
    .main-header {
        padding: 55px 20px 18px;
        flex-direction: column;
        gap: 15px;
    }

    .main-header nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .main-header a {
        margin-left: 0;
    }

    .ceo-photo,
    .ceo-photo img,
    .leader-photo-frame,
    .leader-photo {
        width: 240px;
        height: 240px;
    }

    .section-title {
        font-size: 30px;
    }

    .ceo-name,
    .leader-name {
        font-size: 24px;
    }

    .ceo-message p,
    .leader-message {
        font-size: 16px;
    }
}