body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Titillium Web", sans-serif; 
    background-color: #f1e4e4;
}

/* Hero Section */
.main-hero-section{
    position: relative;
    height: 100vh;
    margin: 0;

    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("../images/bg-img10.jpg");
    background-size: cover;
    background-position: center;

    /* Statistics  */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   
    padding-top: 15%;        
    box-sizing: border-box;
}


    /* Tagline  */
.tagline-container{
    margin-left: 60px;
    margin-top: 10px;   
}

.tagline1{
    margin: 0;
    font-size: 50px;
    color: rgb(192, 193, 187);
    font-weight: 900;
}

.description1{
    color: rgb(212, 203, 203);
    font-size: 40px;
    font-weight: 600;
   
}

/* Statistics */
.statistics-container{
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-left: 30px;
    text-align: center;
}

.statistics-value{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.statistics-number{
    font-size: 35px;
    font-weight: bold;
}

.statistics-number img{
    vertical-align: middle;
    margin-left: 5px;
}

.title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bolder;
    font-size: 50px;
      color: #3b2a1a;
    margin-top: 10px;
    margin-bottom: 10px;
}

.scroll-nav {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px;
    background: #f5f5f5;
   margin-bottom: 20px;
    scroll-behavior: smooth;
}

.scroll-nav::-webkit-scrollbar {
    display: none;
}

.scroll-nav a {
    flex: 0 0 auto;
    text-decoration: none;
    background: white;
    padding: 10px 18px;
    border-radius: 20px;
    color: black;
    font-size: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* Hover */
.scroll-nav a:hover {
    background: #4b5320;
    color: white;
}


.main-card-container{
    background-color: rgb(244, 230, 230);
    width: 95%;
    margin-left: 35px;
    min-height: 500px;
    height: auto;
    padding-bottom: 30px;
    border-radius: 30px;
}

.heading{
    display: block;
    width: fit-content;
    margin: 30px auto;   
    padding: 12px 30px;
     color: #3b2a1a;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

/* Each row */
.card-container{
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    width: 90%;
    align-items: center;
    margin-left: 50px;
   
}
     
     /* Individual card */
.card{ 
   text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    width: 100%;
} 

        /* Hover */
.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
} 
                
    /* Card image */ 
.card-img{ 
     width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
} 
                    
     /* Card heading */ 
.card h3 {
    margin: 10px 0 5px;
    font-size: 16px;
} 
                        
    /* Card paragraph */ 
.card p { 
    margin: 0; 
    font-size: 14px;
    color:#555;
}


    /* Button */
.btn{ 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: rgb(113, 18, 18);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 12px;
    margin-top: 8px;
    text-decoration: none;
}

/* arrow image */
.btn img{
    width: 16px;
    height: 16px;
    margin: 0;
    display: block;
}

/* hover */
.btn:hover{
    background: #4c531c;
}


    @media (max-width: 1024px) {
.card-container {
    grid-template-columns: repeat(2, 1fr);
}
.why-container {
    grid-template-columns: repeat(2, 1fr);
}
.review-container {
    grid-template-columns: repeat(2, 1fr);
}
}

    @media (max-width: 600px) {
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.main-logo-icon {
    height: 60px;
}

/* Hero section */
.main-hero-section {
    padding-top: 30%;
}

.tagline-container {
    margin-left: 16px;
    margin-right: 16px;
}

.tagline {
    font-size: 20px;
}

.description {
    font-size: 14px;
    white-space: normal;
    font-family: inherit;
    display: block;
    margin: 0 16px;
}

.statistics-container {
    gap: 16px;
    margin-left: 16px;
    flex-wrap: wrap;
}

.statistics-number {
    font-size: 22px;
}

/* Title */
.title {
    font-size: 28px;
    margin: 10px;
      color: #3b2a1a;
}

/* Scroll nav */
.scroll-nav {
    gap: 10px;
    padding: 12px;
}

.scroll-nav a {
    font-size: 15px;
    padding: 8px 14px;
}

/* Card containers */
.main-card-container {
    width: 100%;
    margin-left: 0;
    border-radius: 16px;
}

.card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/* Why us */
.why-container {
    grid-template-columns: 1fr;
}

/* Reviews */
.review-container {
    grid-template-columns: 1fr;
}

/* CTA buttons */
.cta-buttons {
    flex-direction: column;
    align-items: center;
}
}


    /* Tagline  */
.tagline-container{
    margin-left: 60px;
    margin-top: 10px;   
}

.tagline{
    margin: 0;
    font-size: 30px;
    color: rgb(212, 216, 145);
    font-weight: 600;
}

.description{
    color: whitesmoke;
    font-size: 25px;
    font-weight: 900;
}

.why-us{
    padding: 40px;
    text-align: center;
    background: #f2e9e9;
}

.why-heading{
    margin-bottom: 30px;
    font-size: 36px;
     color: #3b2a1a;
}

.why-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card{
    background: rgb(233, 227, 227);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.why-card:hover{
    transform: translateY(-5px);
}

.why-card h3{
    margin-bottom: 10px;
}

.why-card p{
    font-size: 14px;
    color: gray;
}

.cta{
    text-align: center;
    padding: 40px;
    background: #f8f8f8;
}

.cta h2{
    margin-bottom: 10px;
     color: #3b2a1a;
}

.cta p{
    margin-bottom: 20px;
    color: #555;
}

/* buttons row */
.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Order button */
.order-btn{
    background: rgb(113, 18, 18);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.order-btn:hover{
    background: #4c531c;
}

/* WhatsApp button */
.whatsapp-btn{
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover{
    background: #1da851;
}

.reviews{
    padding: 40px;
    text-align: center;
    background: #f6f3f3;
}

.review-heading{
    margin-bottom: 30px;
    font-size: 26px;
     color: #3b2a1a;
}

/* Row */
.review-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
}

/* Card */
.review-card{
    background: rgb(233, 227, 227);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-left: 4px solid rgb(113, 18, 18);
}

.review-card:hover{
    transform: translateY(-5px);
}

/* Stars */
.stars{
    color: gold;
    font-size: 18px;
}

/* Text */
.review-card p{
    font-size: 14px;
    color: #555;
}

.review-card h4{
    margin-top: 10px;
    font-size: 14px;
}