/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #FFD700;
}

.btn-buy-course {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-buy-course:hover {
    background: #FFC107;
    transform: translateY(-2px);
    color: #1a1a1a;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 215, 0, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(255, 215, 0, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-black {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-yellow {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-yellow:hover {
    background: #FFC107;
    transform: translateY(-2px);
    color: #1a1a1a;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.student-avatars {
    display: flex;
    gap: -10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    border: 3px solid white;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.stats-text {
    display: flex;
    flex-direction: column;
}

.student-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.student-label {
    font-size: 0.9rem;
    color: #1a1a1a;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.rating-count {
    font-size: 0.9rem;
    color: #1a1a1a;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Featured Companies Section */
.featured-companies {
    background: white;
    padding: 40px 0;
    text-align: center;
}

.featured-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.companies {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company {
    color: #666;
    font-weight: 500;
    font-size: 16px;
}

/* About Section */
.about {
    background: white;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.about-subheading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.yellow-line {
    width: 30px;
    height: 3px;
    background: #FFD700;
}

.about-subheading span {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.awards {
    display: flex;
    gap: 30px;
}

.award {
    display: flex;
    align-items: center;
    gap: 15px;
}

.award-icon {
    font-size: 2rem;
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.award-year {
    color: #666;
    font-size: 12px;
}

/* Statistics Section */
.statistics {
    background: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #ddd;
    margin: 0 auto;
}

/* Why Rishimoney Section */
.why-rishimoney {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.why-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Credibility Section */
.credibility {
    background: #f5f5f5;
    padding: 80px 0;
}

.credibility-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.cred-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cred-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cred-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.explore-courses {
    text-align: center;
}

.explore-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.explore-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Section */
.courses {
    background: white;
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.course-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-header {
    padding: 30px;
    color: white;
    position: relative;
    min-height: 200px;
}

.option-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.a2z-header {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

.beginners-header {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
}

.course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.course-title-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 40px;
}

.course-title-header span {
    font-size: 1rem;
    opacity: 0.9;
}

.course-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1a1a1a;
}

.course-instructor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instructor-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.instructor-name {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.instructor-title {
    font-size: 10px;
    color: white;
    opacity: 0.8;
}

.course-content {
    padding: 30px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
}

.course-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.course-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.course-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.clock-icon {
    font-size: 16px;
}

.course-footer {
    padding: 20px 30px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.feature-icon {
    font-size: 16px;
}

.btn-know-more {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-know-more:hover {
    background: #FFC107;
    transform: translateY(-2px);
    color: #1a1a1a;
    text-decoration: none;
}

/* Footer Section */
.footer {
    background: #f5f5f5;
    padding: 60px 0 40px;
}

.refund-policy {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.refund-policy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.refund-policy h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0 10px;
}

.refund-policy p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-icon.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-icon.telegram:hover {
    background: #0088cc;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .credibility-cards {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .why-title {
        font-size: 2rem;
    }
    
    .explore-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-divider {
        display: none;
    }
}
