/* English CSS - Core & Layout Styles */
/* ================= FONT FACE ================= */
@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/CenturyGothic.woff2') format('woff2'), url('/fonts/CenturyGothic.woff') format('woff'), url('/fonts/CenturyGothic.ttf') format('truetype'), url('/fonts/CenturyGothic.eot');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* ================= FORCE FONT ================= */
html:not([dir="rtl"]) * {
    font-family: 'Century Gothic' !important;
}

html[dir="rtl"] * {
    font-family: 'JF Flat Regular' !important;
}

/* ================= PRESERVE ICON FONTS (must come AFTER force font) ================= */
.material-symbols-outlined,
span.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

i.fa, i.fas, i.far, i.fab, i.fal, i.fad,
i[class^="fa-"], i[class*=" fa-"] {
    font-family: 'Font Awesome 6 Free' !important;
    font-style: normal !important;
}

i.fab {
    font-family: 'Font Awesome 6 Brands' !important;
}

.bi, i.bi {
    font-family: 'bootstrap-icons' !important;
}

.icon-dirhams::before {
    font-family: 'custom-icons' !important;
}
/* ================= CSS VARIABLES ================= */
:root {
    --primary-red: #C11616;
    --primary-bage: #e8e1d8;
    --accent-red: #e14546;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --light-gray: #F8F9FA;
    --text-dark: #333333;
    --text-light: #666666;
    --text-contain: #231f20;
    --text-muted: #999999;
    --white: #FFFFFF;
    --border-light: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    --red-shadow: rgba(225, 69, 70, 0.3);
}

/* ================= RESET ================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #000000 !important;
    direction: ltr;
}

/* ================= ICON ================= */
.icon-dirhams::before {
    content: "\e912";
    font-family: 'custom-icons' !important;
}

/* ================= LAYOUT ================= */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

/* ================= HEADINGS ================= */
h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
}

h3 {
    font-size: 28px !important;
    font-weight: 400 !important;
    margin-bottom: 16px;
    line-height: 1.4;
}

h4 {
    font-size: 20px !important;
    font-weight: 200;
    margin-bottom: 14px;
    line-height: 1.5;
}

h5 {
    font-size: 16px !important;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* ================= TEXT ================= */
p {
    font-size: 16px !important;
    line-height: 1.5;
    margin-bottom: 12px;
}
/* ================= RTL TEXT ALIGNMENT ================= */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p {
    text-align: right;
    direction: rtl;
}
/* ================= SECTIONS ================= */
section {
    display: flex;
    align-items: center;
}

/* ================= BACKGROUND ================= */
.bg-light {
    --bs-bg-opacity: 1 !important;
    background-color: #f8f9fa !important;
}

/* ================= LINKS ================= */
a:hover {
    color: rgba(196, 30, 58, 0.8) !important;
}

 
 
 
.cta-button {
    background: #c41e3a;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

    .cta-button:hover {
        background: #a01729;
        transform: translateY(-2px);
    }

.accessibility-controls {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

    .accessibility-controls .accessibility-btn,
    .accessibility-controls .contrast-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--text-contain);
        transition: all 0.3s;
    }

        .accessibility-controls .accessibility-btn:hover,
        .accessibility-controls .contrast-btn:hover {
            background: white;
            transform: scale(1.1);
        }

/* SECTION LABELS */
.section-label {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

    .section-label::after {
        content: '';
        display: inline-block;
        width: 60px;
        height: 0px;
        background: var(--text-light);
        margin-left: 15px;
        vertical-align: middle;
        border: 1px solid var(--text-light);
    }

.explore-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
}

    .explore-text::after {
        content: '';
        display: inline-block;
        width: 60px;
        height: 40px;
        background: var(--primary-red);
        margin-left: 15px;
        vertical-align: middle;
        border: 1px solid var(--primary-red);
    }

/* OVERVIEW SECTION */
.overview {
    margin: 100px 0;
    background: white url('../images/Homepage/clouds.png') no-repeat center bottom;
    background-size: 100% 30%;  
    min-height: 100vh;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.overview-text {
    order: 2;
    text-align: left;
}

.overview-image {
    order: 1;
    text-align: left;
}

.overview h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    color: var(--text-contain);
    font-weight: 700;
}

.overview p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.overview-link {
    background: white;
    color: var(--text-contain);
    text-decoration: none;
     
    padding: 12px 25px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

    .overview-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* TRAINING SECTION */
.training {
    margin: 100px 0;
    background: #e8e1d8 url('../images/Homepage/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

    .training::before {
        content: '';
        position: absolute;
        top: -100px;
        bottom: -100px;
        left: 0;
        right: 0;
        background: inherit;
        z-index: -1;
    }

    .training .container {
        position: relative;
        z-index: 2;
    }

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.training h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-contain);
    font-weight: 700;
}

.training p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.training-link {
    background: white;
    color: var(--text-contain);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

    .training-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.training-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* FOOTER */
 

 

.footer-section h3 {
    color: var(--text-contain);
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: #231f20;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

            .footer-section ul li a:hover {
                color: #c41e3a;
            }

.footer-bottom {
    border-top: 1px solid #606060;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

    .footer-bottom .copyright {
        text-align: left;
    }

    .footer-bottom .social-links {
        display: flex;
        gap: 15px;
        align-items: center;
    }

        .footer-bottom .social-links a {
            color: #231f20;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

            .footer-bottom .social-links a:hover {
                color: #c41e3a;
            }

 


/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    background: #c41e3a;
    color: #fff;
   /* box-shadow: 0 8px 16px rgba(0,0,0,.15);*/
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 9999;
}

    .scroll-to-top.show,
    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

/* UNIVERSAL ARROW STYLING */
.overview-link::after,
.training-link::after,
.view-all-btn::after,
.service-link::after,
.cta-button::after,
.view-all::after,
.highlight-link::after {
    content: '›';
    display: inline-block;
    margin-left: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.overview-link:hover::after,
.training-link:hover::after,
.view-all-btn:hover::after,
.service-link:hover::after,
.cta-button:hover::after,
.view-all:hover::after,
.highlight-link:hover::after {
    transform: translateX(3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .overview-content,
    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .accessibility-controls {
        display: none;
    }

     

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    section {
        min-height: auto;
        display: block;
    }
}
/* Horizontal Line */
.horizontal-line {
    border-bottom: 1px solid #d9d9d9; /* Creates a 2px solid black line at the bottom */
    width: 100%; /* Spans the full width of its parent */
    margin: 50px 0; /* Adds some spacing above and below */
}
[dir="rtl"] .horizontal-line {
    border-bottom: 1px solid #d9d9d9; /* Creates a 2px solid black line at the bottom */
    width: 100%; /* Spans the full width of its parent */
    margin: 10px 0; /* Adds some spacing above and below */
}

/* Vertical Line */
.vertical-line {
    border-left: 1px solid gray; /* Creates a 1px solid gray line on the left */
    height: 200px; /* Defines the height of the line */
    display: inline-block; /* Allows setting height and width for inline elements */
    margin: 0 10px; /* Adds some spacing to the sides */
}
[dir="rtl"] .vertical-line {
    border-left: none;
    border-right: 1px solid gray;
}
 

/* ========================================
   RESPONSIVE - MOBILE
======================================== */

@media (max-width: 968px) {
    .inneroverview-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .inneroverview-text {
        order: 1 !important;
        max-width: 100%;
        text-align: center;
        padding: 0 5%;
    }

        .inneroverview-text h2 {
            margin-top: 20%;
        }

    .chairman-signature-container {
        order: 2 !important;
        justify-content: center !important;
        min-height: auto;
        padding-right: 0;
    }

    .chairman-signature {
        text-align: center;
        margin-bottom: 20px;
        max-width: 100%;
        border-radius: 15px !important;
    }
}

@media (max-width: 768px) {
    .inneroverview-text h2 {
        font-size: 2rem;
        margin-top: 10%;
    }

    .chairman-signature {
        padding: 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }

        .chairman-signature h4 {
            font-size: 1.1rem;
        }

        .chairman-signature p {
            font-size: 0.9rem;
        }

    .inneroverview-link {
        width: 100%;
        max-width: 200px;
    }
} 


/* FOOTER */
.footer {
    position: relative;
    background: #e8e1d8;
    color: #000000;
    padding: 140px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-contain);
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: #231f20;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            display: inline-block;
        }

            .footer-section ul li a:hover {
                color: #c41e3a;
            }

.footer-bottom {
    border-top: 1px solid #606060;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-size: 0.9rem;
}

    .footer-bottom .copyright {
        text-align: left;
    }

    .footer-bottom .social-links {
        display: flex;
        gap: 15px;
        align-items: center;
    }

        .footer-bottom .social-links a {
            color: #231f20;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

            .footer-bottom .social-links a:hover {
                color: #c41e3a;
            }

.footer-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

        .footer-bottom .copyright {
            text-align: center;
        }
}
/* ========================================
   FOOTER SECTION - ARABIC RTL
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

html[lang="ar"] .footer,
html[dir="rtl"] .footer {
    direction: rtl;
}

html[lang="ar"] .footer-section,
html[dir="rtl"] .footer-section {
    text-align: right;
    padding: 60px 0 20px;
}

    html[lang="ar"] .footer-section h3,
    html[dir="rtl"] .footer-section h3 {
        text-align: right;
    }

    html[lang="ar"] .footer-section ul,
    html[dir="rtl"] .footer-section ul {
        text-align: right;
    }

        html[lang="ar"] .footer-section ul li a,
        html[dir="rtl"] .footer-section ul li a {
            padding-left: 0;
            padding-right: 0;
        }

            html[lang="ar"] .footer-section ul li a::before,
            html[dir="rtl"] .footer-section ul li a::before {
                left: auto;
                right: 0;
            }

            html[lang="ar"] .footer-section ul li a:hover,
            html[dir="rtl"] .footer-section ul li a:hover {
                padding-left: 0;
                padding-right: 5px;
            }

html[lang="ar"] .footer-bottom,
html[dir="rtl"] .footer-bottom {
    direction: rtl;
}

    html[lang="ar"] .footer-bottom .copyright,
    html[dir="rtl"] .footer-bottom .copyright {
        text-align: right;
    }

    html[lang="ar"] .footer-bottom .social-links,
    html[dir="rtl"] .footer-bottom .social-links {
        direction: rtl;
    }

/* Mobile RTL */
@media (max-width: 768px) {
    html[lang="ar"] .footer-section,
    html[dir="rtl"] .footer-section {
        text-align: center;
    }

        html[lang="ar"] .footer-section h3,
        html[dir="rtl"] .footer-section h3 {
            text-align: center;
        }

        html[lang="ar"] .footer-section ul li a,
        html[dir="rtl"] .footer-section ul li a {
            text-align: center;
        }

    html[lang="ar"] .footer-bottom,
    html[dir="rtl"] .footer-bottom {
        flex-direction: column;
    }

        html[lang="ar"] .footer-bottom .copyright,
        html[dir="rtl"] .footer-bottom .copyright {
            text-align: center;
        }

        html[lang="ar"] .footer-bottom .social-links,
        html[dir="rtl"] .footer-bottom .social-links {
            flex-direction: row;
            justify-content: center;
        }
}
 
/* ========================================
   DYNAMIC INNER OVERVIEW - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.Dynamicinneroverview {
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
     
    min-height: 30vh !important;
}

.Dynamicinneroverview-content {
    padding: 0px 0px 50px 0 !important;
    display: grid;
    grid-template-columns: 100%;
    gap: 0;
    align-items: center;
    padding: 0;
    min-height: 30vh !important;
}

.Dynamicinneroverview-text {
    order: 1;
    text-align: left;
    z-index: 2;
    position: relative;
    padding: 0 5% 0 5%;
    width: 100%;
    color: #999999;
}

    .Dynamicinneroverview-text h2 {
        margin-top: 60%;
        margin-bottom: 25px;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        line-height: 1.2;
    }

    .Dynamicinneroverview-text p {
        font-size: 0.8rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
    }

.Dynamicinneroverview-link {
    display: inline-block;
    background: white;
    color: var(--text-contain, #231f20);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 150px;
    text-align: center;
}

    .Dynamicinneroverview-link:hover {
        background: #f8f9fa;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.Dynamicinneroverview-image {
    order: 2;
    text-align: right;
    position: relative;
    padding: 0 5%;
}

    .Dynamicinneroverview-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

/* Terms Content Box - For legal pages */
.terms-content-box {
    /*background: #f8f9fa;*/
    
    border-radius: 15px;
    /*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);*/
    width: 100%;
    max-width: 100%;
}

    .terms-content-box .Dynamicinneroverview-text {
        padding: 0;
        margin-top: 0;
    }

        .terms-content-box .Dynamicinneroverview-text h2 {
            margin-top: 0;
            padding-bottom: 20px;
            border-bottom: 3px solid #e8e1d8;
        }

 
/* Content Image */
.content-image {
    margin: 40px 0;
    text-align: center;
}

    .content-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

/* Loading Container */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .Dynamicinneroverview-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .Dynamicinneroverview-text {
        padding: 40px 5%;
    }

        .Dynamicinneroverview-text h2 {
            margin-top: 0;
            font-size: 2.2rem;
        }

    .Dynamicinneroverview-image {
        order: 1;
        text-align: center;
        padding: 40px 5%;
    }

    .terms-content-box {
        padding: 50px;
    }
}

/* Mobile */
@media (max-width: 968px) {
    .Dynamicinneroverview {
        padding: 60px 0;
    }

    .Dynamicinneroverview-content {
        gap: 20px;
    }

    .Dynamicinneroverview-text {
        text-align: center;
        padding: 30px 5%;
    }

        .Dynamicinneroverview-text h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .Dynamicinneroverview-text p {
            text-align: center;
            font-size: 0.85rem;
        }

    .Dynamicinneroverview-link {
        margin: 20px auto 0;
        display: block;
    }

    .terms-content-box {
        padding: 40px 30px;
        border-radius: 10px;
    }

    .chairman-signature {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        border-top: 4px solid #c41e3a;
    }

        .chairman-signature h4,
        .chairman-signature p {
            text-align: center;
        }
}

@media (max-width: 768px) {
    .Dynamicinneroverview {
        padding: 50px 0;
    }

    .Dynamicinneroverview-text {
        padding: 20px 5%;
    }

        .Dynamicinneroverview-text h2 {
            font-size: 1.8rem;
        }

        .Dynamicinneroverview-text p {
            font-size: 0.8rem;
            line-height: 1.5;
        }

    .Dynamicinneroverview-link {
        width: 130px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .terms-content-box {
        padding: 30px 20px;
    }

    .chairman-signature h4 {
        font-size: 1.3rem;
    }

    .chairman-signature p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .Dynamicinneroverview-text h2 {
        font-size: 1.6rem;
    }

    .Dynamicinneroverview-text p {
        font-size: 0.75rem;
    }

    .terms-content-box {
        padding: 25px 15px;
    }
}
 

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .training {
        margin: 80px 0;
        min-height: auto;
        padding: 80px 0;
    }

        .training::before {
            top: -80px;
            bottom: -80px;
        }

    .training-content {
        gap: 60px;
    }

    .training h2 {
        font-size: 2.2rem;
    }

    .training-image img {
        height: 350px;
    }
}

@media (max-width: 968px) {
    .training {
        margin: 60px 0;
        padding: 60px 0;
    }

        .training::before {
            top: -60px;
            bottom: -60px;
        }

    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .training-text {
        text-align: center;
    }

    .training h2 {
        font-size: 2rem;
    }

    .training p {
        text-align: center;
    }

    .training-link {
        margin: 0 auto;
        display: inline-flex;
    }

    .training-image {
        text-align: center;
    }

        .training-image img {
            height: 300px;
            max-width: 500px;
        }
}

@media (max-width: 768px) {
    .training {
        margin: 50px 0;
        padding: 50px 0;
        background-attachment: scroll;
    }

        .training::before {
            top: -50px;
            bottom: -50px;
        }

    .training-content {
        gap: 30px;
    }

    .training h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .training p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .training-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .training-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .training {
        margin: 40px 0;
        padding: 40px 0;
    }

        .training h2 {
            font-size: 1.6rem;
        }

        .training p {
            font-size: 0.8rem;
        }

    .training-image img {
        height: 200px;
        border-radius: 15px;
    }
}
/* ========================================
   TRAINING SECTION - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.training {
    margin: 100px 0;
    background: #e8e1d8 no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

    .training::before {
        content: '';
        position: absolute;
        top: -100px;
        bottom: -100px;
        left: 0;
        right: 0;
        background: inherit;
        z-index: -1;
    }

    .training .container {
        position: relative;
        z-index: 2;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.training-text {
    text-align: left;
}

.training h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-contain, #231f20);
    font-weight: 700;
    line-height: 1.2;
}

.training p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.training-link {
    background: white;
    color: var(--text-contain, #231f20);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

    .training-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        text-decoration: none;
        background: #f8f9fa;
    }

.training-image {
    text-align: right;
}

    .training-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.training-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .training {
        margin: 80px 0;
        min-height: auto;
        padding: 80px 0;
    }

        .training::before {
            top: -80px;
            bottom: -80px;
        }

    .training-content {
        gap: 60px;
    }

    .training h2 {
        font-size: 2.2rem;
    }

    .training-image img {
        height: 350px;
    }
}

@media (max-width: 968px) {
    .training {
        margin: 60px 0;
        padding: 60px 0;
    }

        .training::before {
            top: -60px;
            bottom: -60px;
        }

    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .training-text {
        text-align: center;
    }

    .training h2 {
        font-size: 2rem;
    }

    .training p {
        text-align: center;
    }

    .training-link {
        margin: 0 auto;
        display: inline-flex;
    }

    .training-image {
        text-align: center;
    }

        .training-image img {
            height: 300px;
            max-width: 500px;
        }
}

@media (max-width: 768px) {
    .training {
        margin: 50px 0;
        padding: 50px 0;
        background-attachment: scroll;
    }

        .training::before {
            top: -50px;
            bottom: -50px;
        }

    .training-content {
        gap: 30px;
    }

    .training h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .training p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .training-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .training-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .training {
        margin: 40px 0;
        padding: 40px 0;
    }

        .training h2 {
            font-size: 1.6rem;
        }

        .training p {
            font-size: 0.8rem;
        }

    .training-image img {
        height: 200px;
        border-radius: 15px;
    }
}
/* ========================================
   ARABIC RTL STYLES - DYNAMIC INNER OVERVIEW
   Author: Denny A Devassy
   Date: 2025-10-16
======================================== */

/* Main Container */
html[lang="ar"] .Dynamicinneroverview,
html[dir="rtl"] .Dynamicinneroverview {
    direction: rtl;
}

/* Text Content */
html[lang="ar"] .Dynamicinneroverview-text,
html[dir="rtl"] .Dynamicinneroverview-text {
    text-align: right;
    direction: rtl;
}

    html[lang="ar"] .Dynamicinneroverview-text h2,
    html[dir="rtl"] .Dynamicinneroverview-text h2 {
        text-align: right;
        direction: rtl;
    }

    html[lang="ar"] .Dynamicinneroverview-text p,
    html[dir="rtl"] .Dynamicinneroverview-text p {
        text-align: right;
        direction: rtl;
    }

/* Link Button */
html[lang="ar"] .Dynamicinneroverview-link,
html[dir="rtl"] .Dynamicinneroverview-link {
    text-align: center;
    direction: rtl;
}

/* Image Container */
html[lang="ar"] .Dynamicinneroverview-image,
html[dir="rtl"] .Dynamicinneroverview-image {
    text-align: left; /* Reverse of right for RTL */
    direction: rtl;
}

/* Terms Content Box */
html[lang="ar"] .terms-content-box,
html[dir="rtl"] .terms-content-box {
    direction: rtl;
}

    html[lang="ar"] .terms-content-box .Dynamicinneroverview-text,
    html[dir="rtl"] .terms-content-box .Dynamicinneroverview-text {
        text-align: right;
    }

        html[lang="ar"] .terms-content-box .Dynamicinneroverview-text h2,
        html[dir="rtl"] .terms-content-box .Dynamicinneroverview-text h2 {
            text-align: right;
            border-bottom: 3px solid #c41e3a;
            border-right: none;
        }

/* Chairman Signature */
html[lang="ar"] .chairman-signature,
html[dir="rtl"] .chairman-signature {
    text-align: right;
    border-left: none;
    
   /* border-right: 4px solid #c41e3a;*/
    direction: rtl;
}

    html[lang="ar"] .chairman-signature h4,
    html[dir="rtl"] .chairman-signature h4 {
        text-align: right;
        direction: rtl;
    }

    html[lang="ar"] .chairman-signature p,
    html[dir="rtl"] .chairman-signature p {
        text-align: right;
        direction: rtl;
    }

/* Content Image */
html[lang="ar"] .content-image,
html[dir="rtl"] .content-image {
    text-align: center;
    direction: rtl;
}

/* ========================================
   ARABIC RESPONSIVE - MOBILE
======================================== */

@media (max-width: 968px) {
    html[lang="ar"] .Dynamicinneroverview-text,
    html[dir="rtl"] .Dynamicinneroverview-text {
        text-align: center;
    }

        html[lang="ar"] .Dynamicinneroverview-text h2,
        html[dir="rtl"] .Dynamicinneroverview-text h2 {
            text-align: center;
        }

        html[lang="ar"] .Dynamicinneroverview-text p,
        html[dir="rtl"] .Dynamicinneroverview-text p {
            text-align: center;
        }

    html[lang="ar"] .chairman-signature,
    html[dir="rtl"] .chairman-signature {
        text-align: center;
        border-right: none;
        border-top: 4px solid #c41e3a;
    }

        html[lang="ar"] .chairman-signature h4,
        html[lang="ar"] .chairman-signature p,
        html[dir="rtl"] .chairman-signature h4,
        html[dir="rtl"] .chairman-signature p {
            text-align: center;
        }
}

/* ========================================
   ARABIC FONT FAMILY (Optional - Add if needed)
======================================== */

html[lang="ar"] .Dynamicinneroverview-text h2,
html[dir="rtl"] .Dynamicinneroverview-text h2 {
    font-family: 'JF Flat Regular', Arial, sans-serif;
}

html[lang="ar"] .Dynamicinneroverview-text p,
html[dir="rtl"] .Dynamicinneroverview-text p {
    font-family: 'JF Flat Regular', Arial, sans-serif;
}

html[lang="ar"] .chairman-signature h4,
html[lang="ar"] .chairman-signature p,
html[dir="rtl"] .chairman-signature h4,
html[dir="rtl"] .chairman-signature p {
    font-family: 'JF Flat Regular', Arial, sans-serif;
}
/* =============================================
   ARABIC RTL STYLES - Add to english.css
   Author: Denny A Devassy
   Date: 2025-10-16
   These styles activate automatically when html[lang="ar"] or html[dir="rtl"]
============================================= */
/* Arabic Font Face */
@font-face {
    font-family: 'JF Flat Regular';
    src: url('/fonts/JF%20Flat%20Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* =============================================
   ARABIC OVERRIDE - Target only text elements
============================================= */
html[lang="ar"] body,
html[dir="rtl"] body {
    font-family: 'JF Flat Regular' !important;
    direction: rtl;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] span:not(.fa):not([class*="fa-"]):not(.material-symbols-outlined),
html[lang="ar"] a,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] label,
html[lang="ar"] div:not(.fa):not([class*="fa-"]),
html[lang="ar"] li,
html[lang="ar"] td,
html[lang="ar"] th,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] span:not(.fa):not([class*="fa-"]):not(.material-symbols-outlined),
html[dir="rtl"] a,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] label,
html[dir="rtl"] div:not(.fa):not([class*="fa-"]),
html[dir="rtl"] li,
html[dir="rtl"] td,
html[dir="rtl"] th {
    font-family: 'JF Flat Regular' !important;
}
/* Preserve Font Awesome - Force override */
i,
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
}
/* ========================================
   BODY & CONTAINER - RTL
======================================== */
 
html[lang="ar"] .container,
html[dir="rtl"] .container {
    direction: rtl;
}

/* ========================================
   NAVIGATION - RTL
======================================== */
/*html[lang="ar"] .hero .navbar .container,
html[dir="rtl"] .hero .navbar .container {
    direction: rtl;
}

html[lang="ar"] .nav-menu,
html[dir="rtl"] .nav-menu {
    direction: rtl;
}

html[lang="ar"] .nav-list,
html[dir="rtl"] .nav-list {
    direction: rtl;
}

html[lang="ar"] .dropdown-icon,
html[dir="rtl"] .dropdown-icon {
    margin-right: 5px;
    margin-left: 0;
}*/

/* Dropdown Menu - RTL */
/*html[lang="ar"] .dropdown-menu,
html[lang="ar"] .custom-dropdown-menu,
html[dir="rtl"] .dropdown-menu,
html[dir="rtl"] .custom-dropdown-menu {
    right: 0;
    left: auto;
}

html[lang="ar"] .dropdown-link,
html[lang="ar"] .custom-dropdown-link,
html[dir="rtl"] .dropdown-link,
html[dir="rtl"] .custom-dropdown-link {
    text-align: right;
    direction: rtl;
    border-right: 3px solid transparent;
    border-left: none;
}*/

    /* Arrow before text in RTL */
    /*html[lang="ar"] .dropdown-link::before,
    html[lang="ar"] .custom-dropdown-link::before,
    html[dir="rtl"] .dropdown-link::before,
    html[dir="rtl"] .custom-dropdown-link::before {
        content: '\f053';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 10px;
        margin-left: 8px;
        margin-right: 0;
    }

    html[lang="ar"] .dropdown-link:hover,
    html[lang="ar"] .custom-dropdown-link:hover,
    html[dir="rtl"] .dropdown-link:hover,
    html[dir="rtl"] .custom-dropdown-link:hover {
        border-right-color: var(--primary-red);
        border-left-color: transparent;
    }

html[lang="ar"] .nav-actions,
html[dir="rtl"] .nav-actions {
    direction: rtl;
}*/

/* ========================================
   HERO SECTION - RTL
======================================== */
html[lang="ar"] .hero-content,
html[dir="rtl"] .hero-content {
    text-align: center !important;
    direction: rtl;
}

    html[lang="ar"] .hero-content h1,
    html[lang="ar"] .hero-content h3,
    html[lang="ar"] .hero-content p,
    html[dir="rtl"] .hero-content h1,
    html[dir="rtl"] .hero-content h3,
    html[dir="rtl"] .hero-content p {
        font-family: 'JF Flat Regular';
    }

html[lang="ar"] .accessibility-controls,
html[dir="rtl"] .accessibility-controls {
    right: auto;
    left: 20px;
}

/* ========================================
   SERVICES SECTION - RTL
======================================== */
html[lang="ar"] .section-header,
html[dir="rtl"] .section-header {
    direction: rtl;
}

    html[lang="ar"] .section-header h2,
    html[dir="rtl"] .section-header h2 {
        text-align: right;
    }

html[lang="ar"] .section-intro,
html[dir="rtl"] .section-intro {
    text-align: right;
}

html[lang="ar"] .explore-text::before,
html[dir="rtl"] .explore-text::before {
    margin-right: 15px;
    margin-left: 0;
}

/* ========================================
   OVERVIEW SECTION - RTL
======================================== */
html[lang="ar"] .overview-content,
html[dir="rtl"] .overview-content {
    grid-template-columns: 1fr 2fr;
}

html[lang="ar"] .overview-text,
html[dir="rtl"] .overview-text {
    order: 2;
    text-align: right;
}

html[lang="ar"] .overview-image,
html[dir="rtl"] .overview-image {
    order: 1;
    text-align: right;
}

html[lang="ar"] .section-label::before,
html[dir="rtl"] .section-label::before {
    margin-right: 15px;
    margin-left: 0;
}

html[lang="ar"] .overview h2,
html[lang="ar"] .overview p,
html[dir="rtl"] .overview h2,
html[dir="rtl"] .overview p {
    text-align: right;
}

html[lang="ar"] .overview-link::before,
html[dir="rtl"] .overview-link::before {
    content: '‹';
    margin-right: 0;
    margin-left: 8px;
}

/* ========================================
   TRAINING SECTION - RTL
======================================== */
html[lang="ar"] .training-text,
html[dir="rtl"] .training-text {
    text-align: right;
}

html[lang="ar"] .training h2,
html[lang="ar"] .training p,
html[dir="rtl"] .training h2,
html[dir="rtl"] .training p {
    text-align: right;
}

html[lang="ar"] .training-link::before,
html[dir="rtl"] .training-link::before {
    content: '‹';
    margin-right: 0;
    margin-left: 8px;
}

/* ========================================
   HIGHLIGHTS SECTION - RTL
======================================== */
html[lang="ar"] .highlights .section-header,
html[dir="rtl"] .highlights .section-header {
    direction: rtl;
}

html[lang="ar"] .section-title-group,
html[dir="rtl"] .section-title-group {
    align-items: flex-end;
    text-align: right;
}

html[lang="ar"] .highlights-tabs,
html[dir="rtl"] .highlights-tabs {
    direction: rtl;
}

html[lang="ar"] .highlight-card.main .highlight-content,
html[dir="rtl"] .highlight-card.main .highlight-content {
    direction: rtl;
}

html[lang="ar"] .highlight-card.main .highlight-text,
html[lang="ar"] .highlight-card.main h3,
html[dir="rtl"] .highlight-card.main .highlight-text,
html[dir="rtl"] .highlight-card.main h3 {
    text-align: right;
}

html[lang="ar"] .highlight-card.main .highlight-link::before,
html[dir="rtl"] .highlight-card.main .highlight-link::before {
    content: '‹';
    margin-right: 8px;
    margin-left: 0;
}

html[lang="ar"] .highlight-card.side .highlight-content,
html[dir="rtl"] .highlight-card.side .highlight-content {
    direction: rtl;
}

html[lang="ar"] .highlight-card.side .highlight-text,
html[lang="ar"] .highlight-card.side h3,
html[dir="rtl"] .highlight-card.side .highlight-text,
html[dir="rtl"] .highlight-card.side h3 {
    text-align: right;
}

 

/* ========================================
   UTILITY CLASSES - RTL
======================================== */
html[lang="ar"] .vertical-line,
html[dir="rtl"] .vertical-line {
    border-left: none;
    border-right: 1px solid gray;
}

html[lang="ar"] .horizontal-line,
html[dir="rtl"] .horizontal-line {
    border-bottom: 1px solid #d9d9d9;
    width: 100%;
    margin: 10px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

    .icon-btn:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }


/* ========================================
   CHAIRMAN SECTION - FIXED VERSION
   Gradient background, no border, responsive
   Author: DCA Web Development Team
======================================== */

/* Base Section */
.chairman-section {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden; /* Prevent horizontal scroll */
}

    .chairman-section .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 0 200px 0;
        position: relative;
        min-height: 100vh;
    }

/* Content Grid */
.inneroverview-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: start;
    padding: 0;
    min-height: 100vh;
    position: relative;
}
/* ========================================
   CHAIRMAN SECTION - RTL SUPPORT
======================================== */
[dir="rtl"] .chairman-section {
    background-position: center left;
}

    [dir="rtl"] .chairman-section .container {
        direction: rtl;
    }

[dir="rtl"] .inneroverview-content {
    grid-template-columns: 55% 45%;
    direction: rtl;
}

[dir="rtl"] .inneroverview-text {
    order: 2;
    text-align: right;
    padding: 0 0 0 40px;
}

    [dir="rtl"] .inneroverview-text h2 {
        text-align: right;
        padding-top:40px;
    }

    [dir="rtl"] .inneroverview-text p {
        text-align: justify;
        margin-left: auto;
        margin-right: 0;
    }
/* ========================================
   LEFT SIDE - TEXT CONTENT
======================================== */
.inneroverview-text {
    order: 1;
    text-align: left;
    z-index: 2;
    position: relative;
    padding: 0 40px 0 0;
    width: 100%;
    padding-top: 20%;
}

    .inneroverview-text h2 {
        margin-bottom: 30px;
        
        font-weight: 700;
        color: var(--text-contain, #1a1a1a);
        line-height: 1.2;
        margin-top: 0;
    }

    .inneroverview-text p {
        
        line-height: 1.8;
        color: #000000;
        margin-bottom: 20px;
        max-width: 650px;
        text-align: justify;
        text-justify: inter-word;
    }
[dir="rtl"] .inneroverview-text p {
    text-align: justify !important;
}
/* Read More Button */
.inneroverview-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--text-contain, #1a1a1a);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: auto;
}

    .inneroverview-link:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        text-decoration: none;
    }

    .inneroverview-link i {
        transition: transform 0.3s ease;
    }

    .inneroverview-link:hover i {
        transform: translateX(5px);
    }

/* ========================================
   RIGHT SIDE - IMAGE AREA
======================================== */
.chairman-image-area {
    order: 2;
}

/* ========================================
   CHAIRMAN NAME CARD - GRADIENT BACKGROUND
======================================== */
.chairman-signature {
    /* Gradient: solid on left, transparent on right */
    background: linear-gradient( to right, rgba(200, 195, 188, 0.95) 0%, rgba(200, 195, 188, 0.85) 30%, rgba(200, 195, 188, 0.6) 70%, rgba(200, 195, 188, 0.3) 90%, rgba(200, 195, 188, 0) 100% );
    /* Padding */
    padding: 25px 80px 25px 30px;
    /* Positioning */
    position: absolute;
    right: 0;
    bottom: -80px;
    /* Width - use percentage of container */
    width: 50%;
    max-width: 600px;
    min-width: 300px;
    /* No border, no radius */
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 10;
    text-align: left;
}

    .chairman-signature h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-contain, #1a1a1a);
        margin: 0 0 8px 0;
        line-height: 1.3;
        text-align: left;
    }

    .chairman-signature p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
        margin: 0;
        text-align: left;
    }

/* ========================================
   RTL SUPPORT - ARABIC
======================================== */
html[lang="ar"] .chairman-section .inneroverview-content,
html[dir="rtl"] .chairman-section .inneroverview-content {
    grid-template-columns: 55% 45%;
}

html[lang="ar"] .inneroverview-text,
html[dir="rtl"] .inneroverview-text {
    order: 2;
    text-align: right;
    padding: 40px 0 0 0px;
}

    html[lang="ar"] .inneroverview-text h2,
    html[lang="ar"] .inneroverview-text p,
    html[dir="rtl"] .inneroverview-text h2,
    html[dir="rtl"] .inneroverview-text p {
        text-align: right;
    }

html[lang="ar"] .chairman-image-area,
html[dir="rtl"] .chairman-image-area {
    order: 1;
}

html[lang="ar"] .chairman-signature,
html[dir="rtl"] .chairman-signature {
     
    right: 0;
    text-align: right;
    padding: 40px 30px 25px 80px;
    /* Reverse gradient for RTL */
    background: linear-gradient( to left, rgba(200, 195, 188, 0.95) 0%, rgba(200, 195, 188, 0.85) 30%, rgba(200, 195, 188, 0.6) 70%, rgba(200, 195, 188, 0.3) 90%, rgba(200, 195, 188, 0) 100% );
}

    html[lang="ar"] .chairman-signature h4,
    html[lang="ar"] .chairman-signature p,
    html[dir="rtl"] .chairman-signature h4,
    html[dir="rtl"] .chairman-signature p {
        text-align: right;
    }

html[lang="ar"] .inneroverview-link:hover i,
html[dir="rtl"] .inneroverview-link:hover i {
    transform: translateX(-5px);
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
======================================== */
@media (min-width: 1400px) {
    .chairman-signature {
        width: 45%;
        max-width: 650px;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (1200px - 1399px)
======================================== */
@media (max-width: 1399px) and (min-width: 1200px) {
    .inneroverview-content {
        grid-template-columns: 45% 55%;
    }

    .inneroverview-text {
        padding-top: 18%;
    }

        .inneroverview-text h2 {
            font-size: 2.8rem;
        }

    .chairman-signature {
        width: 48%;
        bottom: 100px;
    }
}

/* ========================================
   RESPONSIVE - TABLET LANDSCAPE (992px - 1199px)
======================================== */
@media (max-width: 1199px) and (min-width: 992px) {
    .inneroverview-content {
        grid-template-columns: 50% 50%;
    }

    .inneroverview-text {
        padding-top: 15%;
        padding-right: 30px;
    }

        .inneroverview-text h2 {
            font-size: 2.5rem;
        }

        .inneroverview-text p {
            font-size: 0.95rem;
        }

    .chairman-signature {
        width: 55%;
        min-width: 280px;
        bottom: 80px;
        padding: 22px 60px 22px 25px;
    }

        .chairman-signature h4 {
            font-size: 1.3rem;
        }

        .chairman-signature p {
            font-size: 0.9rem;
        }
}

/* ========================================
   RESPONSIVE - TABLET PORTRAIT (768px - 991px)
======================================== */
@media (max-width: 991px) and (min-width: 768px) {
    .chairman-section {
        min-height: auto;
        padding-bottom: 80px;
    }

        .chairman-section .container {
            min-height: auto;
        }

    .inneroverview-content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 350px; /* Space for background image */
    }

    .inneroverview-text {
        padding: 60px 20px 40px 20px;
        text-align: left;
        padding-top: 60px;
    }

        .inneroverview-text h2 {
            font-size: 2.2rem;
        }

        .inneroverview-text p {
            max-width: 100%;
            font-size: 0.9rem;
        }

    .chairman-signature {
        position: absolute;
        right: 0;
        bottom: 60px;
        width: 60%;
        min-width: 300px;
        max-width: none;
        padding: 20px 50px 20px 25px;
    }

        .chairman-signature h4 {
            font-size: 1.2rem;
        }

        .chairman-signature p {
            font-size: 0.85rem;
        }

    /* RTL Tablet */
    html[lang="ar"] .inneroverview-text,
    html[dir="rtl"] .inneroverview-text {
        text-align: right;
        padding: 60px 20px 40px 20px;
    }

    html[lang="ar"] .chairman-signature,
    html[dir="rtl"] .chairman-signature {
        right: auto;
        left: 0;
        padding: 20px 25px 20px 50px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE LANDSCAPE (576px - 767px)
======================================== */
@media (max-width: 767px) and (min-width: 576px) {
    .chairman-section {
        min-height: auto;
        padding-bottom: 60px;
    }

        .chairman-section .container {
            min-height: auto;
        }

    .inneroverview-content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 280px;
    }

    .inneroverview-text {
        padding: 50px 15px 30px 15px;
        text-align: center;
    }

        .inneroverview-text h2 {
            font-size: 1.9rem;
        }

        .inneroverview-text p {
            max-width: 100%;
            font-size: 0.85rem;
            text-align: center;
        }

    .inneroverview-link {
        margin: 20px auto 0;
    }

    .chairman-signature {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 40px;
        width: 100%;
        max-width: none;
        min-width: auto;
        padding: 20px 25px;
        text-align: center;
        /* Full width gradient - fade both edges */
        background: linear-gradient( to right, rgba(200, 195, 188, 0) 0%, rgba(200, 195, 188, 0.9) 15%, rgba(200, 195, 188, 0.95) 50%, rgba(200, 195, 188, 0.9) 85%, rgba(200, 195, 188, 0) 100% );
    }

        .chairman-signature h4,
        .chairman-signature p {
            text-align: center;
        }

        .chairman-signature h4 {
            font-size: 1.15rem;
        }

        .chairman-signature p {
            font-size: 0.85rem;
        }

    /* RTL Mobile Landscape */
    html[lang="ar"] .inneroverview-text,
    html[dir="rtl"] .inneroverview-text {
        text-align: center;
        padding: 50px 15px 30px 15px;
    }

    html[lang="ar"] .chairman-signature,
    html[dir="rtl"] .chairman-signature {
        text-align: center;
        padding: 20px 25px;
        background: linear-gradient( to right, rgba(200, 195, 188, 0) 0%, rgba(200, 195, 188, 0.9) 15%, rgba(200, 195, 188, 0.95) 50%, rgba(200, 195, 188, 0.9) 85%, rgba(200, 195, 188, 0) 100% );
    }
}

/* ========================================
   RESPONSIVE - MOBILE PORTRAIT (< 576px)
======================================== */
@media (max-width: 575px) {
    .chairman-section {
        min-height: auto;
        padding-bottom: 40px;
    }

        .chairman-section .container {
            min-height: auto;
            padding: 0 15px;
        }

    .inneroverview-content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 250px;
    }

    .inneroverview-text {
        padding: 40px 10px 25px 10px;
        text-align: center;
    }

        .inneroverview-text h2 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .inneroverview-text p {
            max-width: 100%;
            font-size: 0.8rem;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 15px;
        }

    .inneroverview-link {
        margin: 15px auto 0;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .chairman-signature {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 30px;
        width: 100%;
        max-width: none;
        min-width: auto;
        padding: 18px 20px;
        text-align: center;
        /* Full width gradient - fade both edges */
        background: linear-gradient( to right, rgba(200, 195, 188, 0) 0%, rgba(200, 195, 188, 0.85) 10%, rgba(200, 195, 188, 0.95) 50%, rgba(200, 195, 188, 0.85) 90%, rgba(200, 195, 188, 0) 100% );
    }

        .chairman-signature h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .chairman-signature p {
            font-size: 0.8rem;
        }

        .chairman-signature h4,
        .chairman-signature p {
            text-align: center;
        }

    /* RTL Mobile Portrait */
    html[lang="ar"] .inneroverview-text,
    html[dir="rtl"] .inneroverview-text {
        text-align: center;
        padding: 40px 10px 25px 10px;
    }

        html[lang="ar"] .inneroverview-text h2,
        html[lang="ar"] .inneroverview-text p,
        html[dir="rtl"] .inneroverview-text h2,
        html[dir="rtl"] .inneroverview-text p {
            text-align: center;
        }

    html[lang="ar"] .chairman-signature,
    html[dir="rtl"] .chairman-signature {
        text-align: center;
        padding: 18px 20px;
        left: 0;
        right: 0;
        background: linear-gradient( to right, rgba(200, 195, 188, 0) 0%, rgba(200, 195, 188, 0.85) 10%, rgba(200, 195, 188, 0.95) 50%, rgba(200, 195, 188, 0.85) 90%, rgba(200, 195, 188, 0) 100% );
    }

        html[lang="ar"] .chairman-signature h4,
        html[lang="ar"] .chairman-signature p,
        html[dir="rtl"] .chairman-signature h4,
        html[dir="rtl"] .chairman-signature p {
            text-align: center;
        }
}
/* =============================================
   Newsletter Modal Popup Styles
   Bilingual Support (EN/AR with RTL)
   Date: 2025-12-22
   ============================================= */

/* Modal Overlay */
.newsletter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

/* Modal Container */
.newsletter-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

    /* RTL Support */
    .newsletter-modal.rtl {
        direction: rtl;
        text-align: right;
    }

    .newsletter-modal.ltr {
        direction: ltr;
        text-align: left;
    }

/* Close Button */
.newsletter-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s ease;
}

.newsletter-modal.rtl .newsletter-modal-close {
    right: auto;
    left: 15px;
}

.newsletter-modal-close:hover {
    color: #333;
}

/* Modal Content */
.newsletter-modal-content {
    text-align: center;
}

/* Icon */
.newsletter-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

    .newsletter-modal-icon.success {
        background-color: #d4edda;
        color: #28a745;
    }

    .newsletter-modal-icon.error {
        background-color: #f8d7da;
        color: #dc3545;
    }

/* Title */
.newsletter-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
}

/* Message */
.newsletter-modal-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

/* Button */
.newsletter-modal-btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .newsletter-modal-btn.success {
        background-color: #28a745;
        color: #ffffff;
    }

        .newsletter-modal-btn.success:hover {
            background-color: #218838;
        }

    .newsletter-modal-btn.error {
        background-color: #dc3545;
        color: #ffffff;
    }

        .newsletter-modal-btn.error:hover {
            background-color: #c82333;
        }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spinner for loading state */
.about-newsletter-form button .spinner-border {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

/* Disabled state for input */
.about-newsletter-form input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.about-newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
    .newsletter-modal {
        padding: 30px 20px;
        margin: 15px;
    }

    .newsletter-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .newsletter-modal-title {
        font-size: 20px;
    }

    .newsletter-modal-message {
        font-size: 14px;
    }

    .newsletter-modal-btn {
        padding: 10px 30px;
        font-size: 14px;
        width: 100%;
    }
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 10rem !important;
}

 

/* ===== UPDATE RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr); /* was repeat(2, 1fr) - keep same */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* single column on mobile */
        gap: 30px;
    }
}
.alert-info {
    color: #ffffff !important;
    background-color: #333333 !important;
    border-color: #333333 !important;
}
