/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    /* Center align text inside the container */
}

/* Header */
header {
    background: #fff;
    color: #333;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    text-align: left;
    color: #007bff;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #007bff;
}

/* Buttons */
.btn {
    background: #007bff;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.btn-hero {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
    font-weight: 600;
}

.btn-hero:hover {
    background: #007bff;
    color: #fff;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

/* Hero Section */
.hero {
    background: #007bff;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    /* Center align text in the hero section */
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Features Section */
.features {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.features .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.features .feature {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 30px;
    width: calc(25% - 20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.features .feature i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.features .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.features .feature p {
    font-size: 16px;
    color: #666;
}

/* Packages Section */
.packages {
    background: #007bff;
    padding: 60px 0;
    text-align: center;
    background: #f9f9f9;
}

.packages h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #007bff;
}

.packages p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.package-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    width: calc(33.33% - 20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.package h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.package .price {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.package ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

.package ul li i {
    color: #007bff;
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #007bff;
}

.faq p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.faq-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.faq-item h3 i {
    margin-right: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #666;
}

.faq-item a {
    color: #007bff;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #007bff;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact .form-group {
    margin-bottom: 20px;
}

.contact label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.contact input,
.contact select,
.contact textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
}

.contact textarea {
    resize: vertical;
}

.contact .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact .btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Dashboard Section */
.dashboard {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.dashboard h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #007bff;
}

.dashboard p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.order-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.order {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.order h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.order p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.order .btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.order .btn:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #007bff;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* ============================================ */
/* MOBILE RESPONSIVE STYLES - FIXED 95% WIDTH */
/* ============================================ */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {

    /* MAIN CONTAINER FIX - 95% width */
    .container {
        width: 95% !important;
        max-width: 95% !important;
        margin: 0 auto;
        padding: 15px;
        box-sizing: border-box;
    }

    /* Fix hero section */
    .hero {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 40px 0;
        box-sizing: border-box;
    }

    .hero .container {
        width: 95% !important;
        max-width: 95% !important;
    }

    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero .btn {
        width: 90%;
        max-width: 280px;
        margin: 20px auto;
        display: block;
    }

    /* Header fixes */
    header {
        padding: 15px 0;
    }

    header .container {
        width: 95% !important;
        max-width: 95% !important;
    }

    /* Logo size control */
    header img {
        max-width: 100% !important;
        height: auto !important;
        width: 300px !important;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header nav ul li {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    /* Features section */
    .features .container {
        flex-direction: column;
        gap: 15px;
        width: 95% !important;
        max-width: 95% !important;
    }

    .features .feature {
        width: 100%;
        padding: 20px;
        margin: 10px 0;
        box-sizing: border-box;
    }

    /* Packages section */
    .packages .container {
        width: 95% !important;
        max-width: 95% !important;
    }

    .package-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .package {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 20px;
        box-sizing: border-box;
    }

    .package h3 {
        font-size: 1.3rem;
    }

    .package .price {
        font-size: 1.5rem;
    }

    /* Forms */
    input[type="email"] {
        width: 100% !important;
        padding: 12px;
        font-size: 16px;
        box-sizing: border-box;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        min-height: 44px;
        margin: 5px 0;
        box-sizing: border-box;
    }

    /* FAQ */
    .faq .container {
        width: 95% !important;
        max-width: 95% !important;
    }

    .faq-item {
        padding: 15px;
        margin: 10px 0;
        box-sizing: border-box;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .container {
        width: 95% !important;
        max-width: 95% !important;
        padding: 10px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        width: 95%;
        max-width: 260px;
    }

    header img {
        width: 250px !important;
    }

    body {
        font-size: 14px;
        width: 100%;
        overflow-x: hidden;
    }

    .package {
        padding: 15px;
    }

    .package h3 {
        font-size: 1.2rem;
    }

    .package .price {
        font-size: 1.3rem;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100%;
    }
}