/*# 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 */

/* site nave starts here */
  .mega-menu {
       min-width: 200px;
    }
.mega-menu h6 {
    margin-bottom: 10px;
    color: #147FD1; /* Theme blue */
    border-bottom: 2px solid #ddd;
    padding-bottom: 4px;
}

.mega-menu .dropdown-item {
    padding: 4px 0;
}

@media (min-width: 769px) {
    .mega-menu {
        min-width: 1200px;
        margin-left: -770px;
    }
}

/* site nave ends here */


/* ===== TESTIMONIALS SECTION ===== */
.testimonial {
    background-color: #f9fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial .section-title {
    color: #147FD1;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial h2 {
    font-weight: 700;
    color: #222;
}

/* ===== TESTIMONIAL ITEM ===== */
.testimonial-item {
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

/* ===== QUOTE ICON ===== */
.testimonial-item i.fa-quote-right {
    color: #147FD1;
    opacity: 0.3;
}

/* ===== TEXT CONTENT ===== */
.testimonial-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.testimonial-item strong p {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* ===== STUDENT INFO ===== */
.testimonial-item img {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.testimonial-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-item p.m-0 {
    font-size: 14px;
    color: #777;
}

/* ===== STAR RATING ===== */
.testimonial-item .fa-star {
    color: #f8b400; /* Gold star color */
    margin-right: 2px;
    font-size: 14px;
}

.testimonial-item .fa-star.text-muted {
    color: #ccc;
}

/* ===== OWL CAROUSEL DOTS ===== */
.owl-dots .owl-dot span {
    background: #ccc;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: #147FD1;
    width: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 20px;
    }
    .testimonial-item p {
        font-size: 14px;
    }
    .testimonial-item strong p {
        font-size: 15px;
    }
}
/* end of testmonials */
/* ===== COURSES SECTION ===== */
#courses {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#courses .text-secondary {
    color: #6c757d !important;
}

#courses h2 {
    font-weight: 700;
    color: #222;
}

/* ===== NAV PILLS ===== */
#courses .nav-pills .nav-link {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: #555;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#courses .nav-pills .nav-link:hover {
    background: #147FD1;
    color: #fff;
    border-color: #147FD1;
}

#courses .nav-pills .nav-link.active {
    background: #147FD1;
    color: #fff;
    border-color: #147FD1;
}

/* ===== COURSE CARDS ===== */
.course-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.course-card .card-body {
    padding: 1.5rem;
}

.course-card h5 {
    font-weight: 600;
    color: #222;
}

.course-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== CARD HOVER EFFECT ===== */
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===== BUTTONS ===== */
.course-card .btn {
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.course-card .btn-outline-primary:hover {
    background: #147FD1;
    color: #fff;
    border-color: #147FD1;
}

.course-card .btn-outline-success:hover {
    background: #198754;
    color: #fff;
    border-color: #198754;
}

.course-card .btn-outline-dark:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #courses h2 {
        font-size: 22px;
    }
    .course-card {
        margin-bottom: 15px;
    }
}



