/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

/*# sourceMappingURL=custom.css.map */
.logged-in-user {
    color: black;
    float: right;
    margin-left: 10px;
}
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.toast {
    min-width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.toast-header {
    font-weight: bold;
}

.toast-body {
    font-size: 14px;
}

#admin-copyright {
    float: right;
}
#header-title{
    color: #57B9FF;
    font-size: 25px;
    background-color: lightgrey;
    text-align: center;
    margin-top: -70px;
}
#header-login{
    color: #57B9FF;
    font-size: 25px;
    margin-top: -65px;
    margin-left: 180px;
}

.card-header{
    height: 100px;
}
#applicant_details {
    margin-left: 10px;
}
#customer_details{
    color: red;
    size: 20px;
    text-align: center;
}

#applicant-name {
    color: red;
    size: 20px;
}
.right-sec{
    float: right;
    margin-top: 10px;
    margin-right: 100px;
    display: block;
}
.left-sec{
    float: left;
    display: block;
}
#control {
    width: 100%; /* Make inputs responsive */
    max-width: 400px; /* Set max width for larger screens */
    height: 40px;
    border: none;
    padding: 10px;
    margin-bottom: 15px; /* Space between fields */
    background: white;
    box-sizing: border-box; /* Include padding and border in width calculation */
}

label {
    font-size: 14px;
    color: black;
    margin-left: 10px;
    font-weight: bold;
}

.right-sec {
    margin-top: 10px;
    margin-right: 100px;
    display: block;
}

.left-sec {
    display: block;
}

.basic-info {
    text-align: center;
    margin-top: 10px;
}

/* Cover letter styling */
.cover_letter {
    height: auto; /* Adjust height based on content */
    width: 100%; /* Full width to make it responsive */
    max-width: 600px; /* Limit max width */
    background: white;
    border: 1px solid #ccc; /* Optional border */
    padding: 10px;
    box-sizing: border-box;
    white-space: pre-wrap; /* Preserve line breaks */
    overflow-wrap: break-word; /* Handle long words */
}

/* Responsive Styles for smaller screens */
@media (max-width: 768px) {
    .cover_letter {
        width: 100%; /* Full width on smaller screens */
        max-width: 100%; /* Remove max width */
        font-size: 14px; /* Adjust font size */
    }
    .form-control {
        width: 100%; /* Ensure form inputs take full width */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cover_letter {
        width: 100%; /* Full width on very small screens */
        font-size: 12px; /* Reduce font size */
    }
    .form-control {
        font-size: 12px; /* Adjust font size for inputs */
        padding: 8px; /* Adjust padding */
    }
}
.btn-right {
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end; /* Aligns items to the right */
    align-items: center; /* Vertically center the items */
  }
  
.btn-right i{
    color: black;
}
.btn-right :hover{
    color: none;
}
.view-action {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .view-action:hover {
    text-decoration: none;
  }
  
  .view-action i {
    margin-right: 5px;
  }
  .section{
    top: -50px;
  }
  #submit{
    width: fit-content;
  }
  .view-action, .edit-action {
    text-decoration: none;
    margin-right: 10px;
    color: #007bff; /* Blue color */
}

.view-action:hover, .edit-action:hover {
    color: #0056b3;
}

.fas {
    margin-right: 5px;
}
/* price css */
/* Two-column layout for the form */
.price-section {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 600px !important;
    margin: auto !important;
}


/* Ensure form fields take full width inside grid */
.price-section .form-group {
    display: flex;
    flex-direction: column;
}

/* Responsive: One column on small screens */
@media (max-width: 480px) {
    .price-section {
        grid-template-columns: 1fr;
    }
}

/* promo price start */
/* Two-column layout for the form */
.promo {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 600px !important;
    margin: auto !important;
}


/* Ensure form fields take full width inside grid */
.promo .form-group {
    display: flex;
    flex-direction: column;
}

/* Responsive: One column on small screens */
@media (max-width: 480px) {
    .promo {
        grid-template-columns: 1fr;
    }
}
/* promoo price end */

/* end of price css */
/* image selection start */
#image-preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#main-image-container .image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

#main-image-container .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #007bff;
}

#secondary-images-container {
    display: flex;
    gap: 10px;
}

#secondary-images-container .image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

#secondary-images-container .secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.image-wrapper {
    position: relative;
}

.image-wrapper.dragging {
    opacity: 0.5;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

/* image selection end here */
.btn-primary{
    background: #CA9C05;
}
.btn-primary :hover{
    background: #ff4500;
}
.mega-menu {
  position: fixed;
  top: 100px;
  right: 0;
  margin-right: -500px;
  width: 100vw;
  max-height: calc(100vh - 120px); 
  overflow-y: auto; 
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
}

.carousel-item {
  transition: transform 1s ease-in-out !important;
}


.mega-menu h6 {
  margin-bottom: 10px;
  color: #147FD1;
  border-bottom: 2px solid #ddd;
  padding-bottom: 4px;
}

.mega-menu .dropdown-item {
  padding: 4px 0;
}

@media (max-width: 768px) {
  .mega-menu {
    max-width: 100%;
    overflow-x: auto;
    padding: 1rem;
  }
}


/* site nav ends here */


/* ===== MODERN TESTIMONIALS SECTION ===== */
.testimonial {
    background-color: #edf2fb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 0;
}

.testimonial .section-title {
    color: #147FD1;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.testimonial h2 {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 32px;
}

/* ===== TESTIMONIAL ITEM ===== */
.testimonial-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ===== QUOTE ICON ===== */
.testimonial-item i.fa-quote-right {
    font-size: 24px;
    color: #147FD1;
    opacity: 0.15;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

/* ===== TEXT CONTENT ===== */
.testimonial-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.2rem;
}

.testimonial-item strong p {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* ===== STUDENT INFO ===== */
.testimonial-item .d-flex {
    align-items: center;
    gap: 16px;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    aspect-ratio: 1 / 1;
}

.testimonial-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #222;
}

.testimonial-item p.m-0 {
    font-size: 13px;
    color: #888;
}

/* ===== STAR RATING ===== */
.testimonial-item .fa-star {
    color: #f8b400;
    margin-right: 2px;
    font-size: 14px;
}

.testimonial-item .fa-star.text-muted {
    color: #ccc;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .testimonial-item {
        padding: 20px;
    }
    .testimonial-item p {
        font-size: 14px;
    }
    .testimonial-item strong p {
        font-size: 15px;
    }
}

/* courses section starts here */
/* ===== General Tab & Swiper Styling ===== */
.tab-content {
  padding: 20px 0;
}

.mySwiper {
  padding: 20px 10px 40px;
}

/* ===== Swiper Slide Card Styling ===== */
.swiper-slide {
  display: flex;
  height: auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.card-title {
  font-size: 1.25rem; /* updated to match other pages' heading size */
  font-weight: 600;
  margin-bottom: 10px;
  color: #007bff;
}

.card-text {
  font-size: 1rem; /* consistent body font size */
  color: #666;
  margin-bottom: 15px;
}

/* ===== Swiper Navigation Arrows ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #147FD1;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #147FD1;
  color: #fff;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* ===== Swiper Pagination Dots ===== */
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 0.8;
  transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #147FD1;
  opacity: 1;
}

/* ===== Buttons ===== */
#learnMoreBtn {
    background: linear-gradient(135deg, #AA8304, #C99E15);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#learnMoreBtn:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: white;
}

.nav-pills .nav-link {
    background-color: #D9D9D9; 
    color: black;
    border-radius: 30px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.course-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}


/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
  .mySwiper {
    padding: 10px;
  }
  .card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  #learnMoreBtn {
      padding: 10px 22px;
      font-size: 0.95rem;
  }
  .card img {
    height: 180px;
  }
  .card-body {
    padding: 15px;
  }
  .card-title {
    font-size: 1.1rem; /* adjusted for mobile */
  }
  .card-text {
    font-size: 0.95rem; /* slightly larger than before for readability */
  }
}

@media (max-width: 480px) {
  #learnMoreBtn {
      padding: 8px 18px;
      font-size: 0.9rem;
      border-radius: 6px;
  }
  .swiper-slide {
    flex: 0 0 100%;
  }
  .card img {
    height: 160px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}
/* courses section ends here */

.top-bar {
  background-color: #AA8304; 
  color:white !important; 
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-bottom: 1px solid #dee2e6;
}

.top-bar i {
  color: black; 
}

.top-bar span {
  font-weight: 500;
}

.top-bar .container-fluid {
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .top-bar {
  display: none;
  }

}
.progress-bar{
    background: #f8b400;
    color: black;
}
 .toast {
    color: #000 !important;
    background-color: #251212 !important;
    border: 1px solid #ccc;
  }
  .toast-success {
    background-color: #008000 !important;
    color: black !important;
  }
  .toast-error {
    background-color: #f8d7da !important;
    color: #ff4500 !important;
  }
  .toast-info {
    background-color: #d1ecf1 !important;
    color: #0c5460 !important;
  }
  .toast-warning {
    background-color: #fff3cd !important;
    color: #856404 !important;
  }
  /* about us starts here */
  .team-item {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
    }

    .team-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgb(0 0 0 / 0.15);
    }

    .team-item img {
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      object-fit: cover;
      height: 300px;
      width: 100%;
      transition: transform 0.4s ease;
      display: block;
    }

    .team-item:hover img {
      transform: scale(1.05);
    }

    .team-icon {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(33, 37, 41, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      border-radius: 12px 12px 0 0;
    }

    .team-item:hover .team-icon {
      opacity: 1;
      pointer-events: auto;
    }

    .team-icon a {
      background-color: #0d6efd;
      color: white;
      font-size: 1.25rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .team-icon a:hover {
      background-color: #084298;
      color: white;
    }

    .team-item .text-center {
      padding: 1rem 1.5rem;
      border-radius: 0 0 12px 12px;
      background: #fff;
      box-shadow: inset 0 1px 3px rgb(0 0 0 / 0.05);
    }

    .team-item h4 {
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: #212529;
    }

    .team-item p {
      color: #6c757d;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 0;
    }

.list-group i {
  margin-left: 30px;
}
    /* Responsive tweaks for small screens */
    @media (max-width: 576px) {
      .team-item img {
        height: 280px;
      }
      .team-icon a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }
    }
    /* about us ends here */
