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

:root{
    --main-color:#d3ad7f;
    --black:#13131a;
    /* --bg:#010103; */
    --bg:#eee;
    --border:.1rem solid rgba(255,255,255,.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;
}

html{
    font-size: 62.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: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding:2rem 7%;
}

.heading{
    text-align: center;
    color:#1d1c1a;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 30px;
}

.heading span{
    /* color:var(--main-color); */
    /* color: #ffff00; */
    color: #1d1c1a;
    text-transform: uppercase;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 2rem;
    font-size: 1.7rem;
    color:#1d1c1a;
    /* background: #1d1c1a; */
    background: #ebf400;
    cursor: pointer;
    border-radius: 5px;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header{
    /* background: var(--bg); */
    background: #010103;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:3rem 7%;
    border-bottom: var(--border);
    position: fixed;  
    top:0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo {
     font-size: 1.5rem;

}
.header .logo h2{
    color: #ffff00;
}

.header .logo span{
    color: #eee;
}


.header .navbar a{
    margin:0 1.5rem;
    font-size: 1.8rem;
    color:#fff;
}

.header .navbar a:hover{
    /* color:var(--main-color); */
    color: #ffff00;
    padding-bottom: .5rem;
}

.header .icons div{
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
} 

     .header .icons div:hover{
    /* color:var(--main-color); */
    color: #fff;
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top:115%; right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color:var(--black);
    padding:1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color:var(--black);
}

.header .search-form label:hover{
    color:var(--main-color);
}

.header .cart-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding:0 1.5rem;
}

.header .cart-items-container.active{
    right: 0;
}

.header .cart-items-container .cart-item{
    position: relative;
    margin:2rem 0;
    display: flex;
    align-items: center;
    gap:1.5rem;
}

.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top:1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover{
    color:var(--main-color);
}

.header .cart-items-container .cart-item img{
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color:var(--black);
    padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color:var(--main-color);
}

.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
}


@-webkit-keyframes fadeUp {
    0% {
        -webkit-transform: translateY(5rem);
        transform: translateY(5rem);
        opacity: 0;
    }
}

@keyframes fadeUp {
    0% {
        -webkit-transform: translateY(5rem);
        transform: translateY(5rem);
        opacity: 0;
    }
}

.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    background: #f7f7f7;
}

.home .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
    flex: 1 1 35rem;
}

.home .image img {
    width: 100%;
}

.home .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}

.home .content span {
    font-family: 'Satisfy', cursive;
    font-size: 5rem;
    color: #0043ff8c;
}

.home .content .title {
    font-size: 3.5rem;
    padding-top: .5rem;
    color: #130f40;
}

.home .content p {
    padding: 1rem 0;
    line-height: 2;
    font-size: 1.5rem;
    color: #666;
}

.home .content .icons-container {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home .content .icons-container .icons {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
    flex: 1 1 20rem;
    border-radius: .5rem;
    background: #fff;
    -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.home .content .icons-container .icons h3 {
    font-size: 1.7rem;
    color: #130f40;
}

.about .row{
    display: flex;
    align-items: center;
    background:var(--black);
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{
    width: 100%;
}
.about .row .content{
    flex:1 1 45rem;
    padding:2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color:#fff;
    padding:1rem 0;
    line-height: 1.8;
}

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.menu .box-container .box{
    padding:5rem;
    text-align: center;
    /* border:var(--border);     */
    border: 1.5px solid #1d1c1a;
}

.menu .box-container .box img{
    height: 10rem;
}

.menu .box-container .box h3{
    color: #1d1c1a;
    font-size: 2rem;
    padding:1rem 0;
}

.menu .box-container .box .price{
    color: #1d1c1a;
    font-size: 2.5rem;
    padding:.5rem 0;
}

.menu .box-container .box .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover{
    background:#1d1c1a;
}

.menu .box-container .box:hover > *{
    /* color:var(--black); */
    color: #fff;
}

.service .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap:2rem;
}

.service .box-container .box{
    border:var(--border);
    text-align: center;
    padding:2rem 1rem;
    background: #f7f7f7;
    border-radius: 5%;
}

.service .box-container .box p{
    font-size: 1.3rem;
    line-height: 1.6;
    color:#1d1c1a;
    padding:1.5rem 0;
}

.service .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 20%;
    object-fit: cover;
}

.service .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#1d1c1a;
}

.service .box-container .box .stars i{
    font-size: 1.5rem;
    color:var(--main-color);
}

.contact .row{
    display: flex;
    background:var(--black);
    flex-wrap: wrap;
    gap:1rem;
}

.contact .row .map{
    flex:1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex:1 1 45rem;
    padding:2.5rem 1.5rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background:var(--bg);
    border:var(--border);
}

 .contact .row form .inputBox span{
    color:#13131a;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color: #1d1c1a;
    text-transform: none;
    background:none;
} 

.submit button{
    border: none;
    outline: none;
    color: black;
    font-weight: bold;
    padding: 11px 14px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    font-size: medium;
}

.submit button:hover{
    letter-spacing: .2rem;
}

.product .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.product .box-container .box{
    /* border:var(--border);     */
    border: 1.5px solid #7a7a7a;
    background: #f7f7f7;
    border-radius: 1%;
}

.product .box-container .box .image{
    height: 25rem;
    overflow:hidden;
    width: 100%;
}

.product .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product .box-container .box:hover .image img{
    transform: scale(1.2);
}

.product .box-container .box .content{
    padding:2rem;
}

.product .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color:#1d1c1a;
}

.product .box-container .box .content .title:hover{
    color:var(--main-color);
}

.product .box-container .box .content span{
    /* color:var(--main-color); */
    color: #1d1c1a;
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.product .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#1d1c1a;
    padding:1rem 0;
}



.footer {
    background: #0f1a2c;
    padding-top: 1rem;
    padding-bottom: .2rem;
    
}

.footer .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

.footer .box-container .box h3 {
    font-size: 2.2rem;
    color: white;
    padding: 1rem 0;
}

.footer .box-container .box h5 {
    font-size: 1.3rem;
    color: white;
    padding: 1rem 0;
}

.footer .box-container .box p {
    font-size: 1.4rem;
    color: #666;
    padding: .5rem 0;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.4rem;
    color: #666;
    padding: 1rem 0;
}

.footer .box-container .box a:hover {
    color: white;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .box-container .box a i {
    padding-right: .5rem;
    color: white;
}

.footer .credit{
    font-size: 2rem;
    color:#fff;
    font-weight:500;
    padding: 1rem;
    text-align: center;
}

.footer .credit span{
    color:var(--main-color);
    color: #ffff00;
} 









/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right:0;
    }

    .header .navbar a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:.5rem;
        font-size: 2rem;
    }

    .header .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%;
    }

}


/* ===========================
   CLIENTS (Swiper Section)
   =========================== */
.clients {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg);
}

.clients h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1d1c1a;
  text-transform: uppercase;
}

.clients p {
  color: #444;
  max-width: 750px;
  margin: 0 auto 4rem;
  font-size: 14px;
  line-height: 1.6;
}

.clients .swiper {
  width: 100%;
  padding: 2rem 0;
}

.clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .swiper-slide img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* .clients .swiper-slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
} */

/* Responsive */
@media (max-width:768px){
  .clients .heading {
    font-size: 2.5rem;
  }
  .clients .subtitle {
    font-size: 1.4rem;
  }
}

/* ===========================
   INDUSTRIES SECTION
   =========================== */
.industries {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg);
}

.industries h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1d1c1a;
  text-transform: uppercase;
}

.industries p {
  color: #444;
  max-width: 750px;
  margin: 0 auto 4rem;
  font-size: 14px;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  column-gap: rem;   
  row-gap: 2rem;      
  justify-items: center;
  align-items: start;
}

.industry-box {
  width: 15rem;   
  height: 15rem;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-box i {
  font-size: 3.2rem;
  color: #1d1c1a;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.industry-box h3 {
  font-size: 1.6rem;
  color: #1d1c1a;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  transition: 0.3s;
}

/* Hover */
.industry-box:hover {
  background: #fff;
  border-color: #ebf400;
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.industry-box:hover i,
.industry-box:hover h3 {
  color: #ebf400;
}

/* Responsive */
@media (max-width:991px){
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width:600px){
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .industry-box {
    width: 16rem;
    height: 16rem;
  }
  .industry-box i {
    font-size: 2.8rem;
  }
  .industry-box h3 {
    font-size: 1.4rem;
  }
}

/* ===========================
   PROGRESS SECTION
   =========================== */

.features-section {
  max-width: 1100px;
  margin: 30px auto;
  padding: 15px 10px;
  text-align: center;
}

.features-section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.features-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.feature-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;                       /* white box background for features */
  padding: 15px 20px;                     /* top-bottom small, left-right larger */
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* strong shadow */
}

.feature-box {
  flex: 1;
  min-width: 200px;
  padding: 8px;
  border-right: 1px solid #eee;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  text-align: center;
}

.feature-box:last-child {
  border-right: none;
}

.feature-box:hover {
  transform: translateY(-5px);           /* lift effect on hover */
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  color: #000;                           /* hover text color */
}

.feature-box i {
  font-size: 32px;                       /* icon size */
  color: #222;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 18px;
  margin: 10px 0;                        /* heading margin */
  font-weight: bold;
  color: #222;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}
