* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5A6F3A;
    --secondary-color: #A4B96D;
    --text-dark: #2C3E1F;
    --text-light: #6B7A5E;
    --bg-light: #F9FAF7;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(90, 111, 58, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    direction: rtl;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    height: 130px;
    padding-top:0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    margin-top: 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
        direction: ltr;

}

.logo {
    height: 115px;
    width: 115px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
        direction: rtl;
}

/* ..................................whatsapp............................. */ */

/* ............................about us page............................ */

.container {
    
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.header h1 span {
    color: #ffd700;
}

.intro-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    border-radius: 16px;
    /* margin-left: 20%; */
    /* margin-right: 20%; */
}

.intro-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
    font-weight:bold;
    
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    margin-top: 30px;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.card h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card h2 span {
    color: #667eea;
}

.card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .intro-card {
        padding: 20px;
        
    }

    .card {
        padding: 25px;
    }
}


/* .............................end about us page............................ */

/* ....................start vision...................................... */

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 3rem;
    color: #0d5c63;
    font-weight: 700;
}

.header h1 span {
    color: #b4c930;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card:nth-child(1) .icon-wrapper {
    background-color: #b4c930;
}

.value-card:nth-child(2) .icon-wrapper {
    background-color: #0d5c63;
}

.value-card:nth-child(3) .icon-wrapper {
    background-color: #b4c930;
}

.value-card:nth-child(4) .icon-wrapper {
    background-color: #0d5c63;
}

.value-card:nth-child(5) .icon-wrapper {
    background-color: #b4c930;
}

.value-card:nth-child(6) .icon-wrapper {
    background-color: #0d5c63;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.value-card h3 {
    color: #0d5c63;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .value-card {
        padding: 30px 15px;
    }
}


/* ....................end vision...................................... */


.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 111, 58, 0.3);
}

.cta-btn::after {
    display: none;
}

.lang-toggle {
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.lang-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%); */
    padding: 8rem 2rem;
    background-color: #1d6357;
    text-align: center;
    position: relative;
    overflow: hidden;
    top: 0;
    margin-top: 0px;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    opacity: 0.05;
    border-radius: 50%;
    
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    top: 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background:#1d6357;
    color: var(--white);
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(90, 111, 58, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 111, 58, 0.4);
    background: var(--text-dark);
}

/* Why Ajyad Section */
.why-ajyad {
    padding: 6rem 2rem;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color:#bdcb76;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Approach Section */
.approach {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content p {
    font-size: 1.25rem;
    line-height: 2;
    color:#1d6357;
    margin-bottom: 2.5rem;
}

/* CTA Section */
.final-cta {
    padding: 6rem 2rem;
    background:white;
    text-align: center;
    color:#1d6357;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta .hero-btn {
    background: var(--white);
    color: var(--primary-color);
}

.final-cta .hero-btn:hover {
    background: var(--bg-light);
}
/* .........................................call us....................................... */
.fathercall{
    /* background-color:red ; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-container {
    background: white;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    text-align: right;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: right;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background:#1d6357;
    margin-top: 50px;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
    
}
