/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f8f9fc;
    color: #222;
}


.heaader{
 background: url('Image/hero\ imge.png') center/cover no-repeat;
}
/* NAVBAR */
.navbar {
    width: 100%;
    color: #fff;
    /* background: #fff; */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.btn {
    padding: 10px 22px;
    background: #fff;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.mobile-menu {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: #fff;
}

.hero-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.btn_hero {
    padding: 10px 22px;
    width: fit-content;
    background: transparent;
    color: #fff;
    border: 1px solid white;
    cursor: pointer;
    border-radius: 20px;
}


/* GENERAL SECTIONS */
.section {
    padding: 60px 50px;
}

.section h2 {
    margin-bottom: 25px;
    font-size: 28px;
}
.sec_top{
display: flex;    
}
.sec_top>img{
width: 30px;
height: 30px;    
}
.shop_head{
display: flex;
justify-content: space-between;
gap: 40px;
}
.search>input{
outline: none;
background-color: #F4F4F4;    
padding: 10px;
border-radius: 20px;
}

.navbar_2 {
    width: 100%;
    color: black;
    /* background: #fff; */
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    /* position: sticky; */
    top: 0;
    /* z-index: 10; */
}

.navbar_2> nav a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}
.navbar_2> nav a:hover{
 padding: 10px;   
background-color: #08142b;
color: #fff;    
border-radius: 10px;
}
/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}


/* SERVICES */

.serivce_bouttom{
/* border: 1px solid black; */
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;

 }
.services-grid_left {
    /* width: 30%; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* .services-grid_left img {
    width: 100%;
    border-radius: 10px;
} */
.services-grid_right{
    /* width: 50%; */
    /* border: 1px solid black; */
}



/* ABOUT */
.sec_top_about{
display: flex;  
margin-left: 50px;  
}
.sec_top_about>img{
width: 30px;
height: 30px;    
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: auto;
}

.about-text img{
    width: 30px;
    height: 30px;
}
.about img {
    width: 60%;
    border-radius: 10px;
}



/* TEAM */

.sec_top_team{
display: flex;  
margin-left: 50px;  
}
.sec_top_team>img{
width: 30px;
height: 30px;    
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.team-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.team-card img {
    width: 100%;
    border-radius: 10px;
}

/* BLOG */
.blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.blog-img {
    width: 100%;
    border-radius: 10px;
}
.blog-text{
display: flex;
flex-direction: column;
gap: 30px;
}

/* FOOTER */

.btn-blog{
    width: fit-content;
    padding: 10px 22px;
    background: black;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
.footer {
    background: #08142b;
    color: #fff;
    padding: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.footer-box input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {

    nav ul {
        display: none;
    }
    .navbar_2 nav ul {
        color: #08142b;
    }
    .shop_head{
     display: flex;
     flex-direction: column;   
    }
    .mobile-menu {
        display: block;
    }

    .hero {
        height: 70vh;
        padding-left: 20px;
    }

    .about, .blog, .serivce_bouttom, .services-grid_left {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {

    .hero h1 {
        font-size: 20px;
    }

    .section {
        padding: 40px 20px;
    }
    
}
