* {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

:root {
    --logo-color: #FE7300;
    /* ======= Brand Color System ======= */
    --primary-color: #FFA13D;
    /* Vibrant food orange */
    --secondary-color: #b34700;
    /* Dark roasted orange (contrast) */
    --accent-color: #ffb347;
    /* Light orange accent for highlights */

    /* ======= Text & Background ======= */
    --background-color: #fffaf3;
    /* Warm creamy white background */
    --text-color: #2b2b2b;
    /* Deep neutral text for readability */
    --text-warning: #ff3b3b;
    /* Bold red for alerts */
    --text-success: #2ecc71;
    /* Fresh green for success messages */

    /* ======= Borders & Cards ======= */
    --border-color: #e6d5c3;
    /* Soft beige border */
    --card-background: #ffffff;
    /* Clean card background */
    --card-shadow: rgba(255, 123, 0, 0.2);
    /* Subtle orange-tinted shadow */

    /* ======= Buttons ======= */
    --button-text: #fff;
    /* White text for contrast */
    --button-cancel: #ff4d4d;
    /* Strong cancel red */
    --button-active: #ffa41b;
    /* Highlighted orange active button */
    --button-hover: #e56700;
    /* Slightly darker hover state */

    /* ======= Button Sizes ======= */
    --button-height-large: 60px;
    --button-height-medium: 40px;
    --button-height-small: 25px;
}

/* ===== Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: white;
    color: #2b2b2b;
}

/* ===== Hero Section ===== */
.home-hero {
    background: linear-gradient(0deg, #ffcfa1, #FFA13D);
    color: white;
    padding: 20px 5% 20px;
    border-radius: 0 0 200px 200px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
    padding-top: 100px;
    padding-bottom: 40px;

}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons a {
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: var(--logo-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--button-active);
}

.btn-secondary {
    background: white;
    color: var(--logo-color);
}

.btn-secondary:hover {
    background: var(--logo-color);
    color: white;
}

.hero-image {
    width: 40%;
}

.hero-image img {
    width: auto;
    height: auto;
    max-width: 520px;

}



.hero-stats {
    margin-top: 40px;
}

.hero-stats h2 {
    font-size: 3rem;
    color: #fff;
}

.hero-stats p {
    font-size: 1.1rem;
}

/* ===== QR Flow ===== */
.qr-flow {
    padding: 80px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.qr-flow h2 {
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.qr-flow p {
    width: 50%;
}

.flow-grid {
    width: 80%;
    display: flex;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 20px;

}



/* ===== Benefits Section ===== */
.benefits {
    padding: 80px 5%;
    text-align: center;
}

.benefits h2 {
    color: #ff7b00;
    font-size: 2.2rem;
    margin-bottom: 50px;
}



/* ===== Why Choose Us ===== */
.why-us {
    padding: 80px 5%;
    background: #fff4e6;
    text-align: center;
}

.why-us h2 {
    color: var(--logo-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(255, 123, 0, 0.2);
}

.why-card i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* ===== Demo Form ===== */
.demo-form {
    padding: 100px 5%;
    text-align: center;
}

.demo-form h2 {
    color: #ff7b00;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.demo-form p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-container {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-container input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e6d5c3;
    font-size: 1rem;
}

.form-container button {
    background: #ff7b00;
    color: white;
    font-weight: bold;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.form-container button:hover {
    background: #b34700;
}


.flow-grid {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    padding-top: 40px;
    padding-bottom: 40px;

}

.flow-step {
    width: 20%;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px 5px rgb(242, 240, 240);
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 0px;
    cursor: pointer;
    transition: 0.3s;


}

.flow-step:hover {
    color: var(--logo-color);
}

.flow-step.active {
    background: var(--logo-color);
    color: #fff;
}

.flow-details {
    margin-top: 60px;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-details-box {
    width: 60%;
    height: 80%;
    border: 2px dashed #ff6b6b;
    /* SQUARE OUTLINE */
    border-radius: 12px;
    position: relative;
    display: none;
    padding: 10px;
}

/* Image style */
.flow-details-box img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    position: absolute;
    transform: translate(-50%, -50%);

}

/* Position 1 = left-center */
.flow-details-box img:nth-child(1) {
    left: 0%;
    top: 50%;
}

/* Position 2 = top-center */
.flow-details-box img:nth-child(2) {
    left: 50%;
    top: 0%;
}

/* Position 3 = right-center */
.flow-details-box img:nth-child(3) {
    left: 100%;
    top: 50%;
}

/* Position 4 = bottom-center */
.flow-details-box img:nth-child(4) {
    left: 50%;
    top: 100%;
}

.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.benefits-image-laptop {
    display: flex;
}

.benefits-image-mobile {
    display: none;
}

.benefits-image {
    width: 100%;
    padding-top: 40px;
}

.benefits-image img {
    width: 100%;
    height: auto;
}

/* ========== RESPONSIVE DESIGN ========== */

/* ----------- Large Tablets (max-width: 992px) ----------- */
@media (max-width: 992px) {

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 60px;
    }

    .hero-image {
        width: 70%;
    }

    .qr-flow p {
        width: 70%;
    }

    .flow-grid {
        width: 90%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .flow-step {
        width: 30%;
    }

    .flow-details-box {
        width: 80%;
        height: 400px;
    }
}

/* ----------- Tablets & Small Screens (max-width: 768px) ----------- */
@media (max-width: 768px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image {
        width: 80%;
    }

    .qr-flow p {
        width: 90%;
    }

    .flow-grid {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .flow-step {
        width: 40%;
    }

    .flow-details {
        height: auto;
        margin-top: 40px;
    }

    .flow-details-box {
        width: 70%;
        height: 400px;
        margin-top: 50px;
    }

    .flow-details-box img {
        width: 250px;
        height: 250px;
      
    }
   
    /* Benefits Images Switch */
    .benefits-image-laptop {
        display: flex;
    }

    .benefits-image-mobile {
        display: block;
        width: 100%;
    }


}

/* ----------- Mobile Phones (max-width: 480px) ----------- */
@media (max-width: 480px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 18px;
    }


    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-buttons a {
        display: block;
        margin: 10px auto;
        width: 90%;
    }

    .hero-image img {
        width: 100%;

    }

    .flow-grid {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .flow-step {
        width: 45%;
    }

    .flow-details-box {
        width: 70%;
        margin-top: 40px;
        height: 500px;
    }

    .flow-details-box img {
        width: 200px;
        height: 200px;
    }

    .flow-details-box img:nth-child(1) {
        left: 20%;
        top: 40%;
    }

    /* Position 2 = top-center */
    .flow-details-box img:nth-child(2) {
        left: 50%;
        top: 0%;
    }

    /* Position 3 = right-center */
    .flow-details-box img:nth-child(3) {
        left: 80%;
        top: 70%;
    }

    /* Position 4 = bottom-center */
    .flow-details-box img:nth-child(4) {
        left: 50%;
        top: 100%;
    }

}