/*
  ============================================
    Developer Name:S M Samiul Hasan
    Experience: 1 year 8 months in Web Dev
    Note: With Allah's blessings, I've tried 
          my best to create quality work.
    Alhamdulillah for everything.
  ============================================
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* assgn-css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    background-repeat: repeat;
    background-size: 250px;
    background-color:#F5F7FF;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-repeat: inherit;
    background-size: inherit;
    background-color: inherit;
    opacity: 0.05;
    z-index: -1;
}
header {
    width: 100%;
    max-width: 1152px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

header > div {
    color: #6b46c1;
    font-weight: 700;
    font-size: 24px;
    border-radius: 8px;
}

header button {
    background-color: #6b46c1;
    color: white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

header button:hover {
    background-color: #553c9a;
}
.header-hero-bg{
    position: relative;
    width: 100%;
    background: url('/image/bg.png') no-repeat center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 80px;
}
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    margin-top: 160px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .hero-section {
        margin-top: 120px;
    }
}

.hero-section h1 {
    font-size: 40px;
    font-weight: 800;
    color: #2d3748;
    line-height: 1.25;
    margin-bottom: 24px;
    max-width: 1024px;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 72px;
    }
}

.btn-outline-purple {
    border: 2px solid #6b46c1;
    background-color:#6b46c1 ;
    color: white;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 15px 50px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.btn-outline-purple:hover {
    background-color:darkblue;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.action-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background-color: #f0f2f5;
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .action-section {
        flex-direction: row;
        justify-content: space-around;
        padding: 100px 40px;
    }
}

.action-content {
    text-align: center;
    margin-bottom: 40px;
    max-width: 500px;
}

@media (min-width: 768px) {
    .action-content {
        text-align: left;
        margin-bottom: 0;
        margin-right: 40px;
    }
}

.action-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 16px;
}

.action-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
}

.action-button {
    background-color: #6b46c1;
    color: white;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
    background-color: #553c9a;
}

.action-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
}

.action-image-container img {
    width: 100%;
    height: auto;
    display: block;
}
.productive-users-section {
    background-color: #f0f2f5;
    width: 100%;
    max-width: 1200px;
    padding: 80px 16px;
    margin-top: 80px;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.productive-users-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-around;
    align-items: center;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .number {
    font-size: 60px;
    font-weight: 800;
    color: #6b46c1;
    margin-bottom: 8px;
}

.stat-item .description {
    font-size: 18px;
    color: #4a5568;
}
.reviews-section {
    width: 100%;
    max-width: 1200px;
    padding: 80px 16px;
    margin-top: 80px;
    text-align: center;
    box-sizing: border-box;
}

.reviews-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 60px;
}

.review-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .review-cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.review-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
}

.review-card .stars {
    color: #fbd38d;
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.review-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 24px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #718096;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}
.container {
            text-align: center;
            max-width: 900px;
            width: 100%;
            padding: 20px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1rem;
            color: #666;
            margin-bottom: 30px;
        }

        .button {
            display: inline-block;
            background-color: #6a5acd; 
            color: #fff;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            margin-bottom: 50px;
        }

        .button:hover {
            background-color: #5a4acb;
        }

        .mockup-frame {
            background-color: #1a1a1a;
            border-radius: 20px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .mockup-content {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            width: 100%;
            padding-top: 56.25%;
        }

        .mockup-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            .subtitle {
                font-size: 0.8rem;
            }
        }
.newsletter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    width: 100%;
    max-width: 1200px;
    padding: 80px 16px;
    margin-top: 80px;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .newsletter-section {
        flex-direction: row;
        justify-content: space-around;
        padding: 100px 40px;
    }
}

.newsletter-content {
    text-align: center;
    margin-bottom: 40px;
    max-width: 500px;
}

@media (min-width: 768px) {
    .newsletter-content {
        text-align: left;
        margin-bottom: 0;
        margin-right: 40px;
    }
}

.newsletter-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.newsletter-form input,
.newsletter-form textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3748;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    border-color: #6b46c1;
}

.newsletter-form textarea {
    min-height: 120px;
    resize: vertical;
}

.newsletter-form button {
    background-color: #6b46c1;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-form button:hover {
    background-color: #553c9a;
}

footer {
    width: 100%;
    max-width: 1200px;
    padding: 80px 16px;
    margin-top: 80px;
    text-align: center;
    box-sizing: border-box;
}

footer .logo {
    color: #6b46c1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 24px;
}

footer p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    footer nav {
        flex-direction: row;
    }
}

footer nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #6b46c1;
}