body{
    font-family: 'poppins' ,sans-serif;
}


.carousel-item{
    position: relative;
}

.carousel-item img{
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

/* Overlay */
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
/* Capion */

.carousel-caption{
    position: absolute;
    left: 8%;
    right: auto;
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    width: 40%;
    z-index: 2;
}

/* Title */
.carousel-caption h1{
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 15px;
}
/* Paragraph */
.carousel-caption p{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #f1f1f1;
}

/* Button */
.carousel-caption .btn{
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
}

/* Indicators */
.carousel-indicators button{
    width: 12px;
    height: 12px;
    border-radius: 100%;
}
/*=========================
        Categories
=========================*/

#categories{
    background:#f8f9fa;
    padding:80px 0;
}


/* Title */
#categories h2{
    position:relative;
    display:inline-block;
    color:#1e3a8a;
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}


/* Line under title */
#categories h2::after{
    content:"";
    width:70px;
    height:4px;
    background:#0d6efd;
    border-radius:20px;

    position:absolute;
    left:50%;
    bottom:-12px;
    transform:translateX(-50%);
}


#categories p{
    font-size:18px;
    color:#777;
    margin-top:25px;
}


/* Cards */
.category-card{
    background:#fff;
    border-radius:20px;
    padding:35px 20px;

    height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.4s;
    cursor:pointer;
}


/* Icons */
.category-card i{
    width:90px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#eaf3ff;
    color:#0d6efd;

    font-size:38px;

    margin-bottom:20px;

    transition:.4s;
}


/* Text */
.category-card h5{
    font-size:18px;
    font-weight:600;
    color:#333;

    margin:0;

    line-height:1.4;
}


/* Hover */
.category-card:hover{
    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);
}


.category-card:hover i{
    background:#0d6efd;
    color:white;

    transform:scale(1.1) rotate(10deg);
}

/*=========================
        Products
=========================*/
#products {

    padding: 80px 0;
    background: #ffffff;

}
/* Title */

#products h2 {

    position: relative;
    display: inline-block;

    color: #1e3a8a;

    font-size: 42px;
    font-weight: 700;

    margin-bottom: 20px;

}

#products h2::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -12px;

    transform: translateX(-50%);

    width: 70px;
    height: 4px;

    background: #0d6efd;

    border-radius: 20px;

}

#products p {

    color: #777;
    font-size: 18px;

    margin-top: 25px;

}

/* Product Card */

.product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    transition: 0.4s;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);

}

/* Product Image */

.product-card img {

    width: 100%;
    height: 250px;

    object-fit: cover;

}

/* Product Body */

.product-body {

    padding: 20px;

    text-align: center;

}

.product-body h5 {

    font-size: 20px;
    font-weight: 600;

    margin-bottom: 10px;

}

.price {

    color: #0d6efd;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 20px;

}

.product-body .btn {

    border-radius: 50px;

    padding: 12px;

    font-weight: 600;

}

/*=========================
        Special Offer
=========================*/

#offer {

    padding: 100px 0;

    background: linear-gradient(135deg, #0d6efd, #4f46e5);

    color: #fff;

}

.offer-content {

    text-align: center;

}

.offer-content h2 {

    font-size: 50px;

    font-weight: 700;

    margin-bottom: 20px;

}

.offer-content p {

    font-size: 22px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.9);

}

.offer-content .btn {

    padding: 15px 40px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;

}

.offer-content .btn:hover {

    transform: translateY(-5px);

}

/*=========================
        Why Choose Us
=========================*/


#features {

    background: #f8f9fa;

}


/* Title */

#features h2 {

    color: #1e3a8a;

    font-size: 42px;

    font-weight: 700;

}


#features p {

    color: #777;

    font-size: 18px;

}



/* Cards */

.feature-card {

    background: #fff;

    padding: 35px 20px;

    text-align: center;

    border-radius: 20px;

    height: 250px;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    transition: .4s;

}



/* Icons */

.feature-card i {

    width: 80px;

    height: 80px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: auto;

    border-radius: 50%;

    background: #eaf3ff;

    color: #0d6efd;

    font-size: 35px;

    margin-bottom: 20px;

    transition: .4s;

}



.feature-card h5 {

    font-size: 20px;

    font-weight: 600;

    color: #333;

}



/* Hover */

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 18px 35px rgba(0,0,0,.15);

}



.feature-card:hover i {

    background: #0d6efd;

    color: white;

    transform: scale(1.1);

}

/*=========================
        Footer
=========================*/


#footer {

    background: #111827;

    color: white;

    padding: 70px 0 20px;

}



#footer h4 {

    color: white;

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 20px;

}



#footer h5 {

    color: white;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 20px;

}



#footer p {

    color: #bdbdbd;

    line-height: 1.8;

}



/* Links */

#footer ul {

    list-style: none;

    padding: 0;

}



#footer ul li {

    margin-bottom: 12px;

}



#footer ul li a {

    text-decoration: none;

    color: #bdbdbd;

    transition: .3s;

}



#footer ul li a:hover {

    color: #0d6efd;

}



/* Contact Icons */

#footer i {

    margin-right: 10px;

    color: #0d6efd;

}



/* Social Icons */

.social-icons i {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: #1f2937;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    color: white;

    margin-right: 8px;

    cursor: pointer;

    transition: .3s;

}



.social-icons i:hover {

    background: #0d6efd;

    transform: translateY(-5px);

}



/* Copyright */

#footer hr {

    border-color: rgba(255,255,255,.2);

    margin: 40px 0 20px;

}



.copyright {

    text-align: center;

}



.copyright p {

    margin: 0;

    font-size: 14px;

}