 /* google play  */
 .google-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;

  background-color:black  ;
  border: 1px solid yellow;

  color: #fff;
  font-family: Arial, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Play Icon */
.gp-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;

  background: yellowgreen;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: bold;
}

/* Text */
.gp-text small {
  font-size: 10px;
  display: block;
  opacity: 0.9;
}

.gp-text strong {
  font-size: 16px;
  line-height: 1;
}

/* Video container styles */
.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Black fade color */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-size: 3rem;
  margin: 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.overlay h2 {
  font-size: 2rem;
  margin: 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.overlay p {
  font-size: 1.2rem;
  margin: 5px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.buttons {
  margin-top: 20px;
}
/* heme button hover */
.home-btn:hover{
background-color: #002347;
color: #fdc362;
}

.btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #002347;
  color: #fdc362;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}
.btn-2 {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #fdc362;
  color: #002347;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover {
  background: #0056b3;
}

/* Content styles */
.content {
  padding: 20px;
  background: #f4f4f4;
}

.content h2 {
  font-size: 2rem;
}

.content p {
  font-size: 1rem;
  margin: 10px 0;
}

/* Social icons */
.social-icons {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  text-decoration: none;
  color: #002347;
  background: #fdc362;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.2rem;
}

.social-icons a:hover {
  background: #555;
}

/* Responsive styles */
@media (max-width: 768px) {
  .overlay h1 {
      font-size: 2rem;
  }
  .overlay h2 {
      font-size: 1.5rem;
  }
  .overlay p {
      font-size: 1rem;
  }
  .btn {
      font-size: 0.9rem;
      padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .overlay h1 {
      font-size: 1.8rem;
      margin-top: -80px;
  }
  .overlay h2 {
      font-size: 1.5rem;
  }
  .overlay p {
      font-size: 1.1rem;
  }
  .btn {
      font-size: 1rem;
      padding: 10px 30px;
  }
  .buttons{
    display: flex;
    flex-direction: column
  }
}
#download{
    background-color: #fdc362;
    color: #002347;
 }
#Servise{
  background-color: #fdc362;
  border-bottom: 5px solid #002347;
  border-radius: 2px 2px 5px 5px;
  color: #002347;

 }
 #Servise:hover{
  background-color: #002347;
  border-bottom: 5px solid #fdc362;
  border-radius: 0 0 5px 5px;
  color: #f4f4f4;

 }
 #buttonx{
  background-color: #fdc362;
  color: #002347;
 }
 #buttonx:hover {
  background-color:#002347;
  color: #fdc362;
  transition: all o.5s ease-in;
 }
 
 
  
 #buttonz:hover{
  
  transition: all o.5s ease-in;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);


 }

 /*  */
 
 .trainers-section {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.trainer {
  flex: 0 0 300px;
  background-color: white;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0px 0px 10px rgb(204, 201, 201);
}

.trainer-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
   margin-bottom: 1rem;
   border: 5px outset #fdc362;
   padding: 3px;
 
}

.trainer-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #002347;
}

.stars {
  color: #fdc362;
  margin-bottom: 0.5rem;
}

.trainer-info {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .trainer {
    flex: 0 0 200px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .trainer {
    flex: 0 0 250px;
  }
}

@media (min-width: 992px) {
  .trainers-section {
    justify-content: space-between;
    overflow-x: hidden;
  }
}
@media (max-width: 480px) {
  .trainer {
      flex: 0 0 330px;
      scroll-behavior: auto;
  }
}

/*  */


.text-section {
  text-align: center;
  padding: 2rem;
  margin: 0 auto;
  max-width: 800px;
}

.heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.paragraph {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 576px)   {
  .heading {
    font-size: 1.5rem;
  }

  .paragraph {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .heading {
    font-size: 2.5rem;
  }

  .paragraph {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .heading {
    font-size: 3rem;
  }

  .paragraph {
    font-size: 1.2rem;
  }

  
  }

  /*  */
  .scroll-container {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth; /* Smooth scrolling effect */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #002347 #ddd; /* Scrollbar track and thumb color for Firefox */
}

/* Webkit scrollbar styles */
.scroll-container::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
}
.scroll-container::-webkit-scrollbar-track {
    background: #ddd; /* Track color */
}
.scroll-container::-webkit-scrollbar-thumb {
    background: #002347; /* Thumb color */
    border-radius: 5px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #fdc362; /* Thumb hover color */
}

.course-card {
    flex: 0 0 auto;
    width: 340px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.course-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.course-card h3 {
    color: #002347;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.course-price,
.online-fee {
    font-size: 1.2rem;
    margin: 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.star-icons {
    color: gold;
}
.read-more {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    background-color: #002347;
    color: white;
}
.read-more:hover {
    transition: all 0.3s ease-in-out;
    background-color: #fdc362;
    color: white;
}

/* Responsive styles */

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .scroll-container {
        gap: 10px;
        padding: 10px;
        scroll-snap-type: x mandatory; /* Enable snap scrolling */
    }
    .course-card {
        width: 280px; /* Smaller card size */
        scroll-snap-align: start; /* Align items to the start when snapping */
    }
}

/* Large mobile devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .scroll-container {
        gap: 15px;
        padding: 15px;
    }
    .course-card {
        width: 300px;
    }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .scroll-container {
        gap: 20px;
        padding: 20px;
    }
    .course-card {
        width: 320px;
    }
}

/* Laptops (1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .scroll-container {
        gap: 25px;
        padding: 25px;
    }
    .course-card {
        width: 340px;
    }
}

/* Desktops (1441px and above) */
@media (min-width: 1441px) {
    .scroll-container {
        gap: 30px;
        padding: 30px;
    }
    .course-card {
        width: 360px;
    }
}


/* Responsive styles */
  


#foot-img{
  aspect-ratio: 16/12;
}


 /*  */

 #course-img{
  aspect-ratio: 11/6;
  
 }


 /* parallex */


/* Parallax Section */
.parallax {
  position: relative;
  height: 50vh; /* Full viewport height */
  background-image: url('https://images.pexels.com/photos/1055613/pexels-photo-1055613.jpeg?cs=srgb&dl=pexels-lukas-hartmann-304281-1055613.jpg&fm=jpg'); /* Replace with your image */
  background-attachment: fixed; /* Key for parallax effect */
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Optional: Adds a dark overlay */
  z-index: 1;
}

/* Content inside Parallax Section */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.content h1 {
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
  color: #fdc362;
}

.content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}
 /* course */

 /* General Reset */
 

.cou-m-main {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10px;
}

/* Container Styles */
.container-coursee {
  max-width: 800px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Image Styles */
.course-m-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  aspect-ratio: 11/5;
}

/* Heading Styles */
.c-h {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

/* Pricing Styles */
.pricing {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.c-ofl, .c-onl {
  flex: 1;
  background-color: #002347;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.c-ofl h2, .c-onl h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fdc362;
}

.c-ofl p, .c-onl p {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* Paragraph Styles */
.c--p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button Styles */
.cou-bbtn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fdc362;
  color: #002347;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cou-bbtn:hover {
  background-color: #002347;
  color: #fdc362;
  transition: all 0.5s ease-in;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pricing {
    flex-direction: column;
    gap: 10px;
  }

  .c-h {
    font-size: 1.8rem;
  }

  .c--p {
    font-size: 0.9rem;
  }

  .cou-bbtn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .c-h {
    font-size: 1.5rem;
  }

  .c-ofl h2, .c-onl h2 {
    font-size: 1rem;
  }

  .c-ofl p, .c-onl p {
    font-size: 1.2rem;
  }

  .c--p {
    font-size: 0.85rem;
  }
}
/* profile page card styles */

.pro-soc-icn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
 }

.pro-soc-icn  a {
  text-decoration: none;
   transition: color 0.3s ease;
   }

.pro-soc-icn  a:hover {
  color: #007bff; /* Change color on hover */
}

#pro-i{
font-size: 20px;
background-color: #002347;
color: #fdc362;
padding: 10px;
border-radius: 50%;
}
#pro-i:hover{
  background-color: #fdc362;
color: #002347;
  transition: all 0.5s ease-in;
    }

    
    #ab-img{
      aspect-ratio: 9/9;
     }
     .dropdown-item:hover{
      background-color: #002347;
      color: #fdc362;
     }


  
      .btn:hover{
        background-color: #002347;
        color: #fdc362;
      }


      /* styles contact watsapp */

      .wat {
        position: fixed;
        right: 20px; /* Use right positioning for flexibility */
        bottom: 20px;
        z-index: 1;
      }
      
      #s-img {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        margin-top: 7px;
        display: block;
        transition: all 0.3s ease; /* Smooth animations for hover and resizing */
      }
      
      /* Responsive Styles */
      
      /* Small Mobiles (max-width: 576px) */
      @media (max-width: 576px) {
        .wat {
          right: 10px; /* Adjust position for small screens */
          bottom: 30px;
        }
        #s-img {
          height: 50px; /* Reduce size for smaller screens */
          width: 50px;
        }
      }
      
      /* Medium Devices (Tablets, max-width: 768px) */
      @media (min-width: 577px) and (max-width: 768px) {
        .wat {
          right: 15px;
          bottom: 30px;
        }
        #s-img {
          height: 50px; /* Slightly larger size for tablets */
          width: 50px;
        }
      }
      
      /* Large Tablets and Small Laptops (max-width: 1024px) */
      @media (min-width: 769px) and (max-width: 1024px) {
        .wat {
          right: 20px; /* Maintain balance for larger screens */
          bottom: 20px;
        }
        #s-img {
          height: 48px; /* Slightly larger size for medium devices */
          width: 48px;
        }
      }
      
      /* Laptops and Desktops (min-width: 1025px) */
      @media (min-width: 1025px) {
        .wat {
          right: 25px; /* Slight adjustments for larger screens */
          bottom: 25px;
        }
        #s-img {
          height: 50px; /* Default size */
          width: 50px;
        }
      }
      