@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color:#ffa600;
    --black:#ffffff;
    --bg:#000000;
    --border:.1rem solid rgba(77, 42, 14, 0.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}
p{
    font-size: 19px;
    color: #6c6c6c;
}
html{
    font-size: 59.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #3f3d3d;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding:2rem 7%;
}

.heading{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color:var(--main-color);
    text-transform: uppercase;
}

.btn{
    border-radius: 30px;
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#ffffff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover{
    margin: 0;
    opacity: 4;
    background-color: #000000;
    transform: translateY(4px);
}


.heade2r{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}

.heade2r .logo img{
    height: 7rem;
    
}

.heade2r .navba1r a{
    margin:0 1rem;
    font-size: 1.6rem;
    color:#ffffff;
}

.heade2r .navba1r a:hover{
    color:var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.heade2r .icons div{
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.heade2r .icons div:hover{
    color:var(--main-color);
}

#menu-btn{
    display: none;
}



.heade2r .cart-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #000000;
    padding:0 1.5rem;
}

.heade2r .cart-items-container.active{
    right: 0;
}

.heade2r .cart-items-container .cart-item{
    position: relative;
    margin:2rem 0;
    display: flex;
    align-items: center;
    gap:1.5rem;
}

.heade2r .cart-items-container .cart-item .fa-times{
    position: absolute;
    top:1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.heade2r .cart-items-container .cart-item .fa-times:hover{
    color:var(--main-color);
}

.heade2r .cart-items-container .cart-item img{
    height: 7rem;
}

.heade2r .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color:var(--black);
    padding-bottom: .5rem;
}

.heade2r .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color:var(--main-color);
}

.heade2r .cart-items-container .btn{
    width: 100%;
    text-align: center;
}





/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .heade2r{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        border-radius: 30px;
        display: inline-block;
    }

    .heade2r .navba1r{
        position: absolute;
        top:100%; right: -100%;
        width: 100%;
        height: 2327px;
        backdrop-filter: blur(10px);
        text-align: center;
    }

    .heade2r .navba1r.active{
        right:0;
    }

    .heade2r .navba1r a{
        color: #fff;
        display: block;
        margin:1.5rem;
        padding:.5rem;
        font-size: 2rem;
    }

    .heade2r .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}

.home{
  min-height: 100vh;
  display: flex;
  background:url(img/1a.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  align-items: center;

}

.home .content{
  max-width: 60rem;
}

.home .content h3{
  font-size: 40px;
  text-transform: uppercase;
  color:#ffffff;
  text-align: center;
}

.home .content p{
  font-size: 2rem;
  font-weight: lighter;
  line-height: 1.8;
  padding:1rem 0;
  color:#eee;
}

h5 {
    font-size: 60px;
    color: #eee;
       text-align: center;
       padding-top: 123px;

}




h3 {
  font-size: 40px;
  color: #eee;
}




.dropbtn {
    border-radius: 30px;
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#0f0e0e;
    background: var(--main-color);
    cursor: pointer;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 110px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: rgb(255, 234, 234);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: #000000;
    border-radius: 30px;
  }
  
  
  .dropdown:hover .dropdown-content {display: block;}
  /* style one start */ 
  body{
    background-color: black;
}


.conteiner{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5px;
}


.cards{
    width: 300px;
    margin: 10px;
    background-color: rgba(30, 30, 30, 0.437);
    border-radius: 15px;
    margin: 45px;
    height: 380px;

}

.card-img img{
    width: 100%;
}

.card-body h2{
    text-align: center;
}

.card-body p{
    text-align: justify;
    margin-bottom: 10px; 
    padding: 5px;
}

.card-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 33px;

}

.card-footer button{
    width: 150px;
    background: black;
    color: white;
    border-radius: 15px;
    border: 2px solid #ffa600;
    padding: 6px;
    font-size: 17px;
    cursor: pointer;
}

.card-footer button:hover{
    background-color: white;
    color: black;

}
.cards {

   
margin-bottom: 250px;
}


.section__container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}

.header {
  margin-bottom: 2rem;
}

.header p {
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 500;
}

.header h1 {
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-weight: 900;
}

.testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  background-color: var(--extra-light);
  border-radius: 5px;
  box-shadow: 5px 5px 30px rgba(255, 140, 0, 0.402);
  cursor: pointer;
}

.card i {
  font-size: 2.5rem;
  color: gold;
}

.card p {
  font-size: 3rem;
  font-weight: 500;
}

.card hr {
  width: 40px;
  margin: auto;
  color: var(--text-light);
}

.card img {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid var(--primary-color);
}

.card .name {
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.card .name:hover {
  color: var(--primary-color);
}

.footer h4 {
  font-family: "Noto Serif", serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer p {
  max-width: 450px;
  margin: auto;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

.footer button {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--extra-light);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
}

@media (width < 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (width < 600px) {
  .testimonials__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}



.rating {
    color: #f8d825; /* Adjust the color of the stars */
}

.star {
    font-size: 24px;
}

/* Add a style for half stars */
.half-star {
    position: relative;
    display: inline-block;
    color: #f8d825; /* Adjust the color of the stars */
    font-size: 24px;
}

.half-star::before {
    content: '\00bd'; /* Unicode character for half */
    position: absolute;
    clip: rect(0, 0.5em, 1em, 0);
}

.asd{
    color: #eee;
    font-size: 33px;
}




/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  
  /* Set a specific color for each brand */
  
  /**fotter start **/
  *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
footer{
    background-color: #111;
}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px ;
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    } 
    .footerNav ul li{
        width:100%;
        text-align: center;
        margin: 10px;
    }
    .socialIcons a{
        padding: 8px;
        margin: 4px;
    }
}