/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Educiza
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header
3. Banner  /.banner-con
4. Categories  /.categorie-con
5. About  /.about-con
6. Courses  /.course-con
7. Benefit  /.benefit-con
8. Conatct Form  /.conatctform-con
9. Team  /.team-con
10. Testimonial  /.testimonial-con
11. Article  /.article-con
12. Footer  /.footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

#    --e-global-color-primary: #ffffff;
#    --e-global-color-secondary: #000000;
#    --e-global-color-accent: #dcfd7d;
#    --e-global-color-text: #656565;
#	 --e-global-color-white: #ffffff;
#    --e-global-color-black: #000000;
#    --e-global-color-soft-blue: #6a52e0;
#    --e-global-color-very-light-gray-white: #fafafa;
#    --e-global-color-dark-blue: #231b49;
#    --e-global-color-very-dark-blue: #1f1741;
#    --e-global-color-grayish-blue: #a39eba;
#    --e-global-color-star-yellow: #fbc729;
#    --e-global-color-pure-red: #ff0000;
#	 --e-global-color-very-pale-yellow: #fff7dd;
#    --e-global-color-very-pale-blue: #e7e9ff;
#    --e-global-color-very-soft-green: #effcc9;
#    --e-global-color-very-pale-red: #ffeae7;
#    --e-global-color-very-light-gray: #f0f0f0;
#    --e-global-color-light-grayish-cyan: #eef8fa;
#    --e-global-color-bright-yellow: #dcb32e;
#    --e-global-color-dark-moderate-green: #99b251;
#    --e-global-color-soft-red: #da7c6f;
#    --e-global-color-dark-grayish-red: #757474;
#    --e-global-color-slightly-desaturated-cyan: #7aacb6;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "Archivo", serif;
Heading: "Urbanist", serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Archivo", serif;
    /* font-family: "Urbanist", serif; */
    overflow-x: hidden;
}

/* SEAG app utility styles */
input,
select,
textarea,
button {
    font-family: "Archivo", serif;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 10px 12px;
    background: #ffffff;
}

button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    background: var(--e-global-color-soft-blue);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

table {
    background: #ffffff;
}

/* =====================================================
   App shell — shared header/body wrapper
   ===================================================== */
.app-header-wrap {
    background: #ffffff;
    border-bottom: 1px solid #eceaf5;
    box-shadow: 0 2px 8px rgba(106, 82, 224, 0.07);
}

.app-page-body {
    min-height: 60vh;
    padding-bottom: 40px;
}

/* =====================================================
   App layout — dashboards and learning pages
   ===================================================== */
.app-shell {
    max-width: 980px;
    margin: 36px auto;
    padding: 0 16px;
}

.app-card {
    background: #ffffff;
    border: 1px solid #eceaf5;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(106, 82, 224, 0.06);
}

.app-title {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.2;
    color: #231b49;
}

.app-subtitle {
    margin: 0 0 12px;
    color: #a39eba;
}

.app-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.app-col {
    flex: 1 1 280px;
}

.app-kpi {
    background: #e7e9ff;
    border: 1px solid #d5d8f8;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.app-kpi strong {
    display: block;
    font-size: 18px;
    color: #231b49;
    margin-bottom: 4px;
}

.app-progress-track {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: #eceaf5;
    overflow: hidden;
    margin: 6px 0 0;
}

.app-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #6a52e0, #a398e8);
}

.app-btn,
.app-link-btn {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.app-btn:hover,
.app-link-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.app-btn {
    background: #6a52e0;
    color: #ffffff !important;
}

.app-link-btn {
    background: #f0eeff;
    color: #6a52e0 !important;
}

.app-alert {
    border-radius: 12px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 16px;
}

.app-alert-success {
    background: #effcc9;
    border: 1px solid #c8e89c;
    color: #3b5e13;
}

.app-alert-info {
    background: #e7e9ff;
    border: 1px solid #c0c5f5;
    color: #3b3480;
}

.app-alert-warning {
    background: #fff7dd;
    border: 1px solid #f0d98a;
    color: #6a4f1d;
}

.app-list {
    margin: 0;
    padding-left: 18px;
}

.app-list li {
    margin-bottom: 8px;
}

/* =====================================================
   Mature app variants — parent/admin pages
   ===================================================== */
.app-shell-mature {
    max-width: 1080px;
    margin: 36px auto;
    padding: 0 18px;
}

.app-card-mature {
    background: #ffffff;
    border: 1px solid #eceaf5;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(106, 82, 224, 0.06);
}

.app-title-mature {
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.2;
    color: #231b49;
}

.app-subtitle-mature {
    margin: 0;
    color: #a39eba;
}

.app-kpi-mature {
    background: #e7e9ff;
    border: 1px solid #d5d8f8;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.app-btn-secondary {
    display: inline-block;
    min-height: 42px;
    line-height: 40px;
    padding: 0 20px;
    border: 2px solid #6a52e0;
    border-radius: 999px;
    background: #ffffff;
    color: #6a52e0 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.app-btn-secondary:hover {
    background: #6a52e0;
    color: #ffffff !important;
    text-decoration: none;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.app-table th,
.app-table td {
    border-bottom: 1px solid #eceaf5;
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
}

.app-table th {
    background: #f0eeff;
    color: #231b49;
    font-weight: 700;
}

@media (max-width: 768px) {
    .app-shell {
        padding: 0 12px;
    }

    .app-card {
        padding: 18px;
    }

    .app-title {
        font-size: 28px;
    }

    .app-btn,
    .app-link-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
        display: block;
    }

    .app-shell-mature {
        padding: 0 12px;
    }

    .app-title-mature {
        font-size: 30px;
    }

    .app-btn-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
        display: block;
    }
}

:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #000000;
    --e-global-color-accent: #dcfd7d;
    --e-global-color-text: #656565;
	--e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-soft-blue: #6a52e0;
    --e-global-color-very-light-gray-white: #fafafa;
    --e-global-color-dark-blue: #231b49;
    --e-global-color-very-dark-blue: #1f1741;
    --e-global-color-grayish-blue: #a39eba;
    --e-global-color-star-yellow: #fbc729;
    --e-global-color-pure-red: #ff0000;
	--e-global-color-very-pale-yellow: #fff7dd;
    --e-global-color-very-pale-blue: #e7e9ff;
    --e-global-color-very-soft-green: #effcc9;
    --e-global-color-very-pale-red: #ffeae7;
    --e-global-color-very-light-gray: #f0f0f0;
    --e-global-color-light-grayish-cyan: #eef8fa;
    --e-global-color-bright-yellow: #dcb32e;
    --e-global-color-dark-moderate-green: #99b251;
    --e-global-color-soft-red: #da7c6f;
    --e-global-color-dark-grayish-red: #757474;
    --e-global-color-slightly-desaturated-cyan: #7aacb6;
}

h1{
    font-size: 74px;
    line-height: 76px;
    font-weight: 800;
    color: var(--e-global-color-primary);
    font-family: "Urbanist", serif;
}
h2{
    font-size: 54px;
    line-height: 60px;
    font-weight: 800;
    color: var(--e-global-color-secondary);
    font-family: "Urbanist", serif;
}
h3{
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
    color: var(--e-global-color-secondary);
    font-family: "Urbanist", serif;
}
h4{
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    font-family: "Urbanist", serif;
}
h5{
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    font-family: "Urbanist", serif;
}
h6{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--e-global-color-soft-blue);
    font-family: "Urbanist", serif;
    letter-spacing: 1.8px;
}
p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
    word-break: break-word;
}
.text-size-18{
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
}
.text-size-16{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
}
.text-size-14{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
}
.primary_btn{
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    font-family: "Archivo", serif;
    transition: all 0.8s ease-in-out;
}
.primary_btn:hover{
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
}
.primary_btn i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.primary_btn:hover i{
    color: var(--e-global-color-white);
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.all_row {
    display: flex;
    flex-wrap: wrap;
}
.all_column {
    display: flex;
}
.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Home Page */

.header {
    padding: 22px 0px;
    position: relative;
    z-index: 5;
}
.header .logo img {
    width: 143px;
}
.navbar-collapse .navbar-nav{
    text-align: center;
    align-items: center; 
    display: inherit;
}
.navbar-expand-lg{
    position: relative;
    z-index: 1;
}
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav li {
    margin: 0 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav .nav-item a{
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-soft-blue) !important;
    background-color: transparent;
}
.navbar-nav .active > a{
    color: var(--e-global-color-soft-blue) !important;
}
.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 61px;
    min-width: 212px;
    padding: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
}
.navbar-nav .drop-down-pages li{
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 10px 20px;
    color: var(--e-global-color-nav-text) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}
.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages .active:first-child > a::before{
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages li:last-child{
    margin: 0;
    border: none;
    display: block !important;
}
.navbar-nav .nav-item .dropdown-item:hover{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.dropdown-item.active,
.dropdown-item:active {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a:hover {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .active:first-child > a {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 10px 10px;
}
.navbar-nav .drop-down-pages .active:last-child > a {
    border-radius: 0 0 10px 10px;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.navbar-nav .nav-item .log_in{
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    min-width: 137px;
    height: 50px;
    padding: 16px;
    border-radius: 35px;
    position: relative;
    text-align: center;
    display: inline-block;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent)  !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item .log_in i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.navbar-nav .nav-item .log_in:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-soft-blue) !important;
}
.navbar-nav .nav-item .log_in:hover i{
    color: var(--e-global-color-white);
}
.header .phone-number {
    display: flex;
    align-items: center;
    margin-left: 12px;
}
.header .phone-number i {
    font-size: 18px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-black);
    background-color: transparent;
    border: 1px solid var(--e-global-color-black);
    transition: all 0.3s ease-in-out;
}
.header .phone-number .number {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.3s ease-in-out;
}
.header .phone-number:hover i {
    transform: translateY(-5px);
}
.header .phone-number:hover .number {
    color: var(--e-global-color-soft-blue);
}

/* Banner */

.banner-con {
    padding: 120px 0;
    background-color: var(--e-global-color-soft-blue);
}
.banner-con .banner-righttopimage {
    position: absolute;
    top: 0;
    right: 0;
}
.banner-con .banner-righttopimage img {
    opacity: 8%;
}
.banner-con .banner-halfcircleimage {
    position: absolute;
    bottom: 0;
    left: 24%;
}
.banner-con .banner_content {
    width: 690px;
}
.banner-con .banner_content h1{
    margin-bottom: 15px;
}
.banner-con .banner_content h1 span {
    color: var(--e-global-color-accent);
    position: relative;
}
.banner-con .banner_content h1 span::before {
    content: "";
    left: 0;
    bottom: 0;
    width: 212px;
    height: 16px;
    position: absolute;
    background-image: url(../images/banner-headerbottom.png);
}
.banner-con .banner_content p{
    margin-bottom: 38px;
    padding-right: 125px;
}
.banner-con .banner_content .button_wrap {
    display: flex;
    align-items: center;
}
.banner-con .banner_content .primary_btn {
    padding: 21px 34px;
    margin-right: 25px;
}
.banner-con .banner_content .primary_btn:hover {
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
}
.banner-con .banner_content .primary_btn:hover i {
    color: var(--e-global-color-black);
}
.banner-con .banner_content .secondary_btn {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    position: relative;
    color: var(--e-global-color-white);
    font-family: "Archivo", serif;
    transition: all 0.8s ease-in-out;
}
.banner-con .banner_content .secondary_btn i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-white);
}
.banner-con .banner_content .secondary_btn:hover,
.banner-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-black);
}
.banner-con .banner_content .banner-crossimage {
    position: absolute;
    top: -80px;
    right: -10px;
}
.banner-con .banner_content .banner-crossimage img {
    opacity: 30%;
}
.banner-con .banner_content .banner-triangleimage {
    position: absolute;
    top: -82px;
    left: -70px;
}
.banner-con .banner_wrapper {
    display: inline-block;
}
.banner-con .banner_wrapper .banner-image1 {
    position: relative;
    left: 25px;
    top: 0;
}
.banner-con .banner_wrapper .banner-image2 {
    position: absolute;
    right: -368px;
    top: 0;
}
.banner-con .banner_wrapper .banner-image3 {
    position: absolute;
    right: -368px;
    bottom: 0;
}
.banner-con .banner_wrapper .banner-image1 img {
    border-radius: 160px 160px 20px 160px;
    border-top: 20px solid var(--e-global-color-accent);
}
.banner-con .banner_wrapper .banner-image2 img {
    border-radius: 132px 132px 132px 20px;
}
.banner-con .banner_wrapper .banner-image3 img {
    border-radius: 132px 20px 132px 132px;
    border-bottom: 20px solid var(--e-global-color-accent);
}
.banner-con .banner_wrapper .box{
    left: -50px;
    bottom: 164px;
    width: 258px;
    height: 73px;
    padding: 10px 15px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--e-global-color-white);
    box-shadow: 2px 20px 29px 20px rgb(0 0 0 / 3%);
}
.banner-con .banner_wrapper .box .text{
    padding-left: 10px;
}
.banner-con .banner_wrapper .box .value{
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    display: block;
    margin-bottom: -2px;
    color: var(--e-global-color-secondary);
}
.banner-con .banner_wrapper .box .review{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.banner-con .banner_wrapper .box figure{
    margin: 0 -13px;
    display: inline-block;
}
.banner-con .banner_wrapper .box figure:first-child{
    margin-left: 0;
}
.banner-con .banner_wrapper .box figure:last-child{
    margin-right: 0;
}
.banner-con .banner_wrapper .box img{
    width: 48px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-white);
}
.banner-con .top-btn {
    display: inline-block;
    left: 0;
    right: 0;
    bottom: -75px;
    margin: 0 auto;
    position: absolute;
}
.banner-con .top-btn figure{
    transition: all 0.3s ease-in-out;
}
.banner-con .top-btn figure:hover {
    transform: translateY(-5px);
}

/* Categories */

.categories-con {
    padding: 145px 0 120px;
    background-color: var(--e-global-color-very-light-gray-white);
}
.categories-con .categories_content h6{
    margin-bottom: 14px;
}
.categories-con .categories_content h2{
    margin-bottom: 56px;
}
.categories-con .categories-box {
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.categories-con .categories-box .icon {
    width: 68px;
    height: 68px;
    line-height: 68px;
    margin-bottom: 25px;
    text-align: center;
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
}
.categories-con .categories-box:hover .icon {
    transform: translateY(-5px);
}
.categories-con .categories-box h3 {
    margin-bottom: 10px;
}
.categories-con .categories-box p {
    margin-bottom: 20px;
}
.categories-con .categories-box .arrow i {
    font-size: 15px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-secondary);
}
.categories-con .box1:hover {
    border-bottom: 2px solid var(--e-global-color-bright-yellow);
}
.categories-con .box2:hover {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}
.categories-con .box3:hover {
    border-bottom: 2px solid var(--e-global-color-soft-red);
}
.categories-con .box4:hover {
    border-bottom: 2px solid var(--e-global-color-dark-grayish-red);
}
.categories-con .box5:hover {
    border-bottom: 2px solid var(--e-global-color-dark-moderate-green);
}
.categories-con .box6:hover {
    border-bottom: 2px solid var(--e-global-color-slightly-desaturated-cyan);
}
.categories-con .categories-box .icon1 {
    background-color: var(--e-global-color-very-pale-yellow);
}
.categories-con .categories-box .icon2 {
    background-color: var(--e-global-color-very-pale-blue);
}
.categories-con .categories-box .icon3 {
    background-color: var(--e-global-color-very-pale-red);
}
.categories-con .categories-box .icon4 {
    background-color: var(--e-global-color-very-light-gray);
}
.categories-con .categories-box .icon5 {
    background-color: var(--e-global-color-very-soft-green);
}
.categories-con .categories-box .icon6 {
    background-color: var(--e-global-color-light-grayish-cyan);
}
.categories-con .box1:hover .arrow i {
    color: var(--e-global-color-bright-yellow);
}
.categories-con .box2:hover .arrow i {
    color: var(--e-global-color-soft-blue);
}
.categories-con .box3:hover .arrow i {
    color: var(--e-global-color-soft-red);
}
.categories-con .box4:hover .arrow i {
    color: var(--e-global-color-dark-grayish-red);
}
.categories-con .box5:hover .arrow i {
    color: var(--e-global-color-dark-moderate-green);
}
.categories-con .box6:hover .arrow i {
    color: var(--e-global-color-slightly-desaturated-cyan);
}

/* About */

.about-con .about_wrapper .about-image {
    position: absolute;
    bottom: 0;
    left: -160px;
}
.about-con .about_wrapper .about-image::before {
    content: "";
    width: 595px;
    height: 595px;
    top: 0;
    left: 38px;
    position: absolute;
    border-radius: 100%;
    background-color: #f4fed8;
    z-index: -1;
}
.about-con .about-rightimage {
    position: absolute;
    right: 0;
    top: 30%;
}
.about-con .about-rightimage img {
    opacity: 8%;
}
.about-con .about_content {
    padding: 168px 0 160px 50px;
}
.about-con .about_content h6{
    margin-bottom: 18px;
}
.about-con .about_content h2{
    margin-bottom: 28px;
}
.about-con .about_content .text{
    margin-bottom: 25px;
}
.about-con .about_content ul{
    margin-bottom: 40px;
    display: inline-block;
}
.about-con .about_content ul li {
    position: relative;
    margin-bottom: 11px;
}
.about-con .about_content ul li:last-child {
    margin-bottom: 0;
}
.about-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 14px;
    top: 3px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-soft-blue);
}
.about-con .about_content ul li p {
    line-height: 20px;
    font-weight: 500;
    padding-left: 34px;
    color: var(--e-global-color-secondary);
}
.about-con .about_content .primary_btn {
    padding: 21px 45px;
}

/* Popular & Courses */

/* Popular */

.popular-con {
    padding: 145px 0 426px;
    background-color: var(--e-global-color-soft-blue);
}
.popular-con .popular_content h6 {
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.popular-con .popular_content h2 {
    margin-bottom: 0;
}
.popular-con .popular-lefttopimage {
    position: absolute;
    left: 0;
    top: 0;
}
.popular-con .popular-lefttopimage img{
    opacity: 8%;
}
.popular-con .popular-crossimage {
    position: absolute;
    right: -212px;
    top: 169px;
}
.popular-con .popular-crossimage img{
    opacity: 30%;
}
.popular-con .popular-triangleimage {
    position: absolute;
    right: -63px;
    top: 94px;
}

/* Courses */

.course-con {
    padding-bottom: 120px;
    background-color: var(--e-global-color-very-light-gray-white);
}
.course-con .tabs-box {
    margin-top: -383px;
}
.course-con .nav-tabs {
    display: flex;
    margin: 0 auto 80px;
    justify-content: center;
    border-bottom: none;
}
.course-con .tabs-box .nav-tabs li {
    padding: 0 35px;
    border-right: 1px solid var(--e-global-color-white);
}
.course-con .tabs-box .nav-tabs li:first-child {
    padding-left: 0;
}
.course-con .tabs-box .nav-tabs li:last-child {
    padding-right: 0;
    border-right: none;
}
.course-con .tabs-box .nav-tabs li a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    display: inline-block;
    color: var(--e-global-color-white);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.course-con .tabs-box .nav-tabs li a:hover{
    color: var(--e-global-color-accent);
}
.course-con .tabs-box .nav-tabs > li > a.active {
    color: var(--e-global-color-accent);
}
.course-con .tabs-box .nav-tabs li a::after {
    content: "";
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 100%;
    position: absolute;
    border-bottom: 2px solid transparent;
}
.course-con .tabs-box .nav-tabs li a.active::after {
    border-bottom: 2px solid var(--e-global-color-accent);
}
.course-con .course-box {
    margin-bottom: 30px;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.course-con .course-box .image {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--e-global-color-black);
}
.course-con .course-box .image img{
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease-in-out;
}
.course-con .course-box:hover .image img {
    opacity: 80%;
    transform: scale(1.1);
}
.course-con .course-box .lower_content {
    padding: 30px 36px 22px;
}
.course-con .course-box .content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.course-con .course-box .calendar {
    display: flex;
    align-items: center;
    padding-right: 14px;
}
.course-con .course-box .people {
    display: flex;
    align-items: center;
    padding-left: 14px;
    border-left: 1px solid #e2e2e2;
}
.course-con .course-box .content i {
    font-size: 12px;
    margin-right: 10px;
    color: var(--e-global-color-black);
}
.course-con .course-box .content span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.course-con .course-box h5 {
    margin-bottom: 18px;
    display: inline-block;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.course-con .course-box h5:hover {
    color: var(--e-global-color-soft-blue);
}
.course-con .course-box .value {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e2e2;
}
.course-con .course-box .value span {
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    color: var(--e-global-color-soft-blue);
}
.course-con .course-box .enroll_now {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    padding: 12px 22px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    font-family: "Urbanist", sans-serif;
    transition: all 0.8s ease-in-out;
}
.course-con .course-box .enroll_now i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.course-con .course-box .enroll_now:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
}
.course-con .course-box .enroll_now:hover i {
    color: var(--e-global-color-white);
}

/* Benefit */

.benefit-con {
    padding: 150px 0;
    background-color: var(--e-global-color-white);
}
.benefit-con .benefit_content {
    padding-right: 60px;
}
.benefit-con .benefit_content h6 {
    margin-bottom: 18px;
}
.benefit-con .benefit_content h2 {
    margin-bottom: 28px;
}
.benefit-con .benefit_content .text {
    margin-bottom: 25px;
}
.benefit-con .benefit_content ul li {
    position: relative;
    margin-bottom: 11px;
}
.benefit-con .benefit_content ul li:last-child {
    margin-bottom: 0;
}
.benefit-con .benefit_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 3px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-soft-blue);
}
.benefit-con .benefit_content ul li p {
    line-height: 20px;
    font-weight: 500;
    padding-left: 34px;
    color: var(--e-global-color-secondary);
}
.benefit-con .benefit-box {
    padding: 48px 30px 50px;
    text-align: center;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.benefit-con .benefit-box:hover {
    transform: translateY(-5px);
}
.benefit-con .box {
    padding-top: 42px;
}
.benefit-con .benefit-box .number {
    font-size: 46px;
    line-height: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Urbanist", serif;
    color: var(--e-global-color-secondary);
}
.benefit-con .benefit-box .plus {
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;
    top: -14px;
    left: 0;
    position: relative;
    color: var(--e-global-color-secondary);
}
.benefit-con .benefit-box .text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    color: var(--e-global-color-text);
}
.benefit-con .benefit-downcontent {
    margin-top: -10px;
}
.benefit-con .box1 {
    background-color: #fffbed;
}
.benefit-con .box2 {
    background-color: #f3f4ff;
}
.benefit-con .box3 {
    background-color: #f9ffe7;
}
.benefit-con .box4 {
    background-color: #fff7f6;
}

/* Contact Form */

.contactform-con {
    background-color: var(--e-global-color-soft-blue);
}
.contactform-con::before {
    content: "";
    width: 49%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/contact-leftbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.contactform-con .contact-righttopimage {
    position: absolute;
    right: 0;
    top: 0;
}
.contactform-con .contact-righttopimage img{
    opacity: 8%;
}
.contactform-con .contact_wrapper {
    display: none;
}
.contactform-con .contact_content{
    padding: 130px 0 130px 40px;
    position: relative;
    z-index: 1;
}
.contactform-con .contact_content h6{
    margin-bottom: 10px;
    color: var(--e-global-color-accent);
}
.contactform-con .contact_content h2{
    margin-bottom: 34px;
}
.contactform-con .contact_content .form-group{
    margin-bottom: 24px;
}
.contactform-con .contact_content .input1 {
    float: left;
    margin-right: 18px;
}
.contactform-con .contact_content input,
.contactform-con .contact_content textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 53px;
    width: 240px;
    padding: 10px 10px 10px 22px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    border-radius: 35px;
    overflow: visible;
    outline: none;
}
.contactform-con .contact_content textarea {
    height: 118px;
    width: 100% !important;
    padding: 16px 22px;
    border-radius: 18px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contactform-con .contact_content .message {
    margin-bottom: 26px;
}
.contactform-con .contact_content input:focus,
.contactform-con .contact_content textarea:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-secondary);
}
.contactform-con .contact_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 20px 36px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 35px;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    font-family: "Archivo", serif;
    transition: all 0.8s ease-in-out;
    outline: none;
    border-style: none;
}
.contactform-con .contact_content .submit_now:hover {
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
}
.contactform-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 22px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.contactform-con .contact_content input::placeholder,
.contactform-con .contact_content textarea::placeholder{
    color: var(--e-global-color-text);
}
.contactform-con .contact_content form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-black);
}
.contactform-con .contact-crossimage {
    position: absolute;
    right: -250px;
    top: 48%;
}
.contactform-con .contact-crossimage img{
    opacity: 30%;
}
.contactform-con .contact-triangleimage {
    position: absolute;
    right: -300px;
    bottom: 15%;;
}

/* Team */

.team-con{
    padding: 145px 0 250px;
    background-color: var(--e-global-color-very-light-gray-white);
}
.team-con .team_content h6 {
    margin-bottom: 14px;
}
.team-con .team_content h2 {
    margin-bottom: 56px;
}
.team-con .team-box {
    position: relative;
    text-align: center;
    transition: all 0.5s ease-in-out;
}
.team-con .team-box figure {
    margin: 0 auto;
    border-radius: 170px 170px 20px 170px;
    overflow: hidden;
}
.team-con .team-box figure img {
    transition: all 0.5s ease-in-out;
    border-radius: 170px 170px 20px 170px;
}
.team-con .team-box:hover figure img {
    transform: scale(1.1);
}
.team-con .team-box .content {
    width: 255px;
    padding: 30px;
    bottom: -102px;
    left: 70px;
    position: absolute;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.team-con .team-box:hover .content {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}
.team-con .team-box h4 {
    font-size: 22px;
    margin-bottom: 6px;
}
.team-con .team-box span {
    display: block;
    margin-bottom: 14px;
}
.team-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}
.team-con .team-box i {
    font-size: 14px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    transition: all 0.5s ease-in-out;
}
.team-con .team-box i:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-soft-blue);
}
.team-con .team-box li:hover {
    transform: translateY(-5px);
}
.team-con .team-box li:first-child {
    margin-left: 0;
}
.team-con .team-box li:last-child {
    margin-right: 0;
}

/* Testimonial */

.testimonial-con{
    padding: 145px 0 225px;
    background-color: var(--e-global-color-white);
}
.testimonial-con .testimonial-leftimage {
    position: absolute;
    left: 0;
    top: 28%;
}
.testimonial-con .testimonial-leftimage img {
    opacity: 8%;
}
.testimonial-con .testimonial_content h6 {
    margin-bottom: 14px;
}
.testimonial-con .testimonial_content h2 {
    margin-bottom: 56px;
}
.testimonial-con .owl-stage-outer {
    padding-left: 2px;
}
.testimonial-con .owl-stage {
    display: flex;
}
.testimonial-con .owl-item {
    padding: 48px 40px 40px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-soft-blue);
    box-shadow: 4px 4px 113px rgb(0 0 0 / 4%)inset;
}
.testimonial-con .testimonial-box ul {
    margin-bottom: 14px;
}
.testimonial-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial-con .testimonial-box ul li i {
    font-size: 13px;
    color: var(--e-global-color-star-yellow);
}
.testimonial-con .testimonial-box .text {
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.testimonial-con .testimonial-box .info {
    display: flex;
    align-items: center;
}
.testimonial-con .testimonial-box .user-img {
    float: left;
    margin-right: 17px;
    margin-top: -2px;
}
.testimonial-con .testimonial-box .user-img img{
    border-radius: 100%;
}
.testimonial-con .testimonial-box .designation-outer {
    padding-top: 2px;
    display: inline-block;
}
.testimonial-con .testimonial-box .name {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    color: var(--e-global-color-secondary);
    font-family: "Urbanist", sans-serif;
}
.testimonial-con .testimonial-box .position {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial-con .testimonial-box .quote-img {
    top: 7px;
    right: -5px;
}
.testimonial-con .testimonial-box .quote-img img {
    opacity: 30%;
}
.testimonial-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.testimonial-con .owl-carousel .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #ebebeb;
}
.testimonial-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-soft-blue);
}
.testimonial-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-soft-blue);
}
.testimonial-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Article */

.article-con{
    padding: 145px 0 225px;
    background-color: var(--e-global-color-very-light-gray-white);
}
.article-con .article_content h6 {
    margin-bottom: 14px;
}
.article-con .article_content h2 {
    margin-bottom: 56px;
}
.article-con .owl-stage-outer {
    padding-left: 2px;
}
.article-con .owl-stage {
    display: flex;
}
.article-con .owl-item {
    border-radius: 15px;
    background-color: var(--e-global-color-white);
}
.article-con .article-box {
    transition: all 0.3s ease-in-out;
}
.article-con .article-box .box-content {
    padding: 28px 52px 34px 36px;
}
.article-con .article-box .box-content .span_wrapper {
    margin-bottom: 10px;
}
.article-con .article-box .box-content .span_wrapper span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-soft-blue);
}
.article-con .article-box .box-content .span_wrapper .dash {
    padding-left: 4px;
}
.article-con .article-box .box-content h4 {
    margin-bottom: 11px;
    transition: all 0.3s ease-in-out;
}
.article-con .article-box .box-content p {
    margin-bottom: 26px;
    color: var(--e-global-color-text);
}
.article-con .article-box h4:hover {
    color: var(--e-global-color-soft-blue);
}
.article-con .article-box figure {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}
.article-con .article-box figure img {
    transition: all 0.3s ease-in-out;
}
.article-con .article-box:hover figure img {
    transform: scale(1.1);
}
.article-con .article-box .box-content .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    padding: 14px 24px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    font-family: "Urbanist", sans-serif;
    transition: all 0.8s ease-in-out;
}
.article-con .article-box .box-content .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.article-con .article-box .box-content .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
}
.article-con .article-box .box-content .read_more:hover i {
    color: var(--e-global-color-white);
}
.article-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.article-con .owl-carousel .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #ebebeb;
}
.article-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-soft-blue);
}
.article-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-soft-blue);
}
.article-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Footer */

.footer-con .footer-rightimage {
    position: absolute;
    right: 0;
    top: 37%;
    z-index: 1;
}
.footer-con .footer-rightimage img {
    opacity: 8%;
}
.footer-con .footer_upperportion{
    background: var(--e-global-color-dark-blue);
}
.footer-con .upper_portion{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.footer-con .upper_portion .footer-logo img{
    width: 143px;
}
.footer-con .upper_portion h4{
    margin-bottom: 0;
    word-spacing: 3.4px;
    padding-left: 170px;
    color: var(--e-global-color-white);
}
.footer-con .upper_portion form{
    float: left;
    width: 45.5%;
}
.footer-con .upper_portion .form-group{
    padding-left: 42px;
}
.footer-con .upper_portion input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 23px 60px 23px 26px;
    width: 100%;
    position: relative;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
    border: none;
    border-radius: 30px;
    overflow: visible;
    outline: none;
}
.footer-con .upper_portion input:focus {
    border: none;
}
.footer-con .upper_portion button {
    font-size: 20px;
    width: 61px;
    height: 61px;
    top: 0;
    right: 0;
    border: none;
    float: right;
    position: absolute;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border-radius: 100%;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.footer-con .upper_portion button:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-very-dark-blue);
}
.footer-con .footer_lowerportion{
    background: var(--e-global-color-dark-blue);
}
.footer-con .middle_portion{
    padding: 95px 0;
}
.footer-con .middle_portion .logo-content h4{
    margin-bottom: 18px;
}
.footer-con .middle_portion .logo-content p{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
    padding-right: 65px;
    color: var(--e-global-color-grayish-blue);
}
.footer-con .middle_portion .social-icons li{
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons a{
    margin-left: 0 !important;
}
.footer-con .middle_portion .social-icons i{
    font-size: 14px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
}
.footer-con .middle_portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-con .middle_portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-con .middle_portion h4{
    margin-bottom: 20px;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion li{
    margin-bottom: 8px;
}
.footer-con .middle_portion li:last-child{
    margin-bottom: 0 !important;
}
.footer-con .middle_portion li a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-left: 13px;
    text-decoration: none;
    color: var(--e-global-color-grayish-blue);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 0;
    color: var(--e-global-color-grayish-blue);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li i{
    font-size: 10px;
    line-height: 10px;
    color: var(--e-global-color-accent);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li p:hover,
.footer-con .middle_portion li a:hover,
.footer-con .middle_portion li i:hover{
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion .icon {
    padding-left: 40px;
}
.footer-con .middle_portion .icon .text{
    position: relative;
    margin-bottom: 11px;
    padding-left: 30px;
    display: inline-block;
}
.footer-con .middle_portion .icon i{
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
}
.footer-con .middle_portion .icon a{
    margin-left: 0 !important;
}
.footer-con .copyright p{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 20px 0;
    text-align: center;
    color: var(--e-global-color-grayish-blue);
    background-color: var(--e-global-color-very-dark-blue);
}

/* Home 2 */

/* Banner */

.banner2-con {
    padding: 65px 0 75px;
}
.banner2-con:before {
    content: "";
    position: absolute;
    opacity: 10%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(270deg, var(--e-global-color-soft-blue) 0%, var(--e-global-color-accent) 60%);
}
.banner2-con .banner_content h1{
    margin-bottom: 15px;
    color: var(--e-global-color-secondary);
}
.banner2-con .banner_content h1 span {
    color: var(--e-global-color-soft-blue);
}
.banner2-con .banner_content p{
    margin-bottom: 38px;
    padding-right: 125px;
}
.banner2-con .banner_content .button_wrap,
.banner2-con .banner_content .video-icon {
    display: flex;
    align-items: center;
}
.banner2-con .banner_content .primary_btn {
    padding: 21px 45px;
    margin-right: 15px;
}
.banner2-con .banner_content .icon {
    height: 58px;
    width: 58px;
    line-height: 58px;
    margin-right: 14px;
    position: relative;
    text-align: center;
    background-color: var(--e-global-color-soft-blue);
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
}
.banner2-con .banner_content .icon i {
    font-size: 16px;
    color: var(--e-global-color-white);
}
.banner2-con .banner_content .video-icon span{
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
.banner2-con .banner_content .video-icon:hover .icon{
    transform: translateY(-5px);
}
.banner2-con .banner_content .video-icon:hover span{
    color: var(--e-global-color-soft-blue);
}
.banner2-con .banner_wrapper {
    display: inline-block;
}
.banner2-con .banner_wrapper .banner-image {
    position: relative;
    right: -50px;
    bottom: 12px;
}
.banner2-con .banner_wrapper .banner-image::before {
    content: "";
    width: 582px;
    height: 582px;
    left: -5px;
    right: 0;
    bottom: 1px;
    margin: 0 auto;
    position: absolute;
    border-radius: 100%;
    background-color: var(--e-global-color-soft-blue);
    z-index: -1;
}
.banner2-con .banner_wrapper .image {
    position: absolute;
}
.banner2-con .banner_wrapper .image img {
    border-radius: 100%;
}
.banner2-con .banner_wrapper .image span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
    position: absolute;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.banner2-con .banner_wrapper .image1 {
    left: 20px;
    top: 160px;
}
.banner2-con .banner_wrapper .image1 span{
    left: 22px;
    top: -42px;
}
.banner2-con .banner_wrapper .image2 {
    left: 24px;
    bottom: 166px;
}
.banner2-con .banner_wrapper .image2 span{
    left: -56px;
    top: -20px;
}
.banner2-con .banner_wrapper .image3 {
    right: 48px;
    bottom: -4px;
}
.banner2-con .banner_wrapper .image3 span{
    right: -75px;
    top: 20px;
}
.banner2-con .banner_wrapper .image4 {
    right: -100px;
    bottom: 220px;
}
.banner2-con .banner_wrapper .image4 span{
    right: -78px;
    top: -20px;
}
.banner2-con .banner_wrapper .box{
    right: -80px;
    top: 120px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner2-con .banner_wrapper .box .value{
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    display: block;
    margin-bottom: -4px;
    color: var(--e-global-color-secondary);
}
.banner2-con .banner_wrapper .box .review{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
}
.banner2-con .banner_wrapper .box .flag{
    margin-bottom: 10px;
}
.banner2-con .banner_wrapper .box figure{
    margin: 0 -10px;
    display: inline-block;
}
.banner2-con .banner_wrapper .box figure:first-child{
    margin-left: 0;
}
.banner2-con .banner_wrapper .box figure:last-child{
    margin-right: 0;
}
.banner2-con .banner_wrapper .box img{
    width: 40px;
    border-radius: 100%;
    border: 1px solid var(--e-global-color-black);
}

/* Choose */

.choose2-con {
    padding-bottom: 225px !important;
}
.choose2-con .owl-stage-outer {
    padding-left: 2px;
}
.choose2-con .owl-stage {
    display: flex;
}
.choose2-con .owl-item {    
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.choose2-con .owl-item:hover {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}
.choose2-con .choose-box {
    padding: 0 !important;
    border-radius: 0 !important;
    text-align: center;
    cursor: pointer;
    background-color: transparent !important;
    border-bottom: none !important;
    transition: all 0.8s ease-in-out;
}
.choose2-con .choose-box:hover {
    border-bottom: none !important;
}
.choose2-con .choose-box .arrow i {
    color: var(--e-global-color-secondary) !important;
}
.choose2-con .choose-box .arrow i:hover {
    color: var(--e-global-color-soft-blue) !important;
}
.choose2-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.choose2-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.choose2-con .owl-carousel .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #ebebeb;
}
.choose2-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-soft-blue);
}
.choose2-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-soft-blue);
}
.choose2-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* About */

.about2-con {
    padding: 206px 0 215px;
}
.about2-con:before {
    content: "";
    position: absolute;
    opacity: 10%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, var(--e-global-color-soft-blue) 0%, var(--e-global-color-accent) 70%);
}
.about2-con .about_wrapper .about-image1 {
    position: relative;
    left: -162px;
    top: -90px;
    display: inline-block;
}
.about2-con .about_wrapper .about-image1 img {
    border-radius: 140px;
}
.about2-con .about_wrapper .about-image2 {
    position: absolute;
    right: 10px;
    top: -90px;
    display: inline-block;
}
.about2-con .about_wrapper .about-image2 img {
    border-radius: 190px;
}
.about2-con .about_wrapper .box{
    left: -40px;
    bottom: -35px;
    width: 270px;
    height: 91px;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--e-global-color-soft-blue);
}
.about2-con .about_wrapper .box figure{
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--e-global-color-white);
}
.about2-con .about_wrapper .box .text{
    padding-left: 20px;
}
.about2-con .about_wrapper .box .value{
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
    font-family: "Urbanist", serif;
    color: var(--e-global-color-white);
}
.about2-con .about_wrapper .box .review{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-white);
}
.about2-con .about_content {
    padding: 0 0 0 50px !important;
}

/* Course */

.course2-con {
    background-color: var(--e-global-color-white);
}
.course2-con .course-box {
    box-shadow: 4px 4px 113px rgba(0, 0, 0, 0.06);
}
.course2-con .flag {
    left: 35px;
    bottom: -35px;
    position: absolute;
    display: inline-block;
}
.course2-con .flag img {
    border-radius: 100%;
    box-shadow: 14px 17px 14px rgb(0 0 0 / 4%);
}
.course2-con .course-box .lower_content {
    padding-top: 62px;
}

/* Benefit */

.benefit2-con::before {
    background-image: url(../images/benefit2-rightbackground.jpg) !important;
}

/* Testimonial */

.testimonial2-con {
    padding: 166px 0 175px;
}
.testimonial2-con:before {
    content: "";
    position: absolute;
    opacity: 10%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(250deg, var(--e-global-color-soft-blue) 0%, var(--e-global-color-accent) 100%);
}
.testimonial2-con .testimonial_wrapper {
    top: 35px;
    height: 380px;
    width: 380px;
    border-radius: 100%;
    background: var(--e-global-color-white);
}
.testimonial2-con .testimonial_wrapper .image{
    position: absolute;
}
.testimonial2-con .testimonial_wrapper .image img {
    border-radius: 100%;
}
.testimonial2-con .testimonial_wrapper .testimonial-circle{
    height: 155px;
    width: 155px;
    line-height: 155px;
    border-radius: 100%;
    text-align: center;
    background-color: rgb(220 253 125 / 20%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.testimonial2-con .testimonial_wrapper .testimonial-circle figure {
    width: 69px;
    height: 69px;
    line-height: 69px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    margin: auto;
}
.testimonial2-con .testimonial_wrapper .testimonial-circle img {
    width: 31px;
    border-radius: 0 !important;
}
.testimonial2-con .testimonial_wrapper .testimonial-image1{
    right: -4px;
    top: -54px;
}
.testimonial2-con .testimonial_wrapper .testimonial-image2{
    left: 0;
    top: 56px;
}
.testimonial2-con .testimonial_wrapper .testimonial-image3{
    left: 62px;
    bottom: -30px;
}
.testimonial2-con .testimonial_wrapper .testimonial-image4{
    right: -6px;
    bottom: 80px;
}
.testimonial2-con .testimonial_contentwrapper {
    padding: 0 100px 0 40px;
}
.testimonial2-con .testimonial_content h2 {
    margin-bottom: 30px;
}
.testimonial2-con .testimonial-box p {
    margin-bottom: 32px;
}
.testimonial2-con .testimonial-box ul {
    margin-bottom: 10px;
}
.testimonial2-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial2-con .testimonial-box ul li i {
    font-size: 12px;
    line-height: 12px;
    color: var(--e-global-color-star-yellow);
}
.testimonial2-con .detail .name {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-family: "Urbanist", serif;
    color: var(--e-global-color-secondary);
}
.testimonial2-con .detail .review {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial2-con .pagination-outer{
    position: relative;
    display: inline-block;
    top: 16px;
    right: -12px;
}
#home2carouselcontrols .carousel-control-prev,
#home2carouselcontrols .carousel-control-next {
    font-size: 20px;
    line-height: 20px;
    top: 0;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
#home2carouselcontrols .carousel-control-prev{
    left: 0;
}
#home2carouselcontrols .carousel-control-next{
    right: -38px;
}
#home2carouselcontrols .carousel-control-prev:hover,
#home2carouselcontrols .carousel-control-next:hover {
    color: var(--e-global-color-soft-blue);
}

/* Faq */

.faq2-con {
    background-color: var(--e-global-color-white) !important;
}
.faq2-con .accordion-card {
    box-shadow: 4px 4px 113px rgba(0, 0, 0, 0.06) !important;
}

/* Home 3 */

/* Banner */

.banner3-con {
    padding: 186px 0 226px;
    background-color: var(--e-global-color-black);
}
.banner3-con:before {
    content: "";
    position: absolute;
    opacity: 55%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner3-backgroundimage.jpg);
}
.banner3-con .banner-lefttopcurve {
    position: absolute;
    left: 0;
    top: 0;
}
.banner3-con .banner-rightbottomcurve {
    position: absolute;
    bottom: 0;
    right: 0;
}
.banner3-con .banner-circleimage {
    position: absolute;
    bottom: 60px;
    right: 210px;
}
.banner3-con .banner-crossimage {
    position: absolute;
    bottom: 100px;
    right: 50px;
}
.banner3-con .banner_content {
    padding: 0 15px;
}
.banner3-con .banner_content .banner-logoicon {
    margin-bottom: 38px;
}
.banner3-con .banner_content h1 {
    margin-bottom: 28px;
}
.banner3-con .banner_content p{
    padding: 0 100px;
    margin-bottom: 35px;
}
.banner3-con .banner_content .primary_btn {
    padding: 21px 34px;
}
.banner3-con .top-btn {
    display: inline-block;
    left: 0;
    right: 0;
    bottom: -185px;
    margin: 0 auto;
    position: absolute;
}
.banner3-con .top-btn figure{
    transition: all 0.3s ease-in-out;
}
.banner3-con .top-btn figure:hover {
    transform: translateY(-5px);
}

/* choose */

.choose3-con {
    padding: 150px 0;
    background-color: var(--e-global-color-very-light-gray-white);
}
.choose3-con .choose-halfcircleimage {
    position: absolute;
    left: 0;
    bottom: 0;
}
.choose3-con .choose-halfcircleimage img {
    opacity: 20%;
}
.choose3-con .choose_content {
    padding-right: 80px;
}
.choose3-con .choose_content .choose-circleimage {
    position: absolute;
    left: -210px;
    bottom: 25px;
}
.choose3-con .choose_content h6 {
    margin-bottom: 16px;
}
.choose3-con .choose_content h2 {
    margin-bottom: 28px;
}
.choose3-con .choose_content .text1 {
    margin-bottom: 20px;
}
.choose3-con .choose_content .text2 {
    margin-bottom: 40px;
}
.choose3-con .choose_content .primary_btn {
    padding: 21px 45px;
}
.choose3-con .choose_contentbox .box-top{
    padding-top: 30px;
}
.choose3-con .choose-box {
    padding: 40px 30px;
    border-radius: 15px;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.choose3-con .choose-box .icon {
    width: 68px;
    height: 68px;
    line-height: 68px;
    margin-bottom: 25px;
    text-align: center;
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
}
.choose3-con .choose-box:hover .icon {
    transform: translateY(-5px);
}
.choose3-con .choose-box h3 {
    margin-bottom: 10px;
}
.choose3-con .choose-box p {
    margin-bottom: 20px;
}
.choose3-con .choose-box .arrow i {
    font-size: 15px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-secondary);
}
.choose3-con .box1:hover {
    border-bottom: 2px solid var(--e-global-color-bright-yellow);
}
.choose3-con .box2:hover {
    border-bottom: 2px solid var(--e-global-color-soft-red);
}
.choose3-con .box3:hover {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}
.choose3-con .box4:hover {
    border-bottom: 2px solid var(--e-global-color-dark-grayish-red);
}
.choose3-con .choose-box .icon1 {
    background-color: var(--e-global-color-very-pale-yellow);
}
.choose3-con .choose-box .icon2 {
    background-color: var(--e-global-color-very-pale-red);
}
.choose3-con .choose-box .icon3 {
    background-color: var(--e-global-color-very-pale-blue);
}
.choose3-con .choose-box .icon4 {
    background-color: var(--e-global-color-very-light-gray);
}
.choose3-con .box1:hover .arrow i {
    color: var(--e-global-color-bright-yellow);
}
.choose3-con .box2:hover .arrow i {
    color: var(--e-global-color-soft-red);
}
.choose3-con .box3:hover .arrow i {
    color: var(--e-global-color-soft-blue);
}
.choose3-con .box4:hover .arrow i {
    color: var(--e-global-color-dark-grayish-red);
}

/* About */

.about3-con {
    padding: 146px 0 180px;
    background-color: var(--e-global-color-white);
}
.about3-con .about-rightimage {
    position: absolute;
    right: 0;
    top: 30%;
}
.about3-con .about-rightimage img {
    opacity: 8%;
}
.about3-con .about_content {
    padding-left: 50px;
}
.about3-con .about_content h6 {
    margin-bottom: 18px;
}
.about3-con .about_content h2 {
    margin-bottom: 28px;
}
.about3-con .about_content .text {
    margin-bottom: 25px;
}
.about3-con .about_content ul {
    margin-bottom: 52px;
}
.about3-con .about_content ul li {
    position: relative;
    margin-bottom: 11px;
}
.about3-con .about_content ul li:last-child {
    margin-bottom: 0;
}
.about3-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 3px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-soft-blue);
}
.about3-con .about_content ul li p {
    line-height: 20px;
    font-weight: 500;
    padding-left: 34px;
    color: var(--e-global-color-secondary);
}
.about3-con .about_content .box {
    padding: 40px 52px 43px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: var(--e-global-color-accent);
}
.about3-con .about_content .box h3{
    font-size: 24px;
    line-height: 36px;
    padding-left: 85px;
}
.about3-con .about_content .box .about-icon{
    position: absolute;
}
.about3-con .about_wrapper .about-image1 {
    position: absolute;
    top: 0;
    right: 0;
}
.about3-con .about_wrapper .about-image1 img {
    border-radius: 20px;
}
.about3-con .about_wrapper .video-image{
    top: 364px;
    left: -22px;
    position: absolute;
    display: inline-block;
}
.about3-con .about_wrapper .about-image2 {
    border-radius: 20px;
    background-color: var(--e-global-color-black);
    border: 10px solid var(--e-global-color-white);
}
.about3-con .about_wrapper .about-image2 img{
    opacity: 60%;
    border-radius: 10px;
}
.about3-con .about_wrapper .icon {
    height: 103px;
    width: 103px;
    line-height: 103px;
    border: 1px solid rgba(255, 255, 255, 50%);
    border-radius: 100%;
    position: absolute;
    text-align: center;
    transition: all 0.8s ease-in-out;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.about3-con .about_wrapper .icon:hover {
    transform: translateY(-5px);
}
.about3-con .about_wrapper .icon .video-icon {
    height: 83px;
    width: 83px;
    line-height: 83px;
    top: 9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    text-align: center;
    background-color: var(--e-global-color-white);
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
}

/* Benefit */

.benefit3-con{
    padding: 145px 0 150px;
    background-color: var(--e-global-color-white);
}
.benefit3-con .benefit_content h6 {
    margin-bottom: 14px;
}
.benefit3-con .benefit_content h2 {
    margin-bottom: 56px;
}
.benefit3-con .benefit-box {
    width: 100%;
}

/* Journey */

.journey-con {
    padding: 126px 0;
    background-color: var(--e-global-color-black);
}
.journey-con:before {
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/journey-backgroundimage.jpg);
}
.journey-con .journey-lefttopcurve {
    position: absolute;
    left: 0;
    top: 0;
}
.journey-con .journey-rightbottomcurve {
    position: absolute;
    bottom: 0;
    right: 0;
}
.journey-con .journey_content {
    padding: 0 15px;
}
.journey-con .journey_content .journey-logoicon {
    margin-bottom: 32px;
}
.journey-con .journey_content h6 {
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.journey-con .journey_content h2 {
    margin-bottom: 28px;
}
.journey-con .journey_content .primary_btn {
    padding: 21px 43px;
}

/* Testimonial */

.testimonial3-con{
    padding: 145px 0 225px;
    background-color: var(--e-global-color-white);
}
.testimonial3-con .testimonial_content h6 {
    margin-bottom: 14px;
}
.testimonial3-con .testimonial_content h2 {
    margin-bottom: 56px;
}
.testimonial3-con .owl-stage-outer {
    padding-left: 2px;
}
.testimonial3-con .owl-stage {
    display: flex;
}
.testimonial3-con .owl-item {
    padding: 48px 40px 40px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-soft-blue);
    box-shadow: 4px 4px 113px rgb(0 0 0 / 4%)inset;
}
.testimonial3-con .testimonial-box .testimonial-quoteimage {
    margin-bottom: 20px;
}
.testimonial3-con .testimonial-box p {
    margin-bottom: 24px;
}
.testimonial3-con .review-content {
    padding-left: 16px;
    display: flex;
}
.testimonial3-con .review-content .testimonial-personimage {
    position: relative;
    top: 2px;
    left: -15px;
}
.testimonial3-con .review-content .testimonial-personimage img {
    width: 54px !important;
    border-radius: 100px;
}
.testimonial3-con .testimonial-box ul {
    margin-bottom: 6px;
}
.testimonial3-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial3-con .testimonial-box ul li i {
    font-size: 12px;
    line-height: 12px;
    color: var(--e-global-color-star-yellow);
}
.testimonial3-con .review-content .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    color: var(--e-global-color-secondary);
}
.testimonial3-con .review-content .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial3-con .owl-carousel .owl-item img {
    width: auto !important;
}
.testimonial3-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #ebebeb;
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-soft-blue);
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-soft-blue);
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Sub banner */

.sub_banner .sub_banner_con {
    padding: 138px 0 144px;
    text-align: center;
    background: var(--e-global-color-black);
}
.sub_banner .sub_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    position: absolute;
    background-image: url(../images/subbanner-contactbackground.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sub_banner .sub_banner_con h1 {
    font-size: 64px;
    line-height: 64px;
    margin-bottom: 25px;
}
.sub_banner .sub_banner_con p {
    margin-bottom: 30px;
}
.sub_banner .sub_banner_con .box {
    padding: 9px 24px 11px;
    text-align: center;
    border-radius: 35px;
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 40%);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box a span:hover {
    color: var(--e-global-color-accent);
}
.sub_banner .sub_banner_con .box .arrow {
    font-size: 10px;
    margin: 0 10px;
    display: inline-block;
    color: var(--e-global-color-white);
}
.sub_banner .faq_banner_con::before {
    background-image: url(../images/subbanner-faqbackground.jpg);
}
.sub_banner .team_banner_con::before {
    background-image: url(../images/subbanner-teambackground.jpg);
}
.sub_banner .course_banner_con::before {
    background-image: url(../images/subbanner-coursebackground.jpg);
}
.sub_banner .about_banner_con::before {
    background-image: url(../images/subbanner-aboutbackground.jpg);
}

/* Contact Page */

/* Contact info */

.contactinfo-con {
    padding: 145px 0;
    background-color: var(--e-global-color-very-light-gray-white);
}
.contactinfo-con .contactinfo_content h6{
    margin-bottom: 14px;
}
.contactinfo-con .contactinfo_content h2{
    margin-bottom: 56px;
}
.contactinfo-con .contact-box {
    padding: 46px 50px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    display: block;
    border-radius: 15px;
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box .icon {
    width: 68px;
    height: 68px;
    line-height: 68px;
    margin-bottom: 25px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box:hover .icon {
    transform: translateY(-5px);
}
.contactinfo-con .contact-box h3 {
    margin-bottom: 12px;
}
.contactinfo-con .contact-box a {
    margin-bottom: 0;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box a:hover {
    color: var(--e-global-color-soft-blue);
}
.contactinfo-con .box1:hover {
    border-bottom: 2px solid var(--e-global-color-bright-yellow);
}
.contactinfo-con .box2:hover {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}
.contactinfo-con .box3:hover {
    border-bottom: 2px solid var(--e-global-color-soft-red);
}
.contactinfo-con .contact-box .icon1 {
    background-color: var(--e-global-color-very-pale-yellow);
}
.contactinfo-con .contact-box .icon2 {
    background-color: var(--e-global-color-very-pale-blue);
}
.contactinfo-con .contact-box .icon3 {
    background-color: var(--e-global-color-very-pale-red);
}

/* Map */

.map-con {
    padding: 140px 0;
}
.map-con iframe {
    width: 100%;
    height: 547px;
    border-radius: 20px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.map-con iframe:hover {
    filter: none;
}

/* Faq Page */

/* Faq */

.faq-con {
    padding: 145px 0;
    background-color: var(--e-global-color-very-light-gray-white);
}
.faq-con .faq_content h6{
    margin-bottom: 14px;
}
.faq-con .faq_content h2{
    margin-bottom: 56px;
}
.faq-con h5 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
}
.faq-con .accordion-card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    box-shadow: 4px 4px 113px rgb(0 0 0 / 4%);
}
.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}
.faq-con .accordion-card .btn-link h5 {
    color: var(--e-global-color-soft-blue);
}
.faq-con .accordion-card .collapsed h5 {
    color: var(--e-global-color-secondary);
}
.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--e-global-color-soft-blue);
}
.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--e-global-color-white);
}
.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-con .accordian-inner .card-header a {
    padding: 22px 45px 22px 26px;
}
.faq-con .accordian-inner .card-body {
    padding: 0 26px 20px;
}
.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
}
.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-con .accordion-card .btn-link:before {
    content: "\f063";
    font-size: 15px;
    top: 20px;
    right: 22px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--e-global-color-soft-blue);
}
.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-secondary);
}

/* Benefit */

.faqbenefit-con {
    background-color: var(--e-global-color-soft-blue);
}
.faqbenefit-con::before {
    content: "";
    width: 49%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/benefit-rightbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.faqbenefit-con .benefit-leftimage {
    position: absolute;
    left: 0;
    top: 25%;
}
.faqbenefit-con .benefit-leftimage img{
    opacity: 6%;
    filter: brightness(0) invert(1);
}
.faqbenefit-con .benefit_content {
    position: relative;
    z-index: 1;
    padding: 142px 50px 135px 0;
}
.faqbenefit-con .benefit_content h6{
    margin-bottom: 15px;
    color: var(--e-global-color-accent);
}
.faqbenefit-con .benefit_content h2{
    margin-bottom: 28px;
}
.faqbenefit-con .benefit_content .text{
    margin-bottom: 45px;
}
.faqbenefit-con .benefit_content li{
    width: 150px;
    height: 143px;
    padding: 30px;
    margin: 0 8px;
    text-align: center;
    border-radius: 15px;
    display: inline-block;
    background-color: var(--e-global-color-accent);
}
.faqbenefit-con .benefit_content li .value{
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: var(--e-global-color-secondary);
    position: relative;
}
.faqbenefit-con .benefit_content li .value span{
    font-family: "Urbanist", serif;
}
.faqbenefit-con .benefit_content sup {
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    top: 4px;
}
.faqbenefit-con .benefit_content p {
    color: var(--e-global-color-secondary);
}
.faqbenefit-con .benefit_content li:first-child {
    margin-left: 0;
}
.faqbenefit-con .benefit_content li:last-child {
    margin-right: 0;
}
.faqbenefit-con .benefit_wrapper .benefit-rightbackground {
    display: none;
}
.faqbenefit-con .benefit_wrapper .icon {
    height: 140px;
    width: 140px;
    line-height: 140px;
    border: 2px solid rgba(255, 255, 255, 60%);
    border-radius: 100%;
    position: absolute;
    text-align: center;
    top: 290px;
    right: 0;
    transition: all 0.8s ease-in-out;
}
.faqbenefit-con .benefit_wrapper .icon:hover {
    transform: translateY(-5px);
}
.faqbenefit-con .benefit_wrapper .icon .video-icon {
    height: 114px;
    width: 114px;
    line-height: 114px;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    text-align: center;
    border-radius: 100%;
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}

/* Choose */

.choose-con {
    padding: 145px 0;
    background-color: var(--e-global-color-very-light-gray-white);
}
.choose-con .choose_content h6{
    margin-bottom: 14px;
}
.choose-con .choose_content h2{
    margin-bottom: 56px;
}
.choose-con .choose-box {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.choose-con .choose-box .icon {
    width: 106px;
    height: 106px;
    line-height: 106px;
    margin: 0 auto 32px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.choose-con .choose-box:hover .icon {
    transform: translateY(-5px);
}
.choose-con .choose-box h4 {
    margin-bottom: 8px;
}
.choose-con .choose-box p {
    margin-bottom: 20px;
}
.choose-con .choose-box .arrow i {
    font-size: 15px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-secondary);
}
.choose-con .box1:hover {
    border-bottom: 2px solid var(--e-global-color-bright-yellow);
}
.choose-con .box2:hover {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}
.choose-con .box3:hover {
    border-bottom: 2px solid var(--e-global-color-dark-moderate-green);
}
.choose-con .box4:hover {
    border-bottom: 2px solid var(--e-global-color-soft-red);
}
.choose-con .choose-box .icon1 {
    background-color: var(--e-global-color-very-pale-yellow);
}
.choose-con .choose-box .icon2 {
    background-color: var(--e-global-color-very-pale-blue);
}
.choose-con .choose-box .icon3 {
    background-color: var(--e-global-color-very-soft-green);
}
.choose-con .choose-box .icon4 {
    background-color: var(--e-global-color-very-pale-red);
}
.choose-con .box1:hover .arrow i {
    color: var(--e-global-color-bright-yellow);
}
.choose-con .box2:hover .arrow i {
    color: var(--e-global-color-soft-blue);
}
.choose-con .box3:hover .arrow i {
    color: var(--e-global-color-dark-moderate-green);
}
.choose-con .box4:hover .arrow i {
    color: var(--e-global-color-soft-red);
}

/* Team Page */

/* Team */

.teampage-con .lower_portion {
    margin-top: 155px;
}
.teampage-con .team-box .content {
    z-index: 1;
}

/* Course Page */

/* Course */

.coursepage-con {
    padding: 142px 0 120px;
}
.coursepage-con .course_content h6 {
    margin-bottom: 14px;
}
.coursepage-con .course_content h2 {
    margin-bottom: 56px;
}
.coursepage-con .tabs-box {
    margin-top: 0 !important;
}
.coursepage-con .tabs-box .nav-tabs li {
    border-right: 1px solid rgb(0 0 0 / 20%);
}
.coursepage-con .tabs-box .nav-tabs li a {
    color: var(--e-global-color-secondary);
}
.coursepage-con .tabs-box .nav-tabs li a:hover{
    color: var(--e-global-color-soft-blue);
}
.coursepage-con .tabs-box .nav-tabs > li > a.active {
    color: var(--e-global-color-soft-blue);
}
.coursepage-con .tabs-box .nav-tabs li a.active::after {
    border-bottom: 2px solid var(--e-global-color-soft-blue);
}

/* About Page */

/* About */

.aboutpage-con {
    padding: 162px 0 202px;
}
.aboutpage-con .about_wrapper .aboutpage-crossimage {
    position: absolute;
    left: 148px;
    top: -25px;
}
.aboutpage-con .about_wrapper .aboutpage-image1 {
    position: relative;
    left: -42px;
    bottom: -68px;
    display: inline-block;
}
.aboutpage-con .about_wrapper .aboutpage-image1 img {
    border-radius: 146px 20px 146px 146px;
}
.aboutpage-con .about_wrapper .aboutpage-image2 {
    position: absolute;
    right: -30px;
    top: 0;
    display: inline-block;
}
.aboutpage-con .about_wrapper .aboutpage-image2 img {
    border-radius: 20px 146px 146px 146px;
}
.aboutpage-con .about_content {
    padding: 0 0 0 50px !important;
}

/* Project PopUp Style */

.project_modal .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}
.project_modal .fade {
    opacity: 0;
    transition: opacity .15s linear;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.project_modal .fade.show {
    opacity: 1;
    background-color: transparent;
}
[tabindex="-1"]:focus {
    outline: 0!important;
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    transform: translate(0,-25%);
}
.project_modal .modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}
.project_modal .modal.show .modal-dialog {
    transform: translate(0,0);
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.project_modal .modal-content {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--e-global-color-white);
    box-shadow: 1px 21px 46px rgb(0 0 100 / 25%);
    border-radius: 0;
    border: none;
}
.project_modal .modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: none;
}
.project_modal .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}
.project_modal .modal-header .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.project_modal .modal-header button {
    background: var(--e-global-color-accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}
.project_modal .btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.project_modal button.btn-close {
    border: 0;
    -webkit-appearance: none;
}
.project_modal button {
    text-transform: none;
    overflow: visible;
}
.project_modal .modal-header button i {
    color: var(--e-global-color-black);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}
.project_modal .fa-x:before {
    content: "\58";
}
.project_modal .blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}
.project_modal .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}
.project_modal .modal-body .blog-box-item {
    display: flex;
    align-items: center;
    border-radius: 0;
}
.project_modal .blog-box-item {
    background: var(--white-color);
    overflow: hidden;
}
.project_modal .modal-body .blog-img{
    float: left;
    width: 100%;
}
.project_modal .modal-body .blog-img figure {
    position: relative;
}
.project_modal .img-fluid {
    width: 100%;
    border-radius: 20px;
}
.project_modal .modal-content .project_content{
    padding: 40px 0 40px 20px;
}
.project_modal .modal-content .project_content h4{
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--e-global-color-secondary);
}
.project_modal .modal-content .project_content .text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties{
    margin-bottom: 20px;
}
.project_modal .modal-content .project_content .properties ul{
    padding-left: 25px;
}
.project_modal .modal-content .project_content .properties li {
    margin-bottom: 8px;
    position: relative;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties li:last-child {
    margin-bottom: 0;
}
.project_modal .modal-content .project_content .properties ul li .circle {
    font-size: 9px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    top: 4px;
    left: -25px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-soft-blue);
    transition: all 0.3s ease-in-out;
}
.project_modal .modal-content .project_content .primary_btn{
    padding: 20px 30px;
}
.project_modal .modal-content .project_content .primary_btn:hover{
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-soft-blue);
}
.project_modal .modal-content .project_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}

/* 404 Page */

.error_page{
    height: 100vh;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--e-global-color-very-light-gray-white);
}
.error_page .error_content h1 {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.error_page .error_content .back_home {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 21px 30px;
    text-align: center;
    border-radius: 35px;
    display: inline-block;
    position: relative;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.error_page .error_content .back_home:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
}
.error_page .error_content .back_home i{
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .back_home:hover i{
    color: var(--e-global-color-white);
}

/* Coming Soon */

.comingsoon_outer{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-very-light-gray-white);
}
.comingsoon_outer .logo_outer{
    margin-bottom: 70px;
}
.comingsoon_outer .logo_outer img{
    width: 143px;
}
.comingsoon_outer .comingsoon_section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content h1 {
    font-size: 90px;
    line-height: 92px;
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.comingsoon_outer .sub_banner_content p {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--e-global-color-text);
}
.comingsoon_outer .sub_banner_content form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content .form-group{
    margin-bottom: 30px;
}
.comingsoon_outer .sub_banner_content input {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 14px 16px 16px;
    width: 540px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border: 1px solid transparent;
    border-radius: 35px;
    overflow: visible;
    outline: none;
}
.comingsoon_outer .sub_banner_content button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding: 15px 30px 18px;
    height: 100%;
    top: 0;
    right: -5px;
    border-radius: 0 35px 35px 0;
    position: absolute;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content input:focus {
    border: 1px solid var(--e-global-color-soft-blue);
}
.comingsoon_outer .sub_banner_content button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
    border: 1px solid var(--e-global-color-soft-blue);
}
.comingsoon_outer .sub_banner_content .social-icon li {
    display: inline-block;
    margin: 0 4px;
}
.comingsoon_outer .sub_banner_content .social-icon li:first-child {
    margin-left: 0;
}
.comingsoon_outer .sub_banner_content .social-icon li:last-child {
    margin-right: 0;
}
.comingsoon_outer .sub_banner_content .social-icon a{
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 36px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon a:hover i {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
    border: 1px solid var(--e-global-color-soft-blue);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--e-global-color-accent);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;  
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    transform: translateY(-5px);
}
@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--e-global-color-accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--e-global-color-accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/

/* Login Form Page Style  */

.login-form {
    min-height: 100vh;
    background-color: var(--e-global-color-very-light-gray-white);
}
.login-form .login-form-title {
    margin-bottom: 40px;
}
.login-form .login-page-logo {
    margin-bottom: 25px;
}
.login-form .login-form-box {
    width: 450px;
    margin: 0 auto;
    position: relative;
}
.login-form .login-card {
    padding: 30px;
    margin-bottom: 30px;
    line-height: 0.8;
    border-radius: 15px;
    background: var(--e-global-color-white);
}
.login-form .login-card label {
    font-size: 16px;
    line-height:20px;
    font-weight: 700;
    margin-bottom: 13px;
}
.login-form .login-card .input-field {
    font-size: 16px;
    font-weight: 500;
    height: 54px;
    width: 100%;
    line-height: 16px;
    padding: 0 21px;
    border-radius: 35px;
    background: transparent;
    color: var(--e-global-color-text);
    border: 1px solid rgb(24 26 23 / 10%);
}
.login-form .login-card .input-field:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--e-global-color-soft-blue);
}
.login-form .login-card .form-group{
    margin-bottom: 16px;
}
.login-form .login-card .btn-primary {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 20px 15px;
    margin-bottom: 16px;
    width: 100%;
    border: none;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.login-form .login-card .btn-primary:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-blue);
}
.login-form .login-card .forgot-password {
    color: var(--e-global-color-secondary);
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}
.login-form .login-card .forgot-password:hover {
    text-decoration: underline;
}
.login-form .login-form-box .join-now-outer a {
    font-size: 16px;
    line-height: 18px;
    color: var(--e-global-color-secondary);
    text-decoration: none;
}
.login-form .login-form-box .join-now-outer a:hover {
    text-decoration: underline;
}
.login-form .login-card .select-option option {
    font-size: 16px;
    color: black;
}
.login-form .form_style::placeholder { 
    color: var(--createform-border-color);
    opacity: 1;
}
.login-form .form_style:-ms-input-placeholder { 
    color: var(--createform-border-color);
}
.login-form .form_style::-ms-input-placeholder {
    color: var(-);
}

/* Join-Now Form Page Style */

.sign-up-form {
    padding: 70px 0;
}
.sign-up-form .login-form-box {
    width: 700px;
}
.sign-up-form .login-card label small {
    font-size: 14px;
}
.sign-up-form .login-card .select-option {
    padding: 0 40px 0 21px;
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 96.5% 24px !important;
    background-image: url('../images/dropdown-arrow.png') !important;
}
.sign-up-form .login-card .select-option:focus {
    outline: none;
    box-shadow: none;
}

/* ===== Badges ===== */

.app-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.app-badge-purple  { background: #f0eeff; color: #6a52e0; }
.app-badge-blue    { background: #e3f0ff; color: #1a56b0; }
.app-badge-green   { background: #e8f5e9; color: #2e7d32; }
.app-badge-grey    { background: #f0f0f4; color: #6b6880; }
.app-badge-cat-maths   { background: #e3f0ff; color: #1a56b0; }
.app-badge-cat-english { background: #fff3e0; color: #b45309; }
.app-badge-cat-mixed   { background: #f0eeff; color: #6a52e0; }

/* ===== Parent Dashboard (pd-) ===== */

.pd-main { max-width: 960px; }

/* Page header */
.pd-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pd-page-header-text { flex: 1; min-width: 200px; }
.pd-page-header-text .app-title-mature  { margin-bottom: 4px; }
.pd-page-header-text .app-subtitle-mature { margin: 0; }

.pd-page-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.pd-status-active   { background: #e8f5e9; color: #2e7d32; }
.pd-status-inactive { background: #fff3e0; color: #e65100; }

/* Stats row */
.pd-stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.pd-stat-tile {
    flex: 1;
    min-width: 100px;
    background: #fff;
    border: 1px solid #eceaf5;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 2px 6px rgba(106,82,224,0.04);
}

.pd-stat-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: #231b49;
    font-family: "Urbanist", serif;
    line-height: 1;
}

.pd-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Upsell banner */
.pd-upsell-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f0eeff;
    border: 1.5px solid #d4cef8;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.pd-upsell-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.88rem;
    color: #231b49;
}

/* Per-child card */
.pd-child-card {
    padding: 0 !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.pd-child-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #faf9ff;
    border-bottom: 1px solid #eceaf5;
    flex-wrap: wrap;
}

.pd-child-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a52e0, #9b84f5);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Urbanist", serif;
}

.pd-child-info { flex: 1; min-width: 140px; }

.pd-child-name {
    font-size: 1rem;
    font-weight: 700;
    color: #231b49;
    margin: 0 0 5px;
    font-family: "Urbanist", serif;
}

.pd-child-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 6px;
}

.pd-child-progress-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6a52e0;
    text-decoration: none;
    white-space: nowrap;
    margin-left: auto;
}

.pd-child-progress-link:hover { text-decoration: underline; }

/* Child body: two-column layout */
.pd-child-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Quest badge variants */
.pd-quest-badge       { font-weight: 600; }
.pd-quest-done        { background: #e8f5e9; color: #2e7d32; }
.pd-quest-pending     { background: #fff8e1; color: #b45309; }

/* Mood indicators */
.pd-mood-alert {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    background: #fff8f0;
    border: 1.5px solid #fcd9a8;
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 0.8rem;
    color: #7c3a00;
    line-height: 1.45;
    margin-top: 5px;
}
.pd-mood-ok {
    font-size: 0.78rem;
    color: #a39eba;
    margin-top: 4px;
}

.pd-child-section {
    padding: 16px 18px;
}

.pd-recent {
    border-right: 1px solid #eceaf5;
}

.pd-section-heading {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6a52e0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
}

.pd-no-data {
    padding: 20px 24px;
    color: #a39eba;
    font-size: 0.9rem;
    margin: 0;
}

/* Attempt list (replaces table) */
.pd-attempt-list { display: flex; flex-direction: column; gap: 8px; }

.pd-attempt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    background: #fdfcff;
    border: 1px solid #eceaf5;
    border-radius: 8px;
}

.pd-attempt-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.pd-attempt-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #231b49;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-attempt-date { font-size: 0.7rem; color: #a39eba; }

.pd-attempt-score {
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Empty state */
.pd-empty-state {
    text-align: center;
    padding: 48px 24px !important;
}

/* Responsive */
@media (max-width: 700px) {
    .pd-page-header { flex-direction: column; align-items: flex-start; }
    .pd-child-body  { grid-template-columns: 1fr; }
    .pd-recent      { border-right: none; border-bottom: 1px solid #eceaf5; }
    .pd-child-progress-link { margin-left: 0; }
}

/* ===== Child stat cards (parent dashboard) ===== */

.child-stat-card {
    border: 1px solid #eceaf5;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.child-stat-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.child-stat-name {
    font-size: 1rem;
    color: #231b49;
    margin-right: 4px;
}

.child-stat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.child-stat-table thead tr {
    background: #f0eeff;
}

.child-stat-table th {
    padding: 7px 10px;
    color: #6a52e0;
    font-weight: 600;
    text-align: left;
}

.child-stat-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f5f3ff;
    vertical-align: middle;
}

.child-stat-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    .child-stat-table thead { display: none; }
    .child-stat-table td {
        display: block;
        padding: 4px 0;
        border: none;
    }
    .child-stat-table tr {
        display: block;
        border-bottom: 1px solid #eceaf5;
        padding: 8px 0;
    }
}

/* ===== Struggle areas (parent dashboard) ===== */

.child-struggle-wrap {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eceaf5;
}

.child-struggle-heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: #6a52e0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
}

.child-struggle-bars { display: flex; flex-direction: column; gap: 12px; }

.child-struggle-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.child-struggle-topic {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    min-width: 160px;
}

.child-struggle-icon { font-size: 1rem; line-height: 1.4; flex-shrink: 0; }

.child-struggle-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.child-struggle-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #231b49;
    line-height: 1.3;
}

.child-struggle-meta {
    font-size: 0.75rem;
    color: #a39eba;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.child-struggle-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    min-width: 140px;
}

.child-struggle-track {
    width: 100%;
    height: 8px;
    background: #eceaf5;
    border-radius: 4px;
    overflow: hidden;
}

.child-struggle-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.child-struggle-info {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ===== Timed mode timer sidebar (tt-) ===== */
.tt-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f1ff;
    border-radius: 16px;
    padding: 20px 16px;
    margin-bottom: 16px;
    width: 100%;
}
.tt-timer-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.tt-timer-display {
    font-size: 2.8rem;
    font-weight: 800;
    color: #231b49;
    font-family: "Urbanist", serif;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -0.02em;
}
.tt-time-up {
    color: #c62828;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    animation: ttPulse 1s ease-in-out infinite;
}
@keyframes ttPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}

/* ===== Flash Cards (fc-) ===== */
.fc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 27, 73, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: moodFadeIn 0.25s ease both;
}
.fc-overlay[hidden] { display: none; }
.fc-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(35,27,73,0.25);
    overflow: hidden;
    animation: moodSlideUp 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.fc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid #eceaf5;
    flex-shrink: 0;
    background: #faf9ff;
    flex-wrap: wrap;
}
.fc-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #231b49;
    margin: 0;
    font-family: "Urbanist", serif;
    white-space: nowrap;
}
.fc-tabs {
    display: flex;
    gap: 6px;
    flex: 1;
}
.fc-tab {
    background: #f0eeff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6a52e0;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    font-family: inherit;
}
.fc-tab:hover { background: #e0d9f9; }
.fc-tab-active {
    background: #6a52e0;
    color: #fff;
    border-color: #6a52e0;
}
.fc-close-btn {
    background: #f0eeff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    color: #6a52e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
    font-family: inherit;
}
.fc-close-btn:hover { background: #d4cef8; }
.fc-body {
    padding: 18px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fc-score-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.fc-score-correct { color: #2e7d32; font-weight: 700; font-size: 0.9rem; }
.fc-score-wrong   { color: #c62828; font-weight: 700; font-size: 0.9rem; }
.fc-card-pos {
    font-size: 0.8rem;
    color: #a39eba;
    margin-left: auto;
}
.fc-shuffle-btn {
    background: none;
    border: 1px solid #d4cef8;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: #6a52e0;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.fc-shuffle-btn:hover { background: #f0eeff; }
.fc-card-area { flex: 1; }
.fc-card {
    background: linear-gradient(135deg, #f4f1ff 0%, #faf9ff 100%);
    border: 2px solid #d4cef8;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: border-color 0.25s, background 0.25s;
}
.fc-card.fc-card-revealed {
    border-color: #9b84f5;
    background: linear-gradient(135deg, #e8e2fb 0%, #f4f1ff 100%);
}
.fc-prompt {
    font-size: 1.15rem;
    font-weight: 700;
    color: #231b49;
    margin: 0;
    font-family: "Urbanist", serif;
    line-height: 1.4;
}
.fc-answer {
    font-size: 1.6rem;
    font-weight: 800;
    color: #6a52e0;
    margin: 0;
    font-family: "Urbanist", serif;
    animation: fcReveal 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes fcReveal {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}
.fc-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.fc-reveal-btn {
    background: #6a52e0;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    font-family: inherit;
}
.fc-reveal-btn:hover { background: #5340c8; transform: translateY(-1px); }
.fc-btn-correct {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    font-family: inherit;
}
.fc-btn-correct:hover { background: #c8e6c9; transform: translateY(-1px); }
.fc-btn-wrong {
    background: #fde8e8;
    border: 2px solid #f44336;
    color: #c62828;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    font-family: inherit;
}
.fc-btn-wrong:hover { background: #ffcdd2; transform: translateY(-1px); }

/* ===== Reward system — parent side (rw-) ===== */
.pd-reward-section { padding: 20px 24px; }
.rw-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.rw-section-header .pd-section-heading { margin: 0; }
.rw-set-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #6a52e0;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s;
    flex-shrink: 0;
}
.rw-set-btn:hover { background: #5340c8; transform: translateY(-1px); }
.rw-no-reward-hint {
    font-size: 0.85rem;
    color: #a39eba;
    margin: 0;
    padding: 8px 0 4px;
}
.rw-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rw-form-row { display: flex; flex-direction: column; gap: 7px; }
.rw-form-row label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #5a556e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.rw-form-row input[type="text"],
.rw-form-row input[type="date"] {
    border: 1.5px solid #d4cef8;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #231b49;
    background: #faf9ff;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}
.rw-form-row input[type="text"]:focus,
.rw-form-row input[type="date"]:focus { border-color: #6a52e0; box-shadow: 0 0 0 3px rgba(106,82,224,0.1); }
.rw-preset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.rw-preset {
    background: #f4f1ff;
    border: 1.5px solid #d4cef8;
    border-radius: 20px;
    padding: 6px 13px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5340c8;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    font-family: inherit;
}
.rw-preset:hover, .rw-preset.rw-preset-active {
    background: #e0d9f9;
    border-color: #6a52e0;
}
.rw-submit-btn { align-self: flex-start; }
.rw-active-card {
    background: linear-gradient(135deg, #f4f1ff 0%, #fdf8ff 100%);
    border: 2px solid #c4b6f5;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.rw-active-info { flex: 1; min-width: 160px; }
.rw-active-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6a52e0;
    margin: 0 0 4px;
}
.rw-active-goal {
    font-size: 0.9rem;
    font-weight: 600;
    color: #231b49;
    margin: 0 0 2px;
}
.rw-active-prize {
    font-size: 0.85rem;
    color: #5a556e;
    margin: 0 0 4px;
}
.rw-active-deadline {
    font-size: 0.78rem;
    color: #a39eba;
    margin: 0;
}
.rw-remove-btn {
    background: none;
    border: 1px solid #d4cef8;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: #a39eba;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: border-color 0.15s, color 0.15s;
    flex-shrink: 0;
}
.rw-remove-btn:hover { border-color: #c62828; color: #c62828; }

/* Reward set modal */
.rw-set-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 27, 73, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 16px;
    backdrop-filter: blur(2px);
}
.rw-set-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(35,27,73,0.22);
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.rw-set-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 28px 20px;
    border-bottom: 1.5px solid #ede9fb;
}
.rw-set-modal-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 4px;
}
.rw-set-modal-subtitle {
    font-size: 0.82rem;
    color: #a39eba;
    margin: 0;
}
.rw-set-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #a39eba;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.rw-set-close:hover { background: #f4f1ff; color: #231b49; }
.rw-set-modal .rw-form {
    padding: 24px 28px 0;
    flex: 1;
}
.rw-set-modal-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 28px 28px;
    border-top: 1.5px solid #ede9fb;
    margin-top: 24px;
}
.rw-btn-cancel {
    background: none;
    border: 1.5px solid #d4cef8;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a39eba;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s, color 0.15s;
}
.rw-btn-cancel:hover { border-color: #6a52e0; color: #5340c8; }

/* Seat limit badge (shown when "Add child" button is disabled) */
.pd-seat-limit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a39eba;
    background: #f4f1ff;
    border: 1px solid #d4cef8;
    border-radius: 20px;
    padding: 6px 14px;
}

/* ===== Reward system — child side (rw-child-*) ===== */
.rw-child-card {
    background: linear-gradient(135deg, #f4f1ff 20%, #fdf3ff 100%);
    border: 2px solid #c4b6f5;
    position: relative;
    overflow: hidden;
}
.rw-child-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(106,82,224,0.12), transparent 70%);
    pointer-events: none;
}
.rw-child-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.rw-child-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.rw-child-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6a52e0;
    margin: 0 0 2px;
}
.rw-child-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: #231b49;
    margin: 0;
    font-family: "Urbanist", serif;
}
.rw-child-body { display: flex; flex-direction: column; gap: 10px; }
.rw-child-section {
    background: rgba(255,255,255,0.75);
    border-radius: 12px;
    padding: 10px 14px;
}
.rw-child-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a39eba;
    margin: 0 0 4px;
}
.rw-child-section-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #231b49;
    margin: 0;
}
.rw-child-deadline {
    font-size: 0.82rem;
    color: #6a52e0;
    font-weight: 500;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Child reward popup notification */
.rw-notif-popup {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(-160px);
    background: linear-gradient(135deg, #6a52e0, #9b84f5);
    color: #fff;
    border-radius: 16px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1300;
    box-shadow: 0 8px 32px rgba(106,82,224,0.4);
    max-width: 380px;
    width: calc(100% - 32px);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events: none;
}
.rw-notif-popup.show { transform: translateX(-50%) translateY(0); }
.rw-notif-icon  { font-size: 1.4rem; flex-shrink: 0; }
.rw-notif-text  { font-size: 0.88rem; font-weight: 600; line-height: 1.3; }

/* ===== Weekly Effort (we-) + Mission (ms-) ===== */

.cd-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .cd-two-col { grid-template-columns: 1fr; }
}

/* Weekly effort card */
.we-card { display: flex; flex-direction: column; gap: 14px; }

.we-stats { display: flex; gap: 14px; }

.we-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f1ff;
    border-radius: 12px;
    padding: 14px 12px;
    flex: 1;
    text-align: center;
}

.we-num {
    font-size: 2rem;
    font-weight: 800;
    color: #6a52e0;
    line-height: 1;
    font-family: "Urbanist", serif;
}

.we-label {
    font-size: 0.76rem;
    color: #a39eba;
    margin-top: 4px;
    font-weight: 500;
}

.we-msg {
    font-size: 0.87rem;
    color: #5a556e;
    font-style: italic;
    margin: 0;
    padding: 10px 14px;
    background: #faf9ff;
    border-radius: 10px;
    border-left: 3px solid #d4cef8;
    line-height: 1.5;
}

/* Mission card */
.ms-card { display: flex; flex-direction: column; gap: 10px; justify-content: space-between; }

.ms-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6a52e0;
    margin: 0;
}

.ms-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #231b49;
    margin: 0;
    font-family: "Urbanist", serif;
    line-height: 1.3;
}

.ms-desc {
    font-size: 0.83rem;
    color: #a39eba;
    margin: 0;
    line-height: 1.5;
}

.ms-btn { align-self: flex-start; margin-top: 4px; }

.ms-card-locked { opacity: 0.65; }

.ms-locked-title { color: #a39eba !important; }

/* ===== Mood Check-In (mood-) ===== */

.mood-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 27, 73, 0.52);
    backdrop-filter: blur(4px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: moodFadeIn 0.3s ease both;
}

.mood-overlay[hidden] { display: none; }

@keyframes moodFadeIn { from { opacity: 0; } to { opacity: 1; } }

.mood-modal {
    background: #fff;
    border-radius: 22px;
    padding: 32px 28px 28px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(35,27,73,0.22);
    animation: moodSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes moodSlideUp {
    from { opacity: 0; transform: translateY(28px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mood-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 6px;
    font-family: "Urbanist", serif;
}

.mood-subtitle {
    font-size: 0.85rem;
    color: #a39eba;
    margin: 0 0 22px;
}

.mood-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mood-btn {
    background: #f4f1ff;
    border: 2px solid #e0dbf8;
    border-radius: 14px;
    padding: 14px 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #231b49;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.18s;
    line-height: 1.4;
    font-family: inherit;
}

.mood-btn:hover, .mood-btn:focus {
    background: #e8e2fb;
    border-color: #6a52e0;
    transform: translateY(-2px);
    outline: none;
}

.mood-btn:last-child { grid-column: 1 / -1; }

/* ===== Practice Mode — Progress Bar & Milestone Popup ===== */

.q-progress-wrap {
    height: 6px;
    background: #eceaf5;
    border-radius: 3px;
    margin-bottom: 24px;
    overflow: hidden;
}

.q-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6a52e0, #9b84f5);
    border-radius: 3px;
    width: 0%;
    transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}

.milestone-popup {
    position: fixed;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
    background: linear-gradient(135deg, #5340c8 0%, #9b84f5 100%);
    color: #fff;
    border-radius: 24px;
    padding: 30px 44px;
    text-align: center;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 20px 60px rgba(83,64,200,0.45);
    min-width: 230px;
}

.milestone-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.milestone-icon {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
}

.milestone-msg {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    font-family: "Urbanist", serif;
}

/* ===== Bonus Resource Card + Modal (rm-) ===== */

/* Resource section */
.rm-resource-section { padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; }

.rm-section-header { margin-bottom: 4px; }

.rm-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 4px;
    font-family: "Urbanist", serif;
}

.rm-section-intro { font-size: 0.85rem; color: #a39eba; margin: 0; }

/* Resource card */
.rm-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border: 2px solid #d4cef8;
    border-radius: 14px;
    background: linear-gradient(135deg, #faf9ff 60%, #f0eeff);
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    flex-wrap: wrap;
}

.rm-card:hover, .rm-card:focus {
    box-shadow: 0 6px 24px rgba(106,82,224,0.15);
    border-color: #6a52e0;
    outline: none;
}

.rm-card-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.rm-card-body { flex: 1; min-width: 180px; }

.rm-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #231b49;
    margin: 0 0 4px;
    font-family: "Urbanist", serif;
}

.rm-card-tagline {
    font-size: 0.82rem;
    color: #6a52e0;
    font-style: italic;
    margin: 0 0 6px;
    line-height: 1.4;
}

.rm-card-desc {
    font-size: 0.8rem;
    color: #a39eba;
    margin: 0;
}

.rm-card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: center;
    flex-shrink: 0;
}

.rm-read-btn {
    display: block;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.rm-download-inline {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: #a39eba;
    cursor: pointer;
    padding: 2px 0;
}

/* Modal overlay */
.rm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 27, 73, 0.55);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.rm-overlay[hidden] { display: none; }

/* Modal box */
.rm-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(35,27,73,0.25);
    overflow: hidden;
    animation: rmSlideIn 0.25s ease both;
}

@keyframes rmSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Modal header */
.rm-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 16px;
    border-bottom: 1px solid #eceaf5;
    flex-shrink: 0;
    background: #faf9ff;
}

.rm-modal-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 4px;
    font-family: "Urbanist", serif;
    line-height: 1.3;
}

.rm-modal-subtitle {
    font-size: 0.82rem;
    color: #6a52e0;
    font-style: italic;
    margin: 0;
}

.rm-close-btn {
    background: #f0eeff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    color: #6a52e0;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.rm-close-btn:hover { background: #d4cef8; }

/* Modal scrollable body */
.rm-modal-body {
    padding: 22px 24px;
    overflow-y: auto;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #444;
}

.rm-intro {
    color: #5a556e;
    margin-bottom: 12px;
}

.rm-section-h {
    font-size: 1rem;
    font-weight: 700;
    color: #231b49;
    margin: 22px 0 8px;
    font-family: "Urbanist", serif;
    padding-bottom: 4px;
    border-bottom: 2px solid #f0eeff;
}

.rm-section-final { border-color: #d4cef8; color: #6a52e0; }

.rm-list {
    margin: 6px 0 10px 18px;
    padding: 0;
}

.rm-list li { margin-bottom: 5px; }

.rm-list-ol { list-style: decimal; }

/* Accordion resource cards */
.rm-accordion { cursor: default; }
.rm-accordion-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    width: 100%;
}
.rm-accordion-summary::-webkit-details-marker { display: none; }
.rm-accordion-summary::marker { display: none; }

.rm-accordion-toggle {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    pointer-events: none;
    user-select: none;
    cursor: pointer;
}
.rm-accordion-toggle .ps-btn-practice {
    flex: 1;
    text-align: center;
}
.rm-accordion[open] .rm-accordion-toggle-open  { display: none; }
.rm-accordion:not([open]) .rm-accordion-toggle-close { display: none; }

.rm-accordion-content {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e8e4f8;
    font-size: 0.85rem;
    color: #3d2e7c;
    line-height: 1.6;
}

.rm-planner-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin: 8px 0 4px;
}
.rm-planner-table th {
    background: #f0eeff;
    color: #6a52e0;
    font-weight: 700;
    padding: 7px 10px;
    text-align: left;
    border-bottom: 2px solid #d4cef8;
}
.rm-planner-table td {
    padding: 7px 10px;
    border-bottom: 1px solid #ece9f8;
    vertical-align: top;
}
.rm-planner-table tr:last-child td { border-bottom: none; }
.rm-planner-table tr:nth-child(even) td { background: #faf9ff; }

.rm-note {
    background: #f8f7ff;
    border-left: 3px solid #6a52e0;
    border-radius: 0 8px 8px 0;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: #6a52e0;
    font-style: italic;
    margin: 8px 0 4px;
}

/* Modal footer */
.rm-modal-footer {
    padding: 14px 24px 18px;
    border-top: 1px solid #eceaf5;
    flex-shrink: 0;
    background: #faf9ff;
}

.rm-footer-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.rm-download-btn {
    min-width: 160px;
    text-align: center;
}

.rm-btn-close {
    background: none;
    border: none;
    color: #a39eba;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.rm-btn-close:hover { color: #231b49; }

.rm-pdf-error {
    font-size: 0.8rem;
    color: #c62828;
    margin: 0 0 10px;
}

@media (max-width: 500px) {
    .rm-card { flex-direction: column; }
    .rm-card-actions { flex-direction: row; width: 100%; }
    .rm-modal-header { flex-direction: column; }
    .rm-modal-title { font-size: 1rem; }
}

/* ===== Results Page (rs-) ===== */

.rs-summary { padding-bottom: 20px; }

/* Score hero */
.rs-score-hero {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.rs-score-circle {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.rs-score-frac {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: "Urbanist", serif;
    line-height: 1;
}

.rs-score-pct {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.rs-score-stars { margin-top: 4px; }
.rs-score-stars .cd-star { font-size: 0.9rem; }

.rs-score-right {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rs-badge-text {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

.rs-message {
    font-size: 0.9rem;
    color: #6a52e0;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
}

.rs-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rs-meta-tile {
    background: #faf9ff;
    border: 1px solid #eceaf5;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 120px;
}

.rs-avg-tile { min-width: 180px; }

.rs-meta-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rs-meta-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #231b49;
}

.rs-avg-tag {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 2px;
}

.rs-avg-up   { color: #2e7d32; }
.rs-avg-down { color: #e65100; }
.rs-avg-same { color: #6a52e0; }

.rs-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #eceaf5;
    margin-top: 6px;
}

/* Question cards */
.rs-q-card {
    padding: 18px 20px !important;
    margin-bottom: 12px;
    border-left: 4px solid #eceaf5 !important;
}

.rs-q-correct { border-left-color: #4caf50 !important; }
.rs-q-wrong   { border-left-color: #ef5350 !important; }

.rs-q-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rs-q-num {
    font-size: 0.72rem;
    font-weight: 800;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-q-verdict {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.rs-verdict-correct { background: #e8f5e9; color: #2e7d32; }
.rs-verdict-wrong   { background: #fce8e8; color: #c62828; }

.rs-q-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #231b49;
    margin: 0 0 12px;
    line-height: 1.5;
}

.rs-q-answers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.rs-q-ans-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.rs-ans-correct { background: #e8f5e9; }
.rs-ans-wrong   { background: #fce8e8; }

.rs-ans-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a39eba;
    white-space: nowrap;
    flex-shrink: 0;
}

.rs-ans-val {
    font-weight: 600;
    color: #231b49;
}

.rs-q-explain {
    background: #f8f7ff;
    border: 1px solid #eceaf5;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.rs-explain-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rs-explain-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #6a52e0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rs-q-trap {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: #b45309;
    font-weight: 500;
}

@media (max-width: 560px) {
    .rs-score-hero { flex-direction: column; align-items: center; text-align: center; }
    .rs-score-right { align-items: center; }
    .rs-meta-grid { justify-content: center; }
    .rs-actions { justify-content: center; }
}

/* ===== Practice Page (ps-) ===== */

.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.ps-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ps-category-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ps-category-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    font-family: "Urbanist", serif;
}

.ps-set-count {
    font-size: 0.72rem;
    font-weight: 600;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: auto;
}

.ps-set-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.ps-set-card {
    border: 1.5px solid #eceaf5;
    border-radius: 12px;
    padding: 16px 18px;
    background: #fdfcff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.ps-set-card:hover {
    box-shadow: 0 4px 16px rgba(106,82,224,0.12);
    border-color: #c4b8f5;
}

.ps-set-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.ps-set-info { flex: 1; min-width: 0; }

.ps-set-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #231b49;
    margin: 0 0 4px;
    font-family: "Urbanist", serif;
    line-height: 1.3;
}

.ps-set-desc {
    font-size: 0.78rem;
    color: #a39eba;
    margin: 0;
    line-height: 1.4;
}

.ps-timer-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffd0a0;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.ps-set-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ps-btn-practice {
    flex: 1;
    text-align: center;
    padding: 9px 14px;
    border-radius: 8px;
    border: 2px solid #6a52e0;
    color: #6a52e0;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.ps-btn-practice:hover {
    background: #6a52e0;
    color: #fff;
}

.ps-btn-timed {
    flex: 1;
    text-align: center;
    padding: 9px 14px;
    border-radius: 8px;
    background: #6a52e0;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.ps-btn-timed:hover { background: #5340c4; color: #fff; }

@media (max-width: 500px) {
    .ps-set-grid { grid-template-columns: 1fr; }
    .ps-btn-practice, .ps-btn-timed { flex: 1 1 100%; }
}

/* ===== Child Dashboard ===== */

.cd-main { padding-bottom: 48px; }

.cd-alert-anim { animation: slideInUp 0.4s ease both; }

/* Hero */
.cd-hero {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cd-hero-text { flex: 1; min-width: 200px; }

.cd-greeting-sub {
    font-size: 0.9rem;
    color: #a39eba;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 2px;
}

.cd-name {
    font-size: 2.2rem !important;
    margin: 0 0 12px !important;
    line-height: 1.1 !important;
}

.cd-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.cd-level-badge {
    display: inline-block;
    background: #f0eeff;
    color: #6a52e0;
    border: 1.5px solid #d4cef8;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.85rem;
    font-weight: 700;
}

.cd-streak-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    border: 1.5px solid #ffd0a0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: streakPulse 2s ease infinite;
}

@keyframes streakPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,81,0,0.15); }
    50%       { box-shadow: 0 0 0 6px rgba(230,81,0,0); }
}

.cd-start-btn {
    font-size: 1rem;
    padding: 12px 28px;
    animation: btnPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both 0.6s;
}

@keyframes btnPop {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

/* XP Ring */
.cd-hero-xp {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.cd-xp-ring-wrap {
    position: relative;
    width: 150px;
    height: 150px;
}

.cd-xp-svg {
    transform: rotate(-90deg);
    display: block;
}

.cd-xp-track {
    fill: none;
    stroke: #eceaf5;
    stroke-width: 10;
}

.cd-xp-arc {
    fill: none;
    stroke: #6a52e0;
    stroke-width: 10;
    stroke-linecap: round;
}

.cd-xp-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.cd-xp-lv {
    font-size: 1.5rem;
    font-weight: 800;
    color: #231b49;
    font-family: "Urbanist", serif;
}

.cd-xp-pts {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6a52e0;
}

.cd-xp-next {
    font-size: 0.65rem;
    color: #a39eba;
}

/* ─── Hero achievements column (cd-hero-ach) ─── */
.cd-hero-ach {
    flex: 0 0 auto;
    min-width: 148px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cd-hero-ach-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a39eba;
    margin: 0;
}

.cd-hero-ach .cd-achievements {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    margin: 0;
}

.cd-hero-ach .cd-achievement {
    font-size: 0.76rem;
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@media (max-width: 640px) {
    .cd-hero-ach { min-width: 100%; max-width: 100%; }
    .cd-hero-ach .cd-achievements { flex-direction: row; flex-wrap: wrap; }
}

/* Achievements */
.cd-achievements-card { padding-bottom: 10px; }

.cd-card { padding: 28px 32px; }

@media (max-width: 600px) {
    .cd-card { padding: 20px 18px; }
}

.cd-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #231b49;
    margin: 0 0 14px;
    font-family: "Urbanist", serif;
}

.cd-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.cd-achievement {
    background: #f0eeff;
    color: #231b49;
    border: 1.5px solid #d4cef8;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
}

.cd-pop {
    animation: achievePop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

.cd-achievements .cd-pop:nth-child(1) { animation-delay: 0.1s; }
.cd-achievements .cd-pop:nth-child(2) { animation-delay: 0.2s; }
.cd-achievements .cd-pop:nth-child(3) { animation-delay: 0.3s; }
.cd-achievements .cd-pop:nth-child(4) { animation-delay: 0.4s; }
.cd-achievements .cd-pop:nth-child(5) { animation-delay: 0.5s; }
.cd-achievements .cd-pop:nth-child(6) { animation-delay: 0.6s; }

@keyframes achievePop {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

/* Attempt rows */
.cd-attempts { display: flex; flex-direction: column; gap: 10px; }

.cd-attempt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid #eceaf5;
    border-radius: 10px;
    background: #fdfcff;
    flex-wrap: wrap;
    opacity: 0;
}

.cd-slide-in {
    animation: slideInUp 0.4s ease both;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cd-attempt-left {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cd-attempt-cat {
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.cd-cat-maths   { color: #1a56b0; }
.cd-cat-english { color: #b45309; }
.cd-cat-mixed   { color: #6a52e0; }

.cd-attempt-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #231b49;
}

.cd-attempt-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 90px;
}

.cd-star { font-size: 1.1rem; }
.cd-star-on  { color: #f9a825; }
.cd-star-off { color: #e0dbf5; }

.cd-attempt-score {
    font-size: 0.8rem;
    font-weight: 700;
}

.cd-attempt-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cd-attempt-date {
    font-size: 0.75rem;
    color: #a39eba;
}

.cd-review-link {
    font-size: 0.78rem;
    color: #6a52e0;
    font-weight: 600;
    text-decoration: none;
}

.cd-review-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .cd-hero { flex-direction: column; gap: 20px; }
    .cd-hero-xp { order: -1; }
    .cd-name { font-size: 1.7rem !important; }
    .cd-attempt { flex-direction: column; align-items: flex-start; }
    .cd-attempt-right { align-items: flex-start; flex-direction: row; gap: 12px; }
}

/* ===== Daily Practice Quest (dq-*) ===== */
.dq-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff0c0 100%);
    border-color: #fdd835;
    position: relative;
    overflow: hidden;
}
.dq-card.dq-complete {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #66bb6a;
}
.dq-card.dq-locked {
    opacity: 0.65;
    background: #fafafa;
    border-color: #eceaf5;
}
.dq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.dq-icon-wrap {
    font-size: 2.8rem;
    line-height: 1;
    flex-shrink: 0;
    animation: dqIconBob 2.5s ease-in-out infinite;
}
@keyframes dqIconBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
.dq-header-text { flex: 1; min-width: 0; }
.dq-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #e65100;
    margin: 0 0 2px;
}
.dq-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #231b49;
    margin: 0;
    font-family: "Urbanist", serif;
    line-height: 1.25;
}
.dq-checkmark {
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: checkPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes checkPop {
    from { transform: scale(0) rotate(-20deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.dq-desc {
    font-size: 0.87rem;
    color: #5a556e;
    margin: 0 0 16px;
    line-height: 1.55;
}
.dq-complete-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #2e7d32;
    color: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 1rem;
    animation: dqCompletePop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes dqCompletePop {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.dq-complete-icon { font-size: 1.5rem; }
.dq-btn {
    align-self: flex-start;
    background: #e65100;
}
.dq-btn:hover { background: #bf360c; opacity: 1; }

/* ===== Feature Teaser Cards (feat-*, bp-teaser, mp-teaser) ===== */
.feat-teaser {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bp-teaser {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9ff 100%);
    border-color: #c4b5fd;
}
.mp-teaser {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-color: #93c5fd;
}
.feat-teaser-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.feat-teaser-icon {
    font-size: 1.9rem;
    line-height: 1;
    flex-shrink: 0;
}
.feat-teaser-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 2px;
    font-family: "Urbanist", serif;
}
.feat-teaser-sub {
    font-size: 0.78rem;
    color: #a39eba;
    margin: 0;
    font-weight: 500;
}
.feat-teaser-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.feat-mini-badge {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.15s;
}
.feat-mini-badge:hover { transform: scale(1.25); }
.feat-mini-on  { opacity: 1;   filter: none; }
.feat-mini-off { opacity: 0.2; filter: grayscale(1); }
.feat-progress-wrap {
    background: rgba(255,255,255,0.55);
    border-radius: 99px;
    height: 7px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}
.feat-progress-bar {
    height: 100%;
    border-radius: 99px;
    width: 0%;
    transition: width 1.1s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.bp-progress-bar { background: linear-gradient(90deg, #6a52e0, #a78bfa); }
.mp-progress-bar { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.feat-open-btn {
    align-self: flex-start;
    font-size: 0.88rem;
    padding: 10px 20px;
}
.mp-open-btn { background: #0284c7; }
.mp-open-btn:hover { background: #0369a1; opacity: 1; }

/* ===== Shared Child Feature Modals (cdm-*) ===== */
.cdm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 27, 73, 0.55);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.cdm-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 22px 64px rgba(35,27,73,0.27);
    overflow: hidden;
    animation: cdmSlideIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.cdm-modal-wide { max-width: 740px; }
@keyframes cdmSlideIn {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.cdm-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px 18px;
    border-bottom: 1.5px solid #eceaf5;
    flex-shrink: 0;
}
.bp-modal-header { background: linear-gradient(135deg, #f5f3ff 0%, #ede9ff 100%); }
.mp-modal-header { background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%); }
.cdm-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 3px;
    color: #6a52e0;
}
.bp-modal-header .cdm-eyebrow { color: #6a52e0; }
.mp-modal-header .cdm-eyebrow { color: #0284c7; }
.cdm-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 3px;
    font-family: "Urbanist", serif;
}
.cdm-subtitle {
    font-size: 0.8rem;
    color: #a39eba;
    margin: 0;
}
.cdm-close {
    background: rgba(255,255,255,0.7);
    border: 1.5px solid #e0dbf5;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
    color: #6a52e0;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    font-family: inherit;
}
.cdm-close:hover { background: #fff; border-color: #6a52e0; }
.cdm-body {
    padding: 22px 26px;
    overflow-y: auto;
    flex: 1;
}
.cdm-footer {
    padding: 14px 26px 20px;
    border-top: 1.5px solid #eceaf5;
    background: #faf9ff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cdm-cta { font-size: 0.9rem; }
.cdm-close-btn {
    background: none;
    border: none;
    color: #a39eba;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.15s;
}
.cdm-close-btn:hover { color: #231b49; }

/* ===== Backpack Modal Internals (bp-m-*) ===== */
@keyframes badgePop {
    from { transform: scale(0.6) rotate(-6deg); opacity: 0; }
    to   { transform: scale(1)   rotate(0deg);  opacity: 1; }
}
.bp-m-progress { margin-bottom: 20px; }
.bp-m-prog-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #5a556e;
    margin-bottom: 7px;
}
.bp-m-prog-bar-wrap {
    background: #eceaf5;
    border-radius: 99px;
    height: 9px;
    overflow: hidden;
}
.bp-m-prog-bar {
    height: 100%;
    background: linear-gradient(90deg, #6a52e0, #a78bfa);
    border-radius: 99px;
    transition: width 0.9s cubic-bezier(0.4,0,0.2,1);
}
.bp-m-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
@media (max-width: 480px) { .bp-m-grid { grid-template-columns: repeat(2, 1fr); } }
.bp-m-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 18px 10px 14px;
    border-radius: 16px;
    border: 2px solid;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    background: #fff;
    font-family: inherit;
    position: relative;
    text-align: center;
    animation: badgePop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.bp-m-earned {
    border-color: #c4b5fd;
    box-shadow: 0 2px 10px rgba(139,92,246,0.1);
}
.bp-m-earned:hover, .bp-m-active {
    border-color: #6a52e0 !important;
    box-shadow: 0 6px 22px rgba(106,82,224,0.22) !important;
    transform: translateY(-3px) scale(1.02);
}
.bp-m-locked {
    border-color: #e8e5f4;
    background: #faf9ff;
    opacity: 0.6;
}
.bp-m-badge-icon { font-size: 2.1rem; line-height: 1; }
.bp-m-badge-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #231b49;
    line-height: 1.25;
    font-family: "Urbanist", serif;
}
.bp-m-check {
    position: absolute;
    top: 8px; right: 9px;
    font-size: 0.72rem;
    color: #16a34a;
}
.bp-m-lock {
    position: absolute;
    top: 8px; right: 9px;
    font-size: 0.7rem;
    opacity: 0.35;
}
.bp-m-detail {
    border-radius: 14px;
    border: 2px solid #e0d9f9;
    background: linear-gradient(135deg, #f8f6ff 0%, #f0eeff 100%);
    padding: 16px 18px;
    animation: cdmSlideIn 0.22s ease both;
    margin-top: 4px;
}
.bp-m-detail-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bp-m-detail-icon {
    font-size: 2.6rem;
    flex-shrink: 0;
    line-height: 1;
}
.bp-m-detail-name {
    font-size: 1rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 4px;
    font-family: "Urbanist", serif;
}
.bp-m-detail-desc { font-size: 0.82rem; color: #5a556e; margin: 0 0 6px; line-height: 1.5; }
.bp-m-detail-status { font-size: 0.82rem; margin: 0; }

/* ===== Adventure Map Modal Internals (mp-*) ===== */
.mp-path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    row-gap: 12px;
}
.mp-zone-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}
.mp-zone {
    width: 128px;
    border-radius: 18px;
    padding: 18px 12px 16px;
    text-align: center;
    border: 2px solid;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s;
}
.mp-zone-unlocked {
    background: var(--zone-bg, #f0eeff);
    border-color: var(--zone-border, #c4b5fd);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    animation: badgePop 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
}
.mp-zone-unlocked:hover { transform: translateY(-4px); }
.mp-zone-locked {
    background: #f4f4f6;
    border-color: #e0e0e8;
    opacity: 0.5;
}
.mp-zone-icon { font-size: 2.2rem; line-height: 1; }
.mp-zone-name {
    font-size: 0.72rem;
    font-weight: 800;
    color: #231b49;
    margin: 0;
    font-family: "Urbanist", serif;
    line-height: 1.25;
}
.mp-zone-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 20px;
    background: #eceaf5;
    color: #6a52e0;
}
.mp-zone-count {
    font-size: 0.72rem;
    color: #5a556e;
    margin: 0;
    line-height: 1.35;
}
.mp-zone-count strong { color: #231b49; font-weight: 800; }
.mp-zone-hint {
    font-size: 0.65rem;
    color: #a39eba;
    margin: 0;
    line-height: 1.35;
    font-style: italic;
}
.mp-zone-stamp {
    position: absolute;
    top: 8px; right: 10px;
    font-size: 0.85rem;
}
.mp-connector {
    display: flex;
    align-items: center;
    padding: 0 6px;
    color: #c4b5fd;
    font-size: 1rem;
    letter-spacing: 3px;
    flex-shrink: 0;
}
@media (max-width: 580px) {
    .mp-path { flex-direction: column; align-items: stretch; gap: 0; }
    .mp-zone-wrap { flex-direction: column; align-items: center; }
    .mp-zone { width: 100%; max-width: 340px; flex-direction: row; gap: 12px; text-align: left; padding: 14px 16px; }
    .mp-zone-icon { font-size: 1.8rem; flex-shrink: 0; }
    .mp-zone-name { font-size: 0.8rem; }
    .mp-connector { transform: rotate(90deg); margin: -6px auto; }
}

/* ===== Quest Teaser Card + 3-col Feature Row ===== */
.dq-teaser {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3c4 100%);
    border-color: #fdd835;
}
.dq-teaser.dq-complete {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #66bb6a;
}
.dq-icon-bob  { animation: dqIconBob 2.5s ease-in-out infinite; }
.dq-open-btn  { background: #e65100; }
.dq-open-btn:hover { background: #bf360c; opacity: 1; }

.cd-feat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}
.cd-feat-row .app-card { padding: 16px 18px; margin-bottom: 0; }
@media (max-width: 640px) {
    .cd-feat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
    .cd-feat-row { grid-template-columns: 1fr; }
}

/* ===== Quest Modal Internals ===== */
.dq-modal-header {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe082 100%);
    border-bottom: 2px solid #fdd835;
}

/* Subject select */
.dq-pick-label {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #231b49;
    margin: 0 0 20px;
}
.dq-subject-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.dq-subject-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 20px;
    border-radius: 20px;
    border: 2.5px solid #e0d9f9;
    background: #fff;
    color: #231b49;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}
.dq-subject-btn:hover {
    border-color: #6a52e0;
    background: #f5f3ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(106, 82, 224, 0.15);
}
.dq-subj-icon  { font-size: 2.4rem; line-height: 1; }
.dq-subj-title { font-size: 1.05rem; font-weight: 800; color: #231b49; font-family: "Urbanist", serif; }
.dq-subj-count { font-size: 0.75rem; color: #a39eba; font-weight: 500; }

/* Question screen */
.dq-q-progress-wrap {
    height: 8px;
    background: #f4f1ff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}
.dq-q-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #6a52e0, #a78bfa);
    border-radius: 4px;
    transition: width 0.4s ease;
}
.dq-q-counter {
    font-size: 0.74rem;
    font-weight: 700;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: center;
    margin: 0 0 18px;
}
.dq-q-topic {
    font-size: 0.72rem;
    color: #a39eba;
    font-weight: 500;
    margin: 0 0 8px;
}
.dq-q-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #231b49;
    line-height: 1.55;
    margin: 0 0 16px;
}
.dq-q-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.dq-q-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 2px solid #e0d9f9;
    background: #fff;
    color: #231b49;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.15s, background 0.15s;
    width: 100%;
}
.dq-q-opt:not([disabled]):hover {
    border-color: #6a52e0;
    background: #f5f3ff;
}
.dq-q-opt[disabled] { cursor: default; }
.dq-opt-letter {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #f4f1ff;
    color: #6a52e0;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.dq-opt-text { flex: 1; }
.dq-q-opt.dq-opt-correct              { border-color: #16a34a; background: #f0fdf4; }
.dq-q-opt.dq-opt-correct .dq-opt-letter { background: #16a34a; color: #fff; }
.dq-q-opt.dq-opt-wrong                { border-color: #dc2626; background: #fef2f2; }
.dq-q-opt.dq-opt-wrong   .dq-opt-letter { background: #dc2626; color: #fff; }
.dq-q-reveal {
    background: #f8f6ff;
    border: 1.5px solid #e0d9f9;
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 12px;
}
.dq-q-explanation {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #231b49;
    margin: 0 0 12px;
}
.dq-next-btn { width: 100%; }

/* Score screen */
.dq-score-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 8px 0;
}
.dq-score-ring-wrap {
    position: relative;
    width: 160px;
    height: 160px;
}
.dq-score-svg {
    position: absolute;
    top: 0; left: 0;
    transform: rotate(-90deg);
    display: block;
}
.dq-score-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.dq-score-num {
    font-size: 2rem;
    font-weight: 800;
    color: #231b49;
    line-height: 1;
    font-family: "Urbanist", serif;
}
.dq-score-pct  { font-size: 0.9rem; font-weight: 600; color: #6a52e0; }
.dq-score-text { text-align: center; }
.dq-score-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #231b49;
    margin: 0 0 8px;
    font-family: "Urbanist", serif;
}
.dq-score-msg { font-size: 0.95rem; color: #5a556e; line-height: 1.5; margin: 0; }

/* ===== Child Mood Check-in (cm-*, ms-mood-row) ===== */
.ms-mood-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1.5px solid #eceaf5;
}
.cm-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #231b49;
    flex-shrink: 0;
}
.cm-mood-btns {
    display: flex;
    gap: 6px;
}
.cm-mood-btn {
    font-size: 1.45rem;
    background: none;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 4px 6px;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
    line-height: 1;
}
.cm-mood-btn:hover {
    transform: scale(1.25);
    border-color: #6a52e0;
}
.cm-done-emoji { font-size: 1.4rem; line-height: 1; }
.cm-done-text  { font-size: 0.83rem; color: #166534; }

.practice-layout {
    display: flex;
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 16px;
    align-items: flex-start;
}

.practice-main {
    flex: 1;
    min-width: 0;
}

.practice-tracker {
    width: 148px;
    flex-shrink: 0;
}

.practice-tracker-inner {
    position: sticky;
    top: 100px;
    text-align: center;
}

/* Score ring */
.tracker-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
}

.tracker-ring svg {
    transform: rotate(-90deg);
    display: block;
}

.tracker-ring-bg {
    fill: none;
    stroke: #eceaf5;
    stroke-width: 8;
}

.tracker-ring-fill {
    fill: none;
    stroke: #6a52e0;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 0.5s ease;
}

.tracker-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.tracker-score-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: #231b49;
    font-family: "Urbanist", serif;
}

.tracker-score-label {
    font-size: 0.62rem;
    color: #a39eba;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tracker-stat {
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 4px auto;
    display: block;
    width: fit-content;
    font-weight: 600;
}

.tracker-stat-correct {
    background: #e8f5e9;
    color: #2e7d32;
}

.tracker-stat-wrong {
    background: #fce4ec;
    color: #c62828;
}

.tracker-qnum {
    font-size: 0.78rem;
    color: #a39eba;
    margin-top: 12px;
}

/* Question cards */
.q-card {
    display: none;
    animation: qFadeUp 0.3s ease;
}

.q-card.active {
    display: block;
}

@keyframes qFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.q-number {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #a39eba;
    font-weight: 600;
    margin-bottom: 6px;
}

.q-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #231b49;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Question diagram image (optional) */
.q-image {
    margin: 0 0 16px;
    text-align: center;
}
.q-diagram-img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e8e4f8;
    border-radius: 8px;
}

/* Answer options */
.q-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #eceaf5;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
    background: #fff;
}

.q-option:hover {
    border-color: #6a52e0;
    background: #f5f3ff;
}

.q-option.selected {
    border-color: #6a52e0;
    background: #f0eeff;
}

.q-option-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eceaf5;
    color: #6a52e0;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.q-option.selected .q-option-letter {
    background: #6a52e0;
    color: #fff;
}

/* After reveal */
.q-option.correct-reveal {
    border-color: #2e7d32;
    background: #e8f5e9;
    animation: correctPulse 0.45s ease;
}

.q-option.wrong-reveal {
    border-color: #c62828;
    background: #fce4ec;
    animation: wrongShake 0.45s ease;
}

.q-option.show-correct {
    border-color: #2e7d32;
    background: #e8f5e9;
}

.q-option.correct-reveal .q-option-letter,
.q-option.show-correct .q-option-letter {
    background: #2e7d32;
    color: #fff;
}

.q-option.wrong-reveal .q-option-letter {
    background: #c62828;
    color: #fff;
}

@keyframes correctPulse {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes wrongShake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    45%       { transform: translateX(6px); }
    65%       { transform: translateX(-4px); }
    82%       { transform: translateX(3px); }
}

/* Reveal panel */
.q-reveal {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    border-left: 4px solid;
    font-size: 0.9rem;
    line-height: 1.55;
}

.q-reveal.correct-bg {
    background: #e8f5e9;
    border-color: #2e7d32;
}

.q-reveal.wrong-bg {
    background: #fff8e1;
    border-color: #e65100;
}

.q-reveal-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.q-reveal.correct-bg .q-reveal-title { color: #2e7d32; }
.q-reveal.wrong-bg  .q-reveal-title  { color: #e65100; }

.q-trap {
    margin-top: 10px;
    font-size: 0.84rem;
    color: #7b5800;
    background: #fff3cd;
    border-radius: 6px;
    padding: 7px 11px;
}

/* Action buttons */
.q-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Mobile: tracker becomes a sticky top strip */
@media (max-width: 767px) {
    .practice-layout {
        flex-direction: column-reverse;
        gap: 0;
    }

    .practice-tracker {
        width: 100%;
    }

    .practice-tracker-inner {
        position: sticky;
        top: 0;
        background: #fff;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        z-index: 200;
        box-shadow: 0 2px 10px rgba(106,82,224,0.10);
        border-bottom: 1px solid #eceaf5;
    }

    .tracker-ring {
        width: 58px;
        height: 58px;
        margin: 0;
        flex-shrink: 0;
    }

    .tracker-ring svg {
        width: 58px;
        height: 58px;
    }

    .tracker-score-num {
        font-size: 0.95rem;
    }

    .tracker-qnum {
        margin-top: 0;
        margin-left: auto;
    }

    .q-actions .app-btn {
        flex: 1;
    }
}