            .line{
  border-bottom:2px solid goldenrod;
    
}
.white{
  border-bottom:2px solid rgb(255, 255, 255);

}

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');



:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --dark: #e6b30b;
    --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;

}


body {
    color: var(--dark);
    background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed  no-repeat ;
background-position: center;
background-size: cover;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: "Amiri", serif;
    font-weight: 400;
    font-style: italic;
    
}


        
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* /////////////////////////////////////////// */








/* ///////////////////////////////////////////////////// */


/* /////////////////////////////////////////////////////////////////////////// */


/* section_header */
.section_header {
    background: var(--gradient);
    color: white;
    padding: 190px 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;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
}

.btn {
    display: inline-block;
    background: rgb(54, 51, 51);
    color: var(--dark);
    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);
}


/* Features */

.features-section {
    padding: 80px 0;
    position: relative;
    margin-top: -60px;
    
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(50, 49, 49, 0.86);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:linear-gradient(135deg, #2563eb, #10b981);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 10px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #2564ebc6, #10b981c9);
    color: white;
    padding: 80px 0;
    position: relative;
}

.stats-section::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,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    background-position: bottom;
}

.stats-container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 0;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* /////me//////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////// */



        

/* CTA/////////////////////////////////////////////////////////////////////////////////////////// */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-card {
    background: rgba(44, 43, 43, 0.745);
    border-radius: 15px;
    padding: 60px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-card p {
    color: white;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background: var(--gradient);
    color: white;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

/* Advertisements Slider */
.advertisements-section {
    padding: 60px 0 20px;
    background: rgba(255, 255, 255, 0.05);
    margin: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ad-slider {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ad-slide {
    position: relative;
    height: 500px; /* ارتفاع أكبر للشاشات الكبيرة */
    border-radius: 15px;
    overflow: hidden;
}

.ad-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* هذا يضمن ظهور الصورة كاملة دون تشويه */
    transition: transform 0.5s ease;
}

.ad-slide:hover img {
    transform: scale(1.05);
}

.ad-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.ad-content h3 {
    font-size: 1.8rem; /* حجم خط أكبر للشاشات الكبيرة */
    margin-bottom: 10px;
    color: #FFD700;
}

.ad-content p {
    font-size: 1.1rem; /* حجم خط أكبر للشاشات الكبيرة */
    opacity: 0.9;
    margin-bottom: 15px;
}

.ad-button {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 10px 25px; /* زر أكبر */
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.ad-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* تحسينات للشاشات المتوسطة */
@media (max-width: 1024px) {
    .ad-slide {
        height: 400px;
    }
    
    .ad-content h3 {
        font-size: 1.6rem;
    }
    
    .ad-content p {
        font-size: 1rem;
    }
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .advertisements-section {
        margin: 20px;
    }
    
    .ad-slide {
        height: 300px;
    }
    
    .ad-content {
        padding: 20px 15px 15px;
    }
    
    .ad-content h3 {
        font-size: 1.4rem;
    }
    
    .ad-content p {
        font-size: 0.9rem;
    }
    
    .ad-button {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

/* تحسينات للشاشات الصغيرة جدًا */
@media (max-width: 480px) {
    .ad-slide {
        height: 250px;
    }
    
    .ad-content h3 {
        font-size: 1.2rem;
    }
    
    .ad-content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////// */


.testimonials-section {
    padding: 50px 0;
    border: 3px solid goldenrod;
    border-radius: 10px;
    margin: 40px;
    backdrop-filter: blur(10px);
}


.testimonial-card {
    background: rgba(84, 83, 83, 0.732);
    border-radius: 15px;
    padding: 30px;
    min-height: 450px;
    box-shadow: var(--shadow);
    margin: 20px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.student-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid rgba(37, 99, 235, 0.1);
}

.student-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.student-rating {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.student-review {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gradient);
    opacity: 1;
}

/* Footer */


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .advertisements-section {
        margin: 20px;
    }
}

.st{
    background: rgba(0, 0, 0, 0.744);
}

















  .line{
    border-bottom:2px solid goldenrod;
  
  }

.white{
    border-bottom:2px solid rgb(255, 255, 255);
  
  }








































.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.founder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: rgba(19, 19, 19, 0.95);
    padding: 60px;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.founder-content {
    flex: 1;
    padding: 0;
}

.founder-content.fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.founder-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.founder-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
    border-radius: 2px;
}

.founder-description {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #cccccc;
    text-align: justify;
    padding: 25px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    border-right: 4px solid #d4af37;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.philosophy-item {
    background: rgba(40, 40, 40, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.philosophy-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
}

.philosophy-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.philosophy-item p {
    color: #aaaaaa;
    line-height: 1.6;
    font-size: 1rem;
}

.founder-quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(40, 40, 40, 0.8) 100%);
    padding: 40px;
    border-radius: 15px;
    border-right: 5px solid #d4af37;
    margin: 50px 0 30px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.founder-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.quote-text {
    font-style: italic;
    margin: 0;
    line-height: 1.8;
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }
    
    .founder-title {
        font-size: 2rem;
    }
    
    .founder-description {
        font-size: 1rem;
        padding: 20px;
    }
    
    .philosophy-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .founder-title {
        font-size: 1.8rem;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founder-quote {
        padding: 30px 20px;
    }
    
    .founder-quote::before {
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .founder-title {
        font-size: 1.6rem;
    }
    
    .founder-description {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .philosophy-item {
        padding: 20px;
    }
    
    .philosophy-item h4 {
        font-size: 1.2rem;
    }
}