/* navigation */
* {
    font-family: "Urbanist", sans-serif;
    transition: all 0.5s;
}

:root {
    --theme-color: #4e71ff;
    --theme-color-2: #5409da;
    --theme-color-3: rgb(246, 66, 95);
    --theme-color-lite: rgb(239, 236, 255);
    --main-color: #e8e8fe;
    --color-1: #fcf2f2;
    --color-1-dk: #fa6c6c;
    --color-2: #efecff;
    --color-2-dk: #957eff;
    --color-3: #e1fffd;
    --color-3-dk: #00a99d;
    --color-4: #ffecfe;
    --color-4-dk: #f971f0;
    --color-5: #dff9ff;
    --color-5-dk: #5cb0fe;
    --color-6: #f6f9e2;
    --color-6-dk: #e7bf52;
    --color-7: #ffeee3;
    --color-7-dk: #fb804b;
    --color-8: #e6ffde;
    --color-8-dk: #86df6a;
    --color-9: #f2f2f2;
    --color-9-dk: #b6b09f;
    --color-10: #ffdf88;
    --color-10-dk: #a76545;
    --color-11: #71bbb2c2;
    --color-11-dk: #497d74;
    --color-12: #fff7dd;
    --color-12-dk: #e1b900;
    --color-13: #eafaf1;
    --color-13-dk: #5bbd86;
    --color-14: #fef1e8;
    --color-14-dk: #ff8a4c;
    --color-15: #ebf0ff;
    --color-15-dk: #4a74ff;
    --color-16: #fff0f0;
    --color-16-dk: #f25c5c;
    --color-17: #eef9f9;
    --color-17-dk: #00b2a1;
    --color-18: #f0f7e8;
    --color-18-dk: #8abe57;
}

a:hover {
    color: var(--theme-color);
}
p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.header-navigation {
    position: relative;
    background-color: transparent;
    background-image: linear-gradient(90deg, #0048ffb3 58%, #7659ff 100%);
    color: #fff;
    z-index: 2;
}

.header-navigation::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #7659ff 0%, #6a8cd84d 29%);
    z-index: -1;
}

.nav-icon a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #fff;
}
span.nav-icon.border-right {
    border-right: 1px solid #ffffff33;
    padding-right: 20px;
}
.header-social-media a {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ffffff33;
}
.header-social-media {
    border-left: 1px solid #ffffff33;
    margin-right: 20px;
}
.header-social-media a:hover {
    color: var(--theme-color);
    background: #fff;
}
a.auth-btn:hover {
    color: #fff;
}
a.auth-btn {
    font-weight: 500;
    color: #fff;
}

/* navigating */
.navbar-nav .nav-link {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 0 25px !important;
}
.navbar-nav .nav-item.active .nav-link {
    color: var(--theme-color);
    font-weight: 800;
}
.navbar-nav .nav-link:hover {
    color: var(--theme-color);
}
nav.main-navbar {
    background: var(--main-color);
    position: relative;
}
ul.dropdown-menu {
    background-color: #ffffff;
    padding: 16px 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    border: none;
}
.dropdown-menu a.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
    padding-top: 7px;
}
.dropdown-menu li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: var(--theme-color-lite);
}
.btn-button {
    position: relative;
    font-weight: 700;
    display: inline-flex;
    padding: 0.75rem 1.75rem;
    border-radius: 0px;
    color: #fff;
    background-color: var(--theme-color);
    cursor: pointer;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 1;
}

.btn-button i {
    font-size: 18px;
}

.btn-button:hover,
.btn-button:focus {
    background-color: var(--theme-color-2);
    color: #fff;
}
.btn-button.white-btn {
    background-color: #fff;
    color: var(--theme-color);
    transition: all 0.5s ease-in-out;
}
.btn-button.white-btn:hover {
    color: #fff;
}
h5.site-title {
    color: #000;
    font-weight: 800;
    font-size: 24px;
}
h2.title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    display: block;
    padding-bottom: 30px;
    border-bottom: 1px solid #bdbdbd;
}
.form-section label {
    font-weight: 600;
}
section.home-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url(../image/home-hero-section.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.login-card {
    background: rgb(255 255 255 / 55%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 16%);
}
img.bg-banner {
    width: auto;
    height: auto;
    z-index: -2;
    position: relative;
    opacity: 0.5;
}
img.bg-girl {
    position: absolute;
    bottom: -20px;
    right: auto;
    z-index: -1;
    left: auto;
    margin-left: 70px;
    width: auto;
    height: auto;
}
/* footer */
footer.footer-main {
    background: #2f045a;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}
img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
.footer-about-us p {
    color: #fff;
}
ul.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
ul.social-icons li {
    font-size: 20px;
}
.footer-about-us {
    width: 70%;
}
h4.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
li.footer-links-item {
    font-weight: 500;
    padding-bottom: 10px;
}
a.call-footer {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.mail-footer {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
p.address-footer {
    color: #fff;
}
.footer-divider {
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    margin: 60px 0;
}
.footer-bottom-text p {
    color: #ffffff80;
    font-size: 14px;
}
.footer-bottom-text p span.company {
    color: #fff;
    font-weight: 700;
}
ul.sec-footer-links li {
    color: #ffffff80;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding-left: 15px;
}
ul.sec-footer-links {
    text-align: right;
}
.testimonial-para {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    padding: 10px 0px 30px;
}
.test-user-profile img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}
h5.user-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.user-position {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}
.users-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
section.testimonial .divider {
    width: 1px;
    height: 45px;
    background: rgb(135 26 246 / 24%);
}
.testimonial-media i {
    color: var(--theme-color);
    font-size: 35px;
}
.testimonial-user-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

section.testimonial button.slick-prev.slick-arrow,
section.testimonial button.slick-next.slick-arrow {
    bottom: auto;
    top: -50px;
    left: auto;
    width: 55px;
    height: 55px;
    background: var(--theme-color);
    border-radius: 50%;
}

section.testimonial button.slick-prev.slick-arrow:hover,
section.testimonial button.slick-next.slick-arrow:hover {
    background-color: var(--theme-color-2);
}

section.testimonial button.slick-prev.slick-arrow {
    right: 5%;
    z-index: 999;
}

section.testimonial button.slick-prev.slick-arrow::before {
    content: "\f12f";
    font-family: bootstrap-icons !important;
    font-size: 20px;
}
section.testimonial button.slick-next.slick-arrow::before {
    content: "\f138";
    font-family: bootstrap-icons !important;
    font-size: 20px;
}
.testimonial-card {
    padding: 20px;
    text-align: justify;
}
section.testimonial {
    padding-top: 100px;
}

section.testimonial ul.slick-dots {
    background: rgb(118 89 255 / 22%);
    display: inline-block;
    bottom: -50px;
    border-radius: 20px;
    padding: 0px;
}
section.testimonial .slick-dots li button:before {
    font-size: 13px;
    color: var(--theme-color-2);
}
section.testimonial .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: var(--theme-color);
}

/* dashboard */
.section-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}
.dash-card {
    background: #9b7ebd57;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #7f55b1;
}
.dash-title {
    font-size: 18px;
    font-weight: 700;
    color: #451381;
}
.dash-count {
    font-weight: 800;
    font-size: 40px;
    text-shadow: 0 0 2px #787878;
    color: #451381;
}
.dash-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
}
.dash-card.color-1 {
    background-color: var(--color-1);
    border-color: var(--color-1-dk);
}
.dash-card.color-1 .dash-title,
.dash-card.color-1 .dash-count {
    color: var(--color-1-dk);
}
.dash-card.color-2 {
    background-color: var(--color-2);
    border-color: var(--color-2-dk);
}
.dash-card.color-2 .dash-title,
.dash-card.color-2 .dash-count {
    color: var(--color-2-dk);
}
.dash-card.color-3 {
    background-color: var(--color-3);
    border-color: var(--color-3-dk);
}
.dash-card.color-3 .dash-title,
.dash-card.color-3 .dash-count {
    color: var(--color-3-dk);
}
.dash-card.color-4 {
    background-color: var(--color-4);
    border-color: var(--color-4-dk);
}
.dash-card.color-4 .dash-title,
.dash-card.color-4 .dash-count {
    color: var(--color-4-dk);
}
.dash-card.color-5 {
    background-color: var(--color-5);
    border-color: var(--color-5-dk);
}
.dash-card.color-5 .dash-title,
.dash-card.color-5 .dash-count {
    color: var(--color-5-dk);
}
.dash-card.color-6 {
    background-color: var(--color-6);
    border-color: var(--color-6-dk);
}
.dash-card.color-6 .dash-title,
.dash-card.color-6 .dash-count {
    color: var(--color-6-dk);
}
.dash-card.color-7 {
    background-color: var(--color-7);
    border-color: var(--color-7-dk);
}
.dash-card.color-7 .dash-title,
.dash-card.color-7 .dash-count {
    color: var(--color-7-dk);
}
.dash-card.color-8 {
    background-color: var(--color-8);
    border-color: var(--color-8-dk);
}
.dash-card.color-8 .dash-title,
.dash-card.color-8 .dash-count {
    color: var(--color-8-dk);
}
section.dashboard-section {
    min-height: 100vh;
}
ul.menu-list a.menu-list-items {
    background: #fff;
    margin: 0px;
    width: 100%;
    display: block;
    padding: 15px 10px;
    border: 1px solid #e1e1e1;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}
ul.menu-list a.menu-list-items.active,
ul.menu-list a.menu-list-items:hover {
    background: #4e71ff;
    color: #fff;
}

.add-btn-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-header h4 {
    font-size: 20px;
    font-weight: 700;
}
button.search-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    z-index: 2;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.student-profile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
}
ul.students-card .student-info,
.student-info {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
section.student-profile-page .student-info {
    padding: 20px;
    border: 1px solid #ddd;
}
.profile-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.profile-head h2 {
    font-size: 25px;
    font-weight: 700;
}
ul.students-card li {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.student-details h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.student-details p {
    font-size: 15px;
    margin-bottom: 0px;
}
p.std-course-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
}
p.std-course-details span {
    border-right: 1px solid #ddd;
    padding-right: 10px;
    margin-bottom: 5px;
}
.image-input-frame {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #d2d5db;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}
.image-input {
    width: 350px;
    max-width: 100%;
    padding: 5px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #dee2e6 !important;
}
p.std-course-details span:last-child {
    border: none;
}
ul.students-card .student-action li {
    padding: 0;
    margin-bottom: 0;
    border: none;
    display: block;
}
section.student-profile-page {
    padding: 20px 0;
}
ul.student-details-list li {
    padding: 10px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}
label.form-label {
    font-weight: 600;
    font-size: 14px;
}
.focus .ts-control, .ts-control {
    border-radius: 0;
    box-shadow: none;
    border-color: #666;
}
