*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#faf7f2;
  color:#222;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display',serif;
}

a{
  text-decoration:none;
}

/* TOP BAR */

.top-bar{
  background:linear-gradient(90deg,#ff6b00,#0057d9);
  color:#fff;
  font-size:14px;
  padding:10px 0;
  text-align:center;
}

/* NAVBAR */

.navbar{
  background:#fff;
  padding:18px 0;
  transition:0.4s;
  z-index:999;
}

.sticky-nav{
  position:fixed;
  top:0;
  width:100%;
  box-shadow:0 5px 25px rgba(0,0,0,0.08);
  animation:slideDown .4s ease;
}

@keyframes slideDown{
  from{
    transform:translateY(-100%);
  }
  to{
    transform:translateY(0);
  }
}

.navbar-brand img{
  height:65px;
}

.nav-link{
  color:#222;
  font-weight:600;
  margin:0 10px;
  position:relative;
}

.nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#ff6b00;
  transition:.3s;
}

.nav-link:hover::after{
  width:100%;
}

/* BUTTONS */

.btn-main{
  background:linear-gradient(90deg,#ff6b00,#0057d9);
  border:none;
  color:#fff;
  padding:15px 35px;
  border-radius:50px;
  font-weight:600;
  transition:.4s;
}

.btn-main:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
  color:#fff;
}

.btn-outline-custom{
  border:2px solid #0057d9;
  padding:14px 32px;
  border-radius:50px;
  font-weight:600;
  color:#0057d9;
  transition:.4s;
}

.btn-outline-custom:hover{
  background:#0057d9;
  color:#fff;
}

/* HERO SLIDER */

.hero-slider{
  position:relative;
  overflow:hidden;
}

.hero-slide{
  /*background:url(../uploads/sliders/1779013235_slider.png);*/
  background-size:cover;
  background-position:center;
  background-repeat: no-repeat !important;
  background-size: 100% !important;
}

.hero-slide-container {
  position: absolute;
  translate: -50% -50%;
  left: 50%;
  top: 50%;
  z-index: 999;
}

/*.slide-two{
  background:url(../images/banner1.png);
  background-size:cover;
  background-position:center;
}*/

.hero-content{
  position:relative;
  z-index:2;
}

.hero-tag{
  display:inline-block;
  color:#ff6b00;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.hero-title{
  font-size:64px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-desc{
  font-size:18px;
  line-height:1.9;
  color:#555;
  max-width:550px;
  margin-bottom:35px;
}

.hero-image{
  text-align:center;
}

.hero-image img{
  max-height:700px;
  animation:float 5s infinite ease-in-out;
}

@keyframes float{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-15px);
  }
  100%{
    transform:translateY(0);
  }
}

.hero-carousel .owl-nav{
  position:absolute;
  top:50%;
  width:100%;
  transform:translateY(-50%);
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next{
  position:absolute;
  width:60px;
  height:60px;
  border-radius:50% !important;
  background:#fff !important;
  font-size:28px !important;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.hero-carousel .owl-prev{
  left:25px;
}

.hero-carousel .owl-next{
  right:25px;
}

.hero-carousel .owl-prev:hover,
.hero-carousel .owl-next:hover{
  background:linear-gradient(90deg,#ff6b00,#0057d9) !important;
  color:#fff !important;
}

.hero-carousel .owl-dots{
  position:absolute;
  bottom:35px;
  width:100%;
}

.hero-carousel .owl-dot span{
  width:14px !important;
  height:14px !important;
}

.hero-carousel .owl-dot.active span{
  background:#ff6b00 !important;
}



/*Inner Page css*/

.hero{
  background:url(../images/hero-bg.jpg);
  background-size:cover;
  background-position:center;
  padding:100px 0;
  text-align:center;
}

.hero h1{
    font-size:50px;
    font-weight:bold;
}



/* SECTION */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:52px;
  margin-bottom:15px;
}

.section-title p{
  max-width:650px;
  margin:auto;
  color:#666;
}

/* PRODUCTS */

.product-section{
  padding:100px 0;
}

.product-card{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  height:100%;
  position:relative;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  width:100%;
  padding:25px;
}

.product-content{
  padding:25px;
}

.product-content h5{
  font-size:24px;
}

.price{
  color:#ff6b00;
  font-size:24px;
  font-weight:700;
  margin:15px 0 20px;
}

.badge-custom{
  position:absolute;
  top:18px;
  left:18px;
  background:#0057d9;
  color:#fff;
  padding:8px 15px;
  border-radius:50px;
  font-size:13px;
}

/* ABOUT */

.about-section{
  padding:100px 0;
  background: #f0f0f0;
  background:url(../images/about.png);
  background-size:cover;
  background-position:center;
}

.about-section-inner{
  padding:100px 0;
  background: #f0f0f0;
}

.icon-box{
  background:#fff;
  border-radius:20px;
  padding:30px;
  text-align:center;
  transition:.4s;
  height:100%;
}

.icon-box:hover{
  transform:translateY(-8px);
}

.icon-box i{
  font-size:45px;
  color:#ff6b00;
  margin-bottom:20px;
  display:block;
}

/* OFFER */

.offer-banner{
  background:url(../images/offer-banner.png);
  background-size:cover;
  background-position:center;
  padding:90px 0;
  text-align:center;
  color:#fff;
}

.offer-banner h2{
  font-size:60px;
}

/* TESTIMONIAL */

.testimonial-section{
  padding:100px 0;
  background:#fff;
}

.testimonial-card{
  background:#fff;
  border-radius:30px;
  padding:45px 35px;
  text-align:center;
  transition:.4s;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  margin:15px;
}

.testimonial-card:hover{
  transform:translateY(-10px);
}

.testimonial-card img{
  width:90px !important;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 25px;
}

.testimonial-card p{
  color:#666;
  line-height:1.9;
}

.testimonial-card span{
  color:#ff6b00;
  font-weight:600;
}

.testimonial-carousel .owl-dot.active span{
  background:#ff6b00 !important;
}

/* FOOTER */

footer{
  background:
  linear-gradient(rgba(7,22,52,0.96),rgba(7,22,52,0.96)),
  url(../images/footer-bg.jpg);

  background-size:cover;
  background-position:center;
  color:#fff;
  padding:90px 0 30px;
}

footer h5{
  margin-bottom:30px;
  font-size:24px;
}

footer p{
  color:#d4d7df;
  line-height:1.9;
}

footer ul{
  list-style:none;
  padding:0;
}

footer ul li{
  margin-bottom:14px;
}

footer ul li a{
  color:#d4d7df;
  transition:.3s;
  text-decoration: none;
}

footer ul li a:hover{
  color:#ff6b00;
  padding-left:6px;
}

.social-icons a{
  width:45px;
  height:45px;
  background:rgba(255,255,255,0.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:10px;
  color:#fff;
  transition:.4s;
}

.social-icons a:hover{
  background:linear-gradient(90deg,#ff6b00,#0057d9);
  transform:translateY(-5px);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:60px;
  padding-top:30px;
  text-align:center;
}





/* MOBILE */

@media(max-width:1024px){
  .container { max-width: 100%; }
  .hero-slide-container {
    width: 100%;
    max-width: 100%;
  }
  .hero-title{
    font-size:50px;
  }
}

@media(max-width:991px){

  .hero-slide{
    /*text-align:center;*/
  }

  .hero-image{
    margin-top:50px;
  }

}

@media(max-width:840px){
  .hero-tag,
  .hero-desc { display: none; }
  .hero-title { font-size:38px; }
  .
}


@media(max-width:576px){

  .hero-title{
    font-size:30px;
  }

  .section-title h2{
    font-size:38px;
  }

  .offer-banner h2{
    font-size:38px;
  }

  .hero-carousel .owl-prev,
  .hero-carousel .owl-next{
    display:none;
  }

}

@media(max-width:480px){
  .hero-slide-btn { display: none !important; }
  .hero-title{ font-size:24px;}
  .navbar-brand img { max-width: 200px; }


  }