.icon-mission, .icon-vision {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 8px;
    animation: icon-bounce 1.4s infinite cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-12px) scale(1.08); }
    70% { transform: translateY(0) scale(0.98); }
}
/* Global Animated Bubbles for all pages */
.global-bubbles {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.g-bubble {
    position: absolute;
    bottom: -60px;
    background: rgba(26,170,195,0.13);
    border-radius: 50%;
    opacity: 0.7;
    animation: g-bubble-move 12s infinite linear;
}
.g-bubble:nth-child(1) {
    left: 10vw;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 13s;
}
.g-bubble:nth-child(2) {
    left: 30vw;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
    animation-duration: 11s;
}
.g-bubble:nth-child(3) {
    left: 50vw;
    width: 80px;
    height: 80px;
    animation-delay: 4s;
    animation-duration: 15s;
}
.g-bubble:nth-child(4) {
    left: 70vw;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
    animation-duration: 12s;
}
.g-bubble:nth-child(5) {
    left: 85vw;
    width: 30px;
    height: 30px;
    animation-delay: 3s;
    animation-duration: 10s;
}
.g-bubble:nth-child(6) {
    left: 20vw;
    width: 70px;
    height: 70px;
    animation-delay: 6s;
    animation-duration: 14s;
}
.g-bubble:nth-child(7) {
    left: 60vw;
    width: 35px;
    height: 35px;
    animation-delay: 5s;
    animation-duration: 12s;
}
.g-bubble:nth-child(8) {
    left: 80vw;
    width: 55px;
    height: 55px;
    animation-delay: 7s;
    animation-duration: 13s;
}
@keyframes g-bubble-move {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-110vh) scale(1.2);
        opacity: 0;
    }
}
/* .orbit-dots {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}
.dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #1aaac3;
    border-radius: 50%;
    opacity: 0.8;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -7px;
    animation: orbit 1.8s linear infinite;
}
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
.dot:nth-child(4) { animation-delay: 0.9s; }
.dot:nth-child(5) { animation-delay: 1.2s; }
.dot:nth-child(6) { animation-delay: 1.5s; }
@keyframes orbit {
    0% { transform: rotate(0deg) translateX(48px) rotate(0deg); opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: rotate(360deg) translateX(48px) rotate(-360deg); opacity: 0.2; }
} */

/* Educational Preloader Redesign */
#preloader.edu-preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 99999999999999;
    overflow: hidden;
    background: #203444;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1.5s ease-out;
}
.pulse-preloader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pulse-preloader .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: rgba(26,170,195,0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 1.4s infinite cubic-bezier(.66,0,0,1);
    z-index: 1;
}
.pulse-preloader .pulse-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 24px 0 #1aaac3, 0 0 0 4px #203444;
    z-index: 2;
}
.pulse-preloader .edu-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    margin-top: 18px;
    letter-spacing: 1px;
    z-index: 2;
}
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    60% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.edu-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.edu-animation .preloader-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 8px;
    box-shadow: 0 0 32px 0 #1aaac3, 0 0 64px 0 #fff2, 0 0 0 8px #203444;
    border-radius: 50%;
    background: #fff;
}
.spin-logo {
    animation: spin 1.2s linear infinite;
}
.spin-glow {
    animation: glow 1.6s ease-in-out infinite alternate;
}
.edu-animation .edu-text {
    font-size: 1.3rem;
    color: #203444;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 1px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes glow {
    0% { box-shadow: 0 0 32px 0 #1aaac3, 0 0 64px 0 #fff2, 0 0 0 8px #203444; }
    100% { box-shadow: 0 0 48px 8px #1aaac3, 0 0 96px 16px #fff4, 0 0 0 12px #203444; }
}

       @-webkit-keyframes heartBeat {
           0% {
               -webkit-transform: scale(1);
               transform: scale(1)
           }

           14% {
               -webkit-transform: scale(1.3);
               transform: scale(1.3)
           }

           28% {
               -webkit-transform: scale(1);
               transform: scale(1)
           }

           42% {
               -webkit-transform: scale(1.3);
               transform: scale(1.3)
           }

           70% {
               -webkit-transform: scale(1);
               transform: scale(1)
           }
       }


       /* width */
       ::-webkit-scrollbar {
           width: 9px;
       }

       /* Track */
       ::-webkit-scrollbar-track {
           background: #f1f1f1;
           border-bottom-left-radius: 12px;
       }

       /* Handle */
       ::-webkit-scrollbar-thumb {
           background: #888;
           border-bottom-left-radius: 12px;

       }

       /* Handle on hover */
       ::-webkit-scrollbar-thumb:hover {
           background: #555;
       }

       #searchResult {
           top: 102%;
           left: 0;
           right: 0;
           z-index: 999;
           background: #fff;
           border: 1px solid #ddd;
           max-height: 300px;
           overflow-y: auto;
           border-radius: 12px;
       }

       #searchResult ul {
           list-style: none;
           padding: 0;
           margin: 0;
       }

       #searchResult ul li {
           border-bottom: 1px solid #ddd;
       }

       #searchResult ul li a {
           display: block;
           padding: 10px;
           color: #000;
           text-decoration: none;
       }

       #searchResult ul li:hover {
           background: #f1f1f1;
       }


       /* navbar submenu styling */
       .navbar .navbar-nav .nav-item {
           position: relative;
           padding-bottom: 15px;
       }

       .navbar .navbar-nav .nav-item .subMenu {
           display: none;
           opacity: 0;
           position: absolute;
           top: 100%;
           list-style: none;
           background: #fff;
           box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
           border-radius: 12px;
           z-index: 999;
           width: 500px;
           max-width: 500px !important;
           padding: 35px;
           /* transition: all .5s ease-in-out; */
       }

       .navbar .navbar-nav .nav-item .subMenu li {
           display: block;
           max-width: fit-content;
           padding: 0;
       }

       .navbar .navbar-nav .nav-item .subMenu li a {
           display: block;
           padding: 5px;
           color: #000;
           text-decoration: none;
           text-align: right;
           transition: all .3s ease-in-out;
       }

       .navbar .navbar-nav .nav-item .subMenu li:hover a {
           transform: translateX(-5px);
       }

       .navbar .navbar-nav .nav-item:hover .subMenu {
           display: block;
           opacity: 1;
           right: 0;
           left: 0;
           transition: all .5s ease-in-out;

       }

       .navbar .navbar-nav .nav-item .subMenu .row div {
           min-width: fit-content !important;
       }

       .navbar .navbar-nav .nav-item .subMenu .row div span {
           text-decoration: underline;
       }

       /* navbar submenu styling */




       /* News Card Style */

       .news-card {
           position: relative;
       }

       .news-card .card-category {
           position: absolute;
           top: 8px;
           right: 10px;
           background: #67328f;
           color: #fff;
           padding: 5px 10px;
           font-size: 1rem;
           border: 1px solid #fff;

       }

       .news-card .card-category:hover {
           background: #fff;
           color: #67328f;
           border: 1px solid #67328f;
       }


       /* Course Details Responsive */
       .c_page_courseDetails .c_info .c_right .c_tafsell {
           flex-wrap: wrap;
       }

       .c_page_courseDetails .c_info .c_left .c_box_subscribe .c_btn_subscribe {
           height: max-content;
       }





       .sales .slick-track .slick-slide {
           box-shadow: 0 0 10px rgba(0, 0, 0, .1);
           border-radius: 12px;
           padding: 10px 0;
       }

       .sales .slick-track .slick-slide img {
           width: 100%;
           height: 180px;
           object-fit: cover;
       }



       /* ================== News Card ================== */
       .news-card {
           min-height: 150px;
           overflow: hidden;
           position: relative;
           border-radius: 20px;
           box-shadow: 0 0 6px #80808059;
           margin: 10px;
           height: 175px !important;
           transition: 0.5s;
       }

       .news-card a {
           text-decoration: none;
           max-width: fit-content;
           display: block;
           width: 180px !important;
           overflow: hidden;

       }

       .news-card .c_image {
           width: 100% !important;
           height: 100%;
       }

       .news-card .c_post {
           padding: 15px;
           width: 100% !important;
       }


       .news-card .c_image img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: 0.5s;
       }

       .news-card:hover .c_image img {
           transform: scale(1.1) rotate(10deg);
       }

       .news-card .c_buttn a {
           min-width: fit-content;
       }

       .news-card.c_item .c_post .c_body h3 {
           font-size: 1.2rem !important;
       }

       .c_page_news .c_item .c_post .c_body p {
           /* cut the text if it be more than 2 lines */
           display: -webkit-box !important;
           -webkit-line-clamp: 3 !important;
           -webkit-box-orient: vertical !important;
           overflow: hidden !important;
           text-overflow: ellipsis !important;
       }

       .c_page_news .c_item .c_post .c_body h3 {
           /* cut the text if it be more than 2 lines */
           display: -webkit-box !important;
           -webkit-line-clamp: 1 !important;
           -webkit-box-orient: vertical !important;
           overflow: hidden !important;
           text-overflow: ellipsis !important;
       }




       @media only screen and (max-width: 768px) {

           /* For mobile phones: */
           .c_page_courseDetails .c_info .c_right,
           .c_page_courseDetails .c_info .c_left,
           .c_page_courseDetails .c_info2 .c_left,
           .c_page_courseDetails .c_info2 .c_right {
               width: 100% !important;
               margin: auto;
               padding: 0 9px;
           }

           .sales .slick-track .slick-slide {
               overflow: hidden;
           }

           .sales .slick-track .slick-slide img {
               height: 150px;
               object-fit: contain;
           }


           /*  News Card */
           /* .news-card a {
               width: 100%;
           } */
       }
