
@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;
    --dark: rgb(199, 199, 199);
    --light: #f8fafc;
    --gray: rgb(226, 226, 226);
    --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 {
    background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed  no-repeat ;
background-position: center;
background-size: cover;
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.line{
    border-bottom: 2px solid goldenrod;
  }
  
  .co{
    border-bottom: 2px solid rgb(255, 255, 255);

  }
/* ///////////////////////////////////////////////////// */


/* 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;
    margin-bottom: 20px;

}

.section_header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 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);
}


/* Platform Intro */
.platform-intro {
    padding: 80px 0;
    background: rgba(27, 27, 27, 0.482);
    backdrop-filter: blur(5px);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.1rem;
}

.community-features {
    margin-top: 30px;
}

.community-features h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    background: rgba(30, 29, 29, 0.597);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    box-shadow:  0 10px 15px -3px rgba(153, 153, 153, 0.5);
}

.intro-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Main Offer Section */
.main-offer {
    padding: 60px 0;
    background: rgba(27, 27, 27, 0.482);
    backdrop-filter: blur(5px);
}

.offer-card {
    background: rgba(41, 41, 41, 0.795);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid goldenrod;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.offer-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.offer-description {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 30px 0;
    display: inline-block;
}

.price-be{
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: right;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-text p {
    color: var(--gray);
    font-size: 0.9rem;
}

.main-offer .btn {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid var(--primary);
    font-size: 1.1rem;
    margin-top: 20px;
}

.main-offer .btn:hover {
    background: goldenrod;
    color: white;
}

/* ////////////////////////////////////////// */

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid var(--primary);
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn:hover {
    background: transparent;
    color: var(--primary);
}

/* Courses List */
.courses-list {
    padding: 60px 0;
    background: rgba(27, 27, 27, 0.482);
    backdrop-filter: blur(5px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: gold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 2px;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.course-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.course-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.course-level {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.course-description {
    color: var(--gray);
}

/* Trading Platforms Section */
.platforms-section {
    padding: 60px 0;
    background: rgba(27, 27, 27, 0.482);
    backdrop-filter: blur(5px);
}

.platforms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.platform-card {
    background: rgba(36, 36, 36, 0.819);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.platform-icon img{
    width: 200px;
}
.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Payment Platforms Section */
.payment-section {
    padding: 60px 0;
    background: rgba(27, 27, 27, 0.482);
    backdrop-filter: blur(5px);
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: rgba(36, 36, 36, 0.819);
    text-align: center;
}

.guarantee-card {
    background: rgba(6, 6, 6, 0.774);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.guarantee-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.guarantee-card p {
    color: var(--gray);
    margin-bottom: 30px;
}

.guarantee-card a{
    background-color: goldenrod;
}

/* Level Section Styling */
.level-section {
    padding: 60px 0;
    background: rgba(27, 27, 27, 0.482);
    backdrop-filter: blur(5px);
}

.level-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(36, 36, 36, 0.819);
}

.level-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.level-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.level-first {
    border: 2px solid silver;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.level-second {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.level-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.level-course-item {
    background: rgba(36, 36, 36, 0.819);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border-right: 4px solid var(--primary);
}

.level-course-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.level-course-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.level-course-details h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

/* Footer */

/* Responsive */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
    
    .course-item {
        flex-direction: column;
        text-align: center;
    }
    
    .course-details {
        text-align: center;
    }
    
    .platforms-container {
        grid-template-columns: 1fr;
    }
    
    .level-courses {
        grid-template-columns: 1fr;
    }
}















/* Coming Soon Banner */
.coming-soon-banner {
    background: rgb(23, 21, 40);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 1.2rem;
    z-index: 100;
}

.coming-soon-banner span {
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-right: 10px;
}

/* Departments Section */
.departments-section {
    padding: 80px 0;
    background-color: rgba(80, 76, 76, 0.453);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: gold;
}

.section-title h2 {
    font-size: 2.2rem;
    color:gold;
    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: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 2px;
}

.section-title p {
    color:white;
    max-width: 600px;
    margin: 0 auto;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.department-card {
    background: rgba(38, 38, 38, 0.619);
    border-bottom: 4px solid gold;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.department-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.department-image::after {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.department-content {
    padding: 30px;
    position: relative;
}

.department-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.department-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-icon {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.notify-btn {
    display: inline-block;
    background: goldenrod;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid var(--primary);
    font-size: 0.9rem;
}

.notify-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-card {
    background: rgba(116, 114, 114, 0.723);
    backdrop-filter: blur(5px);

    border-radius: 10px;
    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: linear-gradient(135deg, #2563eb, #10b981);
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: gold;
}

.cta-card p {
    color:rgb(255, 255, 255);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
}
