:root {
    --primary-color: #4A90E2;
    --secondary-color: #64B5F6;
    --text-color: #2C3E50;
    --background-color: #F5F9FF;
    --accent-color: #2196F3;
    --light-blue: #E3F2FD;
    --medium-blue: #90CAF9;
    --dark-blue: #1976D2;
    --gradient-start: #4A90E2;
    --gradient-end: #1976D2;
    --highlight-color: #FF9800;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Naskh Arabic', serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.nav-links a.active {
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.nav-links a.active:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.hero-section {
    min-height: 90vh;
    position: relative;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    padding: 120px 20px 40px;
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern-bg.png');
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

/* Animasyonlu arka plan elementleri */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(144, 202, 249, 0.4) 0%, transparent 25%),
                radial-gradient(circle at 80% 30%, rgba(144, 202, 249, 0.3) 0%, transparent 20%);
    z-index: 1;
    animation: pulseBackground 15s ease-in-out infinite alternate;
}

@keyframes pulseBackground {
    0% {
        opacity: 0.5;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.7;
        background-position: 100% 100%;
    }
    100% {
        opacity: 0.5;
        background-position: 0% 0%;
    }
}

/* Hareketli geometrik şekiller */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatShape 20s linear infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 15%;
    left: 20%;
    animation-duration: 22s;
    animation-delay: 5s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 10%;
    animation-duration: 28s;
    animation-delay: 7s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation-duration: 35s;
    animation-delay: 10s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) translateX(100px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.3;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    color: var(--light-blue);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(144, 202, 249, 0.4);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: var(--accent-color);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

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

.primary-btn:hover {
    transform: translateY(-3px);
    background-color: var(--dark-blue);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    animation: floatUp 1s ease-out;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--medium-blue);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.hero-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-image:hover .main-image {
    transform: translateY(-10px);
}

.hero-image:hover::before {
    top: 30px;
    right: -30px;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--highlight-color);
}

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

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.star-1 {
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    top: 20%;
    right: -5%;
    animation: float 7s ease-in-out infinite;
}

.triangle-1 {
    bottom: 15%;
    left: -8%;
    animation: float 5s ease-in-out infinite;
}

.star-2 {
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    top: 60%;
    left: 10%;
    animation: float 9s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.stat-icon i {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

.stat-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
}

.stat-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down a:hover {
    opacity: 1;
}

.scroll-down i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-overlay.svg');
    opacity: 0.05;
    z-index: 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--light-blue);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.2);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.feature-card:nth-child(6) {
    transition-delay: 0.6s;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    background: var(--light-blue);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card:hover .feature-icon i {
    color: white;
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--medium-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 80px;
}

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

.feature-list {
    list-style: none;
    text-align: right;
    margin-bottom: 1.5rem;
    margin-top: auto;
    padding-right: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-right: 25px;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-list li:hover {
    transform: translateX(-5px);
    color: var(--primary-color);
}

.feature-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.feature-link i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--dark-blue);
}

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

.about-section {
    padding: 8rem 4rem;
    background-color: white;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 90%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-experience {
    display: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.about-experience .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience .text {
    font-size: 1rem;
    font-weight: 500;
}

.about-content {
    text-align: right;
    padding: 2rem;
    width: 100%;
}

.text-right {
    text-align: right;
}

.about-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    padding-right: 20px;
}

.about-description::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.5;
}

.about-mission, .about-vision {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-mission:hover, .about-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    flex-shrink: 0;
}

.mission-icon i, .vision-icon i {
    color: white;
    font-size: 1.5rem;
}

.mission-content, .vision-content {
    flex: 1;
}

.mission-content h3, .vision-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.about-values {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.about-values h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-item {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.value-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.value-item span {
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.value-item:hover i, .value-item:hover span {
    color: white;
}

.value-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-item:nth-child(1) {
    transition-delay: 0.1s;
}

.value-item:nth-child(2) {
    transition-delay: 0.2s;
}

.value-item:nth-child(3) {
    transition-delay: 0.3s;
}

.value-item:nth-child(4) {
    transition-delay: 0.4s;
}

.value-item:nth-child(5) {
    transition-delay: 0.5s;
}

.value-item:nth-child(6) {
    transition-delay: 0.6s;
}

.value-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.value-item:hover::after {
    width: 100%;
}

.about-cta {
    margin-top: 2rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.about-cta:hover::before {
    transform: translateX(0);
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 4rem;
    }
    
    .about-image {
        margin: 0 auto 2rem;
        max-width: 80%;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        width: 100%;
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-experience {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .about-experience .years {
        font-size: 2rem;
    }
    
    .about-experience .text {
        font-size: 0.9rem;
    }
}

.programs-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-blue) 100%);
}

.programs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.program-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--medium-blue);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.program-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.program-card:nth-child(1), .program-card:nth-child(2), .program-card:nth-child(3), .program-card:nth-child(4) {
    transition-delay: 0.1s;
}

.program-image {
    height: 200px;
    overflow: hidden;
}

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

.program-content {
    padding: 2rem;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-content ul {
    list-style-type: none;
    margin-top: 1rem;
}

.program-content ul li {
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
}

.program-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

.gallery-section {
    padding: 5rem 2rem;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4) {
    transition-delay: 0.1s;
}

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

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

.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--background-color) 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--medium-blue);
    border-radius: 2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.contact-form {
    padding: 2.5rem;
    background: white;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--background-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.form-group textarea {
    height: 180px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(25, 118, 210, 0.2);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(25, 118, 210, 0.3);
}

.contact-map {
    height: 100%;
    min-height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 250px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d47a1 100%);
    color: white;
    padding: 5rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48Y2lyY2xlIGN4PSIyNSIgY3k9IjI1IiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+PC9zdmc+');
    opacity: 0.3;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    padding: 0 1rem;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 50px;
    background: var(--accent-color);
    opacity: 0.3;
    border-radius: 3px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(-8px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-right: 25px;
}

.footer-section ul li a:hover::before {
    right: 0;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px);
}

.social-links a:hover::before {
    transform: scale(1);
}

.footer-section i {
    margin-left: 0.8rem;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 3rem;
}

.copyright-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.developer-box {
    margin: 0;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    animation: pulse-light 3s infinite;
}

.developer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: translate(-30%, -30%) rotate(0deg);
    }
    25% {
        opacity: 0.3;
    }
    50% {
        opacity: 0;
        transform: translate(30%, 30%) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translate(-30%, -30%) rotate(360deg);
    }
}

.developer-credit {
    margin-top: 0.8rem;
    font-size: 0.85rem;
}

.developer-credit a {
    color: #90CAF9;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(144, 202, 249, 0.8);
    background: linear-gradient(90deg, #90CAF9, #BBDEFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    letter-spacing: 0.5px;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #90CAF9, #BBDEFB);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(144, 202, 249, 0.8);
}

.developer-credit a:hover {
    text-shadow: 0 0 15px rgba(144, 202, 249, 1);
}

.developer-credit a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        padding: 0;
    }
    
    .footer-section::before {
        display: none;
    }
    
    .footer-section h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-section ul li:hover {
        transform: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section i {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .footer-bottom p {
        text-align: center;
        margin: 0 0.5rem;
    }
    
    .copyright-container, .developer-box {
        width: 90%;
        padding: 0.8rem 1rem;
    }
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 80px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 2rem;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .program-cards,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--medium-blue);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* تأثيرات إضافية لقسم "ما يميزنا" */
.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    top: -20px;
    left: 20px;
}

.about-mission::before, .about-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.about-mission:hover::before, .about-vision:hover::before {
    width: 10px;
}

.about-mission, .about-vision {
    position: relative;
    overflow: hidden;
}

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

    .hero-description {
        font-size: 1.1rem;
    }

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

    .hero-image {
        max-width: 300px;
    }
}

.about-features {
    margin: 3.5rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
    background: linear-gradient(to left, var(--light-blue), white);
}

.about-feature .feature-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-feature .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
}

.about-feature:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--dark-blue);
}

.about-feature .feature-icon i {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.about-feature .feature-content {
    flex: 1;
}

.about-feature .feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-feature .feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-feature:hover .feature-content h3::after {
    width: 80px;
}

.about-feature .feature-content p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-feature .feature-icon {
        margin-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .about-feature .feature-content h3::after {
        right: 50%;
        transform: translateX(50%);
    }
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
    }
}






