* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

/* header section */
/* HEADER */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    color: whitesmoke;
    height: 100px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 20px;
}

/* NAVBAR LIST */
#navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

#navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

#navbar ul li a:hover,
#navbar ul li a.active {
    color: #ff7f50;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}


/* MOBILE ICONS (HIDDEN ON DESKTOP) */
#mobile {
    display: none;
    align-items: center;
}

/* TRANSITION for SLIDE MENU */
#navbar {
    transition: right 0.3s ease;
}

#close {
    display: none;
}








/* hero section */
/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('./images/hero/images/hero4.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;

}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay for better text visibility */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #ff7f50;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ff5722;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* features section */
#feature {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    /* default for desktop */
    gap: 20px;
}

.fe-box {
    width: 180px;
    height: auto;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.5);
    border: 1px;
    border-radius: 10px;
    margin: 15px 0;
}

/* #section-p1 {
    padding: 40px 80px;
} */

.fe-box:hover {
    box-shadow: 10px 10px 64px rgba(177, 85, 85, 0.5);

}

/* product section */
#pro1 {
    text-align: center;


}

#pro1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;

}

#pro1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);

}

#pro1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#pro1 .pro .des h3 {
    color: rgb(134, 31, 31);
    font-size: 18px;
}

#pro1 .pro .des .star {
    color: rgb(238, 210, 50);
}

#pro1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    /* font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0; */
}

.pro-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;

}

.section-ban1 {
    margin: 40px 0;
}

/* banner section */
#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background-image: url(./images/banner/banner1.2.jpg); */
    background-color: rgb(197, 197, 187);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    font-size: 25px;
    color: black;
}

#banner h2 {
    font-size: 40px;
    color: black;
    padding: 30px 0;
}

#banner h2 span {
    color: rgb(189, 25, 25);
}

#banner button:hover {
    background-color: rgb(19, 19, 100);
    color: white;
}

#sm-banner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    background-image: url(./images/banner/banner2.jpg);
    background-color: rgb(197, 197, 187);
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: white;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid white;
    outline: none;
    transition: 0.2s;
}

#sm-banner .banner-box:hover button {
    background-color: rgb(87, 141, 141);
    border: 1px solid black;
    color: black;
}

/* banner section 3 */
#banner-box3 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    padding: 0 80px;
}

#banner-box3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    background-image: url(./images/banner/b7\ \(1\).jpg);
    background-color: rgb(197, 197, 187);
    min-width: 30%;
    height: 30vh;
    margin: 20px;
    background-size: cover;
    background-position: center;
}

#banner-box3 .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    background-image: url(./images/banner/b4.jpg);
    background-color: rgb(197, 197, 187);
    min-width: 30%;
    height: 30vh;
    margin: 20px;
    background-size: cover;
    background-position: center;
}

#banner-box3 .banner-box3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    background-image: url(./images/banner/b18.jpg);
    background-color: rgb(197, 197, 187);
    min-width: 30%;
    height: 30vh;
    margin: 20px;
    background-size: cover;
    background-position: center;
}

#banner-box3 h2 {
    color: #f7f5f5;
    font-weight: 900;
    font-size: 20px;
}

#banner-box3 h3 {
    color: #8b1818;
    font-weight: 800;
    font-size: 15px;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(./images/banner/b14.png);
    background-position: 20% 30%;
    background-repeat: no-repeat;
    background-color: #095fb6;
    padding: 40px 80px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #f8f5f5;
}

#newsletter p {
    font-size: 16px;
    font-weight: 600;
    color: #a7a3a3;
}

#newsletter p span {
    color: rgb(248, 248, 8);
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25rem;
    font-size: 14px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}

#newsletter button {
    height: 3.125rem;
    padding: 0 20px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletter button:hover {
    background-color: #ff5722;
}

/* footer section */
.footer {
    background-color: #fff1f5;
    /* Soft pastel pink */
    color: #2b2b2b;
    /* Darker text */
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 250px;
    margin: 20px 10px;
}

.footer-col h3 {
    font-size: 24px;
    color: #c94f7c;
    /* Deep rose */
}

.footer-col h4 {
    color: #d64f7f;
    /* Pink heading */
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p,
.footer-col ul li a {
    color: #333;
    /* Darker paragraph and link text */
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: #c94f7c;
}

.social-icons a img {
    width: 32px;
    /* Increased icon size */
    margin-right: 14px;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.social-icons a img:hover {
    transform: scale(1.2);
    filter: none;
}

.copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    color: #444;
    border-top: 1px solid #fcdce4;
    padding: 15px 0;
    margin-top: 20px;
}

/* resposive design */
/* ------------------ RESPONSIVE DESIGN ------------------ */
/* navbar */
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    /* #section-p1 {
        padding: 5px 5px;
    } */

    #navbar {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        /* hidden by default */
        height: 100vh;
        width: 300px;
        background-color: #353b44;
        color: white;
        transition: 0.3s;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 20px;
    }

    #navbar.active {
        right: 0;
        /* slide in */
    }

    #navbar ul {
        flex-direction: column;
        gap: 0;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    /* Show mobile icons on small screens */
    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #fff;
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag {
        display: none;
    }

    .hero {

        height: 100vh;
        padding: 0 80px;
        background-position: top 30% right 30%;

    }

    /* Feature section horizontal scroll */
    #feature {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #feature::-webkit-scrollbar {
        display: none;
    }

    .fe-box {
        flex: 0 0 auto;
        margin-right: 15px;
    }

    /* Product container horizontal scroll */
    .pro-container {
        flex-wrap: nowrap;
        /* ek hi line me */
        overflow-x: auto;
        /* horizontal scroll */
        justify-content: flex-start;
        /* left se start hoga */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pro-container::-webkit-scrollbar {
        display: none;
    }

    .pro-container .pro {
        flex: 0 0 auto;
        /* shrink disable */
        margin-right: 15px;
    }

    #banner {

        height: 20vh;

    }

    #sm-banner .banner-box {

        min-width: 100%;
        height: 30vh;

    }

    #banner-box3 {

        padding: 0 40px;
    }

    #banner-box3 .banner-box {

        min-width: 28%;

    }





}



/* shop page */
/* hero section */
#page-header {
    width: 100%;
    height: 40vh;
    background-image: url("./images/banner/b1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

#page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

#page-header h1,
#page-header p {
    position: relative;
    z-index: 1;
}

/* Pagination */
#pagination {
    text-align: center;
    margin: 30px 0;
}

#pagination a {
    display: inline-block;
    text-decoration: none;
    background-color: #003366;
    /* dark blue background */
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#pagination a:hover {
    background-color: #ff7f50;
    /* coral color on hover */
}

#pagination i {
    font-size: 16px;
}

/* sproduct - prodetails */