@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');



:root {
    --primary: gold;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --error: #e74c3c;
    --success: #2ecc71;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gradient:linear-gradient(135deg, #323232, #2a2926b9);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.m{
    color: #e74c3c;
    background: rgb(16, 13, 13);
}

.m::marker{
    background-color: gold;
    color: green;
}

body {
    background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed  no-repeat ;
background-position: center;
background-size: cover;
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */



/* section_header */
.section_header {
    background: var(--gradient);
    color: white;
    padding: 150px 0 120px;
    clip-path: ellipse(100% 100% at 50% 0%);
    position: relative;
    overflow: hidden;

}

.section_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInDown 1s ease;
    color: gold;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
    border: 2px solid white;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease;
}

.btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}


/* About Section */
.about-section {
    padding: 60px 0;
}

.about-card {
    background: rgba(22, 22, 22, 0.433);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

.about-content {
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgb(198, 198, 198);
}

/* Features Section */
.features-section {
    padding: 40px 0;
    background: rgba(14, 14, 14, 0.732);
    backdrop-filter: BLUR(10PX);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(46, 45, 45, 0.327);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
color: white;
border: 2PX solid gold;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: gold;
}



















/* Team Section */
.team-section {
    margin: 40px 0;
    padding: 60px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(35, 35, 35, 0.481);

}

.team-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    border-bottom: 3px solid gold;

    background: rgba(62, 62, 62, 0.792);
    backdrop-filter: BLUR(5PX);
    border-radius: 10px;
    width: 300px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.member-position {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.mp{
    color: white;
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-card {
    background: rgba(23, 23, 23, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);

    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: white;
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.cta-btn:hover {
    background: rgba(28, 28, 28, 0.77);
}


/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .about-card, .cta-card {
        padding: 30px 20px;
    }
    
    .features-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}



















































  .foundeyr-section {
    display: flex;
    padding: 20px 15px; /* تقليل الحشوة للهواتف */
    align-items: stretch; /* تغيير لتمديد العناصر */
    flex-direction: column; /* عمودي للهواتف */
}

.founder-container {
    display: flex;
    flex-direction: column; /* عمودي للهواتف */
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* تقليل الفجوة للهواتف */
    background: rgb(19, 19, 19);
    padding: 25px 20px; /* حشوة أقل للهواتف */
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.founder-image {
    width: 100%;
    position: relative;
    max-width: 100%; /* تأكيد عدم تجاوز العرض */
    order: 2; /* تغيير الترتيب للهواتف */
}

.founder-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: block;
}

.founder-image:hover .founder-img {
    transform: translateY(-5px); /* حركة أخف للهواتف */
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.image-frame {
    position: absolute;
    top: -15px; /* إطار أصغر للهواتف */
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #1e40af; /* سمك أقل للهواتف */
    border-radius: 12px;
    z-index: -1;
    transition: var(--transition);
}

.founder-image:hover .image-frame {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
}

.founder-content {
    width: 100%;
    padding: 0; /* إزالة الحشوة الداخلية */
    order: 1; /* المحتوى أولاً للهواتف */
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #e6b30b;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.founder-name {
    font-size: 1.8rem; /* حجم أصغر للهواتف */
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.founder-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 3px;
    background: #e6b30b;
}

.founder-role {
    font-size: 1rem; /* حجم أصغر للهواتف */
    color: #e6b30b;
    margin-bottom: 20px;
}

.founder-description {
    margin-bottom: 25px;
    line-height: 1.6; /* تباعد أقل للهواتف */
    font-size: 1rem; /* حجم مناسب للهواتف */
}

.founder-quote {
    background: var(--mid-gray);
    padding: 20px 15px;
    border-radius: 8px;
    border-right: 3px solid #e6b30b;
    margin: 25px 0;
    position: relative;
}

.founder-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px; /* مكان أفضل للهواتف */
    right: 15px;
    background: #e6b30b;
    color: black;
    width: 30px; /* حجم أصغر للهواتف */
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.quote-text {
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.founder-stats {
    display: grid; /* استخدام grid للهواتف */
    grid-template-columns: repeat(2, 1fr); /* عمودين للهواتف */
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.statm {
    font-size: 1.8rem; /* حجم أصغر للهواتف */
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Media Queries للتجاوب */

/* للأجهزة اللوحية (أكثر من 768px) */
@media (min-width: 768px) {
    .foundeyr-section {
        padding: 30px 20px;
    }
    
    .founder-container {
        flex-direction: row; /* صف للأجهزة اللوحية */
        gap: 40px;
        padding: 30px;
    }
    
    .founder-image {
        max-width: 400px;
        order: 1; /* الصورة أولاً */
    }
    
    .founder-content {
        padding: 20px;
        order: 2; /* المحتوى ثانياً */
    }
    
    .founder-name {
        font-size: 2.2rem;
    }
    
    .founder-role {
        font-size: 1.1rem;
    }
    
    .founder-stats {
        display: flex; /* العودة للعرض الأفقي */
        gap: 30px;
    }
    
    .statm {
        font-size: 2.2rem;
    }
}

/* للكمبيوترات (أكثر من 1024px) */
@media (min-width: 1024px) {
    .foundeyr-section {
        padding: 40px 0;
    }
    
    .founder-container {
        gap: 60px;
        padding: 40px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .founder-name {
        font-size: 2.5rem;
    }
    
    .statm {
        font-size: 2.5rem;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 375px) {
    .founder-stats {
        grid-template-columns: 1fr; /* عمود واحد للشاشات الصغيرة جداً */
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .founder-name {
        font-size: 1.6rem;
    }
    
    .statm {
        font-size: 1.5rem;
    }
}

/* إصلاح الخطأ الإملائي في اسم الفئة */
/* إذا كان اسم الفئة خطأ في HTML، يمكنك إضافة النسخة الصحيحة */
.founder-section {
    display: flex;
    padding: 20px 15px;
    align-items: stretch;
    flex-direction: column;
}

/* دعم للأجهزة التي لا تحب الحركة */
@media (prefers-reduced-motion: reduce) {
    .founder-img,
    .image-frame {
        transition: none;
    }
    
    .founder-image:hover .founder-img {
        transform: none;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    }
}

/* دعم للوضع الأفقي في الهواتف */
@media (max-height: 500px) and (orientation: landscape) {
    .founder-container {
        flex-direction: row;
        gap: 25px;
        padding: 20px;
    }
    
    .founder-image {
        max-width: 40%;
    }
    
    .founder-content {
        max-width: 60%;
    }
}