﻿.about-newsletter-section {
    position: absolute;
   
    top: -20%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

    .about-newsletter-section .container {
        margin: 0 auto;
        padding: 0px;
        pointer-events: auto;
    }

.about-newsletter-card {
    background: #f7f7f7;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border: 1px solid #e0e0e0;
}

.innerAwards {
    position: relative;
    padding-bottom: 30px;
     
}

.about-newsletter-text {
    flex: 1;
    text-align: left;
}

    .about-newsletter-text h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
        font-weight: 700;
        color: var(--text-contain);
    }

    .about-newsletter-text p {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

.about-newsletter-form-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    max-width: none;
}

    .about-newsletter-form input {
        background: transparent;
        border: none;
        border-bottom: 2px solid #999;
        padding: 12px 0;
        font-size: 1rem;
        outline: none;
        width: 300px;
        color: var(--text-contain);
        border-radius: 0;
    }

        .about-newsletter-form input::placeholder {
            color: #999;
            font-size: 0.9rem;
        }

        .about-newsletter-form input:focus {
            border-bottom-color: #c41e3a;
        }

    .about-newsletter-form button {
        background: #c41e3a;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        font-size: 0.8rem;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .about-newsletter-form button:hover {
            background: #a01729;
            transform: scale(1.05);
        }
/* ========================================
   NEWSLETTER SECTION - ARABIC RTL
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

html[lang="ar"] .about-newsletter-section,
html[dir="rtl"] .about-newsletter-section {
    direction: rtl;
    position: relative;
    margin-top: -11%;
}

html[lang="ar"] .about-newsletter-card,
html[dir="rtl"] .about-newsletter-card {
   direction: rtl;
    direction: rtl;
}

html[lang="ar"] .about-newsletter-text,
html[dir="rtl"] .about-newsletter-text {
    text-align: right;
}

    html[lang="ar"] .about-newsletter-text h2,
    html[dir="rtl"] .about-newsletter-text h2 {
        text-align: right;
    }

    html[lang="ar"] .about-newsletter-text p,
    html[dir="rtl"] .about-newsletter-text p {
        text-align: right;
        direction: rtl;
    }

html[lang="ar"] .about-newsletter-form,
html[dir="rtl"] .about-newsletter-form {
    direction: rtl;
}

    html[lang="ar"] .about-newsletter-form input,
    html[dir="rtl"] .about-newsletter-form input {
        text-align: right;
        direction: rtl;
        padding-right: 20px;
        padding-left: 60px;
    }

    html[lang="ar"] .about-newsletter-form button,
    html[dir="rtl"] .about-newsletter-form button {
        right: auto;
        left: 10px;
    }

/* ========================================
   RESPONSIVE RTL
======================================== */

@media (max-width: 968px) {
    html[lang="ar"] .about-newsletter-card,
    html[dir="rtl"] .about-newsletter-card {
        flex-direction: column;
    }

    html[lang="ar"] .about-newsletter-text,
    html[dir="rtl"] .about-newsletter-text {
        text-align: center;
    }

        html[lang="ar"] .about-newsletter-text h2,
        html[dir="rtl"] .about-newsletter-text h2 {
            text-align: center;
        }

        html[lang="ar"] .about-newsletter-text p,
        html[dir="rtl"] .about-newsletter-text p {
            text-align: center;
        }
}

@media (max-width: 768px) {
    html[lang="ar"] .about-newsletter-form input,
    html[dir="rtl"] .about-newsletter-form input {
        padding-right: 15px;
        padding-left: 50px;
    }

    html[lang="ar"] .about-newsletter-form button,
    html[dir="rtl"] .about-newsletter-form button {
        left: 8px;
    }
}
/* ========================================
   JOURNEY OF EXCELLENCE - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-07
======================================== */

#journey {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    
    z-index: 5;
}

.section-title-group {
    text-align: left;
}

    .section-title-group h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-contain);
        margin: 0;
        line-height: 1.2;
    }

/* Timeline Navigation Buttons */
.timeline-navigation {
    display: flex;
    gap: 15px;
    align-items: center;
}

.timeline-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #c41e3a;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    position: relative;
    z-index: 10;
}

    .timeline-nav-btn:hover:not(:disabled) {
        background: #a01729;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    }

    .timeline-nav-btn:active:not(:disabled) {
        transform: scale(0.95);
    }

    .timeline-nav-btn:disabled {
        background: #ccc;
        color: #999;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .timeline-nav-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .timeline-nav-btn:hover:not(:disabled) i {
        transform: scale(1.1);
    }

/* Timeline Container */
.timeline-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline Items Wrapper */
.timeline-items-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Timeline Item */
.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 350px;
    margin: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}

    .timeline-item:first-child {
        margin-left: 0;
    }

    .timeline-item:last-child {
        margin-right: 0;
    }

    .timeline-item:hover {
        transform: translateY(-10px);
    }

/* Timeline Year */
.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-contain);
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .timeline-year.active {
        color: #c41e3a;
        text-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
    }

/* Timeline Dot */
.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 25px;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .timeline-dot.active {
        background: #c41e3a;
        border-color: #fff;
        box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.2), 0 6px 20px rgba(196, 30, 58, 0.3);
        transform: scale(1.2);
    }

    .timeline-dot:hover {
        transform: scale(1.3);
        background: #c41e3a;
        box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.2), 0 8px 25px rgba(196, 30, 58, 0.4);
    }

/* Timeline Content */
.timeline-content {
    padding: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

    .timeline-content h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-contain);
        margin-bottom: 15px;
        line-height: 1.4;
        flex-shrink: 0;
        text-align: left;
        width: 100%;
    }

    .timeline-content p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
        flex: 1;
        text-align: left;
        width: 100%;
    }

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 135px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ddd 0%, #e8e1d8 50%, #ddd 100%);
    z-index: 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Timeline Airplane */
.timeline-plane {
    position: absolute;
    top: 100px;
    left: 65%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .timeline-plane img {
        width: auto;
        height: 260px;
        max-height: 260px;
        object-fit: contain;
    }

/* Active State */
.timeline-item.active .timeline-year {
    color: #c41e3a;
}

.timeline-item.active .timeline-content h3 {
    color: #c41e3a;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .timeline-item {
        max-width: 280px;
        margin: 0 15px;
        padding: 15px;
    }

    .timeline-year {
        font-size: 1.3rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .timeline-plane {
        left: 60%;
    }

        .timeline-plane img {
            height: 200px;
            max-height: 200px;
        }
}

/* Responsive - Mobile */
@media (max-width: 968px) {
    #journey {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .section-title-group {
        text-align: center;
    }

        .section-title-group h2 {
            font-size: 2rem;
        }

    .timeline-items-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .timeline-item {
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .timeline-content {
        text-align: center;
        align-items: center;
    }

        .timeline-content h3,
        .timeline-content p {
            text-align: center;
        }

    .timeline-line {
        display: none;
    }

    .timeline-plane {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title-group h2 {
        font-size: 1.8rem;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 0.95rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    .timeline-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* ========================================
   JOURNEY OF EXCELLENCE - ARABIC RTL
======================================== */

html[lang="ar"] #journey .section-title-group,
html[dir="rtl"] #journey .section-title-group {
    text-align: right;
}

html[lang="ar"] #journey .timeline-content,
html[dir="rtl"] #journey .timeline-content {
    text-align: right;
    align-items: flex-end;
}

    html[lang="ar"] #journey .timeline-content h3,
    html[dir="rtl"] #journey .timeline-content h3,
    html[lang="ar"] #journey .timeline-content p,
    html[dir="rtl"] #journey .timeline-content p {
        text-align: right;
    }

html[lang="ar"] #journey .timeline-plane,
html[dir="rtl"] #journey .timeline-plane {
    left: 35%;
    transform: translateX(50%) scaleX(-1);
}

html[lang="ar"] #journey .timeline-navigation,
html[dir="rtl"] #journey .timeline-navigation {
   direction: rtl;
}

/* Mobile RTL */
@media (max-width: 968px) {
    html[lang="ar"] #journey .section-title-group,
    html[dir="rtl"] #journey .section-title-group {
        text-align: center;
    }

    html[lang="ar"] #journey .timeline-content,
    html[dir="rtl"] #journey .timeline-content {
        text-align: center;
        align-items: center;
    }

        html[lang="ar"] #journey .timeline-content h3,
        html[dir="rtl"] #journey .timeline-content h3,
        html[lang="ar"] #journey .timeline-content p,
        html[dir="rtl"] #journey .timeline-content p {
            text-align: center;
        }
}

/* Page Indicator */
.timeline-pagination {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.page-indicator {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-contain);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Disabled button styles are already in your CSS */
.timeline-nav-btn:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Smooth transitions for items */
.timeline-items-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transition: opacity 0.3s ease;
}

/* Animation when changing pages */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: fadeIn 0.5s ease forwards;
}

    .timeline-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .timeline-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .timeline-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .timeline-item:nth-child(4) {
        animation-delay: 0.4s;
    }

/* ========================================
   AWARDS & ACHIEVEMENTS - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-07
======================================== */

#awards {
    padding: 80px 0 100px 0;
    background: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-contain);
        margin: 0;
    }

.header-actions {
    display: flex;
    gap: 15px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c41e3a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

    .view-all-btn:hover {
        background: #a01729;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
        text-decoration: none;
        color: white;
    }

 

 
/* Slider Navigation Buttons */
.slider-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #c41e3a;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    flex-shrink: 0;
}

    .slider-nav-btn:hover:not(:disabled) {
        background: #a01729;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    }

    .slider-nav-btn:active:not(:disabled) {
        transform: scale(0.95);
    }

    .slider-nav-btn:disabled {
        background: #ccc;
        color: #999;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .slider-nav-btn i {
        font-size: 1rem;
    }

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .indicator-dot:hover {
        background: #999;
        transform: scale(1.2);
    }

    .indicator-dot.active {
        background: #c41e3a;
        width: 30px;
        border-radius: 6px;
    }

/* Responsive - Tablet */
 

/* Responsive - Mobile */
@media (max-width: 968px) {
    #awards {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

        .section-header h2 {
            font-size: 2rem;
        }

    .services-slider-container {
        flex-direction: column;
    }

    .slider-nav-btn {
        display: none;
    }

    .services-grid {
        flex-direction: column;
        gap: 20px;
    }

    

    .slider-indicators {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    
}
/* ========================================
   AWARDS & ACHIEVEMENTS - ARABIC RTL
======================================== */

html[lang="ar"] #awards .section-header,
html[dir="rtl"] #awards .section-header {
   direction: rtl;
}

html[lang="ar"] #awards .services-slider-container,
html[dir="rtl"] #awards .services-slider-container {
   direction: rtl;
}

html[lang="ar"] #awards .services-grid,
html[dir="rtl"] #awards .services-grid {
    direction: rtl;
}

/* Mobile RTL */
@media (max-width: 968px) {
    html[lang="ar"] #awards .section-header,
    html[dir="rtl"] #awards .section-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   TRAINING CENTRE DETAIL PAGE - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.training-detail {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

    .training-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        z-index: 1;
    }

    .training-detail .container {
        position: relative;
        z-index: 2;
    }

.training-detail-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Left Side - Airplane Image */
.training-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.airplane-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floatPlane 6s ease-in-out infinite;
}

@keyframes floatPlane {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Right Side - Text Content */
.training-detail-text {
    padding: 40px 60px 40px 20px;
    text-align: left;
}

    .training-detail-text h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .training-detail-text p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 25px;
        text-align: justify;
    }

        .training-detail-text p:last-of-type {
            margin-bottom: 0;
        }

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .training-detail {
        padding: 80px 0;
    }

    .training-detail-content {
        gap: 40px;
    }

    .training-detail-text {
        padding: 30px 40px 30px 20px;
    }

        .training-detail-text h1 {
            font-size: 2.5rem;
        }

        .training-detail-text p {
            font-size: 0.95rem;
        }

    .airplane-image {
        max-width: 500px;
    }
}

@media (max-width: 968px) {
    .training-detail {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .training-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .training-detail-image {
        order: 1;
        padding: 20px;
    }

    .training-detail-text {
        order: 2;
        text-align: center;
        padding: 20px;
    }

        .training-detail-text h1 {
            font-size: 2.2rem;
            text-align: center;
        }

        .training-detail-text p {
            text-align: center;
        }

    .airplane-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .training-detail {
        padding: 50px 0;
    }

        .training-detail::before {
            background: rgba(255, 255, 255, 0.9);
        }

    .training-detail-content {
        gap: 30px;
    }

    .training-detail-text h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .training-detail-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .airplane-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .training-detail {
        padding: 40px 0;
    }

    .training-detail-image {
        padding: 10px;
    }

    .training-detail-text {
        padding: 15px;
    }

        .training-detail-text h1 {
            font-size: 1.8rem;
        }

        .training-detail-text p {
            font-size: 0.85rem;
        }

    .airplane-image {
        max-width: 300px;
    }
}

/* ========================================
   TRAINING CENTRE DETAIL PAGE - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.training-detail {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

    .training-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        z-index: 1;
    }

    .training-detail .container {
        position: relative;
        z-index: 2;
    }

.training-detail-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Left Side - Airplane Image */
.training-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.airplane-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floatPlane 6s ease-in-out infinite;
}

@keyframes floatPlane {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Right Side - Text Content */
.training-detail-text {
    padding: 40px 60px 40px 20px;
    text-align: left;
}

    .training-detail-text h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .training-detail-text p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 25px;
        text-align: justify;
    }

        .training-detail-text p:last-of-type {
            margin-bottom: 0;
        }

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .training-detail {
        padding: 80px 0;
    }

    .training-detail-content {
        gap: 40px;
    }

    .training-detail-text {
        padding: 30px 40px 30px 20px;
    }

        .training-detail-text h1 {
            font-size: 2.5rem;
        }

        .training-detail-text p {
            font-size: 0.95rem;
        }

    .airplane-image {
        max-width: 500px;
    }
}

@media (max-width: 968px) {
    .training-detail {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .training-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .training-detail-image {
        order: 1;
        padding: 20px;
    }

    .training-detail-text {
        order: 2;
        text-align: center;
        padding: 20px;
    }

        .training-detail-text h1 {
            font-size: 2.2rem;
            text-align: center;
        }

        .training-detail-text p {
            text-align: center;
        }

    .airplane-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .training-detail {
        padding: 50px 0;
    }

        .training-detail::before {
            background: rgba(255, 255, 255, 0.9);
        }

    .training-detail-content {
        gap: 30px;
    }

    .training-detail-text h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .training-detail-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .airplane-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .training-detail {
        padding: 40px 0;
    }

    .training-detail-image {
        padding: 10px;
    }

    .training-detail-text {
        padding: 15px;
    }

        .training-detail-text h1 {
            font-size: 1.8rem;
        }

        .training-detail-text p {
            font-size: 0.85rem;
        }

    .airplane-image {
        max-width: 300px;
    }
}
/* ========================================
   ATC OPERATIONS DETAIL PAGE - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.atc-detail {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

    .atc-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        z-index: 1;
    }

    .atc-detail .container {
        position: relative;
        z-index: 2;
    }

.atc-detail-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Left Side - Operator Image */
.atc-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.operator-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    border-radius: 15px;
}

/* Right Side - Text Content */
.atc-detail-text {
    padding: 40px 60px 40px 20px;
    text-align: left;
}

    .atc-detail-text h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .atc-detail-text p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 25px;
        text-align: justify;
    }

        .atc-detail-text p:last-of-type {
            margin-bottom: 0;
        }

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .atc-detail {
        padding: 80px 0;
    }

    .atc-detail-content {
        gap: 40px;
    }

    .atc-detail-text {
        padding: 30px 40px 30px 20px;
    }

        .atc-detail-text h1 {
            font-size: 2.5rem;
        }

        .atc-detail-text p {
            font-size: 0.95rem;
        }

    .operator-image {
        max-width: 500px;
    }
}

@media (max-width: 968px) {
    .atc-detail {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .atc-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .atc-detail-image {
        order: 1;
        padding: 20px;
    }

    .atc-detail-text {
        order: 2;
        text-align: center;
        padding: 20px;
    }

        .atc-detail-text h1 {
            font-size: 2.2rem;
            text-align: center;
        }

        .atc-detail-text p {
            text-align: center;
        }

    .operator-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .atc-detail {
        padding: 50px 0;
    }

        .atc-detail::before {
            background: rgba(255, 255, 255, 0.9);
        }

    .atc-detail-content {
        gap: 30px;
    }

    .atc-detail-text h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .atc-detail-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .operator-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .atc-detail {
        padding: 40px 0;
    }

    .atc-detail-image {
        padding: 10px;
    }

    .atc-detail-text {
        padding: 15px;
    }

        .atc-detail-text h1 {
            font-size: 1.8rem;
        }

        .atc-detail-text p {
            font-size: 0.85rem;
        }

    .operator-image {
        max-width: 300px;
        border-radius: 10px;
    }
}
/* ========================================
   ATC OPERATIONS DETAIL PAGE - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.atc-detail {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

    .atc-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        z-index: 1;
    }

    .atc-detail .container {
        position: relative;
        z-index: 2;
    }

.atc-detail-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Left Side - Operator Image */
.atc-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.operator-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    border-radius: 15px;
}

/* Right Side - Text Content */
.atc-detail-text {
    padding: 40px 60px 40px 20px;
    text-align: left;
}

    .atc-detail-text h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .atc-detail-text p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 25px;
        text-align: justify;
    }

        .atc-detail-text p:last-of-type {
            margin-bottom: 0;
        }

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .atc-detail {
        padding: 80px 0;
    }

    .atc-detail-content {
        gap: 40px;
    }

    .atc-detail-text {
        padding: 30px 40px 30px 20px;
    }

        .atc-detail-text h1 {
            font-size: 2.5rem;
        }

        .atc-detail-text p {
            font-size: 0.95rem;
        }

    .operator-image {
        max-width: 500px;
    }
}

@media (max-width: 968px) {
    .atc-detail {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .atc-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .atc-detail-image {
        order: 1;
        padding: 20px;
    }

    .atc-detail-text {
        order: 2;
        text-align: center;
        padding: 20px;
    }

        .atc-detail-text h1 {
            font-size: 2.2rem;
            text-align: center;
        }

        .atc-detail-text p {
            text-align: center;
        }

    .operator-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .atc-detail {
        padding: 50px 0;
    }

        .atc-detail::before {
            background: rgba(255, 255, 255, 0.9);
        }

    .atc-detail-content {
        gap: 30px;
    }

    .atc-detail-text h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .atc-detail-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .operator-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .atc-detail {
        padding: 40px 0;
    }

    .atc-detail-image {
        padding: 10px;
    }

    .atc-detail-text {
        padding: 15px;
    }

        .atc-detail-text h1 {
            font-size: 1.8rem;
        }

        .atc-detail-text p {
            font-size: 0.85rem;
        }

    .operator-image {
        max-width: 300px;
        border-radius: 10px;
    }
}
 

/* Loading State */
.sitemap-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Empty State */
.sitemap-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

    .sitemap-empty p {
        font-size: 1.1rem;
    }

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px) {
    .sitemap-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .sitemap-section {
        padding: 60px 0;
    }

    .sitemap-header {
        margin-bottom: 40px;
    }

        .sitemap-header h1 {
            font-size: 2.5rem;
        }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sitemap-section {
        padding: 50px 0;
    }

    .sitemap-header h1 {
        font-size: 2rem;
    }

    .sitemap-header p {
        font-size: 1rem;
    }

    .sitemap-card-header {
        padding: 20px;
    }

        .sitemap-card-header h3 {
            font-size: 1.1rem;
        }

    .sitemap-links li a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

        .sitemap-links li a:hover {
            padding-left: 25px;
        }
}

@media (max-width: 480px) {
    .sitemap-header h1 {
        font-size: 1.8rem;
    }

    .sitemap-card-header {
        padding: 15px;
    }

        .sitemap-card-header h3 {
            font-size: 1rem;
        }

    .sitemap-links li a {
        padding: 10px 15px;
        font-size: 0.85rem;
        gap: 10px;
    }
}
/* ========================================
   SITEMAP PAGE - ENGLISH
   Author: Denny A Devassy
   Date: 2025-10-08
======================================== */

.sitemap-section {
    background: #f8f9fa;
    min-height: 80vh;
    padding-bottom: 140px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 60px;
}

    .sitemap-header h1 {
        font-size: 3rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        margin-bottom: 15px;
    }

    .sitemap-header p {
        font-size: 1.1rem;
        color: #666;
    }

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Sitemap Card */
.sitemap-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .sitemap-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.sitemap-card-header {
    background: #e8e1d8;
    padding: 25px;
    border-bottom: 3px solid #c41e3a;
}

    .sitemap-card-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-contain, #231f20);
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .sitemap-card-header h3 a {
            color: var(--text-contain, #231f20);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .sitemap-card-header h3 a:hover {
                color: #c41e3a;
            }

        .sitemap-card-header h3 i {
            color: #c41e3a;
            font-size: 1rem;
        }

/* Sitemap Links */
.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sitemap-links li {
        border-bottom: 1px solid #f0f0f0;
    }

        .sitemap-links li:last-child {
            border-bottom: none;
        }

        .sitemap-links li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 25px;
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

            .sitemap-links li a:hover {
                background: #f8f9fa;
                color: #c41e3a;
                padding-left: 30px;
            }

        .sitemap-links li i {
            color: #c41e3a;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .sitemap-links li a:hover i {
            transform: translateX(5px);
        }

/* Loading State */
.sitemap-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Empty State */
.sitemap-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

    .sitemap-empty p {
        font-size: 1.1rem;
    }

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px) {
    .sitemap-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .sitemap-section {
        padding: 60px 0;
    }

    .sitemap-header {
        margin-bottom: 40px;
    }

        .sitemap-header h1 {
            font-size: 2.5rem;
        }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sitemap-section {
        padding: 50px 0;
    }

    .sitemap-header h1 {
        font-size: 2rem;
    }

    .sitemap-header p {
        font-size: 1rem;
    }

    .sitemap-card-header {
        padding: 20px;
    }

        .sitemap-card-header h3 {
            font-size: 1.1rem;
        }

    .sitemap-links li a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

        .sitemap-links li a:hover {
            padding-left: 25px;
        }
}

@media (max-width: 480px) {
    .sitemap-header h1 {
        font-size: 1.8rem;
    }

    .sitemap-card-header {
        padding: 15px;
    }

        .sitemap-card-header h3 {
            font-size: 1rem;
        }

    .sitemap-links li a {
        padding: 10px 15px;
        font-size: 0.85rem;
        gap: 10px;
    }
}

/* ========================================
   AWARDS & ACHIEVEMENTS PAGE
   Author: Denny A Devassy
   Date: 2025-10-08
   Combined English + Arabic RTL
======================================== */

/* ========================================
   MAIN SECTION
======================================== */
 

.awards-page-header {
    text-align: center;
    margin-bottom: 50px;
}

    .awards-page-header h1 {
        font-size: 3rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
    }

/* ========================================
   AWARDS GRID
======================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.award-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .award-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: #c41e3a;
    }

.award-icon {
    width: 80px;
    height: 80px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .award-icon i {
        font-size: 2.5rem;
        color: #c41e3a;
    }

.award-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   PAGINATION
======================================== */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-info {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pagination-btn:hover:not(:disabled) {
        background: #f8f9fa;
        border-color: #c41e3a;
        color: #c41e3a;
    }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

     

    .pagination-btn i {
        font-size: 0.85rem;
    }

.pagination-ellipsis {
    padding: 0 8px;
    color: #999;
    font-weight: bold;
}

/* Loading State */
.awards-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Empty State */
.awards-empty {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

/* ========================================
   ARABIC RTL STYLES
======================================== */
html[lang="ar"] .awards-page,
html[dir="rtl"] .awards-page {
    direction: rtl;
}

html[lang="ar"] .awards-page-header h1,
html[dir="rtl"] .awards-page-header h1 {
    direction: rtl;
}

html[lang="ar"] .award-card h4,
html[dir="rtl"] .award-card h4 {
    direction: rtl;
}

html[lang="ar"] .pagination-container,
html[dir="rtl"] .pagination-container {
   direction: rtl;
}

html[lang="ar"] .pagination-controls,
html[dir="rtl"] .pagination-controls {
   direction: rtl;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .awards-page {
        padding: 60px 0;
    }

    .awards-page-header h1 {
        font-size: 2.5rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .award-card {
        padding: 30px 20px;
        min-height: 180px;
    }

    .award-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

        .award-icon i {
            font-size: 2rem;
        }

    .award-card h4 {
        font-size: 1rem;
    }

    .pagination-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .awards-page {
        padding: 50px 0;
    }

    .awards-page-header h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .award-card {
        padding: 25px 15px;
        min-height: 160px;
    }

    .award-icon {
        width: 60px;
        height: 60px;
    }

        .award-icon i {
            font-size: 1.8rem;
        }

    .award-card h4 {
        font-size: 0.95rem;
    }

    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .awards-page-header h1 {
        font-size: 1.8rem;
    }

    .pagination-info {
        font-size: 0.85rem;
    }
}


/* ========================================
   AWARDS & ACHIEVEMENTS SECTION - FIXED
   3 cards per row, rectangle shape, subtle hover
   Author: DCA Web Development Team
======================================== */

/* ========================================
   AWARDS PAGE STYLES (Full Page - 2 rows x 3 cols)
======================================== */
.awards-page {
    padding:  0 0 100px 0;
    background: #f8f9fa;
}

    .awards-page .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
    }

.awards-page-header {
    margin-bottom: 40px;
}

    .awards-page-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-contain, #231f20);
        margin: 0;
    }

.awards-loading,
.awards-empty {
    text-align: center;
    padding: 60px 20px;
}

/* Awards Page Grid - 3 columns, wraps to 2 rows for 6 items */
.awards-page .awardsAchievements-grid-wrapper {
    overflow: hidden;
    width: 100%;
}

.awards-page .awardsAchievements-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100%;
}

.awards-page .award-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    /* Card dimensions */
    min-height: 180px;
    padding: 20px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .awards-page .award-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }

.awards-page .award-image {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.awards-page .award-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5;
    border-radius: 10px;
}

    .awards-page .award-icon i {
        font-size: 1.4rem;
        color: #c41e3a;
    }

.awards-page .award-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: var(--text-contain, #231f20);
    text-align: left;
    padding-top: 50px;
}

.awards-page .award-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    text-align: left;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: white;
    color: var(--text-contain, #231f20);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .pagination-btn:hover:not(:disabled) {
        background: #f8f9fa;
        border-color: #c41e3a;
        color: #c41e3a;
    }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination-btn.active {
        background: #c82333;
        border-color: #c82333;
        color: white;
    }

.pagination-ellipsis {
    padding: 8px 4px;
    color: #666;
}

/* Awards Page RTL Support */
html[lang="ar"] .awards-page .award-card,
html[dir="rtl"] .awards-page .award-card {
    direction: rtl;
}

html[lang="ar"] .awards-page .award-image,
html[lang="ar"] .awards-page .award-icon,
html[dir="rtl"] .awards-page .award-image,
html[dir="rtl"] .awards-page .award-icon {
    left: auto;
    right: 20px;
}

html[lang="ar"] .awards-page .award-card h4,
html[dir="rtl"] .awards-page .award-card h4 {
    text-align: right;
}

html[lang="ar"] .awards-page .award-description,
html[dir="rtl"] .awards-page .award-description {
    text-align: right;
}

/* Awards Page Responsive - Tablet (2 cards) */
@media (max-width: 992px) {
    .awards-page .awardsAchievements-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .awards-page .award-card {
        min-height: 160px;
    }

    .awards-page-header h1 {
        font-size: 2rem;
    }
}

/* Awards Page Responsive - Mobile (1 card) */
@media (max-width: 576px) {
    .awards-page {
        padding: 60px 0 80px 0;
    }

    .awards-page-header h1 {
        font-size: 1.8rem;
    }

    .awards-page .awardsAchievements-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .awards-page .award-card {
        min-height: 140px;
    }

    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

/* ========================================
   AWARDS HOME SECTION STYLES (Component - 3 cards, 1 row)
======================================== */

#awards {
    padding: 80px 0 100px 0;
    background: #f8f9fa;
}

    #awards .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Section Header */
    #awards .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

        #awards .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-contain, #231f20);
            margin: 0;
        }

    #awards .header-actions {
        display: flex;
        gap: 15px;
    }

    #awards .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        background: white;
        color: var(--text-contain, #231f20);
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border: 1px solid #e0e0e0;
    }

        #awards .view-all-btn:hover {
            background: #f8f9fa;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

    /* Grid Wrapper */
    #awards .awardsAchievements-grid-wrapper {
        overflow: hidden;
        width: 100%;
    }

    /* Grid - 3 cards in ONE ROW with 30px gap */
    #awards .awardsAchievements-grid {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 30px;
        width: 100%;
    }

    /* Award Card - Rectangle Shape - Equal width for 3 cards */
    #awards .award-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        border: 1px solid #f0f0f0;
        /* Equal width: calc((100% - 60px) / 3) accounts for two 30px gaps */
        flex: 0 0 calc((100% - 60px) / 3);
        min-height: 180px;
        padding: 20px;
        /* Layout for image top-left */
        position: relative;
        display: flex;
        flex-direction: column;
        
    }

        /* SUBTLE HOVER - Shadow only, NO color change */
        #awards .award-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transform: translateY(-3px);
        }

    /* Award Image - Top Left Corner with 20px padding */
    #awards .award-image {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    /* Award Icon Fallback - Top Left Corner */
    #awards .award-icon {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff5f5;
        border-radius: 10px;
    }

        #awards .award-icon i {
            font-size: 1.4rem;
            color: #c41e3a;
        }

    /* Award Title - Bottom Left */
    #awards .award-card h4 {
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0 0 8px 0;
        color: var(--text-contain, #231f20);
        text-align: left;
        
    }

    /* Award Description */
    #awards .award-description {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #666;
        margin: 0;
        text-align: left;
    }

    /* Pagination Dots - Centered */
    #awards .slider-indicators {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 35px;
        padding: 15px 0;
    }

    #awards .indicator-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

        #awards .indicator-dot:hover {
            background: #bbb;
        }

        #awards .indicator-dot.active {
            background: #c41e3a;
        }

/* ========================================
   RTL SUPPORT - ARABIC
======================================== */
html[lang="ar"] #awards .section-header,
html[dir="rtl"] #awards .section-header {
    direction: rtl;
}

html[lang="ar"] #awards .award-card,
html[dir="rtl"] #awards .award-card {
    direction: rtl;
}

html[lang="ar"] #awards .award-image,
html[lang="ar"] #awards .award-icon,
html[dir="rtl"] #awards .award-image,
html[dir="rtl"] #awards .award-icon {
    left: auto;
    right: 20px;
}

html[lang="ar"] #awards .award-card h4,
html[dir="rtl"] #awards .award-card h4 {
    text-align: right;
}

html[lang="ar"] #awards .award-description,
html[dir="rtl"] #awards .award-description {
    text-align: right;
}

/* ========================================
   RESPONSIVE - TABLET (2 cards)
======================================== */
@media (max-width: 992px) {
    #awards .awardsAchievements-grid {
        flex-wrap: wrap;
        gap: 25px;
    }

    #awards .award-card {
        flex: 0 0 calc((100% - 25px) / 2);
        min-height: 160px;
    }

    #awards .section-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (1 card)
======================================== */
@media (max-width: 576px) {
    #awards {
        padding: 60px 0 80px 0;
    }

        #awards .section-header {
            flex-direction: column;
            gap: 20px;
            text-align: center;
            margin-bottom: 30px;
        }

            #awards .section-header h2 {
                font-size: 1.8rem;
            }

        #awards .awardsAchievements-grid {
            flex-direction: column;
            gap: 20px;
        }

        #awards .award-card {
            flex: 0 0 100%;
            min-height: 140px;
        }

        #awards .slider-indicators {
            display: none;
        }

        #awards .award-image,
        #awards .award-icon {
            width: 40px;
            height: 40px;
        }

        #awards .award-card h4 {
            font-size: 0.9rem;
            padding-top: 45px;
        }

        #awards .award-description {
            font-size: 0.8rem;
        }
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .map-container iframe {
        display: block;
        width: 100%;
        min-height: 450px;
    }

/* RTL Support */
[dir="rtl"] .map-container {
    direction: ltr; /* Maps should remain LTR */
}
