body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header Section */
.header {
    background: linear-gradient(to right, #ffea4a, #d05a30);
    /* Vibrant gradient background */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 5%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.header .logo {
    padding: 10px;
}


.header .logo img {
    height: 60px;
    max-width: 100%;
}

.header .call-now {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between text and button */
}

.header .call-now p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.header .call-now .btn {
    background-color: #fff;
    color: #d05a30;
    font-weight: bold;
    padding: 8px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header .call-now .btn:hover {
    background-color: #f7c947;
    color: #fff;
}

/* Responsive Header Design */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header .call-now {
        flex-direction: column;
        gap: 10px;
        /* Adjust spacing in stacked layout */
        padding: 10px 0 20px;
    }

    .header .logo img {
        height: 50px;
        max-width: 100%;
    }
}

/* Since 1987 Section */
.since-1987 {
    background: #d05a30;
    color: #fff;
    text-align: center;
    /* padding: 20px 10%; */
    font-size: 22px;
    /* font-weight: bold; */
    margin: 0;
}

/* Responsive Header Design */
@media screen and (max-width: 768px) {
    .since-1987 {
        font-size: 16px;
    }
}

/* Product Section Styling */
.products {
    padding: 20px 15px;
    /* background-color: #f9f9f9; */
}

.products h2 {
    color: #d05a30;
    font-weight: bold;
    /* margin-bottom: 20px; */
}

.products p {
    color: #666;
    margin-bottom: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    margin: 15px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.product-card p {
    font-size: 12px;
    color: #666;
    margin: 10px 0 20px;
    line-height: 0.8rem;
}

.product-card .btn {
    background-color: #d05a30;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.product-card .btn:hover {
    background-color: #b74920;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .product-card {
        margin: 20px 0;
    }
}

/* why us section  */
.why-us {
    padding: 10px 15px 35px;
    /* background-color: #f9f9f9; */
}

.why-us h2 {
    color: #d05a30;
    font-weight: bold;
    margin-bottom: 30px;
}

.feature-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-box h3 {
    font-size: 20px;
    margin-top: 10px;
    color: #333;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1rem;
}

.feature-box .icon-large {
    font-size: 40px;
    color: #d05a30;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .why-us {
        padding: 0 0 22px;
    }

    .feature-box {
        margin: 20px 0;
    }
}

/* All Kinds of Bags Available Section */
.bags-available {
    background: linear-gradient(to right, #f7c947, #d05a30);
    /* Gradient from yellow to burnt orange */
    color: #fff;
    text-align: center;
    padding: 0px 15px;
}

.bags-title {
    font-size: 3rem;
    font-weight: bold;
    /* margin-bottom: 15px; */
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1s ease-out;
}

.bags-description {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #f5f5f5;
    line-height: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
}

/* Animation for the title */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .bags-title {
        font-size: 2rem;
    }

    .bags-description {
        font-size: 1rem;
    }
}


/* footer section  */
.footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    font-size: 15px;
}

.footer a {
    color: #f7c947;
    margin: 0 10px;
}

.footer p {
    margin: 5px 0;
}

@media screen and (max-width: 768px) {
    .header .tagline {
        text-align: center;
    }

    .header .logo {
        text-align: center;
    }
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 30px 0;
}

.privacy-policy h1 {
    font-size: 30px;
    color: #d05a30;
    /* margin-bottom: 20px; */
}

.privacy-policy p {
    font-size: 15px;
    color: #555;
    /* margin-bottom: 15px; */
}

.privacy-policy ul {
    margin-left: 20px;
}

.privacy-policy h2 {
    font-size: 18px;
    /* margin-top: 20px; */
    color: #d05a30;
    font-weight: bold;
}

.privacy-policy li {
    font-size: 12px;
    /* margin-bottom: 10px; */
}

/* Responsive Design */
@media (max-width: 768px) {

    .privacy-policy h1 {
        font-size: 1.5rem;
    }

    .privacy-policy h2 {
        font-size: 1.2rem;
    }
}

/* Terms and Conditions Section */
.terms-conditions {
    padding: 30px 0;
}

.terms-conditions h1 {
    font-size: 30px;
    color: #d05a30;
    /* margin-bottom: 20px; */
}

.terms-conditions p {
    font-size: 15px;
    color: #555;
    /* margin-bottom: 15px; */
}

.terms-conditions ul {
    margin-left: 20px;
}

.terms-conditions h2 {
    font-size: 18px;
    /* margin-top: 20px; */
    color: #d05a30;
    font-weight: bold;
}

.terms-conditions li {
    font-size: 12px;
    /* margin-bottom: 10px; */
}

/* Responsive Design */
@media (max-width: 768px) {

    .terms-conditions h1 {
        font-size: 1.5rem;
    }

    .terms-conditions h2 {
        font-size: 1.2rem;
    }
}