/* software-training-center/assets/css/style.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root
{
    --cklc-primary: #526aa8;
    --bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* General Styles */

/*{*/
   /* margin: 0;*/
    /*padding: 0;*/
   /* box-sizing: border-box;*/
/*}*/

/* Custom CSS for the modal background image */
.modal-background-image {
    background-image: url('../images/dt_bg.png'); /* Replace with the actual path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Ensure text is readable on the background */
    position: relative; /* Needed for overlay positioning */
    border-radius: 0.5rem; /* Match Bootstrap's default modal border-radius */
    overflow: hidden; /* Hide overflow from overlay */
}

/* Dark overlay for better text readability */
.modal-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1; /* Place overlay above background image */
}

/* Ensure modal content is above the overlay */
.modal-background-image .modal-header,
.modal-background-image .modal-body,
.modal-background-image .modal-footer {
    position: relative;
    z-index: 2; /* Place content above the overlay */
}

/* Style for the close button on a dark background */
.modal-background-image .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); /* Makes it white */
}

/* Center content for a modern look */
.modal-background-image .modal-body {
    text-align: center;
    padding: 3rem 1.5rem; /* More padding for a spacious feel */
}

.modal-background-image .modal-footer {
    justify-content: center; /* Center buttons */
    border-top: none; /* Remove default border */
    padding-bottom: 2rem; /* More padding at bottom */
}

.modal-background-image .modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem; /* Space below title */
}

.modal-background-image .offer-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem; /* Space before buttons */
}

.modal-background-image .btn {
    min-width: 180px; /* Ensure buttons have a good size */
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem; /* Space between buttons */
}
.login-container 
{
        max-width: 500px;
        margin: 50px auto;
        padding: 40px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-container 
{
        max-width: 500px;
        margin: 50px auto;
        padding: 40px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-control {
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
}
 .iframe-container {
    text-align: center; /* Center the iframes within the container */
  }
  .iframe {
    display: inline-block;
    width: 40%; /* Adjust as needed */
    height: 300px; /* Or a specific height */
    margin: 3%; /* Space between iframes */
    border: 1px solid #ccc;
    vertical-align: top; /* Align iframes to the top if they have different heights */
  }
body {
    position: relative; /* Needed for absolute positioning of pseudo-element */
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
  /*  background-color: #f8f9fa;*/
    background-color: #8697c2;
    animation: fadeIn 1s;
}
.text-gradient 
{ 
    background:linear-gradient(60deg, #5b5bd6, #2ec4b6); -webkit-background-clip:text;  -webkit-text-fill-color: transparent;
}
body::before {
    content: "";
   /* background-image: url('../images/dt_bg.png'); /* Replace with your image path */
   /* background-size:75%; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the image */
    position: absolute;
    background-repeat:no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5; /* Adjust this value for desired transparency (0.0 to 1.0) */
    z-index: -1; /* Puts the background behind the content */
}

a {
    text-decoration: none;
   /* color: #007bff;*/
    color: #526ca6;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.i:email{
    /*background-color: #007bff;*/
    background-color: #5b5bd3;
    color: #fff;
    border: none;
}
.i:phone{
    /*background-color: #007bff;*/
    background-color: #5b5bd3;
    color: #fff;
    border: none;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    /*background-color: #007bff;*/
    /*background-color: #5b5bd3;*/
    background-color: #526aa8;
    color: #fff;
    border: none;
}

.btn-primary:hover {
 /*   background-color: #0056b3;*/
    background-color:#e8a170;
    color: #fff;
}

.btn-outline-primary {
    background-color: transparent;
   /* color: #007bff;*/
   color: #526aa8;
   /* color: #5b5bd3;*/
    /*border: 1px solid #007bff;*/
    /*border: 1px solid #5b5bd3;*/
      border: 1px solid #526aa8;
}

.btn-outline-primary:hover {
  /*  background-color: #007bff;*/
    background-color:#e8a170;
    color: #fff;
    border: 1px solid #e8a170;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

.btn-outline-danger {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #007bff;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.bg-gray {
    background-color: #f8f9fa;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-outter {
    position: absolute;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
}

.loader-inner {
    position: absolute;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: spin 1s linear infinite reverse;
}

.indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.indicator svg {
    width: 100px;
    height: 100px;
}

.indicator svg polyline {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.indicator svg #back {
    stroke: #f3f3f3;
}

.indicator svg #front {
    stroke: #007bff;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

/* Header Area */
.header-area {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    padding: 15px 0;
}

.logo img {
    max-height: 50px;
}

.header-top {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.header-top-right ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top-right ul li {
    margin-left: 20px;
    font-size: 14px;
}

.header-top-right ul li i {
    margin-right: 5px;
    color: #007bff;
}

.navbar {
    padding: 0;
}

.navbar-nav {
    display: flex;
    align-items: baseline;
    margin-left: 0 ;
  text-align: left ;
    
}

.nav-list {
    list-style: none; /* Removes the bullet points */
    padding: 0; /* Aligns the list to the left edge */
    margin: 0;
    display: flex; /* Makes the list items display horizontally */
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 15px 0;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Page Title Area */
.page-title-area {
    background-image: url('../images/page-title-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.page-title-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.page-title-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-title-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-title-content ul li {
    color: #fff;
    font-size: 16px;
}

.page-title-content ul li:not(:last-child):after {
    content: '/';
    margin: 0 10px;
}

.page-title-content ul li a {
    color: #fff;
}

.page-title-content ul li a:hover {
    color: #007bff;
}

/* Hero Area */
.hero-area {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.hero-btn a {
    margin-right: 15px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Area */
.single-feature {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.single-feature .icon {
    width: 70px;
    height: 70px;
 /*   background-color: #e6f3ff;*/
 background-color: #f9e8d7;
    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.single-feature .icon i {
    font-size: 30px;
   /* color: #007bff;*/
  
    color: #e18c39;
  /* color: #526aa8;*/
    
}

.single-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-feature p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Courses Area */
.single-course {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-course:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.single-course:hover .course-image img {
    transform: scale(1.1);
}

.course-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.course-content {
    padding: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.course-meta span {
    font-size: 14px;
    color: #666;
}

.course-meta span i {
    margin-right: 5px;
    color: #007bff;
}

.course-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.course-btn {
    text-align: right;
}

/* Events Area */
.single-event {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-event:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.single-event:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #007bff;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.event-date span:first-child {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.event-date span:last-child {
    font-size: 12px;
    line-height: 1;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.event-meta li {
    list-style: none;
    font-size: 14px;
    color: #666;
    margin-right: 15px;
    margin-bottom: 5px;
}

.event-meta li i {
    margin-right: 5px;
    color: #007bff;
}

.event-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.event-btn {
    text-align: right;
}

/* Testimonials Area */
.single-testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-content p {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* Blog Area */
.single-blog {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-blog:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.single-blog:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #007bff;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-date span:first-child {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.blog-date span:last-child {
    font-size: 12px;
    line-height: 1;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 14px;
    color: #666;
}

.blog-meta span i {
    margin-right: 5px;
    color: #007bff;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.blog-btn {
    text-align: right;
}

/* CTA Area */
.cta-area {
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.cta-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.9);
}

.cta-content,
.cta-btn {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.cta-btn {
    text-align: right;
}

.cta-btn .btn {
    background-color: #fff;
    color: #007bff;
    font-weight: 600;
}

.cta-btn .btn:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Footer Area */
.footer-area {
    background-color: #222;
    color: #fff;
    padding: 70px 0 0;
}

.single-footer-widget {
    margin-bottom: 30px;
}

.single-footer-widget .logo {
    margin-bottom: 20px;
}

.single-footer-widget .logo img {
    max-height: 40px;
}

.single-footer-widget p {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links li {
    list-style: none;
    margin-right: 10px;
}

.social-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
}

.single-footer-widget h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.single-footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #aaa;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #007bff;
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-info li i {
    color: #007bff;
    margin-right: 10px;
    margin-top: 5px;
}

.footer-contact-info li span {
    color: #aaa;
    font-size: 15px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    width: 100%;
}

.copyright-area {
    background-color: #111;
    padding: 20px 0;
    margin-top: 50px;
}

.copyright-area p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

.copyright-area ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.copyright-area ul li {
    margin-left: 20px;
}

.copyright-area ul li a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.copyright-area ul li a:hover {
    color: #007bff;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

/* About Area */
.about-image {
    text-align: center;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
}

.about-features ul li i {
    color: #007bff;
    margin-right: 10px;
}

/* Stats Area */
.single-stats {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-stats:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background-color: #e6f3ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.stats-icon i {
    font-size: 30px;
    color: #007bff;
}

.single-stats h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #007bff;
}

.single-stats p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Team Area */
.single-team {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-team:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.single-team:hover .team-social {
    opacity: 1;
}

.team-social ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 123, 255, 0.9);
    border-radius: 30px;
    padding: 5px;
}

.team-social ul li {
    margin: 0 5px;
}

.team-social ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social ul li a:hover {
    background-color: #fff;
    color: #007bff;
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-content span {
    font-size: 14px;
    color: #666;
}

/* History Area */
.history-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #007bff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #007bff;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #007bff;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-date {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Contact Area */
.contact-info {
    margin-bottom: 30px;
}

.single-contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.single-contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e6f3ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #007bff;
}

.contact-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.form-select {
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

/* Map Area */
.map {
    height: 450px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* FAQ Area */
.accordion-item {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    border-radius: 10px;
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #e6f3ff;
    color: #007bff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:after {
    background-image: --bg-img;
}

.accordion-button:not(.collapsed):after {
    background-image: bg-image;
    transform: rotate(180deg);
}

.accordion-body {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
}

/* Dashboard Area */
.dashboard-sidebar {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-info span {
    font-size: 14px;
    color: #666;
}

.admin-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.admin-logo img {
    max-height: 40px;
}

.dashboard-menu,
.admin-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard-menu li,
.admin-menu li {
    margin-bottom: 5px;
}

.dashboard-menu li a,
.admin-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #666;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dashboard-menu li a:hover,
.admin-menu li a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.dashboard-menu li.active a,
.admin-menu li.active a {
    background-color: #e6f3ff;
    color: #007bff;
}

.dashboard-menu li a i,
.admin-menu li a i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dashboard-content,
.admin-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.dashboard-title,
.admin-title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.dashboard-title h3,
.admin-title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.dashboard-title p,
.admin-title p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.dashboard-stats,
.admin-stats {
    margin-bottom: 30px;
}

.single-stat {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.single-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #e6f3ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 24px;
    color: #007bff;
}

.stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.dashboard-sections,
.admin-sections {
    margin-bottom: 30px;
}

.dashboard-section,
.admin-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.section-header a {
    font-size: 14px;
    color: #007bff;
}

.recent-courses,
.recent-users,
.recent-courses,
.recent-events,
.recent-testimonials {
    margin-bottom: 20px;
}

.recent-course {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-course:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.course-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-info {
    flex-grow: 1;
}

.course-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-meta span {
    font-size: 14px;
    color: #666;
}

.course-meta span i {
    margin-right: 5px;
    color: #007bff;
}

.status {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.status.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status.active {
    background-color: #d4edda;
    color: #155724;
}

.status.completed {
    background-color: #e6f3ff;
    color: #007bff;
}

.upcoming-event {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.upcoming-event:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-date {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.event-date span:first-child {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.event-date span:last-child {
    font-size: 12px;
    line-height: 1;
}

.event-info {
    flex-grow: 1;
}

.event-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
}

.event-meta span {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
    margin-bottom: 5px;
}

.event-meta span i {
    margin-right: 5px;
    color: #007bff;
}

.admin-table {
    margin-bottom: 20px;
}

.admin-table .table {
    margin-bottom: 0;
}

.admin-table .table th {
    border-top: none;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #eee;
}

.admin-table .table td {
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.admin-table .table img {
    border-radius: 5px;
}

.status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.completed {
    background-color: #e6f3ff;
    color: #007bff;
}

.status-badge.approved {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.rejected {
    background-color: #f8d7da;
    color: #721c24;
}

.role-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.role-badge.admin {
    background-color: #f8d7da;
    color: #721c24;
}

.role-badge.student {
    background-color: #e6f3ff;
    color: #007bff;
}

.role-badge.instructor {
    background-color: #d4edda;
    color: #155724;
}

.admin-actions {
    margin-bottom: 20px;
}

.pagination-area {
    margin-top: 20px;
}

.pagination {
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-link {
    color: #007bff;
}

.pagination .page-link:hover {
    color: #0056b3;
}

.profile-form,
.change-password {
    margin-bottom: 30px;
}

.profile-image-upload {
    display: flex;
    align-items: center;
}

.current-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.current-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.upload-btn input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.recommended-courses {
    margin-bottom: 20px;
}

/* Course Sidebar */
.course-sidebar {
    margin-bottom: 30px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    color: #666;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.categories-list li a span {
    background-color: #e6f3ff;
    color: #007bff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.popular-courses {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-courses li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-courses li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-course-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.popular-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-course-content {
    flex-grow: 1;
}

.popular-course-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.popular-course-content h4 a {
    color: #333;
}

.popular-course-content h4 a:hover {
    color: #007bff;
}

.popular-course-content span {
    font-size: 14px;
    color: #007bff;
    font-weight: 600;
}

.course-sorting {
    margin-bottom: 30px;
}

.course-sorting p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.sorting-form {
    text-align: right;
}

/* Blog Sidebar */
.blog-sidebar {
    margin-bottom: 30px;
}

.recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-posts li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-post-content h4 a {
    color: #333;
}

.recent-post-content h4 a:hover {
    color: #007bff;
}

.recent-post-content span {
    font-size: 14px;
    color: #666;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tags a {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #f8f9fa;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tags a:hover {
    background-color: #007bff;
    color: #fff;
}
/* from cklc website*/
:root {
  --cklc-primary: #526aa8;
}

.navbar .brand-badge { display:inline-grid; place-items:center; width:32px; height:32px; background:var(--cklc-primary); color:#fff; border-radius:10px; font-weight:700; margin-right:.4rem; }
.hero { background:linear-gradient(0deg, rgba(91,91,214,.06), rgba(91,91,214,.06)); }
/*.text-gradient { background:linear-gradient(90deg, var(--cklc-primary), #2ec4b6); -webkit-background-clip:text; background-clip:text; color:transparent; }*/
.feature-card { border:1px solid #eef1ff; }
.subhero { background-size:cover; background-position:center; position:relative; }
.subhero::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.35)); }
.subhero .container { position:relative; z-index:2; }
.icon-list li::marker { content:'✓ '; color:var(--cklc-primary); }
.stat-card { background:#fff; border:1px solid #eef1ff; border-radius:1rem; padding:2rem; text-align:center; box-shadow:0 10px 30px rgba(0,0,0,.04); }
.stat-card .stat { font-size:2rem; font-weight:800; }
.cta { background:linear-gradient(90deg, #f5f7ff, #eef3ff); }
.card a { text-decoration:none; }
.btn-primary { background-color: var(--cklc-primary); border-color: var(--cklc-primary); }
.btn-outline-primary { border-color: var(--cklc-primary); color: var(--cklc-primary); }
.btn-outline-primary:hover { background: var(--cklc-primary); color:#fff; }
.install-btn { white-space:nowrap; }
/* Gallery */
.gallery-item img { width:100%; height:240px; object-fit:cover; border-radius:.75rem; }
/* till here from cklc website*/

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
    
    .dashboard-sidebar,
    .admin-sidebar {
        margin-bottom: 30px;
    }
    
    .dashboard-content,
    .admin-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-btn a {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .header-top-right ul {
        justify-content: center;
    }
    
    .header-top-right ul li {
        margin: 0 10px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .single-feature,
    .single-course,
    .single-event,
    .single-testimonial,
    .single-blog,
    .single-team,
    .single-stats,
    .single-contact-info {
        margin-bottom: 20px;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .copyright-area p {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .copyright-area ul {
        justify-content: center;
    }
    
    .dashboard-title,
    .admin-title {
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header a {
        margin-top: 10px;
    }
    
    .course-sorting p,
    .sorting-form {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .course-meta {
        flex-direction: column;
    }
    
    .course-meta span {
        margin-bottom: 5px;
    }

    .navbar-brand {
    font-weight: bold;
    }
    .card {
        transition: transform 0.3s;
    }
    .card:hover {
        transform: scale(1.05);
    }
    #back-to-top {
    z-index: 1000; /* Ensures it's above other content */
                    /* Add other custom styles as needed */
}
}