:root {
    --primary-green: #1e5631;  /* Dark green as base */
    --primary-orange: #ff7b25; /* Vibrant orange for accents */
    --green-light: #2d7d46;
    --green-dark: #164523;
    --orange-light: #ff9d5c;
    --orange-dark: #e06a10;
    --background-light: #f8faf7;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --gray-light: #e2e8f0;

    --gradient-green: linear-gradient(135deg, var(--primary-green), var(--green-light));
    --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    --gradient-green-orange: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-orange) 100%);
    --gradient-background: linear-gradient(135deg, var(--background-light), rgba(248, 250, 247, 0.9));

    --shadow-light: 0 4px 20px rgba(30, 86, 49, 0.1);
    --shadow-medium: 0 8px 30px rgba(30, 86, 49, 0.15);
    --shadow-heavy: 0 15px 50px rgba(30, 86, 49, 0.2);
    --shadow-orange-glow: 0 0 20px rgba(255, 123, 37, 0.4);

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 20px 20px;
    overflow-x: hidden;
    direction: rtl;
    font-size: 16px;
    text-align: right;
}

h1, h2, h3, h4 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.ksu-logo {
    height: 35px;
}

.ea-logo {
    height: 45px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 86, 49, 0.1);
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(248, 248, 248, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

a {
    color: var(--primary-green);
    text-decoration: underline;
}

a:hover {
    color: var(--green-light);
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.logo-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-text {
    font-weight: 700;
    font-size: 1rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-green);
    border-radius: 2px;
    transform: rotate(45deg) translateY(-50%);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-fast);
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-get-started {
    background-color: var(--gray-light);
    color: var(--text-dark);
    border: 1px solid var(--gray-light);
}

.btn-get-started:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.3), 0 0 15px rgba(255, 123, 37, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

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

.btn-outline:hover {
    background: var(--gradient-green);
    color: var(--white);
}

/* Add orange accent to buttons on hover */
.btn:hover {
    position: relative;
    overflow: hidden;
}

.btn:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 123, 37, 0.1);
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(248, 248, 248, 0.9) 0%,
        rgba(248, 248, 248, 0.7) 50%,
        rgba(248, 248, 248, 0.9) 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-3d {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 30%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

.glow-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-green);
    top: 25%;
    right: 15%;
    animation-delay: 0s;
}

.glow-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-green);
    top: 55%;
    right: 25%;
    animation-delay: 1s;
}

.glow-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-green);
    top: 35%;
    right: 8%;
    animation-delay: 2s;
}

.hero-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50);
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition-fast);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-green);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card:hover {
    box-shadow: 0 8px 20px rgba(255, 123, 37, 0.2);
}

.card-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about-preview {
    padding: 100px 0;
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.about-visual {
    display: grid;
    gap: 24px;
}

.visual-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-bottom: 3px solid var(--primary-orange);
}

.visual-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.visual-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.visual-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 100px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;

}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.news-image i {
    font-size: 3rem;
    color: var(--white);
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.news-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.news-link:hover {
    gap: 12px;
    color: var(--primary-orange);
}

/* Services Section */
.services-preview {
    padding: 100px 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-green);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta .btn-primary:hover {
    box-shadow: var(--shadow-orange-glow);
}

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition-fast);
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
    padding: 10px 0;
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    color: var(--primary-green);
    background: rgba(30, 86, 49, 0.05);
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition-fast);
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        min-width: 100px;
        padding: 15px;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .floating-card {
        min-width: 80px;
        padding: 10px;
        font-size: 0.9rem;
    }

    .floating-card i {
        font-size: 1.2rem;
    }
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: transparent;
    }

    .dropdown-item {
        padding: 12px 0 12px 20px;
    }

    /* Show dropdown when parent has active class */
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

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

/* Sub Navigation Styles */
.sub-navbar {
    position: sticky;
    top: 70px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    z-index: 999;
    padding: 0;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sub-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.sub-nav-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.sub-nav-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
}

.sub-nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.sub-nav-link:hover {
    color: var(--primary-green);
    background: rgba(30, 86, 49, 0.05);
}

.sub-nav-link.active {
    color: var(--white);
    background: var(--gradient-green);
    box-shadow: var(--shadow-light);
}

/* Adjust main content when sub-nav is present */
.has-sub-nav .main-content {
    padding-top: 50px;
}

/* Responsive Design for Sub Navbar */
@media (max-width: 768px) {
    .sub-navbar {
        top: 70px;
    }

    .sub-nav-menu {
        justify-content: flex-start;
        gap: 5px;
        padding: 10px 0;
    }

    .sub-nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}
.gallery-slider {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.gallery-slider .container {
    position: relative;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(30, 86, 49, 0.9) 0%,
        rgba(30, 86, 49, 0.7) 50%,
        rgba(30, 86, 49, 0.4) 75%,
        transparent 100%);
    color: var(--white);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.slide-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.slider-nav:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-orange-glow);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav.prev {
    right: 20px;
}

.slider-nav.next {
    left: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 123, 37, 0.5);
}

.no-images {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1.2rem;
    background: var(--background-light);
    border-radius: 15px;
    border: 2px dashed var(--gray-light);
}

.no-images p {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-wrapper {
        height: 400px;
    }

    .slide-caption {
        padding: 25px;
    }

    .slide-caption h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        padding: 80px 0;
    }

    .slider-wrapper {
        height: 350px;
    }

    .slide-caption {
        padding: 20px;
    }

    .slide-caption h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .slide-caption p {
        font-size: 1rem;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .slider-nav.prev {
        right: 15px;
    }

    .slider-nav.next {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        padding: 60px 0;
    }

    .slider-wrapper {
        height: 300px;
    }

    .slide-caption {
        padding: 15px;
    }

    .slide-caption h3 {
        font-size: 1.2rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}