/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/image/hero.jpg) no-repeat center / cover;
    color: #DFE4E8;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5rem; /* Adjust for fixed menu */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content a {
    background-color: #940C0E;
    color: #DFE4E8;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-content a:hover {
    background-color: #6b090b;
}

/* Trust Section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.card {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Add slight lift on hover */
}

.card img {
    max-width: 50px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cards p {
    font-size: 1rem;
}

/* Products Section */

.product {
    padding-top: 5rem; /* Space below the menu */
    padding-bottom: 3rem; /* Space above the footer */
    margin: 0 auto;
}

.product h2 {
    margin-top: 2rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
    font-size: 2.3rem; /* Adjust heading size for emphasis */
}



.box2:hover {
    transform: translateY(-5px); /* Add slight lift on hover */
}

.box2 img {
    max-width: 100%;
    max-height: 20rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

 .box2 p {
    margin: 0.5rem 0;
}

 .box2 b {
    display: block;
    margin: 0.5rem 0;
}

 .box2 a {
   
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

 .box2 a:hover {
    transition: background-color 0.3s;
}

/* Align h2 with product boxes */
.product h2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.why2 {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1704rem;
}

.why {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2.3rem;
}

/* Newsletter CTA */
.news {
    background-color: #940C0E;
    color: #DFE4E8;
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.news h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.news p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.news input[type="email"] {
    padding: 0.7rem;
    width: 50%;
    max-width: 400px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
}

.news button {
    background-color: #6b090b;
    color: #DFE4E8;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.8rem;
}

.news button:hover {
    background-color: #4a0607;
}

/* Reviews Section */
.reviews {
    padding: 2rem;
    background-color: #940C0E;
    text-align: center;
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #DFE4E8;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.review {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.review p {
    margin: 0.5rem 0;
    color: #555;
}

.review strong {
    color: #000;
}

/* Style for the clickable box */
.clickable-box {
    display: block;
    text-decoration: none;
    color: inherit; /* Inherit text color to avoid default link styling */
    padding: 1rem;  /* Maintain padding inside the clickable area */
    transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.clickable-box:hover {
    transform: scale(1.02); /* Slight zoom effect */
}


/* CTA link styling inside the box */
.cta-link {
    display: inline-block;
    background-color: #940C0E;
    color: #DFE4E8;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #6b090b;
}

/* Testimonials Section */
.testimonials {
    background-color: #940C0E; /* Light background for contrast */
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0; /* Add spacing above and below */
}

.testimonials h2 {
    font-size: 2rem;
    color: #DFE4E8;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.testimonial strong {
    display: block;
    font-size: 1rem;
    color: #212427;
    margin-top: 0.5rem;
    font-weight: bold;
}

