@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body{
    background: white;
}

.navbar {
    background: #0d6efd;
    padding: 10px 0; 
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center; 
}

.navbar-brand img {
    width: 80px;
    height: auto;
    max-height: 50px; 
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 17px;
    margin: 0 8px;
    font-weight: 500;
    transition: 0.3s ease;
    font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-color: #fff;
    padding: 6px;
    border-radius: 5px;
}



/* slider section */


.carousel, .carousel-inner, .carousel-item {
    height: 75vh; /* Reduced height */
}

.pic1, .pic2, .pic3 {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic1 {
    background-image: url(https://static.pexels.com/photos/356844/pexels-photo-356844.jpeg);
}

.pic2 {
    background-image: url(https://static.pexels.com/photos/221315/pexels-photo-221315.jpeg);
}

.pic3 {
    background-image: url(https://static.pexels.com/photos/161820/monument-valley-west-western-161820.jpeg);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}
.navbar, .carousel, .nav-link, .h3, .p {
    font-family: "Poppins", sans-serif;
}

.about-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-img {
    max-width: 100%;
    height: 400px;  
    object-fit: cover; 
    border-radius: 10px;
}

.about-text {
    font-size: 1.1rem;  
    line-height: 1.8;   
    letter-spacing: 0.5px; 
    text-align: justify;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .about-section .row {
        text-align: center;
    }

    .about-img {
        max-width: 90%;
        height: 350px; 
    }
}


/* product css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product-section {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.product-section h1 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: calc(25% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0;
    color: #444;
}

.product-price {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 10px;
}

.product-price span {
    font-weight: 600;
    color: #000;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.buy-whatsapp,
.buy-now {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.7rem;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.buy-whatsapp {
    background: #25D366;
    color: white;
    font-weight: bold;
}

.buy-whatsapp:hover {
    background: #1ebd50;
}

.buy-now {
    background: #007bff;
    color: white;
    font-weight: bold;
}

.buy-now:hover {
    background: #0056b3;
}

@media (max-width: 992px) {
    .product-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .product-item {
        width: 100%;
    }

    .product-section h1 {
        font-size: 2rem;
    }
}




/* feedback section */




.review-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.review-section h1 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    text-align: center;
}

.review-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.review-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    width: calc(33.33% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}

.review-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.review-date {
    font-size: 0.9rem;
    color: #777;
}

.review-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 10px;
}

.review-rating {
    font-size: 1.2rem;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .review-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .review-item {
        width: 100%;
    }

    .review-section h1 {
        font-size: 2rem;
    }
}




/* footer */

h1,
h2,
h3,
h4,
h5,
h6 {}
a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
max-width: 100%;
height: auto;
}
section {
    padding: 60px 0;
   /* min-height: 100vh;*/
}
.footer {
background: linear-gradient(105deg,#6e99e6 ,#093c94);
padding-top: 80px;
padding-bottom: 40px;
}
.single_footer{}
@media only screen and (max-width:768px) { 
.single_footer{margin-bottom:30px;}
}
.single_footer h4 {
color: #fff;
margin-top: 0;
margin-bottom: 25px;
font-weight: 700;
text-transform: uppercase;
font-size: 20px;
}
.single_footer h4::after {
content: "";
display: block;
height: 2px;
width: 40px;
background: #fff;
margin-top: 20px;
}
.single_footer p{color:#fff;}
.single_footer ul {
margin: 0;
padding: 0;
list-style: none;
}
.single_footer ul li{}
.single_footer ul li a {
color: #fff;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
line-height: 36px;
font-size: 15px;
text-transform: capitalize;
}
.single_footer ul li a:hover { color: #ff3666; }

.single_footer_address{}
.single_footer_address ul{}
.single_footer_address ul li{color:#fff;}
.single_footer_address ul li span {
font-weight: 400;
color: #fff;
line-height: 28px;
}
.contact_social ul {
list-style: outside none none;
margin: 0;
padding: 0;
}

.subscribe {
display: block;
position: relative;
margin-top: 15px;
width: 100%;
}
.subscribe__input {
background-color: #fff;
border: medium none;
border-radius: 5px;
color: #333;
display: block;
font-size: 15px;
font-weight: 500;
height: 60px;
letter-spacing: 0.4px;
margin: 0;
padding: 0 150px 0 20px;
text-align: center;
text-transform: capitalize;
width: 100%;
}
@media only screen and (max-width:768px) { 
.subscribe__input{padding: 0 50px 0 20px;}
}

.subscribe__btn {
background-color: transparent;
border-radius: 0 25px 25px 0;
color: #01c7e9;
cursor: pointer;
display: block;
font-size: 20px;
height: 60px;
position: absolute;
right: 0;
top: 0;
width: 60px;
}
.subscribe__btn i{transition: all 0.3s ease 0s;}
@media only screen and (max-width:768px) { 
.subscribe__btn{right:0px;}
}

.subscribe__btn:hover i{
color:#ff3666;
}
button {
padding: 0;
border: none;
background-color: transparent;
-webkit-border-radius: 0;
border-radius: 0;
}

.social_profile {margin-top:40px;}
.social_profile ul{
list-style: outside none none;
margin: 0;
padding: 0;
}
.social_profile ul li{float:left;}
.social_profile ul li a {
text-align: center;
border: 0px;
text-transform: uppercase;
transition: all 0.3s ease 0s;
margin: 0px 5px;
font-size: 18px;
color: #fff;
border-radius: 30px;
width: 50px;
height: 50px;
line-height: 50px;
display: block;
border: 1px solid rgba(255,255,255,0.2);
}
@media only screen and (max-width:768px) { 
.social_profile ul li a{margin-right:10px;margin-bottom:10px;}
}
@media only screen and (max-width:480px) { 
.social_profile ul li a{
width:40px;
height:40px;
line-height:40px;
}
}
.social_profile ul li a:hover{
background:#ff3666;
border: 1px solid #ff3666;
color:#fff;
border:0px;
}
.copyright {
margin-top: 70px;
padding-top: 40px;
color:#fff;
font-size: 15px;
border-top: 1px solid rgba(255,255,255,0.4);
text-align: center;
}
.copyright a{color:#01c7e9;transition: all 0.2s ease 0s;}
.copyright a:hover{color:#ff3666;}