/**
 * National Guard Theme Custom Styles
 * Light Blue Gradient and White Identity
 */

:root {
    --primary-color: #94D9F8;
    --primary-dark: #8FD3F2;
    --secondary-color: #8FD3F2;
    --primary-light: #94D9F8;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #CCCCCC;
    --text-dark: #333333;
    
    /* Legacy support */
    --primary-blue: #94D9F8;
    --primary-blue-dark: #8FD3F2;
    --primary-blue-light: #8FD3F2;
}

/* Fonts are loaded in fonts.css */

/* WordPress Admin Bar - Fix Dashicons */
#wpadminbar .ab-icon,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item .ab-icon:before,
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before,
#wpadminbar .dashicons,
#wpadminbar .dashicons-before:before {
    font-family: 'dashicons' !important;
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    speak: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
}

/* Prevent Bootstrap Icons from overriding WordPress admin bar icons */
#wpadminbar .ab-icon,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item .ab-icon:before,
#wpadminbar .dashicons,
#wpadminbar .dashicons-before:before {
    font-family: 'dashicons' !important;
}

#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before {
    font-family: 'dashicons' !important;
}

/* Primary Color Overrides */
.bg-primary {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%) !important;
    background-color: #94D9F8 !important;
}

.text-primary {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    background-color: #94D9F8;
    border-color: #8FD3F2;
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    background-color: #8FD3F2;
    border-color: #94D9F8;
    color: #ffffff;
}

.btn-success {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    background-color: #94D9F8;
    border-color: #8FD3F2;
    color: #ffffff;
}

.btn-success:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    background-color: #8FD3F2;
    border-color: #94D9F8;
    color: #ffffff;
}

.btn-outline-primary {
    border-color: #8FD3F2;
    color: #8FD3F2;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    background-color: #94D9F8;
    border-color: #8FD3F2;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem !important;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.35rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem !important;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section .btn-light {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.hero-section .btn-light:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.hero-icon-wrapper {
    opacity: 0.15 !important;
    transition: all 0.3s ease;
}

.hero-section:hover .hero-icon-wrapper {
    opacity: 0.2 !important;
    transform: scale(1.05);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 102, 204, 0.15) !important;
}

/* Feature Cards - Quick Links Section */
.quick-links {
    background: #ffffff;
    padding: 4rem 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

.feature-card-body {
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Ensure LTR is properly applied */
html[dir="ltr"],
html[dir="ltr"] body,
body.ltr {
    direction: ltr !important;
    text-align: left !important;
}

body.rtl .feature-card-body {
    direction: rtl;
}

body.ltr .feature-card-body {
    direction: ltr;
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.feature-card:hover .feature-icon-wrapper::after {
    opacity: 0.5;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.35);
}

.feature-icon-wrapper i {
    font-size: 2.75rem;
    color: #ffffff;
    display: block !important;
}

.feature-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.3;
}

body.rtl .feature-title {
    direction: rtl;
}

body.ltr .feature-title {
    direction: ltr;
}

.feature-description {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: center;
}

body.rtl .feature-description {
    direction: rtl;
}

body.ltr .feature-description {
    direction: ltr;
}

.feature-btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
    position: relative;
    overflow: hidden;
}

body.rtl .feature-btn {
    direction: rtl;
}

body.ltr .feature-btn {
    direction: ltr;
}

.feature-btn::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 ease;
}

.feature-btn:hover::before {
    left: 100%;
}

.feature-btn:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    text-decoration: none;
}

/* Responsive Grid for Feature Cards */
@media (max-width: 575.98px) {
    .quick-links {
        padding: 3rem 0 !important;
    }
    
    .quick-links .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card-body {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-wrapper i {
        font-size: 2.25rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .feature-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .quick-links {
        padding: 3.5rem 0 !important;
    }
    
    .quick-links .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .quick-links .col-sm-6:last-child {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .feature-card-body {
        padding: 2.75rem 2.25rem;
    }
}

@media (min-width: 992px) {
    .quick-links .row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 3rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-icon-wrapper i {
        font-size: 8rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 350px;
        padding: 2.5rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section .btn-light {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-icon-wrapper {
        display: none;
    }
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 1.5rem 0;
    position: relative;
    overflow: visible;
    width: 100%;
    display: block;
    min-height: 80px;
    direction: ltr !important;
    text-align: center !important;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

.announcement-bar-inner {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    max-width: 800px !important;
    min-height: 80px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    direction: ltr !important;
    text-align: center !important;
    padding: 0 100px !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
}

.announcement-content-wrapper {
    position: relative;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2;
    direction: ltr !important;
    text-align: center !important;
    margin: 0 auto !important;
    float: none !important;
}

.announcement-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    z-index: 3;
    direction: ltr !important;
    margin: 0 auto !important;
    float: none !important;
}

.announcement-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0 auto !important;
    width: auto !important;
    max-width: 100%;
    text-align: center !important;
    display: block;
}

/* RTL for Arabic */
body.rtl .announcement-text {
    direction: rtl;
}

/* LTR for English */
body.ltr .announcement-text {
    direction: ltr !important;
}

.countdown-wrapper {
    margin-top: 1rem;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    direction: ltr !important;
}

.countdown-timer {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: inline-block !important;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center !important;
    margin: 0 auto !important;
}

/* RTL for Arabic */
body.rtl .countdown-timer {
    direction: rtl;
}

/* LTR for English */
body.ltr .countdown-timer {
    direction: ltr !important;
}

.announcement-bar .carousel-item {
    min-height: 80px;
    padding: 0;
    position: relative;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 !important;
}

.announcement-bar .carousel-inner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.announcement-bar #announcementsCarousel {
    width: 100% !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0;
    bottom: 0;
    z-index: 1;
    min-height: 80px;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
}

.announcement-bar .carousel-control-prev,
.announcement-bar .carousel-control-next {
    width: 45px;
    height: 45px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    z-index: 10;
}

.announcement-bar .carousel-control-prev {
    right: 20px;
    left: auto;
}

.announcement-bar .carousel-control-next {
    left: 20px;
    right: auto;
}

.announcement-bar .carousel-control-prev:hover,
.announcement-bar .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.announcement-bar .carousel-control-prev-icon,
.announcement-bar .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.announcement-bar .carousel-indicators {
    margin-bottom: 0;
    bottom: 10px;
    gap: 8px;
    justify-content: center;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto;
    grid-column: 2;
    position: absolute;
    z-index: 10;
}

.announcement-bar .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0;
    transition: all 0.3s ease;
    opacity: 1;
}

.announcement-bar .carousel-indicators button.active {
    background-color: var(--white);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 1.25rem 0;
    }
    
    .announcement-bar-inner {
        padding: 0 60px;
    }
    
    .announcement-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .countdown-timer {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
    
    .announcement-bar .carousel-item {
        min-height: 70px;
    }
    
    .announcement-bar .carousel-control-prev,
    .announcement-bar .carousel-control-next {
        width: 38px;
        height: 38px;
    }
    
    .announcement-bar .carousel-control-prev {
        right: 10px;
    }
    
    .announcement-bar .carousel-control-next {
        left: 10px;
    }
    
    .announcement-bar .carousel-control-prev-icon,
    .announcement-bar .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .announcement-bar .carousel-indicators {
        bottom: 8px;
    }
    
    .announcement-bar .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

/* Announcement Bar - Professional Design */
.announcement-bar-clean {
    background: linear-gradient(135deg, #0c0024 0%, #6a1ba8 100%) !important;
    color: var(--white) !important;
    padding: 1.5rem 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 3px 12px rgba(0, 102, 204, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.announcement-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 0 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem;
    z-index: 2;
    direction: ltr !important;
    text-align: center !important;
}

.announcement-text-clean {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    line-height: 1.7 !important;
    color: var(--white) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
    margin: 0 auto !important;
    direction: rtl !important;
    text-align: center !important;
    max-width: 100%;
    letter-spacing: 0.2px;
}

.countdown-clean {
    margin-top: 0.75rem;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    text-align: center !important;
}

/* RTL for Arabic */
body.rtl .countdown-clean {
    direction: rtl !important;
}

/* LTR for English */
body.ltr .countdown-clean {
    direction: ltr !important;
}

.countdown-timer-clean {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 30px !important;
    display: inline-block !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Professional Carousel Styles */
.announcement-bar-clean .carousel-item {
    min-height: 90px !important;
    padding: 0 !important;
    position: relative;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 !important;
}

.announcement-bar-clean .carousel-inner {
    width: 100% !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.announcement-bar-clean #announcementsCarousel {
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1;
    min-height: 90px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.carousel-control-prev-clean,
.carousel-control-next-clean {
    width: 42px !important;
    height: 42px !important;
    opacity: 0.8 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    position: absolute !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-size: 1.1rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-clean {
    right: 20px !important;
    left: auto !important;
}

.carousel-control-next-clean {
    left: 20px !important;
    right: auto !important;
}

.carousel-control-prev-clean:hover,
.carousel-control-next-clean:hover {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-clean i,
.carousel-control-next-clean i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.carousel-indicators-clean {
    margin-bottom: 0 !important;
    bottom: 12px !important;
    gap: 8px !important;
    justify-content: center !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    position: absolute !important;
    z-index: 10 !important;
    display: flex !important;
}

.carousel-indicators-clean button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.carousel-indicators-clean button.active {
    background-color: var(--white) !important;
    border-color: var(--white) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Front Page Announcement Section - Beautiful Design */
section.announcement-section-front,
.announcement-section-front {
    background: linear-gradient(135deg, #0c0024 0%, #6a1ba8 100%) !important;
    background-color: #0c0024 !important;
    border-bottom: none !important;
    padding: 2rem 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

section.announcement-section-front::before,
.announcement-section-front::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

section.announcement-section-front .container,
.announcement-section-front .container {
    max-width: 1200px !important;
    position: relative !important;
    z-index: 1 !important;
}

.announcement-section-front .announcement-box,
.announcement-box {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.75rem 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    direction: rtl !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 100% !important;
    display: block !important;
}

.announcement-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
}

.announcement-section-front .announcement-icon-box,
.announcement-icon-box {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #0c0024 0%, #6a1ba8 100%) !important;
    background-color: #0c0024 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2) !important;
}

.announcement-box:hover .announcement-icon-box {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.announcement-icon-box i {
    font-size: 1.75rem !important;
    color: #ffffff !important;
    display: block !important;
}

.announcement-section-front .announcement-message,
.announcement-message {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #333333 !important;
    color: #333 !important;
    line-height: 1.7 !important;
    direction: rtl !important;
    text-align: right !important;
    margin: 0 !important;
}

.countdown-box {
    direction: rtl !important;
    text-align: right !important;
    margin-top: 0.75rem !important;
}

.announcement-section-front .countdown-timer-front,
.countdown-timer-front {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0c0024 0%, #6a1ba8 100%) !important;
    background-color: #0c0024 !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 25px !important;
    display: inline-block !important;
    border: none !important;
    direction: rtl !important;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2) !important;
}

/* Front Page Carousel Styles */
.announcement-section-front .carousel-item {
    min-height: auto !important;
}

.announcement-section-front .carousel-inner {
    border-radius: 0 !important;
    overflow: visible !important;
}

.announcement-section-front #announcementsCarouselFront {
    position: relative;
}

.carousel-control-prev-front,
.carousel-control-next-front {
    width: 45px !important;
    height: 45px !important;
    opacity: 0.9 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(0, 102, 204, 0.2) !important;
    position: absolute !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6a1ba8 !important;
    font-size: 1.2rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-front {
    right: 20px !important;
    left: auto !important;
}

.carousel-control-next-front {
    left: 20px !important;
    right: auto !important;
}

.carousel-control-prev-front:hover,
.carousel-control-next-front:hover {
    opacity: 1 !important;
    background: #ffffff !important;
    border-color: #6a1ba8 !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 3px 15px rgba(0, 102, 204, 0.3);
    color: #6a1ba8 !important;
}

.carousel-indicators-front {
    margin-bottom: 12px !important;
    gap: 8px !important;
    justify-content: center !important;
    position: absolute !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
}

.carousel-indicators-front button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.carousel-indicators-front button.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Front Page Announcement */
@media (max-width: 768px) {
    .announcement-section-front {
        padding: 1.5rem 0 !important;
    }
    
    .announcement-box {
        padding: 1.5rem 1.5rem !important;
        border-radius: 10px !important;
    }
    
    .announcement-box .d-flex {
        flex-direction: row !important;
        text-align: right !important;
        gap: 1rem !important;
        align-items: flex-start !important;
    }
    
    .announcement-icon-box {
        width: 55px !important;
        height: 55px !important;
        flex-shrink: 0 !important;
    }
    
    .announcement-icon-box i {
        font-size: 1.5rem !important;
    }
    
    .announcement-message {
        font-size: 1.15rem !important;
        text-align: right !important;
        line-height: 1.6 !important;
    }
    
    .countdown-box {
        text-align: right !important;
        margin-top: 0.5rem !important;
    }
    
    .countdown-timer-front {
        font-size: 0.95rem !important;
        padding: 0.45rem 1rem !important;
    }
    
    .carousel-control-prev-front,
    .carousel-control-next-front {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    .carousel-control-prev-front {
        right: 12px !important;
    }
    
    .carousel-control-next-front {
        left: 12px !important;
    }
    
    .carousel-indicators-front {
        bottom: 8px !important;
    }
    
    .carousel-indicators-front button {
        width: 8px !important;
        height: 8px !important;
    }
}

@media (max-width: 576px) {
    .announcement-section-front {
        padding: 1.25rem 0 !important;
    }
    
    .announcement-box {
        padding: 1.25rem 1.25rem !important;
    }
    
    .announcement-box .d-flex {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .announcement-icon-box {
        margin: 0 auto !important;
    }
    
    .announcement-message {
        text-align: center !important;
        font-size: 1.05rem !important;
    }
    
    .countdown-box {
        text-align: center !important;
    }
}

/* Responsive Design for Clean Announcement */
@media (max-width: 768px) {
    .announcement-bar-clean {
        padding: 1.25rem 0 !important;
        min-height: 85px !important;
    }
    
    .announcement-wrapper {
        padding: 0 70px !important;
        gap: 0.75rem !important;
    }
    
    .announcement-text-clean {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
    }
    
    .countdown-timer-clean {
        font-size: 0.95rem !important;
        padding: 0.55rem 1.15rem !important;
    }
    
    .announcement-bar-clean .carousel-item {
        min-height: 85px !important;
    }
    
    .carousel-control-prev-clean,
    .carousel-control-next-clean {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    .carousel-control-prev-clean {
        right: 12px !important;
    }
    
    .carousel-control-next-clean {
        left: 12px !important;
    }
    
    .carousel-indicators-clean {
        bottom: 10px !important;
    }
    
    .carousel-indicators-clean button {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Committee Member Cards */
.committee-member-card {
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.committee-member-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.committee-member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Media Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Course Agenda */
.course-card {
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 1.5rem;
}

.course-date {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

/* About Page Styles */
.about-hero-image {
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .icon-wrapper {
    flex-shrink: 0;
}

.about-content .card,
.value-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-content .card:hover,
.value-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 102, 204, 0.2) !important;
}

.value-icon-wrapper,
.feature-icon-wrapper {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon-wrapper,
.service-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.value-icon,
.feature-icon {
    transition: all 0.3s ease;
}

.value-card:hover .value-icon,
.service-card:hover .feature-icon {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
}

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.stat-number {
    font-family: 'Tajawal', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.service-image {
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image img {
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-overlay i {
    animation: pulse 1s ease-in-out;
}

/* Contact Page Styles */
.contact-item {
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(-5px);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Bootstrap Icons - Enhanced Loading */
@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.woff2") format("woff2"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.woff") format("woff"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: block;
    unicode-range: U+EA01-U+EAFF;
}

/* Bootstrap Icons - Universal Fix */
.bi,
[class^="bi-"],
[class*=" bi-"],
i[class*="bi-"],
i.bi,
[class*="bi-"]::before {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    vertical-align: -.125em !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    speak: none !important;
    display: inline-block !important;
    text-rendering: auto !important;
}

/* Force display for all icon contexts */
* .bi,
* [class^="bi-"],
* [class*=" bi-"],
* i[class*="bi-"] {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
}

/* Ensure icons show in all contexts */
.btn .bi,
.btn i[class*="bi-"],
.card .bi,
.card i[class*="bi-"],
.value-icon .bi,
.value-icon i[class*="bi-"],
.feature-icon .bi,
.feature-icon i[class*="bi-"],
.hero-icon-wrapper .bi,
.hero-icon-wrapper i[class*="bi-"] {
    display: inline-block !important;
    font-family: "bootstrap-icons" !important;
    font-size: inherit !important;
}

/* Hero Section Icon */
.hero-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-wrapper .bi {
    display: block !important;
}

/* Responsive Header */
@media (max-width: 991px) {
    .navbar-nav-wrapper {
        width: 100%;
        margin-top: 1rem;
        flex-direction: column;
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        text-align: right;
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-brand {
        order: 2;
        margin-left: auto;
    }
    
    .navbar-toggler {
        order: 1;
    }
    
    .user-actions {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* LTR Support (Default - English) - Force LTR on all elements */
html[dir="ltr"],
html[dir="ltr"] *,
body.ltr,
body.ltr * {
    direction: ltr !important;
    text-align: left !important;
}

/* Override any RTL rules when LTR is active - Very strong override */
body.ltr *,
body.ltr *::before,
body.ltr *::after {
    direction: ltr !important;
}

/* Ensure specific elements are LTR when English is active */
body.ltr .hero-content-pro,
body.ltr .hero-title-pro,
body.ltr .hero-subtitle-pro,
body.ltr .hero-actions,
body.ltr .section-title-pro,
body.ltr .section-subtitle-pro,
body.ltr .feature-card-pro-inner,
body.ltr .feature-title-pro,
body.ltr .feature-description-pro,
body.ltr .announcement-text-pro,
body.ltr .announcement-content-pro,
body.ltr .countdown-wrapper-pro,
body.ltr .countdown-timer-pro {
    direction: ltr !important;
    text-align: left !important;
}

body.ltr .navbar-nav {
    margin-left: auto !important;
    margin-right: 0 !important;
}

body.ltr .ms-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

body.ltr .me-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

body.ltr .me-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

body.ltr .text-md-end {
    text-align: right !important;
}

body.ltr .card-body {
    text-align: left;
}

body.ltr .btn i {
    margin-right: 0.5rem;
    margin-left: 0;
}

/* RTL Support (Arabic) */
body.rtl,
body.rtl * {
    direction: rtl;
    text-align: right;
}

body.rtl .navbar-nav {
    margin-right: auto !important;
    margin-left: 0 !important;
}

body.rtl .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

body.rtl .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

body.rtl .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

body.rtl .text-md-end {
    text-align: left !important;
}

body.rtl .card-body {
    text-align: right;
}

body.rtl .btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Responsive Grid for Mobile */
@media (max-width: 768px) {
    .gallery-grid,
    .committees-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utilities */
.text-blue {
    color: var(--primary-blue);
}

.bg-blue-light {
    background-color: var(--primary-blue-light);
}

/* Header Styles */
.top-bar {
    font-size: 0.9rem;
}

.top-bar a {
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ============================================
   NEW HEADER - NGS HEADER (NO CONFLICTS)
   ============================================ */

.ngs-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.ngs-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.ngs-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
    gap: 1rem;
}

/* User Actions - Left */
.ngs-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    z-index: 10;
}

/* Language Switcher */
.ngs-language-switcher {
    display: flex !important;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 22px;
    padding: 4px;
    border: 1.5px solid rgba(0, 102, 204, 0.25);
    min-width: 85px;
    max-width: 100px;
    height: 38px;
}

.ngs-lang-btn {
    padding: 0.4rem 0.75rem;
    border: none;
    background: rgba(0, 102, 204, 0.15);
    color: var(--primary-blue);
    border-radius: 18px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 38px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1;
    height: 100%;
    line-height: 1;
    pointer-events: auto !important;
    z-index: 1000;
    position: relative;
}

/* Active button - highlighted */
.ngs-lang-btn.active {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4);
    opacity: 1 !important;
    font-weight: 700;
}

/* Non-active button - always visible */
.ngs-lang-btn:not(.active) {
    background: rgba(0, 102, 204, 0.12) !important;
    color: var(--primary-blue) !important;
    opacity: 0.8 !important;
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.ngs-lang-btn:hover {
    opacity: 1 !important;
    transform: scale(1.08);
}

.ngs-lang-btn:not(.active):hover {
    background: rgba(0, 102, 204, 0.2) !important;
    color: var(--primary-blue) !important;
}

.ngs-lang-btn.active:hover {
    background: var(--primary-blue-dark) !important;
    color: #ffffff !important;
}

.ngs-lang-btn span {
    display: inline-block !important;
    line-height: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: inherit;
    font-size: inherit;
    pointer-events: none;
    user-select: none;
}

/* Force visibility for language switcher - Important overrides */
.ngs-language-switcher {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    min-width: 85px !important;
}

.ngs-language-switcher button,
.ngs-lang-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    min-width: 38px !important;
}

/* Ensure both buttons are always visible regardless of language */
.ngs-lang-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1000 !important;
}

body.rtl .ngs-lang-btn[data-lang="en"],
body.ltr .ngs-lang-btn[data-lang="ar"],
body.rtl .ngs-lang-btn[data-lang="ar"],
body.ltr .ngs-lang-btn[data-lang="en"] {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.ngs-lang-btn span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ngs-action-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ngs-action-btn i {
    font-size: 1.4rem;
    line-height: 1;
    display: inline-block;
}

.ngs-action-btn-primary {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    background-color: #94D9F8;
    border-color: #8FD3F2;
    color: #ffffff;
}

.ngs-action-btn-primary:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    background-color: #8FD3F2;
    border-color: #94D9F8;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(148, 217, 248, 0.4);
}

.ngs-action-btn-outline {
    border-color: #8FD3F2;
    color: #8FD3F2;
    background-color: transparent;
}

.ngs-action-btn-outline:hover {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    background-color: #94D9F8;
    border-color: #8FD3F2;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(148, 217, 248, 0.4);
}

/* Logo - Center */
.ngs-header-logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    flex-shrink: 0;
}

.ngs-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ngs-header-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.ngs-logo-img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.ngs-header-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

/* Menu Toggle - Right */
.ngs-header-toggle {
    flex-shrink: 0;
    z-index: 10;
}

.ngs-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ngs-menu-toggle:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.ngs-toggle-icon {
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.ngs-menu-toggle:hover .ngs-toggle-icon {
    background-color: #ffffff;
}

/* Navigation Menu */
.ngs-menu-collapse {
    width: 100%;
}

.ngs-main-menu {
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ngs-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ngs-menu-item {
    margin: 0;
}

.ngs-menu-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: right;
}

.ngs-menu-link:hover,
.ngs-menu-link.active {
    color: var(--primary-blue);
    background-color: rgba(0, 102, 204, 0.1);
    text-decoration: none;
}

/* WordPress Menu Integration */
.ngs-main-menu .navbar-nav,
.ngs-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
        display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ngs-main-menu .nav-item,
.ngs-main-menu li {
        margin: 0;
    }
    
.ngs-main-menu .nav-link,
.ngs-main-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: right;
}

.ngs-main-menu .nav-link:hover,
.ngs-main-menu .nav-link.active,
.ngs-main-menu a:hover,
.ngs-main-menu a.active {
    color: var(--primary-blue);
    background-color: rgba(0, 102, 204, 0.1);
    text-decoration: none;
}

/* Responsive Design */
@media (min-width: 768px) {
    .ngs-logo-img {
        max-height: 55px;
    }
    
    .ngs-action-btn {
        width: 44px;
        height: 44px;
    }
    
    .ngs-action-btn i {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .ngs-header-row {
        min-height: 80px;
    }
    
    .ngs-logo-img {
        max-height: 60px;
    }
    
    .ngs-action-btn {
        width: 46px;
        height: 46px;
    }
    
    .ngs-action-btn i {
        font-size: 1.6rem;
    }
    
    .ngs-menu-list,
    .ngs-main-menu .navbar-nav,
    .ngs-main-menu ul {
        flex-direction: row;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .ngs-menu-link,
    .ngs-main-menu .nav-link,
    .ngs-main-menu a {
        padding: 0.5rem 1rem;
        text-align: center;
    }
    
    .ngs-main-menu {
        padding: 0.5rem 0;
        border-top: none;
    }
}

/* Mobile/Tablet Layout - Hidden by default */
.ngs-header-mobile {
    display: none !important;
}

/* Desktop Layout - Visible by default */
.ngs-header-desktop {
    display: flex;
}

/* Ensure mobile is hidden on desktop */
@media (min-width: 992px) {
    .ngs-header-mobile {
        display: none !important;
    }
    
    .ngs-header-desktop {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    /* Hide desktop layout on mobile/tablet */
    .ngs-header-desktop {
        display: none !important;
    }
    
    /* Show mobile layout */
    .ngs-header-mobile {
        display: block !important;
        width: 100%;
    }
    
    /* Title Row - Top */
    .ngs-header-title-row {
        width: 100%;
        padding: 0.75rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .ngs-header-logo-wrapper-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .ngs-header-logo-wrapper-mobile .ngs-header-logo {
        display: flex;
        justify-content: center;
    }
    
    .ngs-header-logo-wrapper-mobile .ngs-logo-img {
        max-height: 45px;
        width: auto;
        height: auto;
    }
    
    .ngs-header-logo-text-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .ngs-logo-line1,
    .ngs-logo-line2 {
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--primary-blue);
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .ngs-logo-line1 {
        margin-bottom: 0.15rem;
    }
    
    .ngs-logo-line2 {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    /* Actions Row - Bottom */
    .ngs-header-actions-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        gap: 1rem;
    }
    
    /* RTL Support for Mobile */
    body[dir="rtl"] .ngs-header-actions-row {
        flex-direction: row-reverse;
    }
    
    body[dir="rtl"] .ngs-header-actions-row .ngs-header-actions {
        flex-direction: row-reverse;
    }
    
    .ngs-header-actions-row .ngs-header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .ngs-header-actions-row .ngs-header-toggle {
        flex-shrink: 0;
    }
    
    .ngs-language-switcher {
        margin-bottom: 0;
    }
    
    .ngs-lang-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        min-width: 32px;
    }
    
    .ngs-action-btn {
        width: 38px;
        height: 38px;
    }
    
    .ngs-action-btn i {
        font-size: 1.2rem;
    }
    
    .ngs-menu-toggle {
        width: 38px;
        height: 38px;
    }
}

/* Extra Small Screens */
@media (max-width: 575.98px) {
    .ngs-logo-line1,
    .ngs-logo-line2 {
        font-size: 0.85rem;
    }
    
    .ngs-logo-line2 {
        font-size: 0.75rem;
    }
}


/* Bootstrap Icons - Additional Force Display */
.bi,
[class^="bi-"],
[class*=" bi-"],
i[class*="bi-"] {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    font-size: inherit !important;
}

/* Ensure icons show in buttons */
.btn .bi,
.btn i[class*="bi-"] {
    display: inline-block !important;
    font-size: 1em !important;
}

/* Value Icons - Force Display */
.value-icon .bi,
.value-icon i[class*="bi-"] {
    display: block !important;
    font-family: "bootstrap-icons" !important;
    font-size: 2.5rem !important;
}

/* Feature Icons - Force Display */
.feature-icon .bi,
.feature-icon i[class*="bi-"] {
    display: block !important;
    font-family: "bootstrap-icons" !important;
    font-size: 2rem !important;
}



/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

.ngs-register-page {
    min-height: calc(100vh - 200px);
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    display: flex;
    align-items: center;
        justify-content: center;
    }
    
.ngs-register-container {
    width: 100%;
    max-width: 1200px;
        margin: 0 auto;
    }

.ngs-register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ngs-register-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.ngs-register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

/* Registration Header */
.ngs-register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ngs-register-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.ngs-register-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.ngs-register-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ngs-register-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Alerts */
.ngs-alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.ngs-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ngs-alert-error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.ngs-alert-error i {
    color: #c33;
}

.ngs-alert-success {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

.ngs-alert-success i {
    color: #3c3;
}

/* Registration Form */
.ngs-register-form {
    margin-top: 2rem;
}

.ngs-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .ngs-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.ngs-form-group {
    margin-bottom: 1.5rem;
}

.ngs-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.ngs-form-label i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.ngs-required {
    color: #e74c3c;
    margin-right: 0.25rem;
}

.ngs-form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
}

.ngs-form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.ngs-form-control.is-invalid {
    border-color: #e74c3c;
}

.ngs-form-control::placeholder {
    color: #999;
}

.ngs-form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

/* Password Wrapper */
.ngs-password-wrapper {
    position: relative;
}

.ngs-password-wrapper .ngs-form-control {
    padding-right: 3rem;
}

.ngs-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 1;
}

.ngs-password-toggle:hover {
    color: var(--primary-blue);
}

.ngs-password-toggle i {
    font-size: 1.2rem;
}

/* Form Check */
.ngs-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.ngs-form-check:hover {
    border-color: var(--primary-blue);
    background-color: #f0f4ff;
}

.ngs-form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-blue);
}

.ngs-form-check-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
}

.ngs-form-check-label a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.ngs-form-check-label a:hover {
    text-decoration: underline;
}

/* RTL Form Check (for login page) */
.form-check-rtl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    direction: rtl;
    gap: 0.5rem;
}

.form-check-rtl .form-check-label {
    order: 1;
    margin-left: 0.5rem;
    margin-bottom: 0;
    margin-right: 0;
}

.form-check-rtl .form-check-input {
    order: 2;
    margin-top: 0;
    margin-right: 0;
}

/* Buttons */
.ngs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.ngs-btn-primary {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(148, 217, 248, 0.3);
    border-color: #8FD3F2;
}

.ngs-btn-primary:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 102, 204, 0.4);
    color: #ffffff;
}

.ngs-btn-block {
    width: 100%;
}

.ngs-btn i {
    font-size: 1.1rem;
}

/* Registration Footer */
.ngs-register-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.ngs-register-footer-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.ngs-register-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    margin-right: 0.5rem;
}

.ngs-register-link:hover {
    text-decoration: underline;
}

/* Password Strength Indicator */
.ngs-password-strength {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
}

.ngs-password-strength.weak {
    color: #e74c3c;
}

.ngs-password-strength.medium {
    color: #f39c12;
}

.ngs-password-strength.strong {
    color: #27ae60;
}

/* Button Loading State */
.ngs-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ngs-btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Success Modal Popup */
.ngs-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.ngs-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.ngs-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideDown 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.ngs-modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.ngs-modal-icon-success {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.ngs-modal-icon-success i {
    font-size: 3.5rem;
    color: #ffffff;
}

.ngs-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.ngs-modal-body {
    padding: 2rem;
    text-align: center;
}

.ngs-modal-message {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ngs-modal-email-note {
    background: #f0f4ff;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: #666;
    border-right: 4px solid var(--primary-blue);
    text-align: right;
}

.ngs-modal-email-note i {
    color: var(--primary-blue);
    margin-left: 0.5rem;
}

.ngs-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ngs-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.ngs-btn-outline:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .ngs-modal-content {
        width: 95%;
        max-width: none;
    }
    
    .ngs-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .ngs-modal-icon-success {
        width: 80px;
        height: 80px;
    }
    
    .ngs-modal-icon-success i {
        font-size: 2.5rem;
    }
    
    .ngs-modal-title {
        font-size: 1.5rem;
    }
    
    .ngs-modal-body {
        padding: 1.5rem;
    }
    
    .ngs-modal-actions {
        flex-direction: column;
    }
    
    .ngs-modal-actions .ngs-btn {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .ngs-register-page {
        padding: 2rem 1rem;
    }
    
    .ngs-register-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .ngs-register-icon {
        width: 70px;
        height: 70px;
    }
    
    .ngs-register-icon i {
        font-size: 2rem;
    }
    
    .ngs-register-title {
        font-size: 1.75rem;
    }
    
    .ngs-form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.site-footer {
    margin-top: auto;
}

.footer-links a,
.footer-contact a {
    transition: color 0.3s ease;
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-site-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-site-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .footer-site-logo {
        max-height: 70px;
    }
}

@media (min-width: 992px) {
    .footer-site-logo {
        max-height: 80px;
    }
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-blue) !important;
}

.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateX(-5px);
    color: var(--primary-blue) !important;
}

/* Sticky Header */
.sticky-top {
    top: 0;
}

@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #eee;
    }
}

/* ============================================
   PROFESSIONAL FRONT PAGE STYLES
   ============================================ */

/* Professional Announcement Section - Inside Hero */
.announcement-wrapper-center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 0;
}

@media (min-width: 576px) {
    .announcement-wrapper-center {
        padding: 0 0.5rem;
    }
}

@media (min-width: 768px) {
    .announcement-wrapper-center {
        padding: 0 1rem;
    }
}

@media (min-width: 992px) {
    .announcement-wrapper-center {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1200px) {
    .announcement-wrapper-center {
        padding: 0 2rem;
    }
}

.announcement-fade-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 200px;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .announcement-fade-container {
        min-height: 220px;
        padding: 0 1rem;
    }
}

@media (min-width: 992px) {
    .announcement-fade-container {
        min-height: 240px;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1200px) {
    .announcement-fade-container {
        min-height: 260px;
        padding: 0 2rem;
    }
}

.announcement-fade-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.announcement-fade-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
}

.announcement-section-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.announcement-card-pro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 24px !important;
    padding: 0 !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 
                0 4px 16px rgba(0, 102, 204, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 3px solid rgba(255, 255, 255, 0.95) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.announcement-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.announcement-card-pro:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 
                0 8px 24px rgba(0, 102, 204, 0.15) !important;
    border-color: rgba(0, 102, 204, 0.3) !important;
}

@media (min-width: 576px) {
    .announcement-card-pro {
        border-radius: 26px !important;
    }
}

@media (min-width: 768px) {
    .announcement-card-pro {
        border-radius: 28px !important;
    }
}

@media (min-width: 992px) {
    .announcement-card-pro {
        border-radius: 30px !important;
    }
}

.announcement-card-inner {
    padding: 2.5rem 3rem !important;
    position: relative !important;
    direction: rtl !important;
    width: 100% !important;
    z-index: 2;
}

@media (min-width: 576px) {
    .announcement-card-inner {
        padding: 3rem 3.5rem !important;
    }
}

@media (min-width: 768px) {
    .announcement-card-inner {
        padding: 3.5rem 4.5rem !important;
    }
}

@media (min-width: 992px) {
    .announcement-card-inner {
        padding: 4rem 5.5rem !important;
    }
}

@media (min-width: 1200px) {
    .announcement-card-inner {
        padding: 4.5rem 6.5rem !important;
    }
}

@media (min-width: 1400px) {
    .announcement-card-inner {
        padding: 5rem 7.5rem !important;
    }
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4),
                0 4px 12px rgba(0, 102, 204, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.announcement-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.announcement-badge:hover::before {
    left: 100%;
}

.announcement-badge:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.5),
                0 6px 16px rgba(0, 102, 204, 0.3);
}

@media (min-width: 768px) {
    .announcement-badge {
        padding: 0.875rem 1.75rem;
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 992px) {
    .announcement-badge {
        padding: 1rem 2rem;
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
}

.announcement-badge i,
.announcement-badge .bi,
.announcement-badge i.bi {
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .announcement-badge i,
    .announcement-badge .bi,
    .announcement-badge i.bi {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .announcement-badge i,
    .announcement-badge .bi,
    .announcement-badge i.bi {
        font-size: 2.2rem !important;
    }
}

@media (min-width: 992px) {
    .announcement-badge i,
    .announcement-badge .bi,
    .announcement-badge i.bi {
        font-size: 2.5rem !important;
    }
}

@media (min-width: 768px) {
    .announcement-badge {
        margin-bottom: 1.25rem;
    }
}

/* Announcement content direction is set by body class */

/* RTL for Arabic */
body.rtl .announcement-content-pro {
    direction: rtl;
}

/* LTR for English */
body.ltr .announcement-content-pro {
    direction: ltr !important;
}

.announcement-text-pro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
}

/* RTL for Arabic */
body.rtl .announcement-text-pro {
    direction: rtl;
    text-align: right;
}

/* LTR for English */
body.ltr .announcement-text-pro {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
}

/* Force LTR for announcement content wrapper */
body.ltr .announcement-content-pro {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
}

@media (min-width: 576px) {
    .announcement-text-pro {
        font-size: 1.35rem;
    }
}

@media (min-width: 768px) {
    .announcement-text-pro {
        font-size: 1.5rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {
    .announcement-text-pro {
        font-size: 1.65rem;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 1200px) {
    .announcement-text-pro {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.countdown-wrapper-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4),
                0 4px 12px rgba(0, 102, 204, 0.2);
    margin-top: 0.75rem;
    flex-wrap: wrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RTL for Arabic */
body.rtl .countdown-wrapper-pro {
    direction: rtl;
}

/* LTR for English */
body.ltr .countdown-wrapper-pro {
    direction: ltr !important;
    text-align: left !important;
    position: relative;
    overflow: hidden;
}

body.ltr .countdown-timer-pro {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
}

.countdown-wrapper-pro::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 ease;
}

.countdown-wrapper-pro:hover::before {
    left: 100%;
}

.countdown-wrapper-pro:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.5),
                0 6px 16px rgba(0, 102, 204, 0.3);
}

@media (min-width: 576px) {
    .countdown-wrapper-pro {
        padding: 1rem 2rem;
        gap: 0.875rem;
    }
}

@media (min-width: 768px) {
    .countdown-wrapper-pro {
        gap: 1rem;
        padding: 1.125rem 2.25rem;
    }
}

@media (min-width: 992px) {
    .countdown-wrapper-pro {
        padding: 1.25rem 2.5rem;
        gap: 1rem;
    }
}

.countdown-wrapper-pro i,
.countdown-wrapper-pro .bi,
.countdown-wrapper-pro i.bi {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .countdown-wrapper-pro i,
    .countdown-wrapper-pro .bi,
    .countdown-wrapper-pro i.bi {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .countdown-wrapper-pro i,
    .countdown-wrapper-pro .bi,
    .countdown-wrapper-pro i.bi {
        font-size: 2.2rem !important;
    }
}

@media (min-width: 992px) {
    .countdown-wrapper-pro i,
    .countdown-wrapper-pro .bi,
    .countdown-wrapper-pro i.bi {
        font-size: 2.5rem !important;
    }
}

.countdown-timer-pro {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 576px) {
    .countdown-timer-pro {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .countdown-timer-pro {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .countdown-timer-pro {
        font-size: 1.3rem;
    }
}

/* Fade Navigation Dots - Professional */
.announcement-nav-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    padding: 1rem 0;
}

.announcement-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.6);
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    outline: none;
}

.announcement-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.announcement-dot:hover::after {
    width: 20px;
    height: 20px;
}

.announcement-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
                0 0 40px rgba(255, 255, 255, 0.5);
    width: 16px;
    height: 16px;
}

.announcement-dot.active::after {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .announcement-nav-dots {
        margin-top: 2.5rem;
        gap: 16px;
    }
    
    .announcement-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .announcement-dot.active {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 992px) {
    .announcement-nav-dots {
        margin-top: 3rem;
        gap: 18px;
    }
    
    .announcement-dot {
        width: 18px;
        height: 18px;
    }
    
    .announcement-dot.active {
        width: 20px;
        height: 20px;
    }
}

/* Carousel Controls - Professional */
.carousel-control-pro {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 204, 0.2);
    color: #6a1ba8;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
}

.carousel-control-pro i,
.carousel-control-pro .bi,
.carousel-control-pro i.bi {
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.carousel-control-prev-pro {
    right: 10px;
    left: auto;
}

.carousel-control-next-pro {
    left: 10px;
    right: auto;
}

@media (min-width: 768px) {
    .carousel-control-pro {
        width: 50px !important;
        height: 50px !important;
    }
    
    .carousel-control-pro i,
    .carousel-control-pro .bi,
    .carousel-control-pro i.bi {
        font-size: 2rem !important;
    }
    
    .carousel-control-prev-pro {
        right: 15px;
    }
    
    .carousel-control-next-pro {
        left: 15px;
    }
}

@media (min-width: 992px) {
    .carousel-control-pro {
        width: 55px !important;
        height: 55px !important;
    }
    
    .carousel-control-pro i,
    .carousel-control-pro .bi,
    .carousel-control-pro i.bi {
        font-size: 2.3rem !important;
    }
    
    .carousel-control-prev-pro {
        right: 20px;
    }
    
    .carousel-control-next-pro {
        left: 20px;
    }
}

.carousel-control-pro:hover {
    background: #ffffff;
    border-color: #6a1ba8;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 102, 204, 0.25);
    opacity: 1;
}

.carousel-indicators-pro {
    bottom: 15px;
    gap: 8px;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-indicators-pro button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators-pro button.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* Professional Hero Section */
.hero-section-pro {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    position: relative;
    padding: 3rem 0 5rem 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-section-pro {
        padding: 4rem 0 5rem 0;
    }
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(148, 217, 248, 0.85) 0%, rgba(143, 211, 242, 0.9) 35%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-section-pro .container {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-content-pro {
    animation: fadeInUp 0.8s ease-out;
}

/* RTL for Arabic */
body.rtl .hero-content-pro {
    direction: rtl;
}

/* LTR for English */
body.ltr .hero-content-pro {
    direction: ltr !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #25255b;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 37, 91, 0.3);
}

.hero-badge i,
.hero-badge .bi {
    color: #25255b !important;
}

.hero-badge span {
    color: #25255b !important;
}

.hero-badge i,
.hero-badge .bi,
.hero-badge i.bi {
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .hero-badge i,
    .hero-badge .bi,
    .hero-badge i.bi {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .hero-badge i,
    .hero-badge .bi,
    .hero-badge i.bi {
        font-size: 2.2rem !important;
    }
}

@media (min-width: 992px) {
    .hero-badge i,
    .hero-badge .bi,
    .hero-badge i.bi {
        font-size: 2.5rem !important;
    }
}

.hero-title-pro {
    font-size: 3.5rem;
    font-weight: 900;
    color: #25255b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* RTL for Arabic */
body.rtl .hero-title-pro {
    direction: rtl;
}

/* LTR for English */
body.ltr .hero-title-pro {
    direction: ltr !important;
}

.hero-subtitle-pro {
    font-size: 1.4rem;
    color: #25255b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

/* RTL for Arabic */
body.rtl .hero-subtitle-pro {
    direction: rtl;
    text-align: right;
}

/* LTR for English */
body.ltr .hero-subtitle-pro {
    direction: ltr !important;
    text-align: left !important;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: nowrap;
    align-items: stretch;
}

/* RTL for Arabic */
body.rtl .hero-actions {
    direction: rtl;
}

/* LTR for English */
body.ltr .hero-actions {
    direction: ltr !important;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    white-space: nowrap;
}

/* RTL for Arabic */
body.rtl .btn-hero-primary,
body.rtl .btn-hero-secondary {
    direction: rtl;
}

/* LTR for English */
body.ltr .btn-hero-primary,
body.ltr .btn-hero-secondary {
    direction: ltr !important;
    text-align: left !important;
}

body.ltr .btn-hero-primary span,
body.ltr .btn-hero-secondary span {
    direction: ltr !important;
    text-align: left !important;
}

.btn-hero-primary i,
.btn-hero-primary .bi,
.btn-hero-primary i.bi,
.btn-hero-secondary i,
.btn-hero-secondary .bi,
.btn-hero-secondary i.bi {
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .btn-hero-primary i,
    .btn-hero-primary .bi,
    .btn-hero-primary i.bi,
    .btn-hero-secondary i,
    .btn-hero-secondary .bi,
    .btn-hero-secondary i.bi {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .btn-hero-primary i,
    .btn-hero-primary .bi,
    .btn-hero-primary i.bi,
    .btn-hero-secondary i,
    .btn-hero-secondary .bi,
    .btn-hero-secondary i.bi {
        font-size: 2.2rem !important;
    }
}

@media (min-width: 992px) {
    .btn-hero-primary i,
    .btn-hero-primary .bi,
    .btn-hero-primary i.bi,
    .btn-hero-secondary i,
    .btn-hero-secondary .bi,
    .btn-hero-secondary i.bi {
        font-size: 2.5rem !important;
    }
}

.btn-hero-primary {
    background: #ffffff;
    color: #25255b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
    color: #25255b;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #25255b;
    border: 2px solid rgba(37, 37, 91, 0.3);
}

.btn-hero-secondary:hover {
    background: #ffffff;
    border-color: rgba(37, 37, 91, 0.5);
    transform: translateY(-2px);
    color: #25255b;
    box-shadow: 0 4px 20px rgba(37, 37, 91, 0.2);
}

.btn-hero-secondary span {
    color: #25255b !important;
}

.btn-hero-secondary i,
.btn-hero-secondary .bi {
    color: #25255b !important;
}

.hero-visual-pro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

.hero-icon-circle {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-logo-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.hero-logo-placeholder i,
.hero-logo-placeholder .bi,
.hero-logo-placeholder i.bi {
    font-size: 10rem !important;
    color: #25255b !important;
    display: block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .hero-logo-placeholder i,
    .hero-logo-placeholder .bi,
    .hero-logo-placeholder i.bi {
        font-size: 11rem !important;
    }
}

@media (min-width: 768px) {
    .hero-logo-placeholder i,
    .hero-logo-placeholder .bi,
    .hero-logo-placeholder i.bi {
        font-size: 12rem !important;
    }
}

@media (min-width: 992px) {
    .hero-logo-placeholder i,
    .hero-logo-placeholder .bi,
    .hero-logo-placeholder i.bi {
        font-size: 13rem !important;
    }
}

.hero-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 20px;
}

.hero-decoration {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

/* Professional Features Section */
.features-section-pro {
    padding: 5rem 0;
    background: #ffffff;
}

.features-section-pro .container {
    max-width: 1200px;
}

.features-section-pro .row {
    margin: 0;
}

.features-section-pro .col-12,
.features-section-pro .col-sm-6,
.features-section-pro .col-lg-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
}

.feature-card-pro {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.section-header-pro {
    text-align: center;
    margin-bottom: 4rem;
    direction: rtl;
}

.section-title-pro {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* RTL for Arabic */
body.rtl .section-title-pro {
    direction: rtl;
}

/* LTR for English */
body.ltr .section-title-pro {
    direction: ltr !important;
}

.section-subtitle-pro {
    font-size: 1.2rem;
    color: #666666;
}

/* RTL for Arabic */
body.rtl .section-subtitle-pro {
    direction: rtl;
}

/* LTR for English */
body.ltr .section-subtitle-pro {
    direction: ltr !important;
}

.feature-card-pro {
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-pro-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* RTL for Arabic */
body.rtl .feature-card-pro-inner {
    direction: rtl;
}

/* LTR for English */
body.ltr .feature-card-pro-inner {
    direction: ltr !important;
}

.feature-card-pro-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.feature-card-pro:hover .feature-card-pro-inner::before {
    transform: scaleX(1);
}

.feature-card-pro:hover .feature-card-pro-inner {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(37, 37, 91, 0.15);
    border-color: rgba(37, 37, 91, 0.2);
}

.feature-icon-pro {
    width: 110px;
    height: 110px;
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-radius: 24px;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.feature-card-pro:hover .icon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.feature-icon-pro i,
.feature-icon-pro .bi,
.feature-icon-pro i.bi {
    font-size: 4.5rem !important;
    color: #25255b !important;
    position: relative !important;
    z-index: 1 !important;
    transition: all 0.4s ease !important;
    display: block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .feature-icon-pro i,
    .feature-icon-pro .bi,
    .feature-icon-pro i.bi {
        font-size: 5rem !important;
    }
}

@media (min-width: 768px) {
    .feature-icon-pro {
        width: 130px !important;
        height: 130px !important;
    }
    
    .feature-icon-pro i,
    .feature-icon-pro .bi,
    .feature-icon-pro i.bi {
        font-size: 5.5rem !important;
    }
}

@media (min-width: 992px) {
    .feature-icon-pro {
        width: 140px !important;
        height: 140px !important;
    }
    
    .feature-icon-pro i,
    .feature-icon-pro .bi,
    .feature-icon-pro i.bi {
        font-size: 6rem !important;
    }
}

.feature-card-pro:hover .feature-icon-pro i {
    transform: scale(1.15) rotate(5deg);
    color: #25255b;
}

/* Blog Post Styles */
article[id^="post-"] {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(37, 37, 91, 0.1);
    border: 1px solid rgba(37, 37, 91, 0.1);
    transition: all 0.3s ease;
}

article[id^="post-"]:hover {
    box-shadow: 0 8px 24px rgba(37, 37, 91, 0.15);
    transform: translateY(-2px);
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    margin-bottom: 0.75rem;
}

.entry-title a {
    color: #25255b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.entry-title a:hover {
    color: #25255b;
    text-decoration: underline;
}

.entry-meta {
    color: rgba(37, 37, 91, 0.7) !important;
    font-size: 0.9rem;
}

.entry-meta i {
    color: #25255b;
    margin-right: 0.25rem;
}

.entry-content {
    color: #25255b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.entry-content p {
    color: #25255b;
    margin-bottom: 1rem;
}

.entry-footer .btn-primary {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border: none;
    color: #25255b;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 37, 91, 0.15);
}

.entry-footer .btn-primary:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    color: #25255b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 37, 91, 0.25);
}

.entry-footer .btn-primary i {
    color: #25255b;
}

/* Pagination Styles */
.pagination .page-link {
    color: #25255b;
    border-color: rgba(37, 37, 91, 0.2);
    background: #ffffff;
}

.pagination .page-link:hover {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    color: #25255b;
    border-color: rgba(37, 37, 91, 0.3);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-color: #25255b;
    color: #25255b;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    color: rgba(37, 37, 91, 0.5);
    background: #f8f9fa;
    border-color: rgba(37, 37, 91, 0.1);
}

/* Sidebar Styles */
.widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(37, 37, 91, 0.1);
    border: 1px solid rgba(37, 37, 91, 0.1);
}

.widget-title {
    color: #25255b;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(148, 217, 248, 0.3);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(37, 37, 91, 0.1);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #25255b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget ul li a:hover {
    color: #25255b;
    padding-left: 0.5rem;
    text-decoration: underline;
}

.widget .search-form input[type="search"] {
    border: 1px solid rgba(37, 37, 91, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #25255b;
}

.widget .search-form input[type="search"]:focus {
    border-color: rgba(148, 217, 248, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(148, 217, 248, 0.25);
    outline: none;
}

.widget .search-form button {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border: none;
    color: #25255b;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.widget .search-form button:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 37, 91, 0.2);
}

.feature-title-pro {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* RTL for Arabic */
body.rtl .feature-title-pro {
    direction: rtl;
    text-align: right;
}

/* LTR for English */
body.ltr .feature-title-pro {
    direction: ltr !important;
    text-align: left !important;
}

.feature-description-pro {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* RTL for Arabic */
body.rtl .feature-description-pro {
    direction: rtl;
    text-align: right;
}

/* LTR for English */
body.ltr .feature-description-pro {
    direction: ltr !important;
    text-align: left !important;
}

.feature-link-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #25255b;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    direction: rtl;
    margin-top: auto;
}

.feature-link-pro i,
.feature-link-pro .bi,
.feature-link-pro i.bi {
    font-size: 1.8rem !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
    line-height: 1 !important;
}

@media (min-width: 576px) {
    .feature-link-pro i,
    .feature-link-pro .bi,
    .feature-link-pro i.bi {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .feature-link-pro i,
    .feature-link-pro .bi,
    .feature-link-pro i.bi {
        font-size: 2.2rem !important;
    }
}

@media (min-width: 992px) {
    .feature-link-pro i,
    .feature-link-pro .bi,
    .feature-link-pro i.bi {
        font-size: 2.5rem !important;
    }
}

.feature-link-pro:hover {
    color: #25255b;
    gap: 1rem;
}

.feature-link-pro:hover i {
    transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title-pro {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-pro {
        font-size: 1.2rem;
    }
    
    .hero-icon-circle {
        width: 220px;
        height: 220px;
    }
    
    .hero-logo-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .hero-logo-placeholder i {
        font-size: 5rem;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        min-width: 150px;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .btn-hero-primary i,
    .btn-hero-primary .bi,
    .btn-hero-primary i.bi,
    .btn-hero-secondary i,
    .btn-hero-secondary .bi,
    .btn-hero-secondary i.bi {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .announcement-card-inner {
        padding: 1.25rem 1.5rem;
    }
    
    .announcement-text-pro {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .countdown-wrapper-pro {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .countdown-timer-pro {
        font-size: 0.85rem;
    }
    
    .announcement-badge {
        padding: 0.4rem 0.875rem;
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .announcement-badge i,
    .announcement-badge .bi,
    .announcement-badge i.bi {
        font-size: 1.6rem !important;
    }
    
    .countdown-wrapper-pro i,
    .countdown-wrapper-pro .bi,
    .countdown-wrapper-pro i.bi {
        font-size: 1.7rem !important;
    }
    
    .announcement-card-pro {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .announcement-card-inner {
        padding: 1.5rem 1.75rem !important;
        width: 100% !important;
    }
    
    .feature-icon-pro {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .feature-icon-pro i,
    .feature-icon-pro .bi,
    .feature-icon-pro i.bi {
        font-size: 4rem !important;
    }
    
    .feature-card-pro-inner {
        padding: 2.5rem 2rem !important;
    }
    
    .feature-link-pro i,
    .feature-link-pro .bi,
    .feature-link-pro i.bi {
        font-size: 1.6rem !important;
    }
    
    .hero-logo-placeholder i,
    .hero-logo-placeholder .bi,
    .hero-logo-placeholder i.bi {
        font-size: 8rem !important;
    }
    
    .carousel-control-pro i,
    .carousel-control-pro .bi,
    .carousel-control-pro i.bi {
        font-size: 1.6rem !important;
    }
    
    .hero-section-pro {
        padding: 3rem 0;
        min-height: 500px;
    }
    
    .hero-title-pro {
        font-size: 2rem;
    }
    
    .section-title-pro {
        font-size: 2rem;
    }
    
    .feature-card-pro-inner {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .announcement-card-inner {
        padding: 1.25rem 1.5rem;
    }
    
    .announcement-text-pro {
        font-size: 1.1rem;
    }
    
    .countdown-wrapper-pro {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-title-pro {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-pro {
        font-size: 1.1rem;
    }
    
    .hero-icon-circle {
        width: 180px;
        height: 180px;
    }
    
    .hero-logo-placeholder {
        width: 130px;
        height: 130px;
    }
    
    .hero-logo-placeholder i {
        font-size: 4rem;
    }
}

/* National Partners Logos Section */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 150px;
    overflow: hidden;
}

.partner-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partner-logo-wrapper {
        height: 120px;
        padding: 1rem;
    }
}

/* Agenda Table Gradient Styling */
.ngs-agenda-table {
    width: 100%;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 37, 91, 0.3);
    margin-bottom: 0;
}

.ngs-agenda-table thead {
    background: #25255b !important;
    position: relative;
}

.ngs-agenda-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.ngs-agenda-table thead th {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.5rem 1rem;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.4) !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.ngs-agenda-table thead th:last-child {
    border-right: none !important;
}

.ngs-agenda-table tbody {
    background: transparent;
}

.ngs-agenda-table tbody tr {
    background: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(37, 37, 91, 0.3);
}

.ngs-agenda-table tbody tr:nth-child(even) {
    background: rgba(148, 217, 248, 0.1);
}

.ngs-agenda-table tbody tr:hover {
    background: rgba(148, 217, 248, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 37, 91, 0.2);
}

.ngs-agenda-table tbody tr:last-child {
    border-bottom: none;
}

.ngs-agenda-table tbody td {
    color: #25255b !important;
    padding: 1.25rem 1rem;
    border: none !important;
    border-right: 1px solid rgba(37, 37, 91, 0.2) !important;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.6;
}

.ngs-agenda-table tbody td:last-child {
    border-right: none !important;
}

.ngs-agenda-table tbody td:first-child {
    font-weight: 600;
    color: #25255b !important;
}

/* Pricing Table Styling */
.ngs-pricing-table {
    width: 100%;
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 37, 91, 0.3);
    margin-bottom: 0;
}

.ngs-pricing-table thead {
    background: #25255b !important;
    position: relative;
}

.ngs-pricing-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.ngs-pricing-table thead th {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.5rem 1rem;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.4) !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.ngs-pricing-table thead th:last-child {
    border-right: none !important;
}

.ngs-pricing-table tbody {
    background: transparent;
}

.ngs-pricing-table tbody tr {
    background: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(37, 37, 91, 0.3);
}

.ngs-pricing-table tbody tr:nth-child(even) {
    background: rgba(148, 217, 248, 0.1);
}

.ngs-pricing-table tbody tr:hover {
    background: rgba(148, 217, 248, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 37, 91, 0.2);
}

.ngs-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.ngs-pricing-table tbody td {
    color: #25255b !important;
    padding: 1.25rem 1rem;
    border: none !important;
    border-right: 1px solid rgba(37, 37, 91, 0.2) !important;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.6;
}

.ngs-pricing-table tbody td:last-child {
    border-right: none !important;
}

.ngs-pricing-table tbody td strong {
    color: #25255b !important;
    font-size: 1.1rem;
    font-weight: 700;
}

.ngs-pricing-table tbody td small {
    color: rgba(37, 37, 91, 0.7) !important;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
    font-weight: 400;
}

.ngs-pricing-table tbody td .fw-bold {
    color: #25255b !important;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: none;
}

/* Override Bootstrap table styles for our custom tables */
.ngs-agenda-table.table,
.ngs-pricing-table.table {
    border: none;
}

.ngs-agenda-table.table-bordered,
.ngs-pricing-table.table-bordered {
    border: none;
}

.ngs-agenda-table.table-striped > tbody > tr:nth-of-type(odd) > *,
.ngs-pricing-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: inherit;
    background-color: inherit;
}

/* Day heading styling */
.ngs-day-heading {
    margin-bottom: 1.5rem !important;
    padding: 0.75rem 1.5rem;
    background: #25255b !important;
    color: #ffffff !important;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(37, 37, 91, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Table responsive wrapper */
.table-responsive {
    border-radius: 10px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 15px rgba(37, 37, 91, 0.2);
    position: relative;
    width: 100%;
    display: block;
}

/* Ensure table maintains minimum width on mobile */
.table-responsive .ngs-agenda-table,
.table-responsive .ngs-pricing-table {
    min-width: 600px;
    width: 100%;
    display: table;
}

/* For Day 2 table with 4 columns, ensure it's fully visible */
@media (max-width: 991px) {
    .table-responsive .ngs-agenda-table {
        min-width: 700px;
    }
    
    /* Ensure all columns are visible */
    .table-responsive .ngs-agenda-table thead th,
    .table-responsive .ngs-agenda-table tbody td {
        white-space: normal;
        word-wrap: break-word;
        min-width: 120px;
    }
    
    /* Time column - smaller width */
    .table-responsive .ngs-agenda-table thead th:first-child,
    .table-responsive .ngs-agenda-table tbody td:first-child {
        min-width: 100px;
        max-width: 120px;
    }
    
    /* Session column - flexible */
    .table-responsive .ngs-agenda-table thead th:nth-child(2),
    .table-responsive .ngs-agenda-table tbody td:nth-child(2) {
        min-width: 150px;
    }
    
    /* Title column (Day 2 only) - flexible */
    .table-responsive .ngs-agenda-table thead th:nth-child(3),
    .table-responsive .ngs-agenda-table tbody td:nth-child(3) {
        min-width: 150px;
    }
    
    /* Presenter column - ensure it's visible */
    .table-responsive .ngs-agenda-table thead th:last-child,
    .table-responsive .ngs-agenda-table tbody td:last-child {
        min-width: 150px;
    }
}

/* Scrollbar styling for better UX */
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(37, 37, 91, 0.1);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(143, 211, 242, 1) 0%, rgba(148, 217, 248, 1) 35%);
}

/* Scroll Hint for Mobile Tables */
.ngs-scroll-hint {
    background: linear-gradient(90deg, rgba(148, 217, 248, 0.15) 0%, rgba(143, 211, 242, 0.2) 100%);
    border: 2px solid rgba(37, 37, 91, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: pulse-hint 2s ease-in-out infinite;
}

.ngs-scroll-hint-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ngs-scroll-arrow {
    font-size: 1.5rem;
    color: #25255b;
    animation: slide-horizontal 1.5s ease-in-out infinite;
    display: inline-block;
}

.ngs-scroll-text {
    color: #25255b;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ngs-scroll-text i {
    color: #25255b;
    font-size: 1rem;
}

/* RTL Support for scroll hint */
body.rtl .ngs-scroll-hint-content {
    direction: rtl;
}

body.rtl .ngs-scroll-arrow {
    animation: slide-horizontal-rtl 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes slide-horizontal {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@keyframes slide-horizontal-rtl {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-10px);
        opacity: 1;
    }
}

@keyframes pulse-hint {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 37, 91, 0.2);
        border-color: rgba(37, 37, 91, 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(37, 37, 91, 0.1);
        border-color: rgba(37, 37, 91, 0.5);
    }
}

/* Hide on desktop */
@media (min-width: 768px) {
    .ngs-scroll-hint {
        display: none !important;
    }
}

/* Enhanced visibility on very small screens */
@media (max-width: 576px) {
    .ngs-scroll-hint {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .ngs-scroll-arrow {
        font-size: 1.75rem;
    }
    
    .ngs-scroll-text {
        font-size: 0.85rem;
    }
}

/* Ensure proper spacing */
.ngs-agenda-table + .ngs-agenda-table {
    margin-top: 2rem;
}

/* Additional header enhancements */
.ngs-agenda-table thead tr,
.ngs-pricing-table thead tr {
    background: #25255b !important;
}

/* Ensure header gradient is visible and override any Bootstrap styles */
.ngs-agenda-table > thead > tr > th,
.ngs-pricing-table > thead > tr > th {
    background: #25255b !important;
    background-color: #25255b !important;
    background-clip: padding-box !important;
}

/* Better contrast for header text */
.ngs-agenda-table thead th,
.ngs-pricing-table thead th {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: inherit;
}

/* Force white color on header text */
.ngs-agenda-table thead th *,
.ngs-pricing-table thead th * {
    color: #ffffff !important;
}

/* Remove any Bootstrap table-primary class effects */
.ngs-agenda-table.table-primary thead th,
.ngs-pricing-table.table-primary thead th {
    background: linear-gradient(135deg, #501484 0%, #0c0024 100%) !important;
    color: #ffffff !important;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: linear-gradient(90deg, rgba(148, 217, 248, 1) 0%, rgba(143, 211, 242, 1) 35%);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(37, 37, 91, 0.2);
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    display: inline-block;
    padding: 0 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

.breadcrumb-item.active::before {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .ngs-agenda-table thead th,
    .ngs-pricing-table thead th {
        font-size: 0.95rem;
        padding: 1rem 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .ngs-agenda-table tbody td,
    .ngs-pricing-table tbody td {
        font-size: 0.9rem;
        padding: 0.75rem 0.5rem;
    }
    
    .ngs-pricing-table tbody td .fw-bold {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.5rem;
    }
}



