:root {
    --them-color-main: #3b155e;
    --them-color-main2: #2f57ef;
    --them-color-second: #cf5b80;
    --them-color-third: #b966e7;
    --them-bg-one: #e6edf9;
    --them-bg-two: #ecedf2;
}

@font-face {
    font-family: "Euclid Circular";
    src: url("../fonts/Euclid-Circular-A-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular Medium";
    src: url("../fonts/Euclid-Circular-A-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular SemiBold";
    src: url("../fonts/Euclid-Circular-A-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular Bold";
    src: url("../fonts/Euclid-Circular-A-Bold.ttf") format("truetype");
}

* {
    font-family: "Euclid Circular", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,
h2,
h3 {
    font-family: "Euclid Circular Bold";
}

h4,
h5,
h6 {
    font-family: "Euclid Circular SemiBold";
}

.navbar {
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.bg-transpar {
    background-color: transparent;
}


.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }

    10%,
    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}

.momentLeft,
.momentRight {
    transition: all 0.3s ease;
}

.navbar .nav-link {
    position: relative;
    display: block;
    opacity: 1;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--them-color-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Euclid Circular Medium";
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--them-color-second);
}

nav.navbar {
    transition: margin-top 0.5s ease, background-color 0.5s ease,
        box-shadow 0.5s ease;
    background: transparent;
}

.custom-dropdown .nav-link {
    position: relative;
}

.custom-dropdown .nav-link::after {
    content: "\f282";
    font-family: bootstrap-icons !important;
    font-size: 10px;
    font-weight: bold;
    margin-left: 8px;
}

.wide-dropdown {
    left: 0;
    right: 0;
    padding: 18px;
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submenu-list {
    list-style-type: none;
    padding-left: 0;
}

.submenu-list li a,
.submenu-list li a.active {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    position: relative;
    margin: 0 10px;
    font-size: 16px;
    transition: 0.8s all;
    padding-bottom: 5px;
    transition: width 0.8s;
    color: var(--them-color-main);
    text-wrap: auto;
}

.submenu-list li a:hover {
    color: var(--them-color-second);
}

.submenu-list li a.active {
    color: var(--them-color-second);
}

.navbar.scrolled {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    background-color: #fff;
}

.logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Custom Hamburger Button */
.navbar-toggler.custom-toggler {
    border: none;
    background: transparent;
    outline: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: background 0.3s ease-in-out;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::before,
.navbar-toggler.custom-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease-in-out;
    left: 0;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::before {
    transform: translateY(-8px);
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::after {
    transform: translateY(8px);
}

.custom-dropdown .dropdown-menu {
    display: none;
    width: 800px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top: 2px solid var(--them-color-second);
    position: relative;
}

.custom-dropdown .dropdown-menu.mini-drop-down {
    width: 180px;
}

.custom-dropdown .dropdown-menu.single-drop-down {
    width: 300px;
}

.custom-dropdown .dropdown-menu.full-drop-down {
    width: 100%;
}

.custom-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    background: transparent;
    width: 15px;
    height: 15px;
    top: -20px;
    left: 10px;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent var(--them-color-second) transparent;
}

/* Show the dropdown on hover */
.custom-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub .dropdown-menu.nested-dropdown.show {
    display: block;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub ul.dropdown-menu:hover {
    display: block;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub ul.dropdown-menu {
    background-color: var(--them-bg-one);
    width: 250px;
    display: none;
    transition: 2s;
    margin-top: -10px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    max-height: 500px;
    overflow-y: auto;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

/* Additional mobile styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-brand img {
        width: 120px;
    }

    .navbar-collapse {
        padding: 15px;
        border-radius: 5px;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 0px 20px;
        transition: background 0.2s ease;
        text-align: left;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: flex-start;
    }

    .navbar .nav-link {
        color: #ccc;
    }
}

section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* banner */

section#banner {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/banner/banner-bg.jpg);
    z-index: 1;
    background-repeat: repeat-x;
    background-position: center top;
    background-size: cover;
}

h1.banner-title {
    font-size: 58px;
    margin-bottom: 30px;
    display: block;
    position: relative;
}

h1.banner-title span.highlight {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

h1.banner-title span.highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 10px);
    display: block;
    width: 100%;
    height: 20px;
    background-image: url(../images/shape/under-line.png);
    background-repeat: no-repeat;
    animation: bgSizeChange 3s ease-in both infinite;
}

@keyframes bgSizeChange {
    0% {
        background-size: 0%;
    }

    15% {
        background-size: 100%;
    }

    100% {
        background-size: 100%;
    }
}

.banner-body p.banner-text {
    color: #6b7385;
    font-size: 18px;
    font-weight: 400;
    width: 70%;
}

span.bg-highligh {
    color: var(--them-color-second);
    font-family: inherit;
}

p.title-text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
}

.login-home h3 {
    font-size: 34px;
}

.login-home {
    padding: 50px;
    position: relative;
    max-width: 490px;
    padding-left: 60px;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 6px;
    float: right;
}

.login-home .form-control {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgb(209 213 219);
    border-radius: 0;
    position: relative;
    margin-top: 30px;
    display: block;
    width: 100%;
    font-size: 18px;
}

span#togglePassword {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 3;
}

.banner-right {
    display: grid;
    justify-content: space-around;
    justify-items: end;
}

img.shape-message-icon {
    position: absolute;
    left: 0;
    top: 0;
}

img.shape-youTube-icon {
    position: absolute;
    right: 0;
    top: 0;
}

img.shape-check-icon {
    position: absolute;
    left: 0;
    bottom: 0;
}

img.shape-abc-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

section#banner::before {
    content: "";
    position: absolute;
    background-image: url(../images/shape/shape-3.png);
    width: 1000px;
    height: 370px;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
}

.banner-icon-center i {
    font-size: 400px;
    text-align: center;
    position: relative;
    background: linear-gradient(90deg, #2f57ef, #b966e7);
    background-clip: text;
    color: transparent;
    line-height: 0;
}

.banner-icon-center {
    position: relative;
    display: grid;
    align-items: center;
}

span.big-text-mySoul {
    font-family: "My Soul", cursive;
    font-size: 160px;
    color: #fff;
    position: absolute;
    left: 35%;
    top: 15%;
}

span.text-start {
    font-size: 20px;
    font-family: "Euclid Circular SemiBold";
}

.section-sub-title {
    background: #2f57ef21;
    color: #2f57ef;
    border-radius: 100px;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Euclid Circular Medium";
    position: relative;
}

section h2 {
    position: relative;
    display: block;
    font-size: 44px;
    color: #192335;
    font-weight: bold;
    margin-bottom: 15px;
}

span.highlight {
    background: linear-gradient(90deg, #2f57ef, #b966e7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(255, 255, 255, 0.001);
    font-family: inherit;
}

section p {
    color: #6b7385;
    font-size: 16px;
    margin-bottom: 1rem;
}

p.description {
    font-size: 18px;
    position: relative;
}

.section-head {
    position: relative;
}

section#whyChooseUs .big-title,
.section-head .big-title {
    top: -38px;
}

.big-title {
    font-family: "Euclid Circular Bold";
    position: absolute;
    color: #f4f5f7;
    top: 0%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 270px;
    font-weight: 700;
    line-height: 0.8em;
    background: linear-gradient(180deg,
            rgb(228, 226, 250) 0%,
            rgba(57, 78, 244, 0.03) 80%);
    background-clip: text;
    color: transparent;
}

.btn-buttons {
    border: none;
    margin-top: 10px;
}

/* Button Style */
.btn-buttons {
    display: inline-block;
    padding: 10px 30px;
    font-size: 15px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-sizing: border-box;
    color: #ffffff;
    background-size: 300% 100%;
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
}

/* Hover Effect */

.btn-buttons:hover {
    background-position: 102% 0;
    transition: all 0.4s ease-in-out;
    color: #fff;
    transform: translate3d(0, -2px, 0);
}

.btn-buttons:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.btn-buttons:active {
    transform: scale(0.98);
    /* Shrinks button slightly */
}

/* testimonial */
section#testimonial {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
    padding-bottom: 200px;
}

.section-head h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 15px;
    position: relative;
}

h3.description {
    color: #19233550;
    font-size: 34px;
    margin-bottom: 20px;
    position: relative;
}

.big-section-heading .big-title {
    font-size: 540px;
    text-align: center;
}

.testimonial-card {
    padding: 64px 112px;
    border-radius: 15px;
    background: url(../images/shape/bg-shape-3.png),
        linear-gradient(90deg, #8ea5fa 0%, #dd99ed 100%);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    color: #fff;
    z-index: 1;
    min-height: 250px;
}

.testimonial-card .starts {
    color: #ffc71e;
    align-items: center;
    font-size: 28px;
}

.testimonial-titles {
    font-size: 22px;
    font-family: "Euclid Circular Bold";
    color: #fff;
    font-weight: 600;
}

.testimonial-entry-date {
    font-size: 18px;
    color: #fff;
    display: list-item;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-text p {
    color: #fff;
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

marker {
    background: #2f57ef;
    padding: 2px;
    border-radius: 4px;
    white-space: nowrap;
}

img.testimonial-cart-img {
    width: 88px;
    height: 88px;
    border: 2px solid #b966e7;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

h5.testimonial-user-name {
    font-size: 22px;
    margin-bottom: 10px;
}

.user-tags {
    display: inline-flex;
    font-family: "Euclid Circular";
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.65);
    color: #3eb75e;
    align-items: center;
    justify-content: center;
    gap: 5px;
    vertical-align: middle;
}

p.testimonial-user-pos {
    color: #fff;
    font-size: 18px;
    font-style: italic;
}

.quote-top {
    position: absolute;
    font-size: 300px;
    right: 0;
    line-height: 0;
    top: -6pc;
    color: rgb(255 255 255 / 25%);
}

.testimonial-big-text {
    font-family: "Euclid Circular Bold";
    font-size: 280px;
    color: #fff;
    opacity: 0.2;
    position: absolute;
    bottom: -10pc;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-transform: capitalize;
    z-index: -1;
}

section.testimonial-top .slick-dots li.slick-active button:before {
    border-radius: 50%;
    outline: 1px #2f57ef solid;
    color: #2f57ef;
}

section.testimonial-top .slick-dots li button:hover:before {
    color: #da99ed;
}

section.testimonial-top .slick-dots {
    bottom: -40px;
}

section.testimonial-top {
    padding: 0;
    overflow: visible;
    transform: translateY(-12pc);
}

/* footer */
footer#footer {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
}

img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.call-sec h4,
h4.footer-title {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #202124;
    font-weight: 600;
}

.call-sec a.call-footer {
    font-size: 18px;
    line-height: 28px;
    color: #1967d2;
    font-weight: 600;
}

a.mail-footer {
    color: #1967d2 !important;
    font-weight: 600;
    font-family: "Euclid Circular Medium";
}

.call-sec {
    margin-bottom: 20px;
}

footer.footer p,
footer.footer a {
    font-size: 15px;
    line-height: 30px;
    color: dimgray;
    font-weight: 400;
}

.footer-about-us {
    padding-right: 20px;
}

.footer-bottom-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

a.social-icon:hover {
    color: var(--them-color-main);
}

ul.footer-links {
    margin-top: 20px;
}

li.footer-links-item {
    color: dimgray;
    transition: all 0.2s ease;
    font-size: 16px;
    margin-bottom: 10px;
    transform: translateX(0px);
}

li.footer-links-item::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--them-color-main);
    top: 50%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}

li.footer-links-item:hover {
    padding-left: 20px;
    color: var(--them-color-second);
}

li.footer-links-item:hover a {
    color: var(--them-color-second);
}

li.footer-links-item:hover::before {
    visibility: visible;
    opacity: 1;
}

footer#footer.footer-main {
    padding: 60px 0;
    background-image: url(../images/shape/three-shape.webp),
        linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

footer.footer-bottom {
    padding: 20px 0;
}


/* --------------custom Css For Exams----------------- */

img.banner-img {
    width: 100%;
    height: auto;
}

.banner-img-sec {
    position: relative;
}

.banner-img-sec::before {
    content: '';
    position: absolute;
    background-image: url(../images/shape/star-shape.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: shinePulse 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes shinePulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }

    25% {
        transform: scale(1.05) rotate(5deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1) rotate(0deg);
        opacity: 1;
    }

    75% {
        transform: scale(1.05) rotate(-5deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
}

.countdown-timer-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box-heads {
    font-size: 60px;
    font-family: "Euclid Circular Bold";
}

.small.box-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.timer-box {
    position: relative;
    padding-right: 20px;
}

.timer-box::after {
    content: ':';
    position: absolute;
    top: 15%;
    right: 0;
    font-size: 40px;
}

.countdown-timer-area .timer-box:last-child::after {
    content: none;
}

section.banner {
    overflow-y: visible;
    z-index: 1;
}

section.time-count {
    display: block;
    overflow: visible;
    z-index: 1;
}

.timer-banner {
    background: #fff;
    padding: 40px;
    border-radius: 1em;
    position: relative;
    margin-top: -10pc;
    z-index: 2;
    background-image: url(../images/banner/bg-3.png);
}

.timer-banner h3.sec-title {
    color: #ff0000;
}

nav.navbar {
    background: rgb(255 255 255 / 30%);
}

.feature-card {
    padding: 30px;
    background-color: #EAF8FF;
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    overflow: hidden;
}

.feature-card-icon span {
    width: 100%;
    height: 100%;
    display: block;
    mask-image: url(../images/icons/bulb.png);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #0171F1;
}

.feature-card-icon span.icon-learn {
    mask-image: url(../images/icons/icon-learn.png);
}
.feature-card-icon span.icon-mock {
    mask-image: url(../images/icons/icon-mock.png);
}
.feature-card-icon span.icon-track {
    mask-image: url(../images/icons/icon-track.png);
}
.feature-card-icon span.icon-support {
    mask-image: url(../images/icons/icon-support.png);
}

.feature-card.f-card-red {
    background-color: #FAE8E8;
}

.feature-card.f-card-red .feature-card-icon span {
    background-color: #E90000;
}

.feature-card.f-card-green {
    background-color: #E8F7E6;
}

.feature-card.f-card-green .feature-card-icon span {
    background-color: #7dc06d;
}

.feature-card.f-card-purple {
    background-color: #F4E9F8;
}

.feature-card.f-card-purple .feature-card-icon span {
    background-color: #9C00EA;
}

section.exam-sections {
    background-image: url(../images/bg-section-courses.jpg);
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: repeat-y;
    z-index: 1;
}

section.exam-sections .container {
    position: relative;
    z-index: 1;
}

section.exam-sections::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 5%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.9) 95%, #FFFFFF 100%);
}

.exams-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    box-shadow: 0px 4px 10px 0px rgba(228, 172, 172, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.exams-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    background: #dbd3f9;
}

.exams-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.exam-body {
    padding: 20px;
}

.exam-footer {
    padding: 5px 20px 20px 20px;
}

.price {
    font-size: 28px;
    font-family: "Euclid Circular Bold";
    color: #6b7385;
}

.price del {
    color: #333;
    opacity: 0.5;
    font-size: 24px;
}

p.exam-desc {
    font-size: 17px;
    color: #333;
}

a.btn-exam-sm {
    color: var(--them-color-main2);
    font-family: "Euclid Circular Bold";
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 15px 5px;
    text-transform: uppercase;
    border-bottom: 1px dashed var(--them-color-main2);
    transition: all 0.3s;
}

a.btn-exam-sm:hover {
    color: var(--them-color-second);
    border-bottom: 1px solid var(--them-color-second);
}

.exam-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.price.free {
    color: #009f00;
}

.footer-timer-banner {
    padding: 20px;
    background-color: var(--them-color-main2);
    background-image: url(../images/banner/banner-bg-sm.jpg);
    border-radius: 1em;
    background-position: right;
    background-size: contain;
    text-align: center;
    color: #fff;
}

.exam-body i {
    text-shadow: 0 0 1px rgb(0 0 0 / 20%);
}

.modal-content {
    padding: 30px;
    border-radius: 2em;
}