*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.blue{
  color: #027bfd;
}

/*MOUSE TRACKER STYLE*/

/*
.mouse-tracker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #246aff33;
  position: fixed;
  pointer-events: none;
  animation: scaleUp 0.2s ease-out;
  
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
*/


/* TOP BAR STYLE */
.top-bar{
  background-color: rgb(0, 0, 0);/*#1c89ff;*/ 
  padding: 2px;
  width: 100%;
  margin: 0 auto; /* This will center the element */
  text-align: center;
} 

.top-bar-para{
  font-weight: 600;
  padding: 8px;
  color: white;
}

.top-bar-para:hover{
  text-decoration: underline;
}
/* NAVIGATION STYLE */
nav {
  background-color: #f5f5f5;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo a {
  color:  rgb(0, 0, 0);
  font-size: 24px;
  text-decoration: none;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-weight:900;
}

.nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.nav-links li .navb {
  color:  rgb(0, 0, 0);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-variant: small-caps;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

/*nav buttons hover style*/
.nav-links li .navb::after {
  content: ''; /* Create an empty content for the pseudo-element */
  display: block;
  height: 3px; /* Set the height of the bottom line */
  width: 0; /* Set initial width to 0 so it's not visible by default */
  background-color: #1c89ff; /* Set the color of the bottom line */
  position: absolute;
  bottom: 0;
  left: 0%;
  top: 100%;
  transition: width 0.7s ease; /* Add a smooth transition effect */
}

/* Hover effect for the bottom line animation */
.nav-links li .navb:hover::after {
  width: 100%; 
  left: 0; 
}

.dropdown-icon {
  display: none;
  cursor: pointer;
}

.dropdown-links {
  display: none;
  background-color: black;
  padding: 20px;
  text-align: center;
}

.dropdown-links li {
  margin-bottom: 13px;
  list-style-type: none;
  width: 130px;
  padding: 5px;
}

.dropdown-links li a {
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

  #special{
    background: #1c89ff;
    padding: 10px;
    border-radius: 5px;
    transition: all 2s;
  }

  #special:hover{
    background:#124c86;
  }

  #special a{
    color:white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    transition: all 2s;
  }

  #special a:hover{
    color: rgb(185, 185, 185);
  }


  /* HOME PAGE STYLE */

/*--- WELCOME SECTION STYLE ---*/
.carousel {
  position: relative;
  width: 100vw;
}

.slide {
  width: 83%;
  object-fit: cover;
  margin: auto; /* Center the carousel horizontally */
}

.slides {
  display: flex;
  transition: transform 0.3s ease-in-out;
  background-color: #000;
}

.dots-container {
  display: flex;
  justify-content: center;
  padding: 10px;
  padding-bottom: 18px;
  background-color: #f5f5f5;
}

.dot {
  height: 13px;
  width: 13px;
  background-color: white;
  border: #000 solid 2px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #000000;
}


/*--- WORKOUTS SECTION STYLE ---*/

.workout-header{
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  color: #000000;
  padding: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}

/*workouts section style*/
.workouts {
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  padding-bottom: 60px;
  background-color: #f5f5f5;
}

.workout1, .workout2, .workout3 {
  transition: transform 0.3s ease;
}

.workout1:hover,
.workout2:hover,
.workout3:hover {
  transform: scale(1.02);
  border-left: #f5f5f5 2px solid;
  border-right: #f5f5f5 2px solid;
}

.workouts img {
  width: 99%; /* Make images fill the container width */
  max-width: 450px; /* Set maximum width for larger screens */
  height: auto; /* Maintain aspect ratio */
  border-radius: 17px;
}

/*---BLOG SECTION STYLE---*/
.Blog{
  padding: 20px;
 }
 
 .blog-header{
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  color: #000000;
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 40px;
 }

 .blue{
  color: #027bfd;
 }

 .article {
  display: inline-block;
  width: 30%; /* Adjust width as needed */
  margin: 20px;
  text-align: left;
}

.article img {
  width: 70%;
  height: 230px;
  display: block;
  border-radius: 5px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

.article img:hover{
transform: scale(1.01);
}

.article h2 {
  margin-top: 20px;
  font-size: 1.2em;
  text-align: center;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.check-our-blog{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding-bottom: 30px;
}


/*--- RECOMMEND SECTION ---*/
  .recommend {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    padding-top: 60px;
    background-color: #037cc2;
    background-image: url('Images/recommendimage2.png');
    background-size: cover; /* Ensures the background image covers the entire element */
}

.recommend-header {
    margin-bottom: 20px;
    text-align: center;
    font-variant: small-caps;
    font-family: Verdana;
    font-size: 32px;
    color: #fff;
}

.recommend-paragraph {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  color: #fff;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.recommend-button {
    display: flex;
    justify-content: center;
    font-variant: small-caps;
    padding-bottom: 20px;
}

.recommend-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.recommend-btn:hover{
  background-color: #ececec;
}

/*---SHOP SECTION STYLE---*/
    
.shop-header{
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  color: #000000;
  padding: 20px;
  padding-top: 30px;
  background-color: #f8f8f8;
   }

  .shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    padding-bottom: 50px;
    padding-top: 40px;
  }

  .product {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 350px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
  }

  .product img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .product-name {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
  }

  .product-price {
    font-size: 18px;
    font-weight: bold;
    color: #d43900;
    margin-bottom: 10px;
  }

  .buy-now-btn-container {
    display: flex;
    justify-content: center;
  }

  .buy-now-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #027bfd;
    color:rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.9s ease;
    text-align: center; /* Added to center the button */
  }

  .buy-now-btn:hover{
    font-weight: 700;
    background-color: #1f71c3;
  }
   
  .shop-now-button {
    /* Center the "Shop Now" button */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 35px;
    background-color: #f8f8f8;
  }
   
  .shop-now-btn{
    display: inline-block;
    padding: 20px 50px;
    background-color: transparent;
    border: 2px #027bfd solid;
    color: #027bfd;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.5s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }

  .shop-now-btn:hover{
    color: white;
    background-color: #027bfd;
    font-weight: 700;
  }

  /*---FAQ SECTION STYLE---*/

  .faq-header{
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    font-family:Verdana;
    font-variant: small-caps;
    padding-top: 30px;
  }

  .faq-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 30px;
  }
  
 .faq-header{
    text-align: center;
    font-weight: 800;
    font-family:Verdana;
    font-variant: small-caps;
    padding-bottom: 35px;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    transition: height 2s ease;
  }
  
  .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  .toggle-icon {
    font-size: 20px;
  }
  
  .answer {
    display: none;
    font-size: 16px;
    color: #666;
    padding-top: 10px;
    max-height: 0;
     overflow: hidden;
    transition: max-height 0.3s ease;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  
  /* CSS rule for the active class */
  .faq-item.active .answer {
    display: block;
    max-height: 1000px;
  }




  /*----FOOTER STYLE---*/
   footer{
     background: #1a1a1a;
     height: auto;
     width: 100vw;
     font-family: "Open Sans";
     padding-top: 40px;
     color: #fff;
   }

   .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
   }

   .footer-content h3{
     font-size: 1.8rem;
     font-weight: 400;
     text-transform: capitalize;
     line-height: 3rem;
   }

   .footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 17px;
   }

  
   .pf a{
    text-decoration: none;
    color: #1f71c3;
    font-weight: 600;
    transition: all 1s ease;
   }

   .pf a:hover{
    color:#024385;
   }
   

   .socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
   }

   .socials li{
    margin: 0 10px;
   }

   .socials a{
    text-decoration: none;
    color: #fff;
   }

   .socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
   }

   .socials .fa-instagram:hover{
     color:rgb(202, 41, 202);
   }
   
   .socials .fa-facebook:hover{
    color: #1f71c3;
  }

  .socials .fa-youtube-play:hover{
    color: rgb(235, 100, 100);
  }

  .socials .fa-spotify:hover{
    color: rgb(39, 167, 39);
  }

   .footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
   }

   
   
   .white{
    color: white  ; 
    font-weight: 600;
   }
  


  /*---- MOBILE RESPONSIVE ----*/

  /*Media query for navigation section*/
  @media only screen and (max-width: 868px) {
    .nav-links {
      display: none;
    }
  
    .dropdown-icon {
      display: block;
      color: rgb(0, 0, 0);
      font-size: 20px;
    }
  
    .dropdown-links {
      display: center;
      position: absolute;
      top: 110px;
      left: 0px;
      width: 100%;
      z-index: 2;
      padding-bottom: 10px;
      font-variant: small-caps;
    }
  
    .dropdown-links.show {
      display: grid;
      justify-content: center;
    }
  
  }
 
  /*Media query for welcome section*/

  @media only screen and (max-width: 868px) {
    .slide {
      width: 100%;
      object-fit: cover;
      margin: auto; /* Center the carousel horizontally */
    }
  } 

  /*Media query for Workouts section*/
  @media (max-width: 768px) {
    .column {
        flex-direction: column;
        align-items: center;
    }

    .workouts{
      padding-bottom: 30px;
    }

    .workouts img {
        max-width: 100%; /* Reduce the image size to 80% of the container width */
        width: auto;
        margin-bottom: 15px; /* Decrease the bottom margin */
    }
}

 /*Media query for offer section*/
@media (max-width: 1120px){
  .offer{
    display: none;
  }
}

/* Media query for Blog section / header*/
@media only screen and (max-width: 600px) {
  .blog-header {
    font-size: 30px;
  }
}


/*----Media quary for Blog section----*/
@media only screen and (max-width: 1500px){
  .article {
    display: inline-block;
    width: 29%; /* Adjust width as needed */
    margin: 20px;
    text-align: left;
}

.article img {
    width: 100%;
    height: 220px;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
}
}

 /*2nd Media*/
 @media only screen and (max-width: 1145px){
  .article {
    display: inline-block;
    width: 29%; /* Adjust width as needed */
    margin: 20px;
    text-align: left;
}

.article img {
    width: 100%;
    height: 195px;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
}
}

/*3th Media*/
@media only screen and (max-width: 1031px){ 
  .article {
    display: inline-block;
    width: 28%; /* Adjust width as needed */
    margin: 20px;
    text-align: left;
}

.article img {
    width: 100%;
    height: 160px;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
}
}


  /*4th Media*/
  @media only screen and (max-width: 868px){ 
    .article {
      display: block;
      width: 85%; /* Adjust width as needed */
      margin: 20px auto;
      text-align: left;
  }
  
  .article img {
      width: 80%;
      height: auto;
      display: block;
      border-radius: 5px;
      margin-bottom: 10px;
  }

  .article h2{
    margin-bottom: 30px;
  }
}

 /*Media query for recommend section*/

    @media (max-width: 1460px){
      .recommend{
        background-image: url('Images/recommendimage.png');
      }
    }   

 @media (max-width: 1003px) {
  .recommend {
      background-image: none;
  }
}

/*Media query for all Shop Products*/
@media only screen and (max-width: 860px){
  .product{
    width: 210px;
  }

  .pr1{
    display: none;
  }

  .pr2{
    display: none;
  }
}

 /*Media query for all h1 headers*/
  @media (max-width:600px){
    .workout-header{
      font-size: 23px;
      padding-bottom: 10px;
    }

    .recommend-header{
      font-size: 25px;
    }

    .blog-header{
      font-size: 30px;
    }

    .shop-header{
      font-size:30px
    }

    .faq-header{
      font-size: 30px;
    }

  }

