﻿:root {
    --light-orange: #fff7f0;
    --dark-orange: #ff0000;
    --dark-green: #3a5898;
    --light-gray: #f5f5f5;
}


/*body {
    background-color: var(--light-gray);
}*/
body {
    font-family: 'Poppins', sans-serif;
    color: #4A4A4A;
    background-color: #fff;
}

/* --- Custom Colors & Buttons --- */
:root {
    --bs-primary-rgb: 255, 107, 107; /* Custom primary color for buttons etc. */
    --light-pink: #fff0f0;
    --dark-blue: #0a183d;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95% !important;
    }
}
.btn-primary {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary:hover {
background-color: #e05252;
border-color: #e05252;
}

.btn-outline-primary {
    border-color: #FF6B6B;
    color: #FF6B6B;
}

    .btn-outline-primary:hover {
        background-color: #FF6B6B;
        color: white;
    }

/* --- Navbar --- */
.navbar-brand img {
    max-height: 80px;
}

.navbar .nav-link, .dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item {
    line-height: 24px;
}

a.nav-link img {
    width: 17px;
    vertical-align: top;
}
.btnSection {
    text-align: right;
}
/* --- Hero Section --- */
.hero-section {
   /* padding: 4rem 0;*/
    position: relative;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: bottom center;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
}
.moblogin{
    padding-top:10px;
}

span.study-txt {
    background: -webkit-linear-gradient(45deg,#435793, #d74a42, #c724d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-store-btn img {
    height: 45px;
    margin: 5px;
}

.hero-image {
    max-width: 80%;
    height: auto;
}

/* --- Learning Modules Section --- */
.learning-modules {
    background-color: var(--light-pink);
    padding: 4rem 0;
}

.module-card {
    border: 1px solid #ffdede;
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
}

    .module-card img {
        max-height: 80px;
        margin-bottom: 1rem;
    }

/* --- Feature Sections --- */
.feature-list {
    list-style: none;
    padding-left: 0;
}

    .feature-list li {
        padding-left: 2rem;
        position: relative;
        margin-bottom: 0.8rem;
    }

        .feature-list li::before {
            content: '\F26A'; /* Bootstrap Icon for check-circle-fill */
            font-family: 'Bootstrap-icons';
            position: absolute;
            left: 0;
            top: 2px;
            color: #FF6B6B;
        }

.section-padding {
    padding: 5rem 0;
}

/* --- Accordion --- */
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff8f8;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

.accordion-button::after {
    /* Customizing the accordion icon */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B6B'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B6B'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
    transform: none;
}


/* --- Privacy Section --- */
.privacy-box {
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

    .privacy-box.blue {
        background-color: #ebf5ff;
    }

    .privacy-box .bi-shield-lock {
        font-size: 3rem;
        color: #0d6efd;
    }

/* --- Footer --- */
footer {
    background-color: var(--dark-blue);
    color: #adb5bd;
    font-size: 0.9rem;
}

    footer h6 {
        color: white;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    footer a {
        color: #adb5bd;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
    }

        footer a:hover {
            color: white;
            text-decoration: underline;
        }

.footer-bottom {
    border-top: 1px solid #2c3e50;
}

.social-icons a {
    color: #adb5bd;
    font-size: 1.2rem;
    margin-left: 1rem;
    display: inline;
}

    .social-icons a:hover {
        color: white;
    }

.menus-list {
    list-style: none;
    /*  padding-left: 0; */
    text-align: center;
    padding-left: 1.3rem;
}

    .menus-list li {
        padding-left: 2rem;
        position: relative;
        margin-bottom: 0.8rem;
        font-size: 0.8rem;
        font-weight: 500;
        text-align: left;
    }

        .menus-list li::before {
            content: '\F138';
            font-family: 'bootstrap-icons';
            position: absolute;
            left: 0;
            top: -2px;
            color: #007BFF;
            font-size: 1rem;
        }

 
/* --- Custom Colors & Buttons --- */


.btn-primary {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
    padding: 10px 25px;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #e05252;
        border-color: #e05252;
    }

.btn-outline-primary {
    border-color: #FF6B6B;
    color: #FF6B6B;
}

    .btn-outline-primary:hover {
        background-color: #FF6B6B;
        color: white;
    }
/* --- Navbar --- */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

 

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    margin: 0 0.75rem;
    font-size: 0.9em;
}

    .navbar-nav .nav-link img {
        width: 17px;
        vertical-align: top;
        margin-top: 3px;
    }

    .navbar-nav .nav-link:hover {
        color: #E94D64;
    }

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.user-icon {
    font-size: 1.5rem;
    color: #555;
}

/* --- Hero Section --- */
/*.hero-section {
    padding: 6rem 0;
    background-color: #FEF7F8;
    background-image: url(images/bg.jpg);
    background-size: cover;
    background-position: bottom center;
}*/

   /* .hero-section h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
    }*/

    .hero-section p {
        font-size: 1.25rem;
        color: #666;
        margin-bottom: 2rem;
    }

        .hero-section p span {
            color: red;
        }

.app-store-btn img {
    height: 50px;
    margin-right: 1rem;
}

/* --- Modules Section --- */
.modules-section {
    padding: 1rem 0;
    text-align: center;
    background-color: #e9ecef;
    ;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    /*margin-bottom: 3rem;*/
    color: #333;
}

.module-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

    .module-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .module-card img {
        max-height: 80px;
        margin-bottom: 1.5rem;
    }

    .module-card h5 {
        font-weight: 600;
        color: #333;
    }

    .module-card p {
        font-size: 0.9rem;
        color: #777;
    }

/* --- AI App Section --- */
.ai-app-section {
    padding: 5rem 0;
}

    .ai-app-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .ai-app-section p {
        color: #555;
        font-weight: 500;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .ai-app-section ul {
        list-style: none;
        padding-left: 0;
        margin-top: 1.5rem;
    }

        .ai-app-section ul li {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
            padding-left: 25px;
        }

            .ai-app-section ul li::before {
                content: '\2192'; /* Right arrow character */
                position: absolute;
                left: 0;
                color: #E94D64;
                font-weight: bold;
            }

/* --- Why Love Us Section --- */
.love-us-section {
    padding: 5rem 0;
}

./*privacy-box {
    background-color: #EAF2FE;
    border-radius: 15px;
    padding: 2rem;
}*/

    .privacy-box h4 {
        font-weight: 600;
    }

    .privacy-box .icon {
        font-size: 3rem;
        color: #3B82F6;
    }

.love-us-section .write-feedback-btn {
    border: 1px solid #ccc;
    border-radius: 8px;
    font-weight: 500;
    color: #555;
    padding: 0.5rem 1.5rem;
}

    .love-us-section .write-feedback-btn:hover {
        background-color: #f8f9fa;
    }

/* --- CTA Section --- */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2rem;
        font-weight: 600;
    }

 



















.header {
    background-color: #465d9c;
    padding: 0px 0 210px;
}

.main-content {
    /*background-color: white;*/
    padding: 40px;
    border-radius: 10px;
    margin-top: -200px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}
a {
    text-decoration: none;
    color: #3a5898;
}
h2 {
    /*color: #fff;*/
}
.burg-menu {
    display: none;
}
.sidebar {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

nav.sidebar-nav {
    background: #fff;
    padding: 23px;
    border-radius: 10px;
    margin-top: -130px;
}

.sidebar-nav ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-nav li {
    margin-bottom: 25px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
}

    .sidebar-nav li i {
        margin-right: 15px;
        width: 20px;
        text-align: center;
        color: #000;
    }
.study-girl {
    margin-top: -100px;
}

.coins-free {
    font-weight: 600;
    color: #ff0000;
}

.patent-img {
    max-width: 130px;
}

.patent-img {
    max-width: 130px;
}

/* .action-box {
            border-radius: 10px;
            padding: 40px 20px;
            text-align: center;
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        } */
.action-box {
    aspect-ratio: 1 / 1; /* Makes it square */
    width: 100%; /* Fill the column */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    max-height: 300px;
}

    .action-box h4 {
        margin-top: 15px;
    }

.orange-box {
    background-color: var(--dark-orange);
}

.green-box {
    background-color: var(--dark-green);
}

.action-box .icon {
    font-size: 3rem;
}

/* Footer */
.top-footer {
    background-color: #3a5898;
    color: white;
    padding: 40px 0;
}

    .top-footer h5 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .top-footer a {
        color: #e5e7eb;
        text-decoration: none;
    }

        .top-footer a:hover {
            color: white;
        }

.social-icons a {
    
    font-size: 1.2rem;
}
    .social-icons a:not(:last-child) {
        margin-right: 15px;
        
    }
.bottom-footer {
    background-color: #f8fafc;
    padding: 30px 0;
    font-size: 0.9rem;
    color: #555;
}

    .bottom-footer .logo {
        height: 80px;
    }

    .bottom-footer p {
        margin-bottom: 2px;
    }
    a{
        text-decoration:none;
    }
.forminput {
    width: 80% !important;
    /*background-color: #fff !important;*/
    min-height: 50px;
    margin: 10px auto !important;
}
.forminputd {
    width: 73% !important;
    /*background-color: #fff !important;*/
    min-height: 50px;
    margin: 10px auto !important;
}

.form-control {
    border: 1px solid #3a5898 !important;
}
.form-select {
    border: 1px solid #3a5898 !important;
}
.form-check-input {
    border: 1px solid #3a5898 !important;
}
.customBtn {
    color: #fff;
    cursor: pointer;
    padding: 12px 30px;
    border-radius: 27px;
    min-width: 120px;
    text-align: center;
    transition: .25s;
    box-shadow: none;
    background: #3a5898;
    border: none;
}
.contentSec {
    display: flex;
    justify-content: center;  
    align-items: center; 
    height: 300px;
}
.btnSection1 {
    display: flex;
    justify-content: center;
}
a {
    text-decoration: none;
    color: #3a5898;
}
.aterm {
    color: #aaa !important;
}
.image-preview {
    position: relative;
    display: inline-block;
}

    .image-preview img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

.delete-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 15px;
    text-align: center;
}
.error-msg {
    color: red;
    font-size: 12px;
    text-align: center;
}
img.whatsapp {
    position: fixed;
    right: 21px;
    bottom: 33px;
    width: 60px;
}

.box-orange {
    background-color: #ff0000;
    border-radius: 10px;
}

.box-green {
    background-color: #3a5898;
    border-radius: 10px;
}

.bg-green {
    background-color: #3a5898 !important;
    color: #fff;
}

.btn-green {
    background-color: #3a5898 !important;
}

.btn-White {
    background-color: #fff !important;
}

.text-orange {
    color: #ff0000 !important;
}

.text-green {
    color: #3a5898 !important;
}
button.accordion {
    width: 100%;
    background-color: #fff;
    border: none;
    outline: 0;
    text-align: left;
    padding: 15px 20px;
    color: #333;
    cursor: pointer;
    transition: background-color .2s linear;
    margin-bottom: 3px;
    color: #3a5898;
    font-weight: 600;
}

.accordion-content {
    background-color: #fff;
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-in-out;
}

button.accordion:after {
    content: "\f107";
    font-family: fontawesome;
    font-size: 18px;
    float: right;
}
.formActionButton .updateButton, .formActionButton button {
    /*background: #3a5898;*/
    background: #fff;
    border-radius: 4px;
    border: 1px solid transparent;
    box-shadow: none;
    padding-left: 40px;
    padding-right: 40px;
    height: 45px;
    /* color: #fff !important;*/
    color: #ff0000;
    transition: .25s;
}
.formActionButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
}

.imagestyle1 .active {
    background-color: #3a5898 !important;
    color: #fff !important;
    background-color: #3a5898 !important;
    box-shadow: none !important;
}
.containerParentProfile {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 22px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 10px;
    color: rgba(0, 0, 0, .7);
}

    .containerParentProfile input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
.checkmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 32px;
    width: 32px;
    border-radius: 6px;
}

.checkmark, .containerParentProfile:hover input ~ .checkmark {
    background-color: #f2f2f2;
}

.checkmark {
    border: 2px solid #fff;
    transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
}

.containerParentProfile input:checked ~ .checkmark:after {
    display: block;
}

.containerParentProfile .checkmark:after {
    left: 12px;
    top: 6px;
    width: 7px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkmark:after, .checkmark:before {
    content: "";
    position: absolute;
    display: none;
}

.containerParentProfile input:checked ~ .checkmark, input:checked + .slider {
    background-color: #3a5898;
}
.bookAppointmentSchoolModal .card-wrapper, .loginRegister .card-wrapper {
    background: rgba(0, 0, 0, .7);
    color: #fff;
    border-radius: 24px;
    margin-bottom: 30px;
}

.bookAppointmentSchoolModal .card-header {
    position: relative;
}

.LoginTypeModal .card-header {
    padding: 0;
}

.LoginTypeModal .modalClose {
    font-size: 30px;
    z-index: 9999;
    /*position: relative;*/
    color: #fff;
    opacity: 1;
    /*right: 7px;
    top: 0px;*/
    font-weight: 700;
    float: right;
    background-color: transparent;
    margin-right: 10px;
    cursor:pointer;
}
.modalClose {
    cursor: pointer;
}
.bookAppointmentSchoolModal .card-title {
    font-size: 20px;
    line-height: 20px;
}

.ContactuspopupModal .card-title, .bookAppointmentSchoolModal .card-title {
    font-size: 28px;
    line-height: 38px;
    position: relative;
    color: #3a5898;
    padding-top: 44px;
    font-weight: 700;
    margin-bottom: .25rem;
}

.bookAppointmentSchoolModal .whatsappicon:after {
    background: url(../img/whatsapp.png) center / 80% no-repeat !important;
    color: #fff;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    top: -33%;
    left: 0;
    right: 0;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background-size: 50%;
}

/*.bookAppointmentSchoolModal .card-header:after {
    position: absolute;
    background: #138808 url(../img/userIcon.svg);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    top: -33%;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background-size: 50%;
}*/

.bookAppointmentSchoolModal .card-wrapper, .loginRegister .card-wrapper {
    background: rgba(0, 0, 0, .7);
    color: #fff;
    border-radius: 24px;
    margin-bottom: 30px;
}

.bookAppointmentSchoolModal .modal-content {
    background: 0 0;
    box-shadow: none;
    border: none;
}

.bookAppointmentSchoolModal .btnSection {
    display: flex;
    padding: 0 0 28px;
}

.LoginTypeModal .customBtn {
    padding: 0 45px;
    height: 45px;
}

.customBtn {
    color: #fff;
    cursor: pointer;
    padding: 12px 30px;
    border-radius: 27px;
    min-width: 120px;
    text-align: center;
    transition: .25s;
    box-shadow: none;
    background: #3a5898;
    border: none;
}

.modal {
    min-height: 100% !important;
    height: auto !important;
}
#loginFormButton{
    margin-top:10px;
}
.logo-bg {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 10px 10px 20px 10px;
}
.main-content h1 {
    color: #fff;
    font-size: 2rem;
    padding-left: 75px;
}
#contentloading h2 {
    font-size: 1.6rem;
}
#contentloading h3 {
    font-size: 1.3rem;
}
.mobbtn {
    /*float: right;*/
}

.pt-Title span {
    font-size: 2rem !important;
    font-weight: bold !important;
}

.pt-Heading2 span {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}
.h3font {
    color: #3a5898 !important;
}
.pt-Heading1 span {
    font-size: 1.6rem !important;
    font-weight: bold !important;
}
.pt-Heading1 span {
    color: #3a5898 !important;
}

.pt-Heading2 span {
    color: #ff0000 !important;
}
.upload-icon img{
    width:70px;
}
.orange-box img {
    width: 100px;
}
.green-box img {
    width: 100px;
}
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #fff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

    /* The navigation menu links */
    .sidenav a {
/*        padding: 8px 8px 8px 32px;*/
        text-decoration: none;
/*        font-size: 25px;*/
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .sidenav li {
        margin-bottom: 25px;
        font-weight: 500;
        color: #555;
        display: flex;
        align-items: center;
    }

        .sidenav li i {
            margin-right: 15px;
            width: 20px;
            text-align: center;
            color: #000;
        }
    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
        color: #f1f1f1;
    }

    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

.burg-menu span div {
    width: 27px;
    height: 4px;
    background-color: #fff;
    margin: 4px 0;
}
/*.img-fluid {
    max-height: 200px;
   
}
*/
.logos{
    height:100px;
}
.headingdiv {
    margin-top: 55px;
    /*text-align: center;*/
}
.img-fluid {
    margin-top: 25px;
}
.store-buttons img {
    height: 50px;
    margin-top: 20px;
    margin-right: 15px;
}
 
#imgloadergame-rt {
    position: absolute;
    top: 10%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
}
    #imgloadergame-rt img {
        width: 50%;
    }
@media (max-width: 768px) {
    .main-content {
        padding: 10px;
    }
    .forminput {
        width: 100% !important;
        min-height: 43px;
    }
    .forminputd {
        width: 100% !important;
        min-height: 43px;
    }
    .moblogin {
        padding-top: 0px;
        margin-left: 12px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.6rem;
        font-weight: 600;
    }
    .ai-app-section h2 {
        font-size: 1.8rem;
        font-weight: 700;
    }
    .mobbtn {
        float: none;
        width: 100%;
    }
    .pt-Heading1 span {
        font-size: 1.2rem !important;
    }
    .upload-icon img {
        width: 50px;
    }
    .form-check-inline {
        margin-right: 0.6rem;
    }
    .orange-box img{
        width:50px;
    }
    .green-box img {
        width: 50px;
    }
    .orange-box h3 {
        font-size:0.9rem ;
    }
    .green-box h3 {
        font-size:  0.9rem  ;
    }
    .orange-box h4 {
        font-size:  0.8rem  ;
    }

    .green-box h4 {
        font-size: 0.8rem + .6vw ;
    }
    .main-content h1 {
        color: #fff;
        font-size: 1.2rem;

    }
    h1 {
        
        font-size: 1.2rem;
    }
    .study-girl {
        margin-top: 20px;
    }
    .header {
        /*background-color: #ff0000;*/
        padding: 0px 0 112px;
    }
    .headingdiv {
        margin-top: 100px;
    }
    .pt-Title span {
        font-size: 1.3rem !important;
        font-weight: bold !important;
    }
    #contentloading h3 {
        font-size: 1.1rem;
    }
    .store-buttons img {
        height: 50px;
        margin-top: 5px;
        margin-right: 0px;
    }
    .main-content h1 {
        padding-left: 35px;
    }
    .img-fluid {
        margin-top: 35px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .main-content {
        padding: 10px;
    }
    .forminput {
        width: 100% !important;
        min-height: 43px;
    }
    .pt-Heading1 span {
        font-size: 1.2rem !important;
    }
    .orange-box img {
        width: 50px;
    }

    .green-box img {
        width: 50px;
    }

    .orange-box h3 {
        font-size: 0.9rem;
    }

    .green-box h3 {
        font-size: 0.9rem;
    }

    .orange-box h4 {
        font-size: 0.8rem;
    }

    .green-box h4 {
        font-size: 0.8rem + .6vw;
    }

}
@media (max-width: 575.98px) {
    nav.sidebar-nav {
        display: none;
    }

    .study-girl {
        margin-top: 0;
    }

    .main-content {
        margin-top: -217px;
        padding: 0 0 0 0;
        text-align: center;
    }

    .header {
        /*background-color: #ff0000;*/
        /*        padding: 0px 0 181px;*/
        padding: 0px 0 60px;
    }

    .burg-menu {
        display: block;
        padding-left: 20px;
        padding-top: 18px;
        position: relative;
        z-index: 999;
    }
        .burg-menu span{
            float: right;
            margin-right: 17px;
            margin-top: -123px;
        }
        .top-footer {
        background-color: #3a5898;
        color: white;
        text-align: center;
        padding: 40px 0;
    }
    .heading h1 {
        font-size: 1.3rem;
    }
   /* .img-fluid {
        max-height: 135px; 
        position: absolute;
        top: 105px;
        right: 15px;
    }*/
    /*.img-fluid {
        margin-top: 20px;
    }*/
    .headingdiv {
        margin-top: 133px;
    }
    .store-buttons img {
        height: 45px;
        margin-top: 5px;
        margin-right: 0px;
    }
}
@media (max-width: 379px){
    .logos{
        height:85px;
    }
    .imgapp {
        width: 110px;
    }
    .headingdiv {
        margin-top: 120px;
    }
    .header {
        background-color: #465d9c;
        padding: 0px 0 60px;
    }
   /* .img-fluid {
        margin-top: -5px;
        right: 0px;
    }*/
}
@media (max-width: 322px) {
    .logos {
        height: 65px;
    }

    .imgapp {
        width: 100px;
    }
    .burg-menu span {
        float: right;
        margin-right: 17px;
        margin-top: -35px;
    }
    .headingdiv {
        margin-top: 140px;
    }

    .header {
        background-color: #465d9c;
        padding: 0px 0 150px;
    }
    .img-fluid {
        margin-top: 0px;
    }
}
@media (min-width: 992px) and (max-width: 1024px) {
    .headingdiv {
        margin-top: 27px;
    }

    .study-girl {
        margin-top: 0px !important;
    }
    .img-fluid {
        margin-top: 0px;
    }
}
.container p {
    line-height: 30px;
}
.h1headerclass h1 {
    padding-left: 0px !important;
}
.imagestyle .active {
    border: 3px solid #3a5898;
}
@media (max-width: 320px) {
    .logos {
        height: 67px;
    }

    .headingdiv {
        margin-top: 100px;
    }

    .store-buttons img {
        height: 39px;
        margin-top: 5px;
        margin-right: 0px;
    }

    .img-fluid {
        margin-top: 0px;
        width: 190px;
    }
    .burg-menu span {
        float: right;
        margin-right: 17px;
        margin-top: -85px;
    }
    .header {
        background-color: #465d9c;
        padding: 0px 0 100px;
    }
 
     
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.correct-answer {
    background-color: #d4edda !important;
    border-color: #28a745 !important;
    color: #155724 !important;
    font-weight: bold;
    animation: blink 1s infinite;
}

.wrong-answer {
    background-color: #f8d7da !important;
    border-color: #dc3545 !important;
    color: #721c24 !important;
    font-weight: bold;
    animation: blink 1s infinite;
}
.redColorTxt{
    color:red;
}
.carousel-control-next-icon {
   background-color: #ff0000;
}

.carousel-control-prev-icon {
    background-color: #ff0000;
}
.breadcrumb-container {
   /* background-color: #f8f9fa;*/
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    overflow-x: auto; 
    overflow-y: hidden;  
    white-space: nowrap;  
    -webkit-overflow-scrolling: touch;  
    display: block;
}

    
    .breadcrumb-container::-webkit-scrollbar {
        display: none;
    }

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important; 
    min-width: max-content;  
}

.breadcrumb-item {
    flex: 0 0 auto;  
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: var(--dark-orange);
        margin: 0 8px;
    }

.breadcrumb a {
    text-decoration: underline;
    font-weight: 500;
}

.breadcrumb-item:nth-child(odd) a {
    color: var(--dark-orange);
}

.breadcrumb-item:nth-child(even) a {
    color: var(--dark-blue);
}

.breadcrumb a:hover {
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb-item.active {
    color: #000;
    font-weight: 500;
}

@media (max-width: 576px) {
    .breadcrumb-container {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 5px;
    }
}
.robot-container {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite;
    z-index: 1000;
}

    .robot-container img {
        width: 90%;
        height: 560px;
    }
/* Floating movement */
@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

.hidden {
    display: none;
}
@media (max-width: 575.98px) {
    .robot-container img {
        width: 100%;
        height: auto;
    }
}




 

