.download-btn {
  display: inline-block;
  background-color: #28a745;
  /* Green color */
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-btn a {
  color: #fff;
}

.download-btn:hover {
  background-color: #218838;
  /* Darker green on hover */
}

.registraion {
   margin-top: -120px;
}
/* whatsapp icon on web site */

/* .contact-icons {
  position: fixed;
  top: 33%;
  right: 8px;
  background: #fff;
  border-radius: 8px 0 0 8px;
  padding: 0px 5px;
  z-index: 1000;
}

.contact-icons a {
  display: block;
  margin: 10px 5px;
  text-align: center;
  text-decoration: none;
}

.contact-icons a i {
  font-size: 25px;
  transition: transform 0.3s ease;
}

.contact-icons a i:hover {
  transform: scale(1.2);
} */



.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-icons a {
  font-size: 20px;
  width: 45px;
  height: 45px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-icons .whatsapp {
  background-color: #25d366;
  font-size: 28px;
}

.floating-icons .phone {
  background-color: #007bff;
  font-size: 28px;

}

.floating-icons a:hover {
  transform: scale(1.1);
}


/* contact icons style end  */
/* galley css */
.gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.gallery-item {
  flex: 0 1 calc(25% - 20px);
  /* 4 per row by default */
  max-width: 250px;
}

.gallery-item img {
  width: 100%;
  height:149px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

/* Responsive for tablets (2 per row) */
@media (max-width: 992px) {
  .gallery-item {
    flex: 0 1 calc(50% - 20px);
  }

  .logosm img {
    display: none;
  }
}

/* Responsive for mobile (1 per row) */
@media (max-width: 576px) {
  .gallery-item {
    flex: 0 1 100%;
    max-width: 90%;
  }

  /*.funfact-num {*/
  /*  display: none;*/
  /*}*/

  /*.funfact {*/
  /*  display: none;*/
  /*}*/

  .top-bar {
    display: none;
  }

  .logo-small a img {
    max-height: 69px;
    padding-top: 10px;
    margin-top: 14px;
  }
}

@media (max-width:420px) {
  .logo-small a img {
    max-height: 59px;
    padding-top: 13px;
    /* margin-top:-30x;  */
  }
  .title{
      margin-left: 40px;
  }
  .blog-title{
      /*.margin-left: 107px !importent;*/
      padding-left:80px;
  }
}

/* buy now  */
.btn-orange {
  background-color: #ff6b00;
  /* Default orange */
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.btn-orange:hover {
  background-color: #cc5200;
  /* Darker orange on hover */
  color: #fff;
  box-shadow: 0 6px 14px rgba(204, 82, 0, 0.4);
}

/* White outline button */
.btn-outline-light {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Background change on hover for outline button */
.btn-outline-light:hover {
  background-color: #ffffff;
  /* White background on hover */
  color: #333333;
  /* Dark text on white */
  border-color: #ffffff;
}

/* our service box style  */
.feature-title h3 {
  font-weight: 600px;
  font-size: 20px;
}

/* .btn-read {
  margin-top: 20px;
}

.btn-read a {
  background-color: #28166e;
  padding: 7px 12px;
  border-radius: 60px;
  color: #fff !important;
} */
.btn-read {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 60px;
}

/* Shutter background effect */
.btn-read::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #e03721;
  /* Shutter color */
  transition: left 0.4s ease;
  z-index: 0;
  border-radius: 60px;
}

/* Slide effect on hover */
.btn-read:hover::before {
  left: 0;
}

/* Button anchor style */
.btn-read a {
  display: inline-block;
  position: relative;
  z-index: 1;
  /* Stay above shutter */
  background-color: #28166e;
  /* Initial background */
  padding: 7px 20px;
  border-radius: 60px;
  color: #fff !important;
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.3s ease;
}

/* Maintain text and change background on hover */
.btn-read:hover a {
  background-color: #e03721;
  /* New background on hover */
  color: #fff !important;
}


/* media query */
.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f57c00;
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 10;
  white-space: nowrap;
}

.course-thumb {
  position: relative;
}

@media (max-width: 575.98px) {
  .price-tag {
    font-size: 12px;
    padding: 3px 8px;
    top: 6px;
    right: 6px;
  }
}

@media (max-width:768px) {
  .gallery-media {
    display: none;
  }
}

@media (min-width:768px) {
  .gallery-slide {
    display: none;
  }
}

.menuzord-brand img {
  max-height: 90px;
}

@media (max-width: 767px) {
  .logo-small {

    padding-right: 350px;
    display: block;
  }

  .menuzord .showhide em {
    width: 34px;
    height: 6px;
    margin: 3.5px 20px 0;
    float: right;
    background: #777;
  }
}

@media (max-width:656px) {
  .menuzord-brand img {
    max-height: 100px;
  }

  .menuzord .showhide {
    width: 60px;
    height: 70px;
    padding: 44px 0 0;
    display: none;
    float: right;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
  }

  /* .description-form {
    display: none;
  } */

  /*.funfact-num {*/
  /*  display: none;*/
  /*}*/
}

@media (max-width:992px) {
  .top-course-thumb {
    display: none;
  }

  .top-bar {
    display: none;
  }
  /*.registraion .row{*/
  /*  display: none;*/
  /*}*/
  .sm-text-center{
    display:none;
  }
  .description-form{
   display: none;
  }
  .registration-form{
    margin-left: 2px;
  }
  .text-white{
     text-align:center;
     padding-bottom: 47px;
     font-size: 19px;
  }
  .texts-white{
     display:none;
  }
  .mb-md-50{
   margin-bottom:0 !important;
  }
}


@media (max-width:1024px) {

  .header-middle {
    display: none;
    /* margin-top:10px; */
  }

  .pull-right {
    display: none;
  }

  .logo-small {

    display: block;
  }

  .logo-small img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    margin-right: 460px;
  }

  .menuzord-brand img {
    max-height: 100px;
  }

  .menuzord .showhide {
    width: 60px;
    height: 70px;
    padding: 44px 0 0;
    display: none;
    float: right;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
  }

  /* .menuzord-brand img{
    padding-top: 10px;
  } */
}

@media (max-width:1200px) {
  .pull-right {
    display: none;
  }

}

/* min width use in media query */
@media (min-width:1000px) {
  .logo-small {
    display: none;
  }
}

@media (min-width:1035px) {
  .pull-right {
    margin-top: -73px;
    margin-left: 10px;
  }
}

@media (min-width:1200px) {
  .pull-right {
    margin-top: -2px;
    /* margin-left:10px; */
  }
}

@media (min-width:1400px) {
  .pull-right {
    margin-top: -2px;
    /* margin-left:10px; */
  }
}



/* end media query  */
/* style  */
.btneb {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 1.2rem;
}

.btn-buy {
  background: linear-gradient(135deg, #8e2de2, #4a00e0); /* Purple gradient */
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 4px 8px;
  border: none;
  transition: all 0.3s ease;
}

.btn-explore {
  background: linear-gradient(135deg, #ff512f, #dd2476); /* Orange to pink */
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 3px 12px;
  border: none;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: white;
}


.icon-name i {
  position: relative;
  top: 10px;
}

.text-edit {
  color: black;
}

.event-content table tr td a {
  background-color: #007bff;
}

/* header section style */
.text-colored4 {
  font-weight: 700;
  color: #29166f;
}

.detail {
  color: #e03721;
  font-weight: 500;
}


/* gallery in video section style css */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.video-item {
  flex: 0 0 calc(33.333% - 13.33px);
  box-sizing: border-box;
}

iframe,
video {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .video-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .video-item {
    flex: 0 0 100%;
  }
}



/* header style contact style  */
.icons {
  font-size: 15px !important;

}


.top-bar {
  /* background-color: yellow; */
  background-color: #fff;
  border-bottom: 1px solid black;
  padding: 10px 0;
}

.top-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.logo {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 10px;
}

.logo img {
  max-width:237px;
  height: auto;
}

.contact-info {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.icon-text i {
  color: red;
}

.icon-text a {
  color: #000;
  text-decoration: none;
}

/* Responsive for large screens */
@media (min-width: 768px) {
  .row {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    flex: 0 0 25%;
    text-align: left;
    margin-bottom: 0;
  }

  .contact-info {
    flex: 0 0 75%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}



/* style  */


label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

select {
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  cursor: pointer;
}

select:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}





/* section Reservation form */
.form-control {
 margin-bottom:7px;
}


/*.font-54 {*/
/*  font-size: 1.5rem;*/
/*  color: white;*/
/*}*/

/*@media (min-width: 768px) {*/
/*  .font-54 {*/
/*    font-size: 2.5rem;*/
/*  }*/
/*}*/

/*@media (min-width: 1200px) {*/
/*  .font-54 {*/
/*    font-size: 3.5rem;*/
/*  }*/
/*}*/

