/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img img {
    max-height: 60px;
    width: auto;
}

.logo-text h1 {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 5px;
}

.logo-text p {
    color: #666;
    font-size: 14px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 25px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 15px; /* Increased from 5px 0 to 8px 15px */
    position: relative;
}

nav ul li a:hover {
    color: #D4AF37;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    padding: 200px 0 150px;
    margin-top: 80px;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Button Style */
.btn {
    display: inline-block;
    background-color: #D4AF37;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: #D4AF37;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

/* Statistics Section - ADDED THIS */
.stats {
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item i {
    font-size: 50px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Us Section Styles */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* REMOVED conflicting .section-header .section-subtitle - Using the general one above */

/* Main About Content */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text h3 .highlight {
    color: #D4AF37;
    font-weight: 700;
}

.about-text > p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Achievements */
.about-achievements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-right: 4px solid transparent;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-right-color: #D4AF37;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 24px;
    color: white;
}

.achievement-content h4 {
    color: #222;
    margin-bottom: 8px;
    font-size: 18px;
}

.achievement-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Main Image */
.about-image-main {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #D4AF37;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Vision & Mission Cards */
.vision-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.vm-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 5px solid transparent;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.vision-card {
    border-top-color: #4CAF50;
}

.mission-card {
    border-top-color: #2196F3;
}

.values-card {
    border-top-color: #D4AF37;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--card-color, #D4AF37) 0%, var(--card-dark, #b8941f) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vm-icon i {
    font-size: 36px;
    color: white;
}

.vm-card h4 {
    color: #222;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.vm-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.vision-card .vm-icon {
    --card-color: #4CAF50;
    --card-dark: #388E3C;
}

.mission-card .vm-icon {
    --card-color: #2196F3;
    --card-dark: #1976D2;
}

.values-card .vm-icon {
    --card-color: #D4AF37;
    --card-dark: #b8941f;
}

.vision-points,
.mission-points {
    list-style: none;
    text-align: right;
    margin-top: 20px;
}

.vision-points li,
.mission-points li {
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vision-points li i,
.mission-points li i {
    color: #4CAF50;
    margin-top: 2px;
    flex-shrink: 0;
}

.mission-points li i {
    color: #2196F3;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.value-item:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-3px);
}

.value-item:hover i,
.value-item:hover span {
    color: white;
}

.value-item i {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.value-item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

/* Approach Section */
.our-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.approach-content h3 {
    color: #222;
    font-size: 28px;
    margin-bottom: 20px;
}

.approach-content > p {
    color: #666;
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.approach-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #222;
    margin-bottom: 8px;
    font-size: 18px;
}

.step-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.approach-image .image-frame {
    height: 100%;
    min-height: 400px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Promise Section */
.our-promise {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    color: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.our-promise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.our-promise::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.promise-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.our-promise h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.promise-text {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
    color: rgba(255,255,255,0.95);
}

.promise-signature {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    display: inline-block;
}

.promise-signature p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}


/* Activities Section */
.activities {
    padding: 100px 0;
    background-color: #fff;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.activity-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.activity-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 25px;
}

.activity-icon {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.activity-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    background: url('../img/contact-bg.jpg') center/cover no-repeat;
    color: #fff;
}

.contact-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title,
.contact .section-subtitle {
    color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #D4AF37;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: #D4AF37;
    margin-left: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item p {
    color: #ddd;
    font-size: 16px;
}

.contact-social {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    color: #333;
}

.contact-form h3 {
    color: #222;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: right;
}

.footer-logo-img img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #D4AF37;
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #fff;
}

.newsletter-form button {
    background: #D4AF37;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #b8941f;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 14px;
}

/* Consolidated Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .about-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .our-approach {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    
    .vision-mission-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero-content h2 {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .our-promise {
        padding: 40px 20px;
    }
    
    .promise-text {
        font-size: 18px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .achievement-content {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-main,
    .our-approach {
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-text {
        font-size: 16px;
    }
    
    .our-approach {
        padding: 20px;
    }
    
    .step {
        gap: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}