@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
    font-family: "Poppins" , sans-serif;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0, 1.57, 0.67, 1.18);
  
}

body {
  margin: 0;
  overflow-x: hidden;
  background-image: var(--background-img);
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover; 
  background-repeat: no-repeat;
}

/*---------------Go back to top button-------------*/
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/*------------back to top buttom-------------------*/
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}


/*--------------------header------------------------*/

.header{
    min-height: 68px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo{
    height: auto;
  }
  
  nav img{
    width: 190px;
    padding-left: 15px;
  }
  nav{
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    padding: 1% 1%;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .nav-links{
    flex: 1;
    text-align: right;
    padding-top: 16px;
  }
  .nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
  }
  .nav-links ul li a{
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
  }
  .nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgba(30, 231, 238, 0.7);
    display: block;
    margin: auto;
    transition: 0.5s;
  }
  .nav-links ul li:hover::after{
    width: 100%;
  }

/* Highlight the Gallery link */

#gallery-link {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(153deg, rgba(255,0,0,1) 0%, rgba(47,71,223,1) 50%, rgba(0,212,255,1) 100%);  /* Highlight color */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
  
  
  @media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
  }
  
  @media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
  }
  
  nav .fa{
    display: none;
  }
  
  @media(max-width: 700px){
    .text-box h1{
        font-size: 34px;
    }
    .nav-links ul li a{
      color: #0e0e0e;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
      position: absolute;
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
      background: rgba(193, 187, 187, 0.3);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.4px);
      -webkit-backdrop-filter: blur(8.4px);
      border: 1px solid rgba(193, 187, 187, 0.3);

    }
    nav .fa{
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 35px;
        text-align: right;
    }
  }

/* toggle switch  */
#icon{
  width: 45px;
  height: auto;
  cursor: pointer;
  text-align: center;
  padding: 0px 0px 0px 10px;
  margin-bottom: -10px;
}

:root{
  --primary-color: #edfcfc;
  --secondary-color: #212121;
  --background-img: none;
  --review-bg: none;  /*for review bg*/
}
.dark-theme{
  --primary-color: #212121;
  --secondary-color: #edfcfc;
  --background-img: url('../Image/bg1-B.jpg');
  --review-bg: #2828289e; /*for review bg*/
}

/*---------------------------------------------------*/


/*---------nav title link-------------*/
.title{
  text-align: center;
  color: var(--secondary-color);
}


.title h1{
  font-size: 40px;
  text-align: center;
  color: var(--secondary-color);
}
  
.back-btn{
  text-decoration: none;
  font-size: 25px;
  font-weight: 500;
  color: #31a3d8;
  text-align: center;
}




/*------------Photo Gallery-------------*/

/* styles.css */
/* Basic styling */

/* Product Container */
#productContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 16px; /* Space between items */
  padding: 16px;
}

/* Product Styles */
.product {
  background: #f9f9f924; /* Example background */
  border-radius: 8px; /* Rounded corners */
  padding: 16px; /* Inner padding */
  /* text-align: center;    Center text */
}

.product-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.quick-view-btn {
  padding: 10px 5px 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* Image Container */
.image-container {
  position: relative; /* Position relative for absolute positioning of overlay */
}

/* Overlay Styles */
.overlay {
  position: absolute;
  top: 10px; /* Adjust top position */
  right: 10px; /* Adjust right position */
  display: none; /* Hidden by default */
  flex-direction: column; /* Stack buttons vertically */
  border-radius: 8px;
  padding: 8px;
}

/* Show overlay on hover */
.product:hover .overlay {
  display: flex; /* Show overlay when hovering over the product */
}
.share-btn, .like-btn {
  background-color: rgba(255, 255, 255, 0.9); 
}

/* Button Styles */
.share-btn, .like-btn {
  background-color: rgba(255, 255, 255, 0.9); /* Light background for buttons */
  border: none;
  cursor: pointer;
  width: 40px; /* Set width for circular shape */
  height: 40px; /* Set height for circular shape */
  border-radius: 50%; /* Make buttons circular */
  display: flex; /* Flexbox for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  margin: 8px 0; /* Increased space between buttons */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */

}

/* Hover effect for buttons */
.share-btn:hover, .like-btn:hover {
  background-color: rgba(230, 230, 230, 0.8); /* Slightly darker background on hover */
}
/* Like button clicked state */
.like-btn.active {
  color: red; /* Change color when liked */
}
/* Icon Styles */
.share-btn i, .like-btn i {
  color: #333; /* Default icon color */
  transition: color 0.3s; /* Smooth transition for icon color */
}


/* Add these styles to style.css */

.buy-now-btn, .share-btn {
    padding: 10px 20px;
    background-color: #28a745; /* Green for Buy Now */
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.share-btn {
    background-color: #007bff; /* Blue for Share */
    padding: 5px 20px;
}

.like-btn:hover {
    color: red;
}

.like-count {
    margin-left: 10px;
    font-weight: bold;
    padding: 20px 10px 0px 40px;
}

/* Button Styles */
.quick-view-btn, .share-btn, .like-btn {
  background-color: rgba(255, 255, 255);
  border: none;
  cursor: pointer;
  font-size: 24px; /* Icon size */
  color: #333; /* Default icon color */
  transition: color 0.3s, transform 0.3s; /* Smooth transition */
}

/* Hover effects */
.quick-view-btn:hover, .share-btn:hover {
  color: #007bff; /* Change color on hover */
  transform: scale(1.1); /* Slightly increase size on hover */
}

.share-btn:hover {
  color: #00af4f; /* Change color on hover */
  transform: scale(1.1); /* Slightly increase size on hover */
}

.like-btn:hover {
  color: red; /* Change color on hover */
  transform: scale(1.1); /* Slightly increase size on hover */
}

.buy-now-btn {
  padding: 10px 20px; /* Adjust for the Buy Now button */
  background-color: #28a745; /* Green for Buy Now */
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 15px;
}

/* Customize the like button styles if needed */


/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 62%;
  height: 90%;
  text-align: center;
  border-radius: 12px;
}

.modal-img {
  width: 100%;
  height: auto;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
}

/* Make it responsive */
@media (max-width: 1200px) {
  #productContainer {
      grid-template-columns: repeat(3, 1fr); /* 3 columns for screens ≤ 1200px */
  }
}
@media (max-width: 900px) {
  #productContainer {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for screens ≤ 900px */
  }
}

@media (max-width: 600px) {
  #productContainer {
      grid-template-columns: 1fr; /* 1 column for screens ≤ 600px */
      text-align: center;  /* Center the text */
      gap: 12vh;  /* Add some space between the products */

  }
}

/* ------------------------------------------------------- */



/* Mobile Resp. */

@media (max-width: 900px){
  .box .image img{
    height: 265px;
  }
  .box .overlayer{
    height: 290px;
  }
}

@media (max-width: 700px){
  .box .image img{
    height: 260px;
  }
  .box  .overlayer{
    height: 285px;
  }
}

@media (max-width: 400px){
  .box .image img{
    height: 280px;
  }
  .box .overlayer{
    height: 285px;
  }
}










/*---------------Footer-----------------*/

footer{
  background: #000000;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 0px;
}
footer::before{
  content: '';
    /*  position:absolute;   */
  left: 0;
  top: 2410px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}
footer .content{
  max-width: 1490px;
  margin: auto;
  padding: 10px 0px 5px 0px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;

}

.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #000000;
}
.top .media-icons a:nth-child(1):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #000000;
}
.top .media-icons a:nth-child(2):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #000000;
}
.top .media-icons a:nth-child(3):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #000000;
}
.top .media-icons a:nth-child(4):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #000000;
}
.top .media-icons a:nth-child(5):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(6){
  background: #000000;
}
.top .media-icons a:nth-child(6):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(7){
  background: #000000;
}
.top .media-icons a:nth-child(7):hover{
  color: #000000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #a4aeb1;;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
  
}
.content .link-boxes .box li a::after{
  content: "";
  position: absolute;
  background-color: #31a3d8;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
}
.hover-footer{
  display: inline-block;
  padding-bottom: 0.25rem;
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #000000;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #fff;
  color: #000000;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #000000;
}
footer .bottom-details .bottom_text{
  max-width: 1500px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #a1a6a7;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
  .icon-bar{
    display: none;
  }
}
@media (max-width: 700px){

  footer{
    position: relative;
    padding: 10px;
  }


.content .link-boxes .box li a{
  color: #77c7db;
} 
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
    padding: 20px;
  }
  footer .content .link-boxes .input-box{
    width: 70%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}

.content img {
  height: 70px;
  width: 180px;
  align-content:stretch;   
}


#preloader{
  background: #000000 url(../Image/loader1.gif) no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}



@media (max-width: 550px) {
a.back-btn {
  font-size: 14px;
}
.title h1 {
  font-size: 18px;
}
section#body-contant {
  margin-top: 20px;
}

}

@media (max-width: 385px){
  .box .image img{
    height: 250px;
  }
}