*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
/* Navbar */
.navbar{
    text-transform: capitalize;
    margin-left: 70px;
    margin-right: 70px;
}
.navbar a{
    text-decoration: none;
}
.part1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.box1{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #FF0000;
    color: #FFFFFF;
    width: 190px;
    height: 45px;
    padding: 8px;
    border-radius: 25px;
    line-height: 1rem;
}
.box1 i{
    font-size: larger;
}
.box1 a{
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    font-weight: 700;
}
.box1 span{
    font-weight: normal;
}
.box2 i{
    color: #FF0000;
    font-size: larger;
}
.box2 a{
    color: #000000;
    font-weight: 700;
}
.image img{
    height: 180px;
}
.part2{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px;
}
.box3{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF0000;
    color: #FFFFFF;
    width: 210px;
    height: 35px;
    border-radius: 25px;
    font-weight: 700;
}
.part2 img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.box4{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF0000;
    padding: 5px;
    border-left: 1px solid #FF0000;
}
/* Offcanvas */
.offcanvas{
    background-color: #FF0000 !important;
}
.offcanvas-body{
    display: flex;
    flex-direction: column;
}
.offcanvas-body a{
    color: #FF0000;
    background-color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
    padding: 8px;
    font-weight: 700;
}
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        margin: 20px;
    }
    .part1 {
        flex-direction: column;
        gap: 8px;
    }
    .image img {
        height: 120px;
    }
    .part2 {
        margin-top: 10px;
    }
}
@media (max-width: 576px) {
    .navbar {
        margin: 10px;
        text-align: center;
    }
    .part1 {
        display: none; /* 🔴 Hide location + phone on mobile */
    }
    .part2 {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    .box1, .box3 {
        width: 100%;
        max-width: 250px;
    }
    .image img {
        height: 100px;
    }
}

/* Banner */
.banner {
    margin-left: 70px; 
    margin-right: 70px;    
    margin-bottom: 50px;     
    display: flex;           
    justify-content: center; 
}

.banner img {
    width: 100%;        
    height: auto;       
    border-radius: 20px;
}
@media (max-width: 992px) {
    .banner {
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 576px) {
    .banner {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
    .banner img {
        border-radius: 12px; /* smaller rounding for small screens */
    }
}

/* deals */
.deals{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.deal{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    flex: 1 1 150px;
}
.deal img{
    height: 120px;
    width: 120px;
    object-fit: cover;
}
.deal a{
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}
.deal a:hover{
    color: #FF0000;
}
@media (max-width: 768px) {
    .deal {
        flex: 1 1 100px;
        max-width: 100px;
    }
    .deal img {
        height: 90px;
        width: 90px;
    }
    .deal a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .deals {
        gap: 10px;
    }
    .deal {
        flex: 1 1 80px;
        max-width: 80px;
    }
    .deal img {
        height: 70px;
        width: 70px;
    }
    .deal a {
        font-size: 12px;
    }
}

/* input */
.input{
    margin: 70px;    
    display: flex;           
    justify-content: center;
    position: relative; 
}
.input input{
    height: 50px;
    width: 100%;
    border: 1px solid #FF0000;
    background-color: #FFFFFF;
    border-radius: 25px;
}
.input ::placeholder{
    color: #FF0000;
    padding-left: 35px;
    font-size: 1.15rem;
}
.input .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .input {
        margin: 30px;
    }
    .input input {
        height: 45px;
        font-size: 0.95rem;
    }
    .input ::placeholder {
        font-size: 1rem;
    }
    .input .icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .input {
        margin: 15px;
    }
    .input input {
        height: 40px;
        font-size: 0.9rem;
        padding-left: 30px;
    }
    .input ::placeholder {
        font-size: 0.9rem;
    }
    .input .icon {
        right: 12px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}
/* Main card 1 */
.mainCard img{
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
/* Cards 1 */
.cards{
    display: flex;
    gap: 15px;
    align-items: stretch;
}
.card.mycard{
    padding: 5px;
    border-radius: 25px;
    flex: 1 1 18rem; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth effect */
}
.card.mycard:hover{
    transform: scale(1.05);
}
.mycard img {
    border-radius: 25px;
    padding-bottom: 10px;
}
.mycard .card-body{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mycard .card-title {
    text-transform: uppercase;  
    font-weight: 900;
    font-size: larger;
    font-size: 1rem;
}
.mycard .card-text {
    font-size: 0.9rem;
    color: #555;
}
.mycard .addButton{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.mycard .btn {
    background-color: #FF0000; 
    border: none;
    border-radius: 13px;
    padding: 5px 15px;
    font-weight: bold;
    font-size: large;
    color: #fff;
    height: 35px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main card 2*/
.mainCard2 img{
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    margin-top: 50px;
}
/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
    .cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    .card.mycard {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card.mycard {
        flex: 1 1 100%; /* full width */
        max-width: 90%;
    }
    .mycard .card-title {
        font-size: 0.9rem;
    }
    .mycard .card-text {
        font-size: 0.8rem;
    }
    .mycard .btn {
        font-size: 0.9rem;
        width: 70px;
        height: 32px;
    }
}

/* Blog */
.blog{
    margin-top: 70px;
    color: #4E4949;
    padding-left: 50px;
    padding-right: 50px;
}
.head{
    font-size: 2.5rem;
    font-weight: normal;
}
.para{
    font-weight: 500;
}
/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
    .blog {
        padding-left: 30px;
        padding-right: 30px;
    }
    .head {
        font-size: 2rem;
    }
    .para {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .blog {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 40px;
    }
    .head {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.4;
    }
    .para {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: justify;
    }
}

/* Footer */
.footer{
    background-color: #FF0000;
    color: #FFFFFF;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
    width: 100%;
}     
.foot1, .foot2, .foot3, .foot4, .foot5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.foot2{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.foot1 img {
    max-width: 100%;
}
.foot2, .foot3, .foot5 {
    gap: 10px;
}       
.foot2 h5, .foot3 h5, .foot5 h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}        
.foot2 a, .foot3 a {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}        
.foot4 img {
    max-width: 100%;
    width: 250px;
}        
.foot5 p {
    margin: 5px 0 10px 0;
    line-height: 1.4;
    color: #FFFFFF;
    font-size: 14px;
}        
.app {
    display: flex;
    justify-content: center;
    gap: 10px;
}        
.app img {
    cursor: pointer;
    border-radius: 8px;
    width: 130px;
}        
.footer-bottom {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    background-color: #d32f2f;
}        
@media (max-width: 768px) {
    .footer {
        align-items: center;
        gap: 30px;
        flex-direction: column;
        }    
    .foot1, .foot2, .foot3, .foot4, .foot5 {
        max-width: 300px;
        width: 100%;
        }
    }
    
/* Powered by */
.last{
    height: 50px;
    background-color: #4E4949;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.tag{
    font-weight: 550;
}
.last a{
    color: #FFFFFF;
    text-decoration: none;
}
.line1{
    padding-left: 5px;
    text-decoration-color: #FFFFFF;
    border-left: 1px solid #FFFFFF;
}