body {
  /* font-family: Arial, sans-serif; */
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

.side-button {
  position: fixed;
  right: -150px;
  /* Start off-screen */
  top: 50%;
  transform: translateY(-50%);
  padding: 15px;
  background-color: #07155f;
  color: white;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  z-index: 1000;
  animation: slideInButton 1s ease forwards;
  /* Button animation */
}

@keyframes slideInButton {
  0% {
    right: -150px;
    /* Start off-screen */
  }

  100% {
    right: 0;
    /* Final position */
  }
}

.pop-form {
  display: none;
  position: fixed;
  right: -100%;
  /* Start off-screen */
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  animation: slideInForm 1s ease forwards;
  /* Form animation */
}

@keyframes slideInForm {
  0% {
    right: -100%;
    /* Start off-screen */
  }

  100% {
    right: 0;
    /* Final position */
  }
}

.pop-form .container {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 400px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.pop-form .container .contact-title {
  text-align: center;
}

.pop-form .container .contact-page-form {
  display: flex;
  flex-direction: column;
}

.pop-form .container .contact-input {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pop-form .container .contact-inner {
  flex: 1 1 100%;
}

.pop-form .container .contact-inner.contact-message {
  flex: 1 1 100%;
}

.pop-form .container .contact-inner input,
.pop-form .container .contact-inner textarea,
.pop-form .container .contact-inner select {
  width: 90%;
  padding: 10px;
  margin: 9px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.pop-form .container .contact-submit-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pop-form .container .submit-btn,
.pop-form .container .btn.cancel {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.pop-form .container .btn.cancel {
  background-color: red;
}

@media (max-width: 600px) {
  .side-button {
    padding: 10px;
    font-size: 14px;
  }

  .pop-form .container {
    width: 90%;
    padding: 15px;
  }

  .pop-form .container h2 {
    font-size: 18px;
  }

  .pop-form .container .contact-inner input,
  .pop-form .container .contact-inner textarea {
    padding: 8px;
  }

  .pop-form .container .submit-btn,
  .pop-form .container .btn.cancel {
    padding: 8px;
    font-size: 16px;
  }
}


/* -------custome CSS------ */


.course-card {
  width: 100%;
  max-width: 400px;
  margin: 1.5rem auto;
  display: flex;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(165, 115, 115, 0.1);
  overflow: hidden;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.course-card.expanded .card-half {
  width: 50%;
}

.card-half {
  width: 100%;
  transition: width 0.6s ease;
  overflow: hidden;
  position: relative;
}

.card-half.left {
  background-color: #ccd6e0;
  padding: 1rem;

  background-image: url();
}

.card-half.right {
  background-color: #a09d9d;
  padding: 1rem;
  display: none;
  align-items: center;

}

#on {
  background-size: cover;
}

.course-card.expanded .card-half.right {
  display: flex;
  flex-direction: column;
}

.status-badge {
  font-size: 0.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.status-online {
  background-color: #d4edda;
  color: #155724;
  font-size: larger;

}

.status-offline {
  background-color: #f8d7da;
  color: #721c24;
  font-size: larger;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 20px;
  object-fit: contain;
}

.logo-img {
  max-width: 120px;
}

#box {
  border: 3px double rgb(204, 185, 185);
  height: auto;
  border-radius: 5px;
  background-color: #3773c1;
  color: #dad3d3;

}

.client-enroll-btn {
  background-color: #155724;
  border-radius: 6px;
  width: 70px;
}

.table thead th {
  background-color: #007bff;
  color: white;
  text-align: center;
}

.table td,
.table th {
  vertical-align: middle;
  text-align: center;
}

.get-fees {
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
}

.get-fees:hover {
  color: #0056b3;
}

/* Responsive styling for mobile screens */
@media (max-width: 768px) {
  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Stacks rows vertically */
  .table tbody,
  .table thead,
  .table tr,
  .table th,
  .table td {
    display: block;
    text-align: left;
  }

  .table thead {
    display: none;
    /* Hides table header for compact display */
  }

  .table tbody tr {
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
  }

  .table tbody tr td {
    position: relative;
    padding-left: 50%;
  }

  .table tbody tr td::before {
    position: absolute;
    left: 0;
    width: 45%;
    padding-right: 1rem;
    white-space: nowrap;
    font-weight: bold;
  }

  /* Labels for each row in mobile view */
  .table tbody tr td:nth-child(1)::before {
    content: "Date";
  }

  .table tbody tr td:nth-child(2)::before {
    content: "Days";
  }

  .table tbody tr td:nth-child(3)::before {
    content: "Time (IST)";
  }

  .table tbody tr td:nth-child(4)::before {
    content: "Batch Type";
  }

  .table tbody tr td:nth-child(5)::before {
    content: "Duration per Session";
  }

  .table tbody tr td:nth-child(6)::before {
    content: "Fees";
  }
}

.feature-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.feature-card h5 {
  font-weight: bold;
  color: #007bff;
}

.feature-card p {
  margin: 0.5rem 0;
  color: #333;
}

/* Styling for smaller screens */
@media (max-width: 768px) {
  .feature-card h5 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}



.services-1 {
  margin-bottom: 40px;
  padding: 2em;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  -webkit-box-shadow: 0px 20px 69px -27px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 20px 69px -27px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 20px 69px -27px rgba(0, 0, 0, 0.17);
}

.services-1 .icon {
  display: block;
  margin-bottom: 30px;
}

.services-1 .icon i {
  font-size: 60px;
  line-height: 1.0;
  color: #3b60e9;
}

.services-1 .desc h3 {
  line-height: 1.3;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  color: #3d29bb;
}

.services-1 .desc h3:after {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  content: '';
  width: 30px;
  height: 1px;
  background: #3b60e9;
  margin: 0 auto;
}

.services-1 .desc h3 a {
  color: #fff;
}

.services-1 .desc h4 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 18px;
}

.services-1 .desc span {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  color: #3b60e9;
}

.services-1:hover {
  background: #3b60e9;
}

.services-1:hover .icon {
  color: #fffafa;
}

.services-1:hover h3 {
  color: #000000;
}

.services-1:hover h3:after {
  background: #000000;
}

.progress-wrap {
  width: 100%;
  margin-bottom: 30px;
}

.progress-wrap h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* review star */
.rating {
  color: gray;
}


/* Review video end  */

#Overview {
  /* line-height: 0.9; */
  /* padding-bottom: 10px; */
}

/* gallery */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.gallery-header {
  text-align: center;
  margin: 20px 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-buttons .filter-btn {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-buttons .filter-btn.active,
.filter-buttons .filter-btn:hover {
  background: #0066ff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  height: fit-content;
  margin-top: inherit;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

/* end of gallery  */


html {
  font-size: 14px;
}

.fadeup {
  /* margin: 5%; */
  text-align: center;
  font-size: 2rem;
  font-weight: 100;
  margin-top: 21px;
}

.timeline-3 {
  display: flex;
  flex-direction: column;
  width: 50vw;
  margin: 2% auto;
}

.timeline__event {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}

.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #9251ac;
  letter-spacing: 1.5px;
}

.timeline__event__content {
  padding: 20px;
}

.timeline__event__date {
  color: #f6a4ec;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.timeline__event__icon {
  border-radius: 8px 0 0 8px;
  background: #9251ac;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 40%;
  font-size: 2rem;
  color: #9251ac;
  padding: 20px;
}

.timeline__event__icon i {
  position: absolute;
  top: 50%;
  left: -65px;
  font-size: 2.5rem;
  transform: translateY(-50%);
}

.timeline__event__description {
  flex-basis: 60%;
}

.timeline__event:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #9251ac;
  position: absolute;
  top: 52%;
  left: -3.5rem;
  z-index: -1;
}

.timeline__event:before {
  content: "";
  width: 5rem;
  height: 5rem;
  position: absolute;
  background: #f6a4ec;
  border-radius: 100%;
  left: -6rem;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #9251ac;
}

.timeline__event--type2:before {
  background: #87bbfe;
  border-color: #555ac0;
}

.timeline__event--type2:after {
  background: #555ac0;
}

.timeline__event--type2 .timeline__event__date {
  color: #87bbfe;
}

.timeline__event--type2 .timeline__event__icon {
  background: #555ac0;
  color: #555ac0;
}

.timeline__event--type2 .timeline__event__title {
  color: #555ac0;
}

.timeline__event--type3:before {
  background: #aff1b6;
  border-color: #24b47e;
}

.timeline__event--type3:after {
  background: #24b47e;
}

.timeline__event--type3 .timeline__event__date {
  color: #aff1b6;
}

.timeline__event--type3 .timeline__event__icon {
  background: #24b47e;
  color: #24b47e;
}

.timeline__event--type3 .timeline__event__title {
  color: #24b47e;
}

.timeline__event:last-child:after {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
  }

  .timeline__event__icon {
    border-radius: 4px 4px 0 0;
  }
}

/* CSS for fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp {
  opacity: 0;
  animation: fadeUp 1s forwards;
}

/* Timeline Event styles */
.timeline__event {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  opacity: 0;
  /* Initially hidden */
  transform: translateY(20px);
  /* Initial position */
}
/* Basic styling for .timeline__event__title */
.timeline__event__title {
  font-size: 1.2rem; /* Default font size */
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #9251ac;
  letter-spacing: 1.5px;
  margin-bottom: 8px; /* Space below the title */
}


@media (max-width: 786px) {
  .timeline__event__title {
    font-size: 1rem; /* Even smaller font size for mobile screens */
    text-align: center; /* Center the title text on smaller screens */
  }
}







