﻿
/*========== Website Landing Page CSS =============*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.subtitle {
    color: #222;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.dark-section {
    background-color: #201816;
    color: #fff;
}

/* Header Styles */
header-website {
    background-color: #333;
    padding: 15px 0;
    color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
}

nav ul {
    display: flex;
}

    nav ul li {
        margin-left: 20px;
    }

        nav ul li a {
            color: #fff;
        }

.user-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.moumachi.com.bd/images/landing-pages/img_2423.jpg');
    background-size: 150%;
    background-position: 80% 25%;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    background-repeat: no-repeat;
}

    .hero h1 {
        font-size: 48px;
        font-weight: bold;
        color: #fff;
    }

/* Services Section */
.services {
    padding: 100px 0;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.services-content {
    flex: 1;
}

.services-image {
    flex: 1;
    position: relative;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .play-button span {
        color: #f0a500;
        font-size: 24px;
    }

.cta-button {
    background-color: #222;
    color: #fff;
    padding: 16px 32px;
    border-radius: 2px;
    font-weight: bold;
    margin-top: 15px;
}

/* Journey Section */
.journey {
    padding: 60px 0;
    text-align: left;
}

.journey-header {
    margin: 0 auto 40px;
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: center;
}

    .journey-header h2 {
        font-size: 32px;
        font-weight: 400;
        color: #FFF;
    }

.journey-right-sec .subtitle {
    color: #f3f3f3;
}

.journey-right-sec p {
    color: #8f8f8f;
}


.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    padding: 30px 20px;
    border-radius: 5px;
    text-align: left;
}

    .step p {
        color: #989898;
    }

.step-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

    .step-header h3 {
        color: #FFF;
    }

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #352f2f;
    border-radius: 3px;
    display: flex;
    margin-bottom: 15px;
    padding: 12px;
}

    .step-icon img {
        width: 20px;
        height: 20px;
    }

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: #fff;
}

    .why-choose .container {
        display: flex;
        align-items: center;
        gap: 40px;
    }

.why-choose-content {
    flex: 1;
}

    .why-choose-content h2 {
        font-size: 32px;
        margin-bottom: 36px;
    }

.why-choose-image {
    flex: 1;
    overflow: hidden;
    border-radius: 5px;
}

    .why-choose-image img {
        border-radius: 5px;
        scale: 1.1;
    }

.reason {
    display: flex;
    margin-bottom: 30px;
}

.reason-number {
    width: 30px;
    height: 30px;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
}

.reason-content h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    text-align: center;
}

    .pricing h2 {
        font-size: 32px;
        font-weight: 400;
        color: #FFF;
    }

.pricing-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
}


table.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0;
    color: #FFF !important;
}

    table.pricing-table colgroup col {
        width: 33.3%;
    }

    table.pricing-table col.spacer {
        width: 30px; /* actual visible horizontal gap */
    }

    table.pricing-table th,
    table.pricing-table td {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #2e2e2e;
    }

        table.pricing-table th:first-child,
        table.pricing-table td:first-child {
            text-align: left;
        }

        table.pricing-table th:nth-child(2),
        table.pricing-table td:nth-child(2) {
            background-color: #2a2424;
        }

        table.pricing-table th:nth-child(4),
        table.pricing-table td:nth-child(4) {
            background-color: #2a2424;
        }

.price-table-header {
    font-size: 24px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

    .faq .container {
        display: flex;
        gap: 40px;
    }

.faq-header {
    flex: 1;
}

    .faq-header h2 {
        font-size: 32px;
        font-weight: 400;
        color: #222;
    }

.contact-btn {
    background-color: #222;
    color: #fff;
    padding: 15px 20px;
    border-radius: 2px;
    font-weight: bold;
}

.faq-content {
    flex: 1;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
    }

.toggle {
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding-top: 10px;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose .container {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-steps {
        grid-template-columns: 1fr;
    }

    .faq .container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
        margin-bottom: 15px;
    }

    .copyright {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-feature,
    .pricing-plan {
        padding: 10px 20px;
        text-align: center;
    }

    .pricing-feature {
        background-color: #444;
        font-weight: bold;
    }
}
