/* Reset and basic layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}
.container {
  width: 95%;
  margin: auto;
  overflow: hidden;
}
 /* Navigation Bar */
      header {
        background-color: #333;
        padding: 10px 0;
      }

/* Header and Navigation */
.cbp-af-header {
  background-color: #ffffff00;
  border-bottom: 2px solid #cccccc0a;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.cbp-af-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cbp-af-inner img {
  max-height: 60px;
}

.desktop-nav .nav {
  list-style: none;
  display: flex;
  gap: 20px;
}
.desktop-nav .nav li {
  position: relative;
}
.desktop-nav .nav li a {
  text-decoration: none;
  color: #333;
  padding: 8px 15px;
  transition: background 0.3s;
}
.desktop-nav .nav li a:hover,
.desktop-nav .nav li.active a {
  background: #007bff;
  color: #fff;
  border-radius: 4px;
}

/* Dropdown Support */
.desktop-nav .nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.desktop-nav .nav li:hover ul {
  display: flex;
}
.desktop-nav .nav li ul li {
  width: 100%;
}
.desktop-nav .nav li ul li a {
  padding: 10px;
  color: #333;
}
.desktop-nav .nav li ul li a:hover {
  background: #007bff;
  color: white;
}

/* Small nav */
.smallnav {
  margin-top: 15px;
  font-size: 14px;
}
.smallnav a {
  text-decoration: none;
  color: #007bff;
  margin-left: 10px;
}
.smallnav-arrows {
  color: #666;
  margin: 0 5px;
}
.top-phone {
  font-weight: bold;
  color: #222;
}

/* Mobile nav */
.mobile-nav {
  display: none;
}
.dl-menuwrapper {
  margin-top: 15px;
}
.dl-trigger {
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
}
.dl-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dl-menu li a {
  display: block;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  color: #333;
  text-decoration: none;
}
.dl-menu li a:hover {
  background: #007bff;
  color: white;
}

/* Call to action */
.calltoaction {
  background: #007bff;
  color: white;
  padding: 30px;
  text-align: center;
}
.calltoaction a.btn {
  background: white;
  color: #007bff;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}
.calltoaction a.btn:hover {
  background: #e6e6e6;
}

/* Mid-section and thumbnails */
.mid-section .thumbnail {
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.thumbnail img {
  width: 100%;
  border-radius: 6px;
}
.caption h3 {
  color: #007bff;
}
.caption p {
  margin-top: 10px;
}
.btn-info {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
}
.btn-info:hover {
  background: #0056b3;
}

/* Feedback form */
form input,
form textarea {
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
}
form button:hover {
  background: #0056b3;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery li {
  list-style: none;
  width: 100px;
}
.gallery img {
  width: 100%;
  border-radius: 4px;
}

/* Flickerplate slider */
.flicker-example {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.flicks {
  display: flex;
  transition: left 0.5s ease-in-out;
}
.flicks li {
  flex: 1 0 100%;
  background-size: cover;
  background-position: center;
  height: 400px;
}
.dot-navigation ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 10px;
}
.dot-navigation .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
}
.dot-navigation .dot.active {
  background: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .cbp-af-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .smallnav {
    display: none;
  }
  .gallery {
    justify-content: center;
  }
  .caption h3 {
    font-size: 18px;
  }
}

 nav ul {
        display: flex;
        align-items: center;
        justify-content: space-around;
        list-style: none;
        padding: 0;
        margin: 0;
      }

      nav ul img {
        height: 70px;
      }

      nav ul li a {
        text-decoration: none;
        color: white;
        font-size: 18px;
        padding: 10px;
      }

      nav ul li a:hover {
        color: #f4a261;
      }

      /* Hero Section */
      .hero {
        background-color:  #3a7d6a;
        text-align: center;
        padding: 50px 20px;
        color: white;
      }

      .hero-content {
        display: flex;
        flex-direction: column; /* Align buttons vertically */
        align-items: center;
      }

      .hero h1 {
        font-size: 36px;
        font-weight: bold;
      }

      .hero p {
        font-size: 18px;
      }

      .hero .btn {
        display: inline-block;
        background-color: #f4a261;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        font-size: 18px;
        border-radius: 5px;
        margin: 10px;
      }

      .hero .btn:hover {
        background-color: #e76f51;
      }

      /* Services Section */
      #services {
        text-align: center;
        padding: 50px 20px;
        background-color: white;
      }

      .service {
        display: inline-block;
        width: 60%;
        background-color: #fff;
        padding: 20px;
        margin: 10px;
        border-radius: 30px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      }

      .service h3 {
        font-size: 22px;
        color: #333;
      }

      .service p {
        font-size: 16px;
        color: #666;
      }

      /* Contact Section */
      #contact {
        text-align: center;
        padding: 50px 20px;
        background-color: #f8f9fa;
      }

      form {
        max-width: 500px;
        margin: auto;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      }

      form input,
      form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 5px;
      }

      form button {
        background-color: #f4a261;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
      }

      form button:hover {
        background-color: #e76f51;
      }

      .about {
        text-align: center;
        margin-left: 20px;
      }
      #or_login {
        text-align: center;
        margin-left: 20px;
      }
      #apply {
        margin-bottom: 40px;
      }
      /* Styling for the chat button */
      .chat-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #4caf50;
        color: white;
        border: none;
        border-radius: 50%;
        padding: 15px;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
      }

      .chat-btn:hover {
        background-color: #45a049;
      }

      .chat-btn i {
        font-size: 24px;
        margin-right: 5px;
      }

      /* Optional: Style for the text in the button */
      .chat-btn span {
        font-size: 14px;
      }
      ul {
        margin-left: 50px;
      }
      li {
        margin-left: 5px;
      }
      .alignText {
        margin-left: 30px;
      }

      .ai-button {
        display: inline-block;
        padding: 12px 24px;
        background: linear-gradient(135deg, #4f46e5, #3b82f6);
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        font-size: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .ai-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
      }

      .ai-button:active {
        transform: scale(0.98);
      }

       .wa-button {
        display: inline-block;
        padding: 12px 24px;
        background: linear-gradient(135deg, hwb(135 27% 10% / 0.788), #41f63b);
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        font-size: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .wa-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px hwb(135 27% 10% / 0.788);
      }

      .wa-button:active {
        transform: scale(0.98);
      }

       .chat-container {
        max-width: 600px;
        margin: 2rem auto;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        height: 80vh;
        overflow: hidden;
      }
      .chat-box {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
      }
      .message {
        max-width: 80%;
        padding: 0.8rem;
        margin: 0.5rem 0;
        border-radius: 10px;
        line-height: 1.4;
      }
      .user {
        background: #dcf8c6;
        align-self: flex-end;
      }
      .bot {
        background: #f1f0f0;
        align-self: flex-start;
      }
      .input-area {
        display: flex;
        padding: 1rem;
        border-top: 1px solid #ccc;
      }
      .input-area input {
        flex: 1;
        padding: 0.8rem;
        border-radius: 20px;
        border: 1px solid #ccc;
        outline: none;
      }
      .input-area button {
        margin-left: 10px;
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 20px;
        background-color: #007bff;
        color: white;
        cursor: pointer;
      }
      .input-area button:hover {
        background-color: #0056b3;
      }
      .course-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 1rem;
        margin: 0.5rem 0;
      }
      .course-card h3 {
        margin: 0 0 0.5rem;
        color: #007bff;
        font-size: 1.1rem;
      }
      .course-card ul {
        list-style: disc inside;
        margin: 0;
        padding-left: 1rem;
      }
      .charge-list li {
  margin-bottom: 0.5rem; /* or adjust to your liking */
}

   

.req_class {
  margin-left: 10px;
  font-weight: bold;
}
.admin-button{
        display: inline-block;
        padding: 12px 24px;
        background: linear-gradient(135deg, hwb(244 27% 10% / 0.788), #41f63b);
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        font-size: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .admin-button {
        transform: scale(1.05);
        box-shadow: 0 6px 20px hwb(172 5% 33% / 0.788);
      }

      .admin-button {
        transform: scale(0.98);
      }
  