/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: white;
    color: #007bff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #1f09FF;
    font-size: 18px;
    font-weight: bold;
}

.hero {
    height: 400px;
    background: url('https://images.pexels.com/photos/3183183/pexels-photo-3183183.jpeg?auto=compress&cs=tinysrgb&h=900') 
    no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #1f09FF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.plans {
    padding: 50px;
    text-align: center;
    background: #f9f9f9;
}

.plan-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.plan1 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    height:780px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.plan h3 {
    color: #1f09FF;
    font-size: 26px;
}


.plan1 h3 {
    color: #1f09FF;
    font-size: 26px;
}

.contact {
padding: 50px;
background: #f9f9f9;
}

.contact-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.contact {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

.pricing-heading {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

.pricing-heading {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-text {
    flex: 1;
    padding-right: 30px;
    text-align: center;  /* Justifies the text */
    max-width: 500px;  /* Limits the width of the text block */
    color: #1f09FF;
    font-size: 18px;
    font-weight: bold;
}

.contact-form {
    flex: 1;
    max-width: 400px;
}

.contact input, .contact textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
}

.contact button {
    background: #1f09FF;
    color: white;
    padding: 8px 15px;  /* Smaller padding for the button */
    border: none;
    cursor: pointer;
    width: auto;  /* Remove full width */
    margin: 10px auto 0;  /* Center the button */
    display: block;  /* Make the button a block element to center it */
}

.contact button:hover {
    background: #1f09FF;
}

.error {
    color: red;
    font-size: 14px;
}


footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: white;
}


.why-choose-us {
    padding: 50px;
    text-align: center;
    background: #fff;
}

.benefits-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
    color: #1f09FF;
    margin-bottom: 10px;
    font-size: 26px;
}

.pricing-heading {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    color: #222;
    display: inline-block;
    background: linear-gradient(to right, #444, #111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.tagline{
    font-size: 18px;;
}




/* Modern Pricing Tiers Styles */
.pricing-tiers {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}



.tier-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap; /* Prevents wrapping on larger screens */
    max-width: 1200px;
    margin: auto;
}

/* Style for individual tiers */
.tier {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 30%; /* Ensures each tier takes up equal width */
    max-width: 350px; /* Prevents oversized boxes */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #1f09FF;
    text-align: center;
    position: relative;
}

.tier:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tier h3 {
    color: #1f09FF;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #1f09FF;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    width: 75%;
    margin: 15px auto;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}



.contact select {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit; /* Ensures it matches input font */
    background: white;
    color: grey;
    cursor: pointer;
    appearance: none; /* Removes default OS styles */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
}

/* Style dropdown focus effect */
.contact select:focus {
    outline: none;
    border-color: #1f09FF;
    box-shadow: 0 0 5px rgba(31, 9, 255, 0.5);
}


@media (max-width: 768px) {
    /* Adjust navigation for mobile */
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Make hero section content centered */
    .hero-content {
        width: 90%;
    }

    /* Adjust pricing plan boxes for small screens */
    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan, .plan1 {
        width: 90%;
        height: auto;
    }

    /* Adjust the benefits section */
    .benefits-container {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        width: 90%;
        margin-bottom: 15px;
    }

    /* Contact form adjustments */
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-text, .contact-form {
        max-width: 90%;
        margin: auto;
    }

    /* Pricing tiers adjustments */
    .tier {
        width: 90%;
    }
}

@media (max-width: 480px) {
    /* Reduce text size for small screens */
    .hero h1 {
        font-size: 28px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .pricing-heading {
        font-size: 24px;
    }

    .plan-container, .tier-container {
        flex-direction: column;
        align-items: center;
    }

    .plan, .plan1, .tier {
        width: 100%;
        max-width: 300px;
    }
}
