/* Hero section styling */
#hero {
  position: relative;
}

#hero .welcome {
  background: var(--primary-color);
}

#hero .welcome h3,
#pricing h3 {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--fifth-color);
  font-family: var(--font-goudy);
}

/* logo Section */
#hero .hero {
  background: url(../images/bg.jpg) bottom center no-repeat;
  background-size: cover;
  min-height: 90vh;
  position: relative;
}

#hero .hero h1,
#hero .hero h2 {
  text-shadow: var(--text-shadow);
  font-family: var(--font-Arvo);
}

#hero .hero img {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80%;
}

/* hero social */
#hero .homeIcons {
  position: absolute;
  top: 10rem;
  left: 4vw;
}

.homeIcons a i {
  font-size: 0.85rem;
  color: var(--gray-color);
}
.homeIcons a i:hover{
  color: var(--third-color);
}
.homeIcons span {
  min-height: 2rem;
  width: 1px;
  background: var(--gray-color);
  margin: auto;
}

/* Logo Section Styling */
#hero .logoSec {
  background: url(../images/bgbanner.jpg) center center no-repeat;
  background-size: cover;
}

#hero .logoSec h4 {
  font-family: var(--font-cormorant-garamond);
  text-transform: uppercase;
}

#hero .logoSec .sloganSec {
  background: var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 600;
}


.video-container {
  position: relative;
  width: 80%;
  max-width: 600px;
}

video {
  width: 100%;
  border-radius: 10px;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
}
.plyr__controls__item,
.plyr__controls__item .plyr__control {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

input[type="range"] {
  width: 70%;
}


/* fitnessJourney section styling */
#fitnessJourney {
  overflow-x: hidden !important;
}

.fitnessJourney .features .singleFeature {
  margin: 1.7rem 0;
}

.fitnessJourney .features .toFeatureText {
  padding: 0.25rem;
  border: 3px solid var(--third-color);
  border-radius: 15px;
  margin-top: 13px;
  transition: var(--transition);
}

.fitnessJourney .features .toFeatureText:hover {
  background: var(--third-color);
  color: var(--white-color);
  font-weight: 700;
}

.fitnessJourney .logoSec img {
  width: 20rem;
  transform: translateX(-20%);
}

#fitnessJourney .stats {
  background: var(--primary-color);
}

#fitnessJourney .stats h2 {
  display: inline;
}

#fitnessJourney .stats h2:nth-of-type(2n) {
  color: var(--fifth-color);
  font-weight: 800;
}


/* Our Offerings */
/* offering features */
#Offerings .offeringFeatures {
  background: url(../images/bgbanner.jpg) bottom center no-repeat;
  background-size: cover;
  overflow-x: hidden !important;
}

#Offerings .offeringsLogo img {
  width: 30rem;
  margin-top: -20rem;
  transform: translateX(-20%);
}

#Offerings .offeringFeatures {
  padding-top: 9rem;
}

.card {
  background: var(--card-color);
  border-radius: 10%;
}

.card img {
  border-radius: 10%;
}

.card-title {
  color: var(--third-color);
  font-family: var(--font-anton);
  font-size: 1.8rem;
}

/* Testimonials Section Background */
#Testimonials {
  background: url(../images/bgbanner.jpg) bottom center no-repeat;
  background-size: cover;
  min-height: 63vh;
}

/* Left Section Styling */
#Testimonials .leftSide {
  position: relative;
  padding-top: 8rem;
}

#Testimonials .leftSide h2 {
  text-shadow: var(--text-shadow);
}

#Testimonials .leftSide img {
  margin-top: -23rem;
}

/* Testimonial Content */
.testimonial-wrapp,
.testimonial-wrapp .testimonial-text,
.testimonial-wrapp .testimonial-photo,
.testimonial-wrapp .quoted,
.testimonial-quote {
  position: relative;
  -webkit-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
}

.testimonial-wrapp .quoted i {
  font-size: 1.75rem;
}

.item .testimonial-wrapp i {
  color: var(--fifth-color);
}

.testimonial-wrapp .testimonial-photo img {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
}


/*-------------------------------*/
/*OWl Slider*/
/*-------------------------------*/
/*Dots*/
.owl-dots {
  margin-top: 1.25rem;
  text-align: center;
}

.vertical-dot .owl-dots {
  display: inline-table;
  width: 1.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
}

.owl-dots .owl-dot {
  height: 0.75rem;
  width: 0.75rem;
  background: var(--gray-color) !important;
  margin: 2px 3px;
  position: relative;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}

.owl-dots .owl-dot::after {
  background-color: var(--third-color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  visibility: hidden;
  width: 100%;
}

.vertical-dot .owl-dots .owl-dot::after {
  display: none;
}

.vertical-dot .owl-dots .owl-dot.active {
  height: 1rem;
  width: 1rem;
  background: #fff;
}

.owl-dots .owl-dot.active::after,
.owl-dots .owl-dot:hover:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
}


/* Pricing Plan  */
#pricing .plan .PlanBox {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0,0, 0, 0.55)),
    url(../images/pricePlanBg.jpg) bottom center no-repeat;
  background-size: cover;
  border-radius: 5%;
  border: 2px solid var(--fifth-color);
  box-shadow: var(--fifth-color) 0px 0px 5px;
  transition: var(--transition);
}
#pricing .plan .PlanBox:hover {
  box-shadow: var(--fifth-color) 0px 0px 12px;
}

/* Section Title, Tagline, and Price Description */
.PlanBox h2,
.PlanBox p,
.PlanBox .my-4 h3,
.contacttext h4 {
  font-size: 1.2rem;
  font-family: var(--font-playfair) !important;
  color: var(--white-color) !important;
  margin-bottom: 8px;
}

.PlanBox p {
  font-size: 0.9rem;
}

/* Main Subheading */
.PlanBox h3 {
  font-size: 1.8rem !important;
  font-family: var(--font-anton) !important;
  color: var(--third-color) !important;
  margin-bottom: 8px;
}

/* Price - Primary Focus */
.PlanBox h1 {
  font-size: 5rem;
  font-weight: 900;
  color: var(--third-color) !important;
  font-family: var(--font-big-shoulders);
  margin: 0;
}


/* Features List Title */
.PlanBox h4 {
  font-size: 1rem;
  color: var(--third-color);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Features List Items */
.PlanBox ul li {
  font-size: 0.75rem;
  color: var(--white-color);
  margin-bottom: 6px;
  transition: var(--transition);
}

.PlanBox ul li:hover {
  font-size: 0.8rem;
  color: var(--third-color);
}

/* Checkmark Styling */
.PlanBox ul li b {
  color: var(--third-color);
  margin-right: 5px;
}



/* contact us section */
#contact {
  background: url(../images/bg.jpg) bottom center no-repeat;
  background-size: cover;
}

#contact .contactUsHeading {
  background: var(--primary-color);
}

.contactUsHeading H3 {
  display: inline;
  border: 2px solid var(--white-color);
  padding: 0.35rem 1rem;
}

#contact h5 {
  font-family: var(--font-playfair) !important;
}

#contact h3 {
  color: var(--fifth-color);
  font-family: var(--font-big-shoulders) !important;
  font-weight: 900;
}

#contact .ContactDetail h4 {
  color: var(--third-color) !important;
}

.contact-box {
  padding: 1rem;
  border: 2px solid var(--third-color);
  color: white;
  position: relative;
}

.contact-box h4 {
  color: var(--third-color) !important;
  font-family: var(--font-big-shoulders) !important;
  letter-spacing: 2px;
  font-weight: 900 !important;
}

.form-label {
  font-size: 0.8rem;
  color: var(--third-color) !important;
}

.form-control,
.contact-box textarea {
  width: 100%;
  padding: 5px;
  border: 2px solid var(--third-color) !important;
  background: transparent;
  color: white !important;
  outline: none;
  font-size: 0.8rem;
}

.form-control:focus,
.contact-box textarea:focus {
  background: transparent !important;
  border-color: orange !important;
  box-shadow: none;
}


.form-control::placeholder {
  color: var(--gray-color) !important;
  font-size: 0.75rem;
}

textarea {
  height: 7rem;
}

.send-btn {
  background: var(--third-color) !important;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  transition: var(--transition);

}

/* Hover effect */
.send-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow) !important;
}

.form-group label {
  margin-top: 1rem;
}

/* Placeholder Color */
select option {
  color: #222 !important;
  font-weight: 700;
}

footer i {
  font-size: 1.25rem;
}

footer i:hover {
  color: var(--third-color);
}








/* responsive css */
@media (max-width: 1200px) {
  #hero .hero img {
    width: 90%;
  }

  #hero .welcome h3,
  #pricing h3 {
    font-size: 3rem;
  }

  .fitnessJourney .logoSec img {
    width: 18rem;
    transform: translateX(-25%);
  }
}

@media (max-width: 992px) {
  #hero .hero {
    min-height: 70vh;
  }

  #hero .welcome h3,
  #pricing h3 {
    font-size: 2.75rem;
  }

  #hero .homeIcons {
    top: 7rem;
    left: 2vw;
  }

  #Offerings .offeringFeatures {
    padding-top: 3rem;
  }

  #Offerings .offeringsLogo img {
    width: 28rem;
  }
}

@media (max-width: 768px) {

  #hero .welcome h3,
  #pricing h3 {
    font-size: 2.5;
  }

  .fitnessJourney .logoSec img {
    width: 15rem;
    transform: translateX(-25%);
  }

  #Offerings .offeringsLogo img {
    width: 20rem;
    margin-top: -02rem;
    transform: translateX(10%);
  }

  #Testimonials .leftSide img {
    margin-top: -18rem;
  }
}

@media (max-width: 576px) {
  #hero .hero {
    min-height: 50vh;
  }

  #hero .welcome h3,
  #pricing h3 {
    font-size: 2.25rem;
  }


  #hero .homeIcons {
    top: 4rem;
    left: 1.5vw;
  }

  .homeIcons span {
    min-height: 1rem;
  }

  .homeIcons a i {
    font-size: 0.5rem !important;
  }

  #fitnessJourney .fitnessJourney {
    position: relative;
  }

  #fitnessJourney .logoSec {
    position: absolute;
    top: -13%;
    left: -20%;
    transform: translate(50%, 50%);
    z-index: -5;
  }

  #fitnessJourney .logoSec img {
    width: 25rem !important;
    opacity: 0.3;
  }

  #Offerings .offeringsLogo img {
    width: 20rem;
    margin-top: 0rem;
    transform: translateX(-10%);
  }

  #Testimonials {
    min-height: 0vh;
  }
}

@media (max-width: 450px) {
  #hero .hero {
    min-height: 35vh;
  }

  #hero .welcome h3,
  #pricing h3 {
    font-size: 1.85rem;
  }

  #Offerings .offeringsLogo img {
    width: 20rem;
    margin-top: 0rem;
    transform: translateX(-17%);
  }
}



/* Hide the download button in browsers like Chrome */
video::-internal-media-controls-download-button {
  display: none;
}

/* Adjust the media controls panel to account for the hidden button */
video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
  /* Adjust as needed */
}