body {
    margin: 0;
    background: #000;
    font-family: "Segoe UI", sans-serif;
    color: #e0e0e0;
}

/* 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;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
}

.main-header a:hover,
.main-header .active {
    color: #c9a856;
}

/* PREMIUM GOLD HEADING STYLE */
.section-title {
    font-size: 38px;
    color: #c9a856;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    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: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 150px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, transparent, #c9a856, transparent);
}

.section-subtitle {
    color: #c9a856;
    font-size: 22px;
    margin-bottom: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO */
.about-hero {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle, rgba(201,168,86,0.12), transparent 70%);
}

.about-hero p {
    max-width: 700px;
    margin: 20px auto;
    font-size: 18px;
}

/* ABOUT SECTION */
.about-section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.about-section p {
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
    font-size: 18px;
}

/* VISION & MISSION */
.vm-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.vm-card {
    background: #111;
    padding: 25px;
    border-radius: 8px;
    width: 40%;
    border: 1px solid #333;
    box-shadow: 0 0 12px rgba(201,168,86,0.2);
}

/* VALUES */
.values-section {
    padding: 60px 20px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.value-item h4 {
    color: #c9a856;
    margin-bottom: 10px;
}

/* SECTORS */
.sectors-section {
    text-align: center;
    padding: 60px 20px;
}

.sectors-list {
    max-width: 700px;
    margin: auto;
    list-style: none;
    padding: 0;
    line-height: 2;
}

.sectors-list li::before {
    content: "• ";
    color: #c9a856;
}

/* WHY CHOOSE US */
.why-section {
    padding: 70px 20px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.why-card {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    font-weight: bold;
    text-transform: uppercase;
    color: #c9a856;
}

/* TIMELINE */
.timeline-section {
    padding: 70px 20px;
    text-align: center;
}

.timeline {
    max-width: 700px;
    margin: auto;
    border-left: 2px solid #c9a856;
    padding-left: 20px;
}

.timeline-item {
    margin-bottom: 30px;
}

.timeline-item .year {
    color: #c9a856;
    font-weight: bold;
    font-size: 18px;
}

/* FOOTER */
.main-footer {
    padding: 20px;
    background: #0d0d0d;
    text-align: center;
    margin-top: 50px;
}

/* 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 .about-section p {
    text-align: right;
}

body.rtl .timeline {
    border-left: none;
    border-right: 2px solid #c9a856;
    padding-left: 0;
    padding-right: 20px;
}