:root {
    --primary-color: #6a1b9a !important;
    --primary-light: #7b37b3;
    --primary-dark: #5a128b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

@font-face {
    font-family: 'Utheemu-Randoo';
    src: url('../../fonts/MV_Faseyha.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Utheemu-Randoo';
    src: url('../../fonts/MV_Waheed.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MV Waheed';
    src: url('../../fonts/MV_Waheed.otf') format('truetype');
    font-style: normal;
}

.dv-waheed {
    font-family: 'MV Waheed' !important;
    font-weight: 400 !important;
}


* {
    font-family: 'Utheemu-Randoo';
}

body {
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 1.5rem;
    color: var(--dark-gray) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f0ff 0%, #e6e0ff 100%);
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating animation for hero image */
@keyframes hero-float {
    0% { transform: translateY(0) rotateZ(-1deg); }
    50% { transform: translateY(-50px) rotateZ(5deg); }
    100% { transform: translateY(0) rotateZ(-1deg); }
}

.hero-image {
    transition: transform 0.5s ease;
    animation: hero-float 6s ease-in-out infinite;
    transform-origin: center center;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-image {
        animation: none !important;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    background-color: var(--light-gray);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.feature-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.author-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.author-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* How to Publish Section */
.how-to-publish {
    padding: 6rem 0;
    background-color: var(--white);
}

.publish-step {
    text-align: center;
    margin-bottom: 3rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.2);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 2rem;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        margin-top: 150px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 90%;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}
