

/* ===================================================
   4. HOMEPAGE BANNER
   =================================================== */
.homebanner {
    background-color: #1C1C1C;
    padding-top: 4rem;
   height: auto;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
    text-align: center;
    font-size: 2.3rem;
}

.homebanner h3 {
    padding-top: 5rem;
    max-width: 1000px;
    font-family: "Poppins", sans-serif;
    color: white; /* Ensure text is visible */
}

.banner-image img {
    max-width: 100%; /* Ensures image is responsive */
    width: 1000px;
    height: auto; /* Maintains aspect ratio */
  margin-bottom: 1rem;
}
@media (max-width: 1150px) { 
    .homebanner {
        font-size: 2rem;
    }

}
@media (max-width: 860px) { 
    .homebanner {
        font-size: 1.5rem;
    }
}
@media (max-width: 550px) { 
    .homebanner {
        font-size: 1.2rem;
    }
}
@media (max-width: 450px) { 
    .homebanner {
        font-size: 1rem;
    }
}
/* ===================================================
   5. PRICING SECTION
   =================================================== */
/* Pricing Section */
.pricing-section {
    background-color: #1c1c1c;
    color: white;
    text-align: center;
    padding: 4rem 5%;
}
.pricing-title {
    margin-top: 4rem;
}
/* Title */
.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Pricing Container */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Individual Pricing Box */
.pricing-box {
    background-color: #121212;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    width: 320px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    border: 2px solid rgba(255, 0, 77, 0.3);
}

/* Set a fixed height for headings */
.pricing-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    min-height: 60px; /* Ensures uniform height for all headings */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the price text is always positioned at the same level */
.pricing-range {
    font-size: 1.2rem;
    font-weight: bold;
    color: #F91229;
    margin-bottom: 1rem;
    min-height: 30px; /* Keeps all price texts aligned */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features List */
.pricing-box ul {
    list-style: none;
    padding: 0;
}

.pricing-box ul li {
    background: transparent;
    padding: 10px;
    margin: 5px 0;
    font-size: 1rem;
    font-family: "poppins",sans-serif;
}

/* Hover Effect */
.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 0, 77, 0.4);
}

/* Order Button */
.order-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #F91229;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.order-button:hover {
    background: #E41212;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}


.disclaimer {
    margin: 1rem auto; /* Centers it horizontally */
    padding: 1rem;
    max-width: 500px;
    font-size: 1rem;
    color: #EC3C3C; /* Red text to match theme */
    background-color: #333;
    border-left: 5px solid #F91229;
    border-radius: 5px;
    text-align: center; /* Centers text inside the box */
    margin-top: 4rem;
}
