/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

:root {
    --saqr-q-color: var(--saqr-r-color);
    --secondary-color: #f9c033;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --saqr-s-color: #2c4f48;
    --saqr-a-color: #f3f1e5;
    --saqr-q-color: #689469;
    --saqr-r-color: #505f5a;
}
        
body {
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--saqr-a-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--saqr-q-color);
    color: var(--white-color);
    border: 2px solid var(--saqr-q-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--saqr-q-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--saqr-q-color);
    border: 2px solid var(--saqr-q-color);
}

.btn-outline:hover {
    background-color: var(--saqr-q-color);
    color: var(--white-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--saqr-q-color);
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--saqr-q-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Beautiful Scroll Animation Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Section Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-animate {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--saqr-r-color);
    border-radius: 10px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--saqr-s-color);
}

/* Floating Navigation Dots */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(43, 78, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--saqr-r-color);
    transform: scale(1.3);
}

.dot::after {
    content: attr(data-section);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--saqr-r-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.dot:hover::after {
    opacity: 1;
}
    
/* Section Highlight Effect */
:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% { background-color: rgba(43, 78, 255, 0); }
    20% { background-color: rgba(249, 192, 51, 0.15); }
    100% { background-color: rgba(43, 78, 255, 0); }
}

/* Floating Scroll-to-Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--saqr-r-color), var(--saqr-s-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: 0 5px 25px rgba(43, 78, 255, 0.3);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 35px rgba(43, 78, 255, 0.4);
}

/* Parallax Scrolling Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-jelleke.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns, .programs-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 14px;
    color: var(--saqr-r-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.about-heading span {
    color: var(--saqr-r-color);
}

.about-text {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(43, 78, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--saqr-r-color);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--saqr-r-color);
    color: white;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.feature-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-img, .about-content {
        flex: none;
        width: 100%;
    }
    
    .about-img {
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 28px;
    }
    
    .about-title {
        font-size: 12px;
    }
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    padding-top: 10px;
}

.programs-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn, .filter-btn2, .filter-btn3 {
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active, .filter-btn2:hover, .filter-btn2.active, .filter-btn3:hover, .filter-btn3.active {
    background-color: var(--saqr-q-color);
    color: var(--white-color);
    border-color: var(--saqr-q-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.programs-grid .program-card, .programs-grid .program-card2, .programs-grid .program-card3 {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover, .program-card2:hover, .program-card3:hover {
    transform: translateY(-10px);
}

.program-img {
    height: 200px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img img, .program-card2:hover .program-img img, .program-card3:hover .program-img img {
    transform: scale(1.1);
}

.program-info {
    padding: 20px;
    text-align: left;
}

.program-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.program-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 14px;
}

.program-instructor {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.instructor-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.program-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--saqr-q-color);
}

.program-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
    text-decoration: line-through;
    margin-left: 5px;
}

/* Blogs Section */
.blogs-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.blogs-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-slide {
    text-align: center;
    padding: 0 20px;
    display: none;
}

.blog-slide.active {
    display: block;
}

.blog-content {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.blog-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: 14px;
}

.blog-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blog-dot.active {
    background-color: var(--saqr-q-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--saqr-q-color), var(--saqr-s-color));
    color: var(--white-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}
.mt-3 {
    margin-top: 3rem;
}
/* CTA styles */
.cta-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    flex: 1;
    margin-bottom: 20px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-form textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-form label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cta-form input:focus,
.cta-form textarea:focus,
.cta-form input:valid,
.cta-form textarea:valid {
    border-color: var(--secondary-color);
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.cta-form input:focus + label,
.cta-form textarea:focus + label,
.cta-form input:valid + label,
.cta-form textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: var(--saqr-r-color);
    padding: 0 5px;
    color: white;
    border-radius: 3px;
}

.cta-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-form button[type="submit"]:hover {
    background-color: white;
    color: var(--saqr-r-color);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

    /* Timeline Styles */
    .timeline-section {
        padding: 100px 0;
        background-color: #f8f9fa;
    }
    
    .modern-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 0;
    }
    
    .modern-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom, 
            rgba(43, 78, 255, 0.2), 
            var(--saqr-r-color), 
            var(--saqr-r-color), 
            rgba(43, 78, 255, 0.2));
    }
    
    .timeline-event {
        position: relative;
        width: 100%;
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
    }
    
    .timeline-event:last-child {
        margin-bottom: 0;
    }
    
    .event-date {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--saqr-r-color);
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(43, 78, 255, 0.3);
        z-index: 2;
    }
    
    .event-card {
        width: calc(50% - 60px);
        padding: 25px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: all 0.4s ease;
        display: flex;
        align-items: flex-start;
    }
    
    .timeline-event:nth-child(odd) .event-card {
        margin-right: auto;
        text-align: right;
        flex-direction: row-reverse;
        padding-right: 80px;
    }
    
    .timeline-event:nth-child(even) .event-card {
        margin-left: auto;
        padding-left: 80px;
    }
    
    .event-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--saqr-r-color), var(--saqr-s-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(43, 78, 255, 0.3);
    }
    
    .timeline-event:nth-child(odd) .event-icon {
        margin-left: 30px;
    }
    
    .timeline-event:nth-child(even) .event-icon {
        margin-right: 30px;
    }
    
    .event-content {
        flex: 1;
    }
    
    .event-content h3 {
        margin: 0 0 10px 0;
        color: #1a1a1a;
        font-size: 20px;
    }
    
    .event-location {
        display: flex;
        align-items: center;
        color: #6c757d;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .timeline-event:nth-child(odd) .event-location {
        justify-content: flex-end;
    }
    
    .event-location i {
        margin: 0 8px;
        color: #f9c033;
    }
    
    .event-content p {
        color: #6c757d;
        line-height: 1.6;
        margin: 0;
        font-size: 14px;
    }
    
    /* Hover Effects */
    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .event-card:hover .event-icon {
        background: linear-gradient(135deg, #f9c033, #e8a700);
    }
    
    /* Connector Dots */
    .timeline-event::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        background-color: white;
        border: 4px solid var(--saqr-r-color);
        border-radius: 50%;
        z-index: 1;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .event-card {
            width: calc(60% - 60px);
        }
    }
    
    @media (max-width: 768px) {
        .modern-timeline::before {
            left: 40px;
        }
        
        .event-date {
            left: 40px;
            transform: none;
        }
        
        .event-card {
            width: calc(100% - 100px);
            margin-left: 100px !important;
            padding-left: 30px !important;
            padding-right: 30px !important;
            flex-direction: row !important;
            text-align: left !important;
        }
        
        .event-icon {
            margin-right: 20px !important;
            margin-left: 0 !important;
        }
        
        .event-location {
            justify-content: flex-start !important;
        }
        
        .timeline-event::after {
            left: 40px;
        }
    }

    /* Partners Section Styles */
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .partner-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border: 1px solid #eee;
    }
    
    .partner-card img {
        max-width: 80%;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .partner-card:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    .partner-overlay {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        padding: 15px;
        background: var(--saqr-r-color);
        color: white;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .partner-card:hover .partner-overlay {
        bottom: 0;
    }
    
    .partner-overlay h3 {
        margin: 0 0 5px 0;
        font-size: 16px;
    }
    
    .partner-overlay p {
        margin: 0;
        font-size: 12px;
        opacity: 0.8;
    }
    
    @media (max-width: 768px) {
        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .partner-card {
            height: 100px;
        }
    }
    
    @media (max-width: 480px) {
        .partners-grid {
            grid-template-columns: 1fr;
        }
    }
    
.vertical-slider {
    height: 100vh;
    width: 100%;
    position: relative;
}

.swiper.myVerticalSwiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.5rem;
}

/* التخصيص لأزرار السلايدر */
.swiper-button-next, 
.swiper-button-prev {
    color: white !important;
    display: none;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    opacity: 1 !important;
}

.slide-content h2 {
    transition: all 0.5s ease;
    transform: translateY(50px);
    opacity: 0;
}

.swiper-slide-active .slide-content h2 {
    transform: translateY(0);
    opacity: 1;
}

.swiper.myVerticalSwiper {
    cursor: grab; /* إشارة أن السلايدر قابل للسحب */
}

.swiper.myVerticalSwiper:active {
    cursor: grabbing;
}

.swiper-slide {
    transition: transform 0.8s ease-out;
}

.timeline-event {
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(-50px);
}

.timeline-event:nth-child(even) {
    transform: translateX(50px);
}

.timeline-event.animate__fadeInRight {
    opacity: 1;
    transform: translateX(0);
}
    
/* Isolated CSS for Programs Section Only */
#programs {
    /*background: linear-gradient(135deg, #f6f9fc 0%, #eef2f5 100%);*/
    padding: 80px 0;
}
#programs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#programs .section-title {
    text-align: center;
    margin-bottom: 50px;
}

#programs .section-title h1 {
    color: #000;
}

#programs .programs-swiper-container {
    padding: 30px;
}

#programs .program-card {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
    width: 100%;
}

        .program-card img {
          width: 100%;
          height: auto;
          border-radius: 8px;
          margin-bottom: 15px;
        }
        .myProgramsSlider .swiper-slide::before {
            background: none;
        }

#programs .program-text {
    padding: 30px 30px 15px;
    text-align: center;
}

#programs .program-text h3 {
    color: #2b4eff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#programs .program-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

#programs .program-image {
    height: 350px;
    margin: 0 auto 20px;
    width: 90%;
    border-radius: 8px;
    overflow: hidden;
}

#programs .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#programs .program-card:hover .program-image img {
    transform: scale(1.03);
}

#programs .program-btn {
    display: inline-block;
    background: #f9c033;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 10px;
}

#programs .program-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 192, 51, 0.4);
}

/* Swiper Styles */
#programs .swiper-pagination-bullet {
    background: #2b4eff;
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

#programs .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f9c033;
}

#programs .swiper-button-next,
#programs .swiper-button-prev {
    color: #2b4eff;
    background: rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(43, 78, 255, 0.1);
}

#programs .swiper-button-next::after,
#programs .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    #programs .program-image {
        height: 250px;
    }
    
    #programs .swiper-button-next,
    #programs .swiper-button-prev {
        display: none;
    }
}