.hero {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Section-2  */
.section-2{
    width: 100%;
}
.section-2 img{
    width: 70%;
    margin-top: 50px;
    margin-left: 250px;
}

/* Section-3  */
.cat-title{
    margin-top: 70px;
    text-align: center;
    color: #D81F4B;
}
.section-3{
    width: 90%;
    margin-left: 5%;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;     
}
.div-1,.div-2,.div-3{
    width: 30%;
    position: relative;
}

.img-1, .img-5{
    width: 100%; 
    height: 400px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

}
.img-2,.img-4{
    width: 100%; 
    height: 200px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.img-3 {
    width: 100%; 
    height: 640px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.overlays_1{
    position: absolute;
    top: 10%;
    left: 10%;
    color: black;
    max-width: 500px;
}
.overlays_2{
    position: absolute;
    top: 70%;
    left: 10%;
    color: black;
    max-width: 500px;
}

.overlays_3{
    position: absolute;
    top: 85%;
    left: 20%;
    color: white;
    text-align: center;
    max-width: 500px;
}

.overlays_4{
    position: absolute;
    top: 5%;
    left: 5%;
    color: black;
    max-width: 500px;
}

.overlays_5{
    position: absolute;
    top: 45%;
    left: 10%;
    color: black;
    max-width: 500px;
}

/* Section-3  */
.products {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}
.section-title {
    color: #D81F4B;
    font-weight: bold;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.product-card img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.product-card h2 {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: bold;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white;
    border-radius: 20px;
    text-decoration: none;
}
.view-all {
    margin-top: 20px;
}

/* Section 4  */

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.testimonials .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #D81F4B; 
    margin-bottom: 10px;
}

.testimonials .section-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 50px;
}

/* Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.12);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f0f0f0;
}

.testimonial-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #D81F4B; /* red for names */
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Section-5  */
.faq {
    width: 80%; 
    margin: 50px auto;
    padding: 40px 20px;
}
.section-title{
    text-align: center;
    color: #D81F4B;
}
.section-subtitle{
    text-align: center;
    font-size: 25px;
}
.faq-question {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 2px solid #ccc;
}

.faq-question .icon {
    margin-right: 10px;
    font-size: 30px;
    color: #d62828;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 10px 0 20px 28px;
    color: #d62828;
    font-size: 20px;
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg); 
}



/* Bottom Banner  */

.bottom_banner {
    position: relative;
    width: 100%; 
}
.hero-img_1{
    width: 80%;
    margin-top: 50px;
    margin-left: 10%; 
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.hero-content_1 {
    position: absolute;
    top: 35%;
    left: 30%;
    text-align: center;
    transform: translateY(-50%);
    max-width: 1000px;
}

.hero-content_1 h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #D81F4B;
}

.hero-content_1 p {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content_1 .btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}


@media screen and (max-width: 1024px) {

/* Section-2  */
.section-2{
    width: 100%; 
}
.section-2 img{
    width: 70%; 
    margin-top: 50px;
    margin-left: 150px;
}

/* Section-3  */
.cat-title{
    margin-top: 70px;
    text-align: center;
    color: #D81F4B; 
}

/* Bottom Banner  */

.hero-content_1 {
    position: absolute;
    top: 40%;
    left: 20%;
    text-align: center;
    transform: translateY(-50%);
    max-width: 1000px;
}

.hero-content_1 h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #D81F4B;
}

.hero-content_1 p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-content_1 .btn {
    display: inline-block;
    padding: 8px 10px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

}

@media screen and (max-width: 768px) {
.hero-content {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 5px 10px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Section-2  */

.section-2 img{
    width: 70%;
    margin-top: 50px;
    margin-left: 120px; 
}

/* Section-3  */
.cat-title{
    margin-top: 70px;
    text-align: center; 
    color: #D81F4B;
}
.section-3{
    width: 90%; 
    margin-left: 5%;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;     
}
.div-1,.div-2,.div-3{
    width: 30%;
    position: relative;
}

.img-1, .img-5{
    width: 100%; 
    height: 300px;
    margin-top: 20px; 
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

}
.img-2,.img-4{
    width: 100%; 
    height: 150px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.img-3 {
    width: 100%; 
    height: 480px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.overlays_1{
    position: absolute;
    top: 10%;
    left: 10%;
    color: black;
    max-width: 500px;
}
.overlays_2{
    position: absolute;
    top: 70%;
    left: 10%;
    color: black;
    max-width: 500px;
}

.overlays_3{
    position: absolute;
    top: 85%;
    left: 8%;
    color: white;
    text-align: center;
    max-width: 500px;
}

.overlays_4{
    position: absolute;
    top: 5%;
    left: 5%;
    color: black;
    max-width: 500px;
}

.overlays_5{
    position: absolute;
    top: 45%;
    left: 10%;
    color: black;
    max-width: 500px;
}

/* Bottom Banner  */

.bottom_banner {
    position: relative;
    width: 100%; 
}
.hero-img_1{
    width: 80%;
    margin-top: 50px;
    margin-left: 10%; 
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.hero-content_1 {
    position: absolute;
    top: 45%;
    left: 17%;
    text-align: center;
    transform: translateY(-50%);
    max-width: 1000px;
}

.hero-content_1 h1 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #D81F4B;
}

.hero-content_1 p {
    font-size: 22px;
    margin-bottom: 20px;
}

.hero-content_1 .btn {
    display: inline-block;
    padding: 7px 10px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}    
}




@media screen and (max-width: 426px) {

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 20px;
    margin-bottom: 10px; 
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 2px 6px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}

/* Section-2  */

.section-2 img{
    width: 70%;
    margin-top: 50px;
    margin-left: 65px; 
}

/* Section-3  */
.cat-title{
    margin-top: 70px;
    text-align: center; 
    color: #D81F4B;
}
.section-3{
    width: 90%; 
    margin-left: 5%;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;     
}
.div-1,.div-2,.div-3{
    width: 30%;
    position: relative; 
}

.img-1, .img-5{
    width: 100%; 
    height: 150px;
    margin-top: 20px; 
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

}
.img-2,.img-4{
    width: 100%; 
    height: 100px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.img-3 {
    width: 100%; 
    height: 280px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.overlays_1{
    position: absolute;
    top: 10%;
    left: 10%;
    color: black;
    max-width: 500px;
    font-size: 12px;
}
.overlays_2{
    position: absolute;
    top: 70%;
    left: 10%;
    color: black;
    max-width: 500px;
    font-size: 12px;
}

.overlays_3{
    position: absolute;
    top: 85%;
    left: 8%;
    color: white;
    text-align: center;
    max-width: 500px;
    font-size: 12px;
}

.overlays_4{
    position: absolute;
    top: 10%;
    left: 8%;
    color: black;
    max-width: 500px;
    font-size: 12px;
}

.overlays_5{
    position: absolute;
    top: 52%;
    left: 10%;
    color: black;
    max-width: 500px;
    font-size: 12px;
}

/* Bottom Banner  */

.bottom_banner {
    position: relative;
    width: 100%; 
}
.hero-img_1{
    width: 80%;
    margin-top: 50px;
    margin-left: 10%; 
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.hero-content_1 {
    position: absolute;
    top: 62%;
    left: 12%;
    text-align: center;
    transform: translateY(-50%);
    max-width: 1000px;
}

.hero-content_1 h1 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #D81F4B;
}

.hero-content_1 p {
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content_1 .btn {
    display: inline-block;
    padding: 5px 7px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
}    
}

@media screen and (max-width: 376px) {
  
.bottom_banner {
    position: relative;
    width: 100%; 
}
.section-2 img{
    width: 70%;
    margin-top: 50px;
    margin-left: 55px; 
}
.hero-img_1{
    width: 80%;
    margin-top: 20px;
    margin-left: 10%; 
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 15px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 10px;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 4px 6px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
}

.hero-content_1 {
    position: absolute;
    top: 60%;
    left: 12%;
    text-align: center;
    transform: translateY(-50%);
    max-width: 1000px;
}

.hero-content_1 h1 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #D81F4B;
}

.hero-content_1 p {
    font-size: 12px;
    margin-bottom: 20px;
}

.hero-content_1 .btn {
    display: inline-block;
    padding: 5px 7px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
}    
}


@media screen and (max-width: 320px) {
  
.bottom_banner {
    position: relative;
    width: 100%; 
}
.section-2 img{
    width: 70%;
    margin-top: 50px;
    margin-left: 50px; 
}
.hero-img_1{
    width: 80%;
    margin-top: 20px;
    margin-left: 10%; 
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 15px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 10px;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 4px 6px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
}


.hero-content_1 {
    position: absolute;
    top: 60%;
    left: 12%;
    text-align: center;
    transform: translateY(-50%);
    max-width: 1000px;
}

.hero-content_1 h1 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #D81F4B;
}

.hero-content_1 p {
    font-size: 10px;
    margin-bottom: 20px;
}

.hero-content_1 .btn {
    display: inline-block;
    padding: 3px 5px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 7px;
}    
}