.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
}

.navbar-custom {
  background-color: #1a7d1a;
}

.navbar-custom {
  background-color: #343a40;
  /* Your dark background */
}

.navbar-custom {
  background-color: #1a7d1a;
}

.navbar-nav .nav-link {
  color: white !important;
}

/* Toggler button styling */
.navbar-toggler {
  background-color: #343a40;
  /* Dark background */
  border: 1px solid #fff;
  /* White border */
  padding: 6px 10px;
  border-radius: 4px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*******************************marquee****************************/
.marquee-container {
  background-color: #eefaf9;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  width: 75%;
  /* or use max-content / auto */
  margin: 0 auto;
  /* centers the container */
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

.marquee-text span {
  margin: 0 30px;
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .marquee-text span {
    margin: 0 15px;
    font-size: 14px;
  }
}

/**********************************crousel small image******************************************/
/*.carousel-inner .row {
      margin-left: 0;
      margin-right: 0;
    }

    .card img {
      height: 200px;
    }

    @media (max-width: 767.98px) {
      .carousel-item .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
      .carousel-item .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    @media (min-width: 992px) {
      .carousel-item .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
      }
    }

    /**********************************faq section*****************************************************/
.faq-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  height: 100%;
}

.faq-header {
  background-color: #e9f6f3;
  border-bottom: 2px solid #d3d3d3;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #007c6c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-body {
  max-height: 200px;
  overflow-y: auto;
  padding: 0.75rem 1rem;
}

.faq-body li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.faq-footer {
  padding: 0.5rem 1rem;
  text-align: right;
  font-size: 0.9rem;
}

.faq-footer a {
  text-decoration: none;
  color: #007c6c;
  font-weight: 500;
}

.icon {
  color: #007c6c;
}

/*****************************************vedio section**************************************************/
video {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

/*************************************testimonial section************************************************/

.testimonial-card {
  background-color: #eef9f0;
  padding: 1.5rem;
  border-radius: 10px;
  height: 100%;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.badge-custom {
  background-color: red;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #28a745;
  border-radius: 50%;
  padding: 10px;
}

/**************************************article section************************************************/
.section-box {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
}

.section-title {
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.article-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.gallery-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ccc;
}

.meta {
  font-size: 0.85rem;
  color: #666;
}

.view-more {
  text-align: right;
  margin-top: 0.5rem;
}

/********************************enquiry section***********************************************/
.enquiry-section {
  background-color: #e8ecea;
  padding: 2rem;
  border-radius: 8px;
}

.form-control,
.form-select {
  margin-bottom: 1rem;
}

.submit-btn {
  background-color: #5cb85c;
  color: white;
  border: none;
  padding: 0.7rem 2rem;
}

.submit-btn:hover {
  background-color: #4cae4c;
}

/*****************************************footer section*****************************************/
.footer {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 40px 0;
}

.footer h6 {
  color: #4CAF50;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  margin-right: 10px;
}

.store-badges img {
  height: 45px;
  margin: 10px 10px 10px 0;
}

@media (max-width: 576px) {

  .footer .col-md-2,
  .footer .col-md-4 {
    text-align: center;
  }
}

/**********************************social media icon footer part******************************************/
.social-icons a {
  color: #fff;
  font-size: 24px;
  margin: 10px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a.facebook {
  background-color: #3b5998;
}

.social-icons a.youtube {
  background-color: #FF0000;
}

.social-icons a.google {
  background-color: #db4437;
}

.social-icons a.whatsapp {
  background-color: #25D366;
}

.social-icons a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a:hover {
  opacity: 0.8;
}



/***************************newbatch section****************************************************/
.course-item {
  background-color: #eaf7f6;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.course-item:hover {
  background-color: #d9f0ee;
}

.btn-group .btn.active {
  background-color: #333;
  color: #fff;
}

.arrow-icon {
  float: right;
  color: #1ba57a;
}

/*************************************fee structure***************************************/

.accordion-button {
  background-color: #e6f4e6;
  color: #1c6b1c;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #d4f0d4;
  color: #1c6b1c;
  box-shadow: none;
}

.accordion-body {
  background-color: #ffffff;
}

.table th {
  background-color: #008000;
  color: white;
}

h2.text-success {
  font-weight: bold;
}

/***************************director message**********************************************/
.director-img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.message-box {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*********************************crousel image********************************************************/
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 300px;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;
  border-radius: 50%;
}