/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    color: var(--color-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background-color: unset !important;
    padding: 1.5rem 0;
    box-shadow: none;
    transition: all 0.4s ease;
    z-index: 1000;
    transform: translateY(0);
}

.navbar.scrolled {
    background-color: transparent !important;
    backdrop-filter: none;
    padding: 1rem 0;
    box-shadow: none;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-brand img {
    height: 70px;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.navbar.scrolled .navbar-brand img {
    opacity: 0;
    transform: scale(0.8);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar.scrolled .navbar-brand:hover img {
    transform: scale(0.8);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2c3e50 50%, #416178 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 159, 121, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 159, 121, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.hero-geometric {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite, float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.shape-3 {
    top: 40%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(234, 159, 121, 0.2), transparent);
    transform: rotate(45deg);
    animation: rotate 25s linear infinite;
}

.shape-4 {
    top: 60%;
    right: 20%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transform: rotate(30deg);
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-family-secondary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: fadeInScale 1.2s ease-out 0.3s forwards;
    letter-spacing: 1px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.7s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-family-primary);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--color-secondary);
}

/* Vision Mission Values Section */
.vmv-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.vmv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(49, 70, 87, 0.08);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(49, 70, 87, 0.15);
    border-color: rgba(49, 70, 87, 0.12);
}

.vmv-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    filter: grayscale(100%);
    display: none;
}

.vmv-title {
    font-family: var(--font-family-primary);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.vmv-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    border-radius: 2px;
}

.vmv-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
    text-align: center;
}

.vmv-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.vmv-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(49, 70, 87, 0.08);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.vmv-list li:last-child {
    border-bottom: none;
}

.vmv-list strong {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Research Section */
.research-section {
    background: linear-gradient(135deg, rgba(49, 70, 87, 0.05) 0%, rgba(234, 159, 121, 0.05) 100%);
}

.research-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-right: 4px solid var(--color-secondary);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.research-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.research-title {
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.research-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

/* Projects Section */
.projects-section {
    background-color: var(--color-primary);
    color: white;
}

.projects-section .section-title {
    color: white;
}

.projects-section .section-title::after {
    background: var(--color-secondary);
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.project-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Target Audience Section */
.audience-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.audience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.audience-card:hover {
    border-color: var(--color-secondary);
    transform: scale(1.05);
}

.audience-icon {
    font-size: 3.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.audience-title {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Strategy Section */
.strategy-section {
    background: var(--color-light);
}

.strategy-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.strategy-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Target Categories Section */
.categories-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #416178 100%);
    padding: 60px 0;
}

.categories-section .section-title {
    color: white;
}

.category-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
}

.category-text {
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, var(--color-primary) 50%, #2c3e50 100%);
    color: white;
    padding: 2.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(234, 159, 121, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 159, 121, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.footer-title {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(234, 159, 121, 0.3);
    transform: translateY(-2px);
}

.contact-item svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-secondary);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-link span {
    position: relative;
    z-index: 1;
}

.footer-member {
    display: flex;
    align-items: center;
}

.member-logo {
    height: 60px;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.member-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-15px) translateX(-15px);
    }
    75% {
        transform: translateY(-40px) translateX(10px);
    }
}

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

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

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: scroll 2s ease-in-out infinite;
}

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

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        top: 32px;
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 60px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title::after {
        width: 60px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .vmv-card, .research-item, .project-card {
        margin-bottom: 2rem;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 45px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 35px 0;
    padding-top: 160px!important;
    min-height: 450px;
    align-items: center !important;
}

.hero-text-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 772px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.hero-text-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.hero-vision-logo-mobile {
    display: none;
    margin-bottom: 20px;
}

.vision-logo-mobile-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.hero-text-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

/* Slider Dots */
.hero-slider-dots {
    width: 44px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.slider-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    width: 14px;
    height: 14px;
}

/* Hero Text Content */
.hero-text-content {
    max-width: 772px;
    text-align: right;
}

.hero-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: normal;
    color: white;
    text-align: right;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    margin-bottom: 44px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    /* No shadow or glow - only glass effect */
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
    padding: 1px;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.hero-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.glass-btn-1 {
    background: rgba(255, 255, 255, 0.1);
}

.glass-btn-1::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.glass-btn-1:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.glass-btn-2 {
    background: rgba(246, 139, 100, 0.33);
}

.glass-btn-2::before {
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.6) 0%, rgba(246, 139, 100, 0.3) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
}

.glass-btn-2:hover {
    background: rgba(246, 139, 100, 0.4);
}

.glass-btn-2:hover::before {
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.7) 0%, rgba(246, 139, 100, 0.45) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 15px;
}

.btn-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.btn-text {
    white-space: nowrap;
}

.min-vh-98 {
    min-height: 85vh;
}

/* Hero Footer */
.hero-footer {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.vision-logo img {
    max-height: 68px;
    width: auto;
    object-fit: contain;
}

/* Hide vision logo and prizes logos on mobile */
@media (max-width: 767.98px) {
    .vision-logo {
        display: none;
    }
    
    .prizes-logos {
        display: none !important;
    }
    
    .hero-vision-logo-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Tablet: Make prizes logos smaller so 4 fit in one row */
@media (min-width: 768px) and (max-width: 991.98px) {
    .prize-logo {
        max-height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .prizes-logos {
        gap: 12px;
        flex-wrap: nowrap;
    }
}

.scroll-down-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon {
    width: 52px;
    height: 52px;
    animation: gentleFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-icon:hover {
    transform: scale(1.1);
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.prizes-logos {
    flex-wrap: wrap;
}

.prize-logo {
    max-height: 66px;
    width: auto;
    object-fit: contain;
}

.prize-logo:hover {
    transform: scale(1.1);
}

/* Responsive Hero */
@media (max-width: 991.98px) {
    .hero-section {
        margin-top: -70px;
    }
    
    .hero-text-content-wrapper {
        align-items: center;
        text-align: center;
    }
    
    .hero-text-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-content-wrapper {
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-slider-dots {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        margin-top: -50px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    
    .hero-bg-image,
    .hero-overlay {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    
    .hero-text-content-wrapper {
        align-items: center;
        text-align: center;
    }
    
    .hero-text-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 2.55;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: 100%;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .hero-footer .col-md-4 {
        margin-bottom: 20px;
        text-align: center !important;
    }
    
    .prizes-logos {
        justify-content: center !important;
    }
}
/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(33, 33, 33, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.main-header.scrolled {
    background: rgba(33, 33, 33, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.scrolled .header-top-bar {
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.main-header.scrolled .header-divider {
    max-height: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.header-top-bar {
    padding: 16px 0;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    overflow: hidden;
    max-height: 100px;
    opacity: 1;
}

.header-top-bar p {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    color: white;
}

/* Responsive Header Top Bar */
@media (max-width: 767.98px) {
    .header-top-bar p {
        font-size: 12px;
    }
    
    .contact-info {
        font-size: 12px;
        gap: 12px;
    }
    
    .language-selector {
        font-size: 12px;
    }
    
    .header-top-bar .row {
        flex-wrap: nowrap;
    }
    
    .header-top-bar .col-md-6 {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
}

.language-selector,
.contact-info {
    font-family: var(--font-family-primary);
}

.chevron-icon,
.earth-icon,
.email-icon,
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-divider {
    padding: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
    overflow: hidden;
    max-height: 10px;
    opacity: 1;
}

.header-divider hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0;
    border-width: 1px;
}

.header-nav {
    padding: 16px 0;
}

.nav-menu {
    flex-wrap: wrap;
    gap: 24px;
}

.menu-toggle-btn {
    background: rgba(255, 255, 255, 0.01);
    border: none;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    display: flex; /* Show on desktop and mobile */
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hide additional menu items on desktop by default */
.nav-link-additional {
    display: none;
}

.nav-dropdown-additional {
    display: none;
}

.menu-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-link {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 15px;
    color: white;
    text-decoration: none;
    padding: 8px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    opacity: 0.8;
    color: white;
}

.nav-link.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-dropdown-toggle:hover {
    opacity: 0.8;
}

.nav-dropdown.active .nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-chevron {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    min-width: 220px;
    background: rgba(33, 33, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) translateZ(0);
    -webkit-transform: translateY(-10px) translateZ(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    will-change: opacity, transform;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
    text-align: right;
}

.nav-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 24px;
    color: white;
}

/* Menu Toggle Dropdown */
.menu-toggle-dropdown {
    position: relative;
}

.menu-toggle-dropdown-menu {
    left: 0;
    right: auto;
}

/* Nested Dropdown (الشركات التابعة) */
.nav-dropdown-nested {
    position: relative;
}

.nav-dropdown-nested-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: white;
    text-align: right;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
}

.nav-dropdown-nested-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 24px;
}

.dropdown-chevron-nested {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.nav-dropdown-nested.active .dropdown-chevron-nested {
    transform: rotate(180deg);
}

.nav-dropdown-nested-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.nav-dropdown-nested.active .nav-dropdown-nested-menu {
    max-height: 200px;
}

.nav-dropdown-nested-menu .nav-dropdown-item {
    padding-right: 40px;
}

.chevron-nav-icon {
    width: 15px;
    height: 12px;
    object-fit: contain;
}

.logo-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

/* Desktop: Show menu items until إصدارات الجمعية, hide المكتبة الإعلامية, show menu toggle */
@media (min-width: 992px) {
    /* Show menu toggle button on desktop */
    .menu-toggle-btn {
        display: flex;
    }
    
    /* Show menu items until إصدارات الجمعية */
    .nav-menu > .nav-dropdown:first-child,
    .nav-menu > .nav-link:nth-child(2),
    .nav-menu > .nav-link:nth-child(3),
    .nav-menu > .nav-link:nth-child(4),
    .nav-menu > .nav-link:nth-child(5),
    .nav-menu > .nav-link:nth-child(6) {
        display: block;
    }
    
    /* Hide المكتبة الإعلامية on desktop (it's in menu toggle dropdown) */
    .nav-menu > .nav-link:nth-child(7) {
        display: none;
    }
}

/* Tablet: Show only 3 menu items, show menu toggle */
@media (max-width: 1199.98px) and (min-width: 768px) {
    /* Show only first 3 menu items */
    .nav-menu > .nav-dropdown:first-child,
    .nav-menu > .nav-link:nth-child(2),
    .nav-menu > .nav-link:nth-child(3) {
        display: block;
    }
    
    /* Hide rest of menu items */
    .nav-menu > .nav-link:nth-child(4),
    .nav-menu > .nav-link:nth-child(5),
    .nav-menu > .nav-link:nth-child(6),
    .nav-menu > .nav-link:nth-child(7) {
        display: none;
    }
    
    /* Show menu toggle button */
    .menu-toggle-btn {
        display: flex;
    }
    
    /* Ensure logo and menu toggle are on same line with space-between */
    .header-nav .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }
    
    .header-nav .col-md-3 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .header-nav .col-md-9 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .header-top-bar .col-md-6 {
        margin-bottom: 10px;
    }
    
    .contact-info {
        justify-content: flex-start !important;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 6px;
    }
}

@media (max-width: 767.98px) {
    .header-top-bar {
        padding: 12px 0;
    }
    
    .header-nav {
        padding: 12px 0;
    }
    
    .nav-menu {
        gap: 8px;
        justify-content: flex-end;
        display: flex !important;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 4px;
    }
    
    /* Hide all nav items on mobile, show only menu toggle */
    .nav-menu > .nav-dropdown:not(.menu-toggle-dropdown),
    .nav-menu > .nav-link {
        display: none;
    }
    
    /* Show menu toggle dropdown and button */
    .menu-toggle-dropdown {
        display: block !important;
    }
    
    .menu-toggle-btn {
        display: flex !important;
    }
    
    /* Make logo smaller on mobile to fit with menu toggle */
    .logo-wrapper {
        height: 40px;
    }
    
    .logo-img {
        max-width: 140px;
    }
    
    /* Force logo and menu toggle to be on same line on mobile with space-between */
    .header-nav .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }
    
    .header-nav .col-md-3 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .header-nav .col-md-9 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .header-nav .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Strategy Section Styles */
.strategy-section {
    padding: 80px 0;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
}

/* Strategy Row - Desktop: align items at start, image column self-aligns center */
.strategy-row {
    align-items: flex-start;
}

/* Desktop: Fix image column to stay centered vertically */
@media (min-width: 992px) {
    .strategy-row .col-lg-5 {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }
    
    .strategy-image-wrapper {
        position: relative;
        max-width: 431px;
        width: 100%;
        height: auto;
        margin: 0;
        flex-shrink: 0;
    }
}

.strategy-image-wrapper {
    position: relative;
    max-width: 431px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.strategy-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
}

.strategy-content {
    max-width: 860px;
    margin-left: auto; /* RTL: margin-left بدلاً من margin-right */
}

.strategy-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 40px;
    line-height: 2.01;
    color: var(--color-text-dark);
    text-align: right;
}

.strategy-description-wrapper {
    position: relative;
    margin-bottom: 0;
}

.strategy-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-dark-light);
    text-align: justify;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, -webkit-line-clamp 0.5s ease;
}

.strategy-description-wrapper.collapsed .strategy-description {
    max-height: 200px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.strategy-description-wrapper.expanded .strategy-description {
    max-height: 2000px;
    display: block;
    -webkit-line-clamp: unset;
}

.text-fade-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 120px;
    background: linear-gradient(to top, #F7F7F7 0%, rgba(247, 247, 247, 0.95) 20%, rgba(247, 247, 247, 0.7) 50%, rgba(247, 247, 247, 0.3) 80%, transparent 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.strategy-description-wrapper.expanded .text-fade-overlay {
    opacity: 0;
    pointer-events: none;
}

.read-more-arrow {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-arrow {
    transform: rotate(180deg);
}

.read-more-wrapper {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .read-more-wrapper {
        justify-content: center;
    }
}

/* Tablet: Center "قراءة المزيد" */
@media (min-width: 768px) and (max-width: 991.98px) {
    .read-more-wrapper {
        justify-content: center;
    }
}

.read-more-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    flex-direction: row-reverse; /* RTL: عكس ترتيب العناصر */
}

.read-more-btn:hover {
    opacity: 0.8;
}

.read-more-icon {
    width: 15px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 2.01;
    color: #232323;
    text-align: justify;
}

.strategy-signature {
    margin-top: 73px;
    max-width: 340px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile signature - under image */
.strategy-signature-mobile {
    display: block;
}

/* Desktop/Tablet signature - under title and text */
.strategy-signature-desktop {
    display: none;
    margin-top: 20px;
    text-align: right;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .strategy-signature-mobile {
        display: block;
    }
    
    .strategy-signature-desktop {
        display: none;
    }
}

@media (min-width: 992px) {
    .strategy-signature-mobile {
        display: none;
    }
    
    .strategy-signature-desktop {
        display: block;
        text-align: right;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .strategy-signature-desktop .signature-title,
    .strategy-signature-desktop .signature-name {
        text-align: right;
    }
}

.signature-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #232323;
    text-align: center;
}

.signature-name {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: var(--color-primary);
    text-align: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .strategy-row {
        align-items: center;
    }
    
    .strategy-content {
        text-align: center;
    }
    
    .strategy-title {
        font-size: 32px;
        text-align: center;
    }
    
    .strategy-description {
        font-size: 16px;
        text-align: center;
    }
    
    .strategy-image-wrapper {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .strategy-row .col-lg-5 {
        display: block;
    }
}

/* Tablet: Image at 50% size */
@media (min-width: 768px) and (max-width: 991.98px) {
    .strategy-image-wrapper {
        max-width: 50%;
        height: auto;
        margin: 0 auto;
    }
    
    .strategy-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .strategy-content {
        text-align: center;
    }
    
    .strategy-title {
        font-size: 28px;
        text-align: center;
    }
    
    .strategy-description {
        font-size: 15px;
        text-align: center;
    }
    
    .strategy-image-wrapper {
        max-width: 70%;
        margin: 0 auto 20px;
    }
    
    .strategy-image {
        width: 100%;
    }
    
    .strategy-signature {
        margin-top: 20px;
    }
    
    .signature-name {
        font-size: 20px;
    }
}

/* Pattern Bar Section (inside strategy-section) */
.strategy-section .pattern-bar-section {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    order: 999;
}

.pattern-bar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .pattern-image {
        height: 26px;
        object-fit: cover;
    }
}

/* About Complete Section - node-id: 48-13 */
.about-complete-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-complete-wrapper {
    position: relative;
    width: 100%;
    min-height: 966px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 80px;
}

.about-center-content {
    text-align: center;
}

.about-card-title,
.about-card-text {
    text-align: center;
}

/* Left Decorative Element - node-id: 48-16 */
.about-left-decorative {
    position: absolute;
    left: 0;
    top: 0;
    width: 232px;
    height: 389px;
    z-index: 1;
    pointer-events: none;
}

.left-decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Center Content: Values, Vision, Mission - node-id: 17-1141 */
.about-center-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 801px;
    margin-right: 0;
    margin-left: 15.5%;
    padding-left: 15px;
}

/* Top Row: Values and Vision - node-id: 17-1142 */
.about-top-row {
    display: flex;
    gap: 21px;
    align-items: center;
    width: 100%;
}

/* About Cards */
.about-card {
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 24px 18px 32px 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex: 1 0 0;
    min-width: 0;
    background: white;
}

.about-card-full {
    width: 100%;
}

.about-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
}

.about-card-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.icon-placeholder {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messages-star-icon {
    height: 54.167px;
}

.about-card-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 2.01;
    color: var(--color-primary);
    text-align: right;
    margin: 0;
    width: 100%;
}

.about-card-text {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 2.01;
    color: var(--color-text-dark-light);
    text-align: justify;
    margin: 0;
    width: 100%;
}

/* Right Content: About Mawaddah - node-id: 17-1127 */
.about-right-content {
    position: relative;
    width: 720px;
    height: 800px;
    /* background: linear-gradient(to bottom, rgba(240, 137, 100, 0) 5.18%, #f08964 44.458%); */
    background: #f08964;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    padding: 0 15.5% 0 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 48px;
    flex-shrink: 0;
    margin-right: 0;
    margin-left: auto;
    transform: scale(1.05);
}

/* Header Group - Title and Logo */
.about-mawaddah-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-end;
    gap: 15px;
    width: 100%;
    max-width: 540px;
}

.about-mawaddah-title {
    font-family: 'Harir', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: normal;
    color: white;
    text-align: right;
    margin: 0;
    white-space: nowrap;
}

.about-mawaddah-logo {
    width: auto;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mawaddah-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Description */
.about-mawaddah-description {
    font-family: var(--font-family-primary);
    font-weight: 300;
    font-size: 28px;
    line-height: 2.01;
    color: white;
    text-align: right;
    margin: 0;
    width: 100%;
    max-width: 540px;
}

/* Button */
.about-mawaddah-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 100px;
    padding: 20px 36px 20px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    flex-direction: row-reverse; /* RTL */
    transform: scale(1.1);
}

.about-mawaddah-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
    padding: 1px;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.about-mawaddah-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.about-mawaddah-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.btn-icon-wrapper {
    width: 9.6px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-mawaddah-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Decorative Element - Right Side - node-id: 48-15 */
.about-mawaddah-decorative {
    position: absolute;
    left: 604px;
    top: 589px;
    width: 120px;
    height: 350px;
    z-index: 1;
    pointer-events: none;
}

.decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive About Complete Section */
@media (max-width: 1400px) {
    .about-complete-wrapper {
        gap: 60px;
    }
    
    .about-center-content {
        width: 600px;
        padding-left: 15px;
    }
    
    .about-right-content {
        width: 600px;
    height: auto;
        min-height: 800px;
    }
    
    .about-left-decorative {
        width: 180px;
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .about-complete-section {
        padding: 60px 0;
    }
    
    .about-complete-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
        min-height: auto;
    }
    
    .about-left-decorative {
        position: relative;
        width: 150px;
        height: 250px;
        margin: 0 auto;
    }
    
    .about-center-content {
        width: 100%;
        margin: 0;
        margin-top: 0;
        padding-left: 15px;
    }
    
    .about-top-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .about-card {
        width: 100%;
    }
    
    .about-right-content {
        width: 100%;
        max-width: 724px;
        height: auto;
        min-height: 800px;
        padding: 60px 40px;
    }
    
    .about-mawaddah-title {
        font-size: 28px;
    }
    
    .about-mawaddah-logo {
        height: 35px;
    }
    
    .about-mawaddah-description {
        font-size: 18px;
    }
    
    .about-mawaddah-decorative {
        left: auto;
        right: 20px;
        top: auto;
        bottom: 20px;
        width: 80px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .about-complete-section {
        padding: 40px 0;
    }
    
    .about-complete-wrapper {
        padding: 0 15px;
        gap: 30px;
    }
    
    .about-left-decorative {
        width: 120px;
        height: 200px;
    }
    
    .about-center-content {
        gap: 20px;
        padding-left: 15px;
    }
    
    .about-card {
        padding: 20px 15px 24px 15px;
    
    }
    
    .about-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .icon-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .about-card-title {
        font-size: 24px;
    }
    
    .about-card-text {
        font-size: 18px;
    }
    
    .about-right-content {
        padding: 40px 30px;
        border-radius: 50px;
        gap: 32px;
        min-height: auto;
    }
    
    .about-mawaddah-header {
        gap: 40px;
    }
    
    .about-mawaddah-title {
        font-size: 24px;
    }
    
    .about-mawaddah-logo {
        height: 30px;
    }
    
    .about-mawaddah-description {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .about-mawaddah-btn {
        width: 100%;
        max-width: 251px;
    }
    
    .about-mawaddah-decorative {
        display: none;
    }
}

/* Programs Section - node-id: 17-1164 */
.programs-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    background-color: #F7F7F7;
}

.programs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 85px;
    flex-wrap: wrap;
}

/* View All Button - node-id: 17-1166 */
.programs-view-all-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row-reverse; /* RTL */
    flex-shrink: 0;
}

.programs-view-all-btn:hover {
    background: #e67a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 139, 100, 0.3);
}

.programs-view-all-btn .btn-icon-wrapper {
    width: 8px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.programs-view-all-btn .btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.programs-view-all-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Pattern - node-id: 17-1170 */
.programs-pattern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 1015px;
    height: 30px;
    overflow: hidden;
}

.pattern-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Title with Logo - node-id: 17-1477 */
.programs-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15.12px;
    flex-shrink: 0;
}

.programs-logo {
    width: 122.519px;
    height: 55.44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.programs-title {
    font-family: 'Harir', sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: normal;
    color: var(--color-text-dark);
    text-align: right;
    margin: 0;
    padding: 8px 0 0 0;
}

/* Programs Carousel - node-id: 17-1486 */
.programs-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 43px;
    align-items: center;
    width: 100%;
}

/* Programs Swiper Container */
.programs-swiper {
    width: 100%;
    position: relative;
}

.programs-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.programs-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Program Card for Swiper */
.program-card {
    height: 568px;
    position: relative;
    border-radius: 21.05px;
    overflow: hidden;
    transition: transform 0.3s ease;
    user-select: none;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
}

.program-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.program-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.program-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(25, 25, 25, 0) 47.331%, #191919 100%);
    z-index: 1;
}

.program-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    padding: 20px 16px 28px 12.028px;
    gap: 0px;
}

.program-card-header {
    display: flex;
    gap: 0;
    align-items: center;
    gap: 12px;
}

.program-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-card-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: white;
    text-align: right;
    margin: 0;
    flex: 1;
}

.program-card-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 32px;
    color: white;
    text-align: right;
    margin: 0;
    width: 100%;
    max-width: 433px;
}

/* Swiper Pagination Dots - node-id: 17-1509 */
.programs-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 272px;
    height: 44px;
    position: relative;
    margin-top: 43px;
    z-index: 1000;
    position: relative!important;
}

/* Swiper Pagination Bullet Styling */
.programs-carousel-dots .programs-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: rgba(41, 41, 41, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    margin: 0 4px;
    opacity: 1;
}

.programs-carousel-dots .programs-dot:hover {
    background: rgba(41, 41, 41, 0.4);
}

.programs-carousel-dots .programs-dot-active {
    background: var(--color-primary);
    width: 18px;
    height: 18px;
}

/* Responsive Programs Section - Remove conflicting styles for Owl Carousel */

@media (max-width: 991.98px) {
    .programs-section {
        padding: 60px 0;
    }
    
    .programs-header {
        margin-bottom: 60px;
        gap: 15px;
    }
    
    .programs-pattern {
        order: 3;
    width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }
    
    .programs-title-wrapper {
        order: 2;
    }
    
    .programs-view-all-btn {
        order: 1;
    }
    
    .programs-title {
        font-size: 45px;
    }
    
    .programs-logo {
        width: 100px;
        height: 45px;
    }
    
    /* Owl Carousel handles responsive display automatically */
    
    .program-card-title {
        font-size: 28px;
    }
    
    .program-card-description {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 767.98px) {
    .programs-section {
        padding: 40px 0;
    }
    
    .programs-header {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 20px;
    }
    
    /* Hide pattern on mobile */
    .programs-pattern {
        display: none !important;
    }
    
    /* Hide original button on mobile */
    .programs-view-all-btn:not(.programs-view-all-btn-mobile) {
        display: none !important;
    }
    
    .programs-title-wrapper {
        order: 1;
        flex-direction: row;
        gap: 10px;
    }
    
    .programs-title {
        font-size: 40px;
        padding: 0;
        padding-top: 9px;
    }

    .programs-logo {
        width: 80px;
        height: 36px;
    }
    
    /* Mobile button after carousel */
    .programs-view-all-btn-mobile {
        display: flex !important;
        width: 100%;
        max-width: 250px;
        margin: 30px auto 0;
    }
    
    /* Owl Carousel handles responsive display automatically */
    
    .program-card {
        height: 450px;
    }
    
    .program-card-content {
        padding: 15px 12px 20px 10px;
        gap: 12px;
    }
    
    .program-card-title {
        font-size: 24px;
    }
    
    .program-card-description {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }
    
    .program-icon {
        width: 28px;
        height: 28px;
    }
    
    .programs-carousel-dots {
        width: 200px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
    }
    
    .carousel-dot.active {
        width: 14px;
        height: 14px;
    }
}

/* Hide mobile button on desktop/tablet */
@media (min-width: 768px) {
    .programs-view-all-btn-mobile {
        display: none !important;
    }
}

/* Quick Donation Section - node-id: 17-2038 */
.quick-donation-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.quick-donation-wrapper {
    position: relative;
    width: 100%;
    max-width: 1487px;
    height: 565px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 40px 0 0;
}

.quick-donation-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.donation-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.donation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.quick-donation-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
    max-width: 600px;
}

.quick-donation-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 44px;
    line-height: 2.01;
    color: white;
    text-align: right;
    margin: 0;
    width: 100%;
}

.quick-donation-subtitle {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 2.01;
    color: rgba(255, 255, 255, 0.82);
    text-align: justify;
    margin: 0;
}

.quick-donation-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 229px;
    height: 68px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row-reverse; /* RTL */
    flex-shrink: 0;
}

.quick-donation-btn:hover {
    background: #e67a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 139, 100, 0.4);
}

.quick-donation-btn .btn-icon-wrapper {
    width: 11.495px;
    height: 21.554px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.quick-donation-btn .btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quick-donation-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 26.343px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Responsive Quick Donation Section */
@media (max-width: 1400px) {
    .quick-donation-wrapper {
        max-width: 100%;
        padding: 0 30px 0 0;
    }
    
    .quick-donation-content {
        max-width: 500px;
    }
}

@media (max-width: 991.98px) {
    .quick-donation-section {
        padding: 60px 0;
    }
    
    .quick-donation-wrapper {
        height: 500px;
        padding: 0 30px 0 0;
    }
    
    .quick-donation-content {
        gap: 40px;
        max-width: 450px;
    }
    
    .quick-donation-title {
        font-size: 45px;
    }
    
    .quick-donation-subtitle {
        font-size: 26px;
    }
    
    .quick-donation-btn {
        width: 200px;
        height: 60px;
    }
    
    .quick-donation-btn .btn-text {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .quick-donation-section {
        padding: 40px 0;
    }
    
    .quick-donation-wrapper {
        height: 450px;
        padding: 0 20px 0 0;
        border-radius: 30px;
    }
    
    .quick-donation-content {
        gap: 30px;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .quick-donation-title {
        font-size: 36px;
        text-align: center;
    }
    
    .quick-donation-subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .quick-donation-btn {
        width: 180px;
        height: 56px;
    }
    
    .quick-donation-btn .btn-text {
        font-size: 20px;
    }
    
    .quick-donation-btn .btn-icon-wrapper {
        width: 10px;
        height: 18px;
    }
}

/* Memberships Section - node-id: 17-2045 */
.memberships-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.memberships-wrapper {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1487px;
    margin: 0 auto;
}

/* Membership Card */
.membership-card {
    position: relative;
    height: 418px;
    border-radius: 60px;
    overflow: hidden;
    flex: 1;
}



.membership-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.membership-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.membership-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 60px;
}

.membership-overlay-blue {
    background: rgba(100, 165, 240, 0.79);
}

.membership-overlay-orange {
    background: rgba(240, 137, 100, 0.79);
}

.membership-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
}

/* Icon Wrapper */
.membership-icon-wrapper {
    width: 84px;
    height: 84px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.membership-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-placeholder {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon::before {
    content: '👥';
    font-size: 28px;
}

.user-star-icon::before {
    content: '⭐';
    font-size: 28px;
}

/* Text Content */
.membership-text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    width: 100%;
}

.membership-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 2.01;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
}

.membership-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 2.01;
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Button */
.membership-btn {
    background: transparent;
    border: 1px solid white;
    border-radius: 100px;
    padding: 10px 28px 12px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 182px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row-reverse; /* RTL */
    flex-shrink: 0;
}

.membership-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.membership-btn .btn-icon-wrapper {
    width: 11.495px;
    height: 21.554px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-btn .btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.membership-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Responsive Memberships Section */
@media (max-width: 1400px) {
    .memberships-wrapper {
        max-width: 100%;
    }
    
    .membership-card,
    .membership-card-orange {
        width: 50%;
        max-width: 600px;
    }
}

@media (max-width: 991.98px) {
    .memberships-section {
        padding: 60px 0;
    }
    
    .memberships-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .membership-card,
    .membership-card-orange {
        width: 100%;
        max-width: 684px;
        height: 400px;
    }
    
    .membership-card-content {
        gap: 12px;
        padding: 30px;
    }
    
    .membership-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .membership-icon {
        width: 48px;
        height: 48px;
    }
    
    .icon-placeholder {
        width: 48px;
        height: 48px;
    }
    
    .membership-title {
        font-size: 24px;
    }
    
    .membership-description {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .memberships-section {
        padding: 40px 0;
    }
    
    .memberships-wrapper {
        gap: 20px;
    }
    
    .membership-card,
    .membership-card-orange {
        height: 350px;
        border-radius: 40px;
    }
    
    .membership-overlay {
        border-radius: 40px;
    }
    
    .membership-card-content {
        gap: 25px;
        padding: 25px 20px;
    }
    
    .membership-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .membership-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .user-icon::before,
    .user-star-icon::before {
        font-size: 20px;
    }
    
    .membership-text-content {
        gap: 15px;
    }
    
    .membership-title {
        font-size: 22px;
    }
    
    .membership-description {
        font-size: 16px;
    }
    
    .membership-btn {
        width: 160px;
        height: 45px;
        padding: 8px 24px 10px 24px;
    }
    
    .membership-btn .btn-text {
        font-size: 18px;
    }
    
    .membership-btn .btn-icon-wrapper {
        width: 10px;
        height: 18px;
    }
}

/* Statistics Section - node-id: 56-76 */
.statistics-section {
    padding: 80px 0;
        position: relative;
    width: 100%;
    min-height: 965px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.statistics-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.statistics-bg-image {
    width: 107.57%;
    height: 133.54%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: -3.79%;
    top: -33.08%;
    display: block;
}

.statistics-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(240, 137, 100, 0.2) 100%), 
                linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

.statistics-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 72px;
    padding: 0 20px;
}

.statistics-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 44px;
    line-height: 2.01;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
}

.statistics-container {
    backdrop-filter: blur(9.7px);
    -webkit-backdrop-filter: blur(9.7px);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 34px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 40px;
}

.statistics-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.statistics-group-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 44px;
}

.statistics-group-title {
    font-family: var(--font-family-primary);
    font-weight: 500;
        font-size: 32px;
    line-height: 2.01;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
}

.statistics-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 44px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
}

.stat-number {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 40px;
    line-height: 2.01;
    color: white;
    text-align: center;
    width: 100%;
}

.stat-description {
    font-family: var(--font-family-primary);
    font-weight: 300;
    font-size: 18px;
    line-height: 2.01;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Responsive Statistics Section */
@media (max-width: 1400px) {
    .statistics-container {
        height: auto;
        min-height: 606px;
        gap: 120px;
        padding: 30px;
    }
    
    .stat-item {
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .statistics-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .statistics-content {
        gap: 80px;
    }
    
    .statistics-title {
        font-size: 44px;
    }
    
    .statistics-container {
        gap: 100px;
        padding: 30px 20px;
    }
    
    .statistics-group-content {
        gap: 60px;
    }
    
    .statistics-group-title {
        font-size: 32px;
    }
    
    .statistics-row {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .stat-item {
        width: calc(50% - 15px);
        min-width: 280px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-description {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .statistics-section {
        padding: 40px 0;
    }
    
    .statistics-content {
        gap: 60px;
        padding: 0 15px;
    }
    
    .statistics-title {
        font-size: 36px;
    }
    
    .statistics-container {
        border-radius: 24px;
        gap: 60px;
        padding: 30px 15px;
        min-height: auto;
    }
    
    .statistics-group-content {
        gap: 40px;
    }
    
    .statistics-group-title {
        font-size: 28px;
    }
    
    .statistics-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 32px;
        text-align: center;
    }
    
    .stat-description {
        font-size: 16px;
        text-align: center;
    }
}

/* Mobile/Additional Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: block;
}

/* Hide mobile menu on desktop */
@media (min-width: 1200px) {
    .mobile-menu-panel {
        display: none;
    }
}

.mobile-menu-panel.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: rgba(33, 33, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-panel.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.mobile-menu-logo-img {
    max-width: 150px;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu-item {
    display: block;
    padding: 16px 24px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
    text-align: right;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 28px;
    color: white;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    position: relative;
}

.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-dropdown-chevron {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-dropdown-chevron {
    transform: rotate(180deg);
}

.mobile-menu-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu {
    max-height: 200px;
}

.mobile-menu-dropdown-item {
    display: block;
    padding: 12px 24px 12px 40px;
    font-family: var(--font-family-primary);
    font-weight: 400;
        font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
    text-align: right;
}

.mobile-menu-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 44px;
    color: white;
}

/* Responsive Mobile Menu */
@media (max-width: 991.98px) {
    .mobile-menu-content {
        max-width: 350px;
    }
}

@media (max-width: 767.98px) {
    .mobile-menu-content {
        max-width: 100%;
    }
    
    .mobile-menu-item {
        font-size: 18px;
        padding: 18px 24px;
    }
    
    .mobile-menu-dropdown-item {
        font-size: 16px;
        padding: 14px 24px 14px 40px;
    }
}

/* ============================================
   Sponsors Section - node-id: 17-2207
   ============================================ */

.sponsors-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.sponsors-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 44px;
    line-height: 2.01;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 81px;
    width: 100%;
    padding: 0 20px;
}

.sponsors-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 59px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Stagger rows on X-axis */
.sponsors-row-wrapper:nth-child(1) {
    transform: translateX(0);
}

.sponsors-row-wrapper:nth-child(2) {
    transform: translateX(100px);
}

.sponsors-row-wrapper:nth-child(3) {
    transform: translateX(50px);
}

.sponsors-row-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Gradient overlays for fade effect */
.sponsors-row-wrapper::before,
.sponsors-row-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 372px;
    z-index: 10;
    pointer-events: none;
}

.sponsors-row-wrapper::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 5.099%, #ffffff 77.188%);
}

.sponsors-row-wrapper::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 5.099%, #ffffff 77.188%);
    /* transform: rotate(180deg) scaleY(-1); */
}

/* Swiper Container for Sponsors */
.sponsors-row-wrapper .swiper {
    width: 100%;
    overflow: hidden;
}

.sponsors-row-wrapper .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important; /* Constant speed */
}

.sponsors-row-wrapper .swiper-slide {
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force linear transition for constant speed */
.sponsors-row-wrapper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.sponsor-item {
    flex-shrink: 0;
    width: 245px;
    min-width: 245px;
    height: 120px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sponsor-logo-container {
    width: 100%;
    height: 100%;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.sponsor-logo-container:hover {
    transform: scale(1.05);
}

.sponsor-logo {
    width: 160px;
    height: 64px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Glider.js custom styles */
.glider {
    overflow: hidden;
}

.glider-track {
    display: flex;
    align-items: center;
}

/* Infinite Marquee Animation - RTL (Right to Left) */
@keyframes marquee-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(var(--marquee-distance, 0px) * -1));
    }
}

/* Apply animation to track */
.sponsors-track.marquee {
    animation: marquee-rtl linear infinite;
    animation-timing-function: linear;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Pause animation on hover */
.sponsors-row-wrapper:hover .sponsors-track {
    animation-play-state: paused;
}

/* Ensure items don't shrink */
.sponsors-track .sponsor-item {
    flex-shrink: 0;
}

/* Ensure row doesn't break */
.sponsors-row-wrapper {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .sponsors-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .sponsors-carousel-wrapper {
        gap: 40px;
    }
    
    /* Adjust stagger for tablet */
    .sponsors-row-wrapper:nth-child(2) {
        transform: translateX(60px);
    }
    
    .sponsors-row-wrapper:nth-child(3) {
        transform: translateX(30px);
    }
    
    .sponsor-item {
        width: 200px;
        height: 100px;
    }
    
    .sponsors-row-wrapper::before,
    .sponsors-row-wrapper::after {
        width: 200px;
    }
    
    .sponsors-row-wrapper::before {
        left: 0;
    }
    
    .sponsors-row-wrapper::after {
        right: 0;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 60px 0;
    }
    
    .sponsors-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .sponsors-carousel-wrapper {
        gap: 30px;
    }
    
    /* Adjust stagger for mobile */
    .sponsors-row-wrapper:nth-child(2) {
        transform: translateX(40px);
    }
    
    .sponsors-row-wrapper:nth-child(3) {
        transform: translateX(20px);
    }
    
    .sponsor-item {
        width: 180px;
        height: 90px;
    }
    
    .sponsors-row-wrapper::before,
    .sponsors-row-wrapper::after {
        width: 100px;
    }
    
    .sponsors-row-wrapper::before {
        left: 0;
    }
    
    .sponsors-row-wrapper::after {
        right: 0;
    }
}

@media (max-width: 576px) {
    .sponsors-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .sponsor-item {
        width: 150px;
        height: 75px;
    }
    
    .sponsors-row-wrapper::before,
    .sponsors-row-wrapper::after {
        width: 60px;
    }
}


/* footer */

.footer-section{
    margin-top: 150px;
    padding-top: 70px;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    border-top: 1px solid #dbdbdb;
    text-align: center;
}

.footer-section .container {
    text-align: center;
}

.footer-section .row {
    justify-content: center;
}

.footer-section .col-lg-3,
.footer-section .col-lg-2,
.footer-section .col-lg-4,
.footer-section .col-md-6,
.footer-section .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section .row {
    justify-content: center;
}

/* Footer links within each column aligned to right */
.footer-section .col-lg-2 .d-flex.flex-column,
.footer-section .col-lg-4 .d-flex.flex-column {
    /* align-items: flex-end;
    text-align: right; */
}

.footer-section .col-lg-2 ul,
.footer-section .col-lg-4 ul {
    /* align-items: flex-end;
    text-align: right; */
}

.footer-section .d-flex {
    align-items: start;
    justify-content: center;
}

.footer-section .text-end {
    text-align: center !important;
}

.footer-section .align-items-end {
    align-items: center !important;
}

.footer-section .justify-content-end {
    justify-content: center !important;
}
