@charset "iso-8859-1";
:root {
    --primary-blue: #145d8d;
    --primary-orange: #de541a;
    --secondary-blue: #1d3d61;
    --light-blue: #0088af; 
    --dark-blue: #1d3d61;
    --White-color: #ffffff;
}

/* ==================== BASE STYLES ==================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 0 !important;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* ==================== LAYOUT & CONTAINER ==================== */
.container {
    max-width: 1300px !important;
    width: 100% !important;
    padding: 0 20px !important;
    margin: 0 auto;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header-area {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s;
    padding: 0;
    height: 120px;
    width: 100%;
}

.header-area .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 120px;
}

/* Logo */
.header-area .logo {
    display: flex;
    align-items: center;
    height: 120px;
    flex-shrink: 0;
    margin-right: 30px;
}

.header-area .logo-img {
    height: 98px;
    width: auto;
    transition: all 0.3s;
}

.header-area .logo-white {
    display: block;
}

.header-area .logo-blue {
    display: none;
}

.background-header .logo-white {
    display: none;
}

.background-header .logo-blue {
    display: block;
}

/* ==================== LANGUAGE SWITCHER ==================== */
.language-switcher-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 20px;
}

.language-switcher-mobile {
    display: none;
}

.lang-toggle, .lang-toggle-mobile {
    position: relative;
    width: 85px;
    height: 32px;
    flex-shrink: 0;
    display: inline-block;
}

.toggle-checkbox {
    display: none;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Show AR/EN text inside toggle */
.toggle-text-ar, .toggle-text-en {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    font-size: 16x;
    font-weight: 700;
    color: white;
    pointer-events: none;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-text-ar {
    right: 8px;
    direction: rtl;
    text-align: right;
}

.toggle-text-en {
    left: 8px;
    direction: ltr;
    text-align: left;
}

.toggle-checkbox:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b35 100%);
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateX(53px);
}

/* AR text visible when toggle is off (English selected) */
.toggle-checkbox:not(:checked) + .toggle-slider .toggle-text-ar {
    opacity: 1;
}

.toggle-checkbox:not(:checked) + .toggle-slider .toggle-text-en {
    opacity: 0;
}

/* EN text visible when toggle is on (Arabic selected) */
.toggle-checkbox:checked + .toggle-slider .toggle-text-ar {
    opacity: 0;
}

.toggle-checkbox:checked + .toggle-slider .toggle-text-en {
    opacity: 1;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
    min-width: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.1);
}

.lang-btn.active {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
}

.background-header .lang-btn {
    color: var(--primary-blue);
    border-color: rgba(7, 76, 123, 0.3);
}

.background-header .lang-btn:hover {
    background: rgba(7, 76, 123, 0.1);
}

.background-header .lang-btn.active {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
}

.background-header .toggle-slider {
    background-color: var(--primary-blue);
}

.background-header .toggle-checkbox:checked + .toggle-slider {
    background-color: var(--primary-orange);
}

/* ==================== NAVIGATION MENU ==================== */
.header-area .nav-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-area .nav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 5px;
    flex-wrap: nowrap;
    align-items: center;
}

.header-area .nav li {
    padding: 0;
    flex-shrink: 0;
}

.header-area .nav li a {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 6px;
}

.header-area .nav li a:hover,
.header-area .nav li a.active {
    color: var(--primary-orange);
    background: rgba(234, 91, 12, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 91, 12, 0.2);
    border-bottom: 3px solid var(--primary-orange);
}

/* Remove underline effect */
.header-area .nav li a:after {
    display: none;
}

/* ==================== HEADER BUTTONS ==================== */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 15px;
}

.btn-patient-portal,
.btn-aart-academy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    height: 30px;
}

.btn-patient-portal {
    background: var(--primary-blue);
    color: #fff;
}

.btn-patient-portal:hover {
    background: var(--secondary-blue);
    transform: translateY(-1px);
    color: #fff;
}

.btn-aart-academy {
    background: var(--primary-orange);
    color: #fff;
}

.btn-aart-academy:hover {
    background: #f57c00;
    transform: translateY(-1px);
    color: #fff;
}

/* ==================== HEADER STATES ==================== */
.background-header {
    background-color: #fff !important;
    height: 120px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1) !important;
    padding: 0 !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.background-header .nav li a {
    color: var(--primary-blue) !important;
}

.background-header .nav li a:hover,
.background-header .nav li a.active {
    color: var(--primary-orange) !important;
    background: rgba(7, 76, 123, 0.05);
}

.background-header .btn-patient-portal,
.background-header .btn-aart-academy {
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
}

.background-header .btn-patient-portal:hover {
    background: var(--primary-blue);
    color: #fff;
}

.background-header .btn-aart-academy {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.background-header .btn-aart-academy:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* ==================== MENU TRIGGER ==================== */
.menu-trigger {
    display: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b35 100%);
    border: 2px solid var(--primary-orange);
    padding: 10px;
    width: 45px;
    height: 45px;
    position: relative;
    margin-left: 10px;
    z-index: 1001;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(234, 91, 12, 0.2);
}

.menu-trigger:hover {
    background: linear-gradient(135deg, #ff6b35 0%, var(--primary-orange) 100%);
    box-shadow: 0 6px 12px rgba(234, 91, 12, 0.4);
    transform: translateY(-2px);
}

.menu-trigger:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(234, 91, 12, 0.2);
}

.menu-trigger span {
    display: none;
}

.menu-trigger:before {
    content: '\f0c9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 22px;
    color: white;
    line-height: 1;
    display: block;
    text-align: center;
}

.background-header .menu-trigger {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066cc 100%);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 8px rgba(7, 76, 123, 0.2);
}

.background-header .menu-trigger:hover {
    background: linear-gradient(135deg, #0066cc 0%, var(--primary-blue) 100%);
    box-shadow: 0 6px 12px rgba(7, 76, 123, 0.4);
}

.background-header .menu-trigger:before {
    color: white;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Desktop: 1200px and above */
@media (min-width: 1200px) {
    .header-area .nav {
        gap: 8px;
    }
    
    .header-area .nav li a {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Desktop: 992px - 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .header-area .nav {
        gap: 5px;
    }
    
    .header-area .nav li a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .btn-patient-portal,
    .btn-aart-academy {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .language-switcher-desktop {
        margin-right: 15px;
    }
}

/* Tablet: 768px - 991px */
@media (max-width: 991px) and (min-width: 768px) {
    .header-area .nav-container {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .header-area .nav-container.active {
        display: flex !important;
    }
    
    .header-area .nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .header-area .nav li {
        width: 100%;
        padding: 0 !important;
        margin: 0;
    }
    
    .header-area .nav li a {
        display: block;
        padding: 12px 15px !important;
        color: #333 !important;
        border-bottom: 1px solid #eee;
        background: #f7f7f7 !important;
        font-size: 14px;
        text-align: left;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 8px;
        margin-top: 10px;
    }
    
    .btn-patient-portal,
    .btn-aart-academy {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 13px;
        height: 35px;
    }
    
    .menu-trigger {
        display: block !important;
        margin-left: 10px;
    }
    
    .language-switcher-desktop {
        display: none;
    }
    
    .language-switcher-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-area .logo {
        margin-right: 0;
    }
}

/* Mobile: 767px and below */
@media (max-width: 767px) {
    .header-area {
        padding: 0 15px;
        height: 70px;
    }
    
    .header-area .logo {
        height: 70px;
    }
    
    .header-area .logo-img {
        height: 50px;
    }
    
    .header-area .nav-container {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .header-area .nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .header-area .nav li {
        width: 100%;
        padding: 0 !important;
    }
    
    .header-area .nav li a {
        display: block;
        padding: 12px 15px !important;
        color: #333 !important;
        border-bottom: 1px solid #eee;
        background: #f7f7f7 !important;
        font-size: 14px;
        text-align: left;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 8px;
        margin-top: 10px;
    }
    
    .btn-patient-portal,
    .btn-aart-academy {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 13px;
        height: 35px;
    }
    
    .menu-trigger {
        display: block !important;
        margin-left: 10px;
    }
    
    .language-switcher-desktop {
        display: none;
    }
    
    .language-switcher-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .background-header {
        height: 120px !important;
    }
    
    .lang-btn {
        padding: 3px 8px;
        font-size: 12px;
        min-width: 35px;
        height: 26px;
    }
    
    .lang-toggle-mobile {
        width: 65px;
        height: 28px;
    }
    
    .lang-toggle-mobile .toggle-slider:before {
        height: 20px;
        width: 20px;
    }
}

/* Desktop only - Show nav, hide menu trigger */
@media (min-width: 992px) {
    .header-area .nav-container {
        display: flex !important;
    }
    
    .menu-trigger {
        display: none !important;
    }
    
    .language-switcher-desktop {
        display: flex;
    }
    
    .language-switcher-mobile {
        display: none !important;
    }
}

/* ==================== REST OF YOUR EXISTING STYLES ==================== */
/* (Keep all your existing styles below this point - SERVICES, BANNER, ETC) */

.service-info {
    padding: 25px;
}

.service-info h4 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6bc4;
    font-weight: bold;
}

/* Main Banner with Video */
.main-banner {
    position: relative;
    max-height: 100%;
    overflow: hidden;
    margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(7, 76, 123, 0.7);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.main-banner .caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.main-banner .caption h6 {
    margin-top: 0px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.main-banner .caption h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.main-banner .caption p {
    color: #fff;
    font-size: 14px;
    max-width: 570px;
}

.main-banner .caption .main-button-red {
    margin-top: 30px;
}

/* Buttons */
.main-button-red a {
    font-size: 13px;
    color: #fff;
    background-color: var(--primary-blue);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
    text-decoration: none;
}

.main-button-red a:hover {
    background-color: var(--primary-orange);
}

.main-button-yellow a {
    font-size: 13px;
    color: #fff;
    background-color: var(--primary-orange);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
    text-decoration: none;
}

.main-button-yellow a:hover {
    background-color: var(--primary-blue);
}

/* Section Headings */
.section-heading h2 {
    line-height: 40px;
    margin-top: 0px;
    margin-bottom: 50px; 
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250,250,250,0.15);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
}

/* Services Section */
.services {
    margin-top: -35px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.services .item {
    background-color: var(--primary-blue);
    border-radius: 20px;
    text-align: center;
    color: #fff;
    padding: 40px;
    transition: all 0.3s;
}

.services .item:hover {
    background-color: #ea5b0b;
    transform: translateY(-10px);
}

.services .item .icon {
    max-width: 60px;
    margin: 0 auto;
}

.services .item h4 {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.services .item p {
    color: #fff;
    font-size: 13px;
}

/* Apply Now Section */
section.apply-now {
    background-color: #fff;
    padding: 20px 0px;
    position: relative;
}

section.apply-now:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
}

section.apply-now .item {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 50px 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(7, 76, 123, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

section.apply-now .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

section.apply-now .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(7, 76, 123, 0.25);
}

section.apply-now .item:hover:before {
    opacity: 1;
}

section.apply-now .item h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

section.apply-now .item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

section.apply-now .item:nth-child(2) {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #f57c00 100%);
}

.accordions {
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    margin-left: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(7, 76, 123, 0.1);
}

.accordion-head {
    padding: 25px 20px;  
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-head .icon {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}

.accordion-head.is-open {
    color: var(--primary-orange);
    border-bottom: none;
    background-color: rgba(234, 91, 12, 0.05);
}

.accordion-head.is-open .icon {
    transform: rotate(45deg);
}

.accordion-body {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
    border-bottom: 1px solid #fff;
}

.accordion-body > .content {
    padding: 20px;
    padding-top: 0;
    line-height: 1.6;
}

/* About Section with Stylish Image */
.accordion-content-with-image {
    display: block;
}

.about-text img {
    width: 100%;
    height: 119px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(7, 76, 123, 0.2);
    border: 3px solid #fff;
    transition: all 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
    display: block;
}

.about-text img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(7, 76, 123, 0.3);
    filter: brightness(1) contrast(1.1);
    border-color: var(--primary-orange);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
    font-size: 15px;
    text-align: justify;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.know-more-btn:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    color: #fff;
}

/* Our Facts Section */
section.our-facts {
    background-color: var(--primary-blue);
    padding: 35px 0px;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

section.our-facts:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

section.our-facts h2 {
    font-size: 38px;
    color: #fff;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
    position: relative;
}

.count-area-content {
    text-align: center;
    background-color: rgba(250,250,250,0.15);
    border-radius: 20px;
    padding: 20px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.count-area-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.count-area-content:hover:before {
    left: 100%;
}

.count-area-content:hover {
    transform: translateY(-5px);
    background-color: rgba(250,250,250,0.2);
}

.count-digit {
    margin: 5px 0px;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 32px;
    transition: all 0.3s ease;
}

.count-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Stylish Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 30px 0;
    max-height: 100px;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.site-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* Mobile adjustments for other sections */
@media (max-width: 767px) {
    .main-banner .caption {
        top: 60%;
    }

    .main-banner .caption h2 {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .main-banner .caption .main-button-red {
        margin-top: 15px;
    }

    .services {
        margin-top: 60px;
        position: relative;
    }

    .accordions {
        margin-left: 0px;
    }
    
    section.our-facts {
        height: auto;
        padding: 30px 0px;
    }
    
    .count-area-content {
        margin-bottom: 15px;
        height: 80px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .site-footer {
        padding: 25px 0;
        max-height: none;
    }
}

/* ==================== LANGUAGE TOGGLE BUTTON STYLES ==================== */
.btn-lang-toggle,
.btn-lang-toggle-mobile {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    border: 2px solid var(--primary-blue);
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(7, 76, 123, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    gap: 8px;
}

.btn-lang-toggle::before,
.btn-lang-toggle-mobile::before {
    content: '🌐';
    font-size: 16px;
}

.btn-lang-toggle:hover,
.btn-lang-toggle-mobile:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    box-shadow: 0 8px 25px rgba(7, 76, 123, 0.5);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--light-blue);
}

.btn-lang-toggle:active,
.btn-lang-toggle-mobile:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 3px 12px rgba(7, 76, 123, 0.3);
}

.language-switcher-desktop {
    display: flex;
    align-items: center;
}

.language-switcher-mobile {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher-desktop {
        display: none;
    }

    .language-switcher-mobile {
        display: flex;
        align-items: center;
    }

    .btn-lang-toggle-mobile {
        padding: 8px 14px;
        font-size: 12px;
    }

    
}
/* ==================== NEWS PAGE STYLES ==================== */
.page-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 50px;
}

.banner-slide {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 20px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

/* News Items */
.news-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.news-item.active {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-left-color: var(--primary-orange);
}

.news-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.news-header:hover {
    background: #e9ecef;
}

.news-meta {
    flex: 1;
}

.news-date {
    color: #666;
    font-size: 14px;
    margin-right: 15px;
}

.news-date i {
    margin-right: 5px;
}

.news-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-category.press {
    background: rgba(7, 76, 123, 0.1);
    color: var(--primary-blue);
}

.news-category.events {
    background: rgba(234, 91, 12, 0.1);
    color: var(--primary-orange);
}

.news-category.achievements {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.news-title {
    margin: 10px 0 0 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.news-toggle {
    color: var(--primary-blue);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.news-item.active .news-toggle {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.news-content {
    display: none;
    padding: 0 20px;
}

.news-image {
    margin: 20px 0;
}

.news-image img {
    width: 100%;
    border-radius: 8px;
    max-height: 400px;
    object-fit: cover;
}

.news-text {
    padding: 20px 0;
}

.news-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-text ul,
.news-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-text li {
    margin-bottom: 8px;
}

.news-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.news-tags {
    flex: 1;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #666;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-share span {
    color: #666;
    font-size: 14px;
}

.news-share a {
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

.news-share a:hover {
    color: var(--primary-blue);
}

/* News Filter */
.news-filter {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.filter-btn[data-filter="press"]:hover,
.filter-btn[data-filter="press"].active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.filter-btn[data-filter="events"]:hover,
.filter-btn[data-filter="events"].active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.filter-btn[data-filter="achievements"]:hover,
.filter-btn[data-filter="achievements"].active {
    background: #28a745;
    border-color: #28a745;
}

/* No News Message */
.no-news {
    text-align: center;
    padding: 50px 0;
}

.no-news i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-news h3 {
    color: #666;
    margin-bottom: 10px;
}

.no-news p {
    color: #999;
}

/* Responsive News Styles */
@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    
    .banner-slide {
        height: 250px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-toggle {
        align-self: flex-end;
        margin-top: -30px;
    }
    
    .news-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .news-title {
        font-size: 16px;
        margin-top: 15px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 13px;
    }

    .fact-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.count-area-content.percentage .fact-icon {
    color: #ea5b0c;
}
}