:root {
    --theme-color-1: #4969c3;
    --theme-color-2: #649cd8;
    --theme-color-3: #f6f6f6;
    --theme-border-color: #EAECF2;
    --theme-text-color: #5D666F;
    --theme-font: "Urbanist", sans-serif;
}

* {
    font-family: "Urbanist", sans-serif;
    transition: all 0.2s;
    color: var(--theme-text-color);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Urbanist", sans-serif;
}

section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

a {
    text-decoration: none !important;
}

.container-fluid {
    max-width: 1700px;
}

.animate-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll activated */
.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

/* Nav Bar */
.secondary-navbar {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--theme-border-color);
    margin-bottom: 90px;
}

.secondary-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    z-index: -1;
    transform: skew(-20deg);
}

.menutext {
    color: #fff;
}

html[lang="ta"] .menutext {
    font-size: 14px;
    line-height: 1.6;
}


@media (max-width: 991px) {
    .navbar-custom .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .sub-navbar .nav {
        flex-direction: column;
        align-items: center;
    }

    .sub-navbar .nav-link {
        padding: 0.5rem 0;
    }
}

/* Main Navbar */
.header-navigation .navbar-custom {
    background-color: rgb(255, 255, 255);
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1050;
    top: 41px;
    box-shadow: 0 15px 40px 0 rgba(13.000000000000004, 24.000000000000004, 53, .050980392156862744);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    top: 0;
}

a.button-link {
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.menutext a.button-link {
    color: inherit;
}

.button-link i {
    line-height: normal;
    font-size: 18px;
    transition: all 0.5s;
    color: inherit;
}

.button-link:hover i {
    transform: translateX(5px);
}

.button-link {
    color: var(--theme-color-1);
    font-weight: 700;
}

.button-link:hover {
    color: var(--theme-color-2);
}

ul.sub-menu-ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

li.sub-menu-list {
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

li.sub-menu-list.submenu-list-border {
    position: relative;
    padding-right: 10px;
}

li.sub-menu-list.submenu-list-border::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 42px;
    background: var(--theme-border-color);
    right: 0;
    top: -10px;
    transform: skew(-10deg);
    z-index: -1;
}

a.header-social-media-items {
    color: #000;
    font-size: 16px;
    margin-left: 10px;
}

a.header-social-media-items:hover {
    color: var(--theme-color-1);
}

a.header-social-media-items i {
    color: inherit;
}

.main-logo {
    width: 120px;
    height: auto;
}

.nav-contact-icon {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.nav-contact-icon span {
    color: inherit;
}

.nav-contact-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ncc-title {
    font-size: 14px;
}

a.ncc-number {
    font-size: 20px;
    color: var(--theme-color-1);
    font-weight: 600;
}

.btn-button {
    display: inline-flex;
    gap: 5px;
    color: #fff;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 2rem;
    transition: all 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none !important;
    box-shadow: None !important;
    justify-content: center;
}

.btn-button::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #000;
    z-index: -1;
    transition: all 0.5s;
    border-radius: 2rem;
}

.btn-button:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.btn-white {
    color: var(--theme-color-1);
    background: #fff;
}

.btn-white:hover {
    background-color: var(--theme-color-1);
    color: #fff;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-right: 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color-2) !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

li.nav-item.dropdown ul.dropdown-menu {
    border: none;
    margin: 0;
    border-radius: 0 0 15px 15px;
    border-top: 3px solid var(--theme-color-1);
    padding: 0;
    overflow: hidden;
}

li.nav-item.dropdown ul.dropdown-menu a.dropdown-item {
    padding: 10px 20px;
}

li.nav-item.dropdown ul.dropdown-menu a.dropdown-item.active,
li.nav-item.dropdown ul.dropdown-menu a.dropdown-item:focus {
    background-color: var(--theme-color-2);
    color: #fff;
}

/* Banner */
section.hero-section {
    padding: 0;
}

.hero-section img {
    height: 820px;
    object-fit: cover;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 50%;
    z-index: 1;
}

.hero-section .carousel-caption h2.banner-title {
    font-size: 85px;
    font-weight: 300;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 20px;
    display: block;
}

.hero-section .carousel-caption h2.banner-title span.big-text {
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    background-clip: text;
}

.hero-section .carousel-caption p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    color: #4e4e4e;
    width: 80%;
}

h5.banner-sub-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--theme-color-1);
}

section.hero-section .carousel-control-next-icon,
section.hero-section .carousel-control-prev-icon {
    background-color: #f6f6f661;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-size: 40px;
    position: absolute;
    bottom: 120px;
}

button.carousel-control-prev {
    position: absolute;
    left: auto;
    right: 200px;
}

/* Banner Animation */
.hero-anim-item {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s cubic-bezier(.2, .9, .2, 1), opacity 0.8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
}

.hero-anim-show {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-anim-up {
    transform: translateY(100px);
}

.hero-anim-down {
    transform: translateY(-100px);
}

.hero-anim-left {
    transform: translateX(-100px);
}

.hero-anim-right {
    transform: translateX(100px);
}

.hero-anim-show.hero-anim-up,
.hero-anim-show.hero-anim-down,
.hero-anim-show.hero-anim-left,
.hero-anim-show.hero-anim-right {
    transform: translate(0, 0);
}

.carousel-item::after {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(255 255 255 / 92%) 31.2%, rgba(0, 9, 41, 0) 65.89%);
}

.carousel-item {
    position: relative;
    z-index: 1;
}


/* footer */
h3.footer-heading {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 1em;
    color: #fff;
}

footer.footer p,
footer.footer a,
footer.footer {
    color: #fff;
}

h3.footer-heading span.big-text {
    font-weight: 700;
    font-family: inherit;
    color: transparent;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    background-clip: text;
    display: block;
}

h4.footer-heading {
    color: transparent;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

h4.footer-heading::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

ul.footer-links,
ul.footer-contact-info {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.footer-links li {
    font-weight: 400;
    position: relative;
    list-style: none;
    color: #5D666F;
}

ul.footer-links li a {
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 11px;
    gap: 10px;
    font-size: 16px;
}

ul.footer-links li a:hover {
    color: var(--theme-color-2);
}

ul.footer-links li a span {
    color: inherit;
    font-size: 18px;
    line-height: inherit;
}

ul.footer-contact-info li {
    display: flex;
    margin-bottom: 20px;
    align-items: self-start;
    justify-content: start;
    gap: 10px;
}

span.footer-contact-icon {
    background-color: #fff;
    box-shadow: 0px 9px 18px 0px rgba(24, 16.000000000000004, 16.000000000000004, 0.050980392156862744);
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    color: var(--theme-color-2);
}

.footer-contact-text {
    flex: 1;
}

.footer-con-title {
    font-size: 15px;
    margin-bottom: 5px;
    color: #9b9b9b;
}

.footer-con-link {
    color: #fff;
    font-weight: 600;
}

.footer-con-link:hover {
    color: var(--theme-color-2);
}

footer.footer.footer-main {
    background-color: #0d003b;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: 1;
}

footer.footer-secondary {
    padding: 20px;
    background-color: #0d0526;
}

.footer-bottom-text p,
.footer-bottom-text {
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}


/* --------------------------------------------- */

h5.sub-title {
    color: var(--theme-color-1);
    font-weight: 700;
}

h2.title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.highlight {
    color: transparent;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    background-clip: text;
    font-size: inherit;
    font-weight: inherit;
}

section.course-section {
    /* background-color: #f9f9f9; */
    background-image: url(../images/bg/bg-blur.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

section.course-section::before {
    contain: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

/* =========================
   GLASS COURSE CARD
========================= */

.course-card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    transition: all 0.35s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* =========================
   IMAGE AREA
========================= */

.course-img {
    position: relative;
    overflow: hidden;
}

.course-thumb {
    width: 100%;
    height: 225px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-thumb {
    transform: scale(1.05);
}

/* =========================
   IMAGE SHINE EFFECT
========================= */

.course-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
}

.course-card:hover .course-img::after {
    animation: imageShine 0.9s ease forwards;
}

@keyframes imageShine {
    0% {
        left: -120%;
    }

    100% {
        left: 130%;
    }
}

.course-body {
    padding: 22px;
    text-align: center;
}

.course-body .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-color-1);
}

.course-text {
    font-size: 14px;
    color: var(--theme-text-color);
    line-height: 1.6;
    margin-bottom: 18px;
}



.success-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 320px;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.3); */
}

.success-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.success-overlay h4 {
    font-size: 20px;
    font-weight: 600;
}

.success-overlay .shop-name {
    color: #ffd54f;
    font-size: 15px;
}

.success-overlay .location {
    font-size: 14px;
    font-weight: 500;
    color: rgb(255 46 46);
}

.success-overlay .location i {
    color: inherit;
}

.student-review-section {
    background: #0d003b;
}

/* slider spacing */
.review-slider {
    margin: 0 -12px;
}

.review-item {
    padding: 12px;
}

/* iframe card */
.review-item iframe {
    width: 100%;
    height: 440px;
    border-radius: 20px;
    border: none;
    background: #000;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* arrows */
section .slick-prev,
section .slick-next {
    width: 44px;
    height: 44px;
    z-index: 10;
}

.review-slider .slick-prev:before,
.review-slider .slick-next:before {
    font-size: 42px;
    color: #fff;
}

.text-white h2.title {
    color: #fff;
}

.student-review-section .slick-dots li button:before {
    color: #fff !important;
}

img.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.enquiry-form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.enquiry-form-card .form-label {
    font-size: 14px;
    margin-bottom: 6px;
}

.enquiry-form-card .form-control {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}

.enquiry-form-card .form-control:focus {
    box-shadow: 0 0 0 1px var(--theme-color-2);
}

/* submit button */
.btn-submit {
    padding: 12px;
    border-radius: 30px;
    border: none;

    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.5);
}

.contact-info-wrap {
    margin-top: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    flex-shrink: 0;
}

.contact-content h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-content p {
    font-size: 23px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    color: #000;
}

.contact-content a {
    color: inherit;
    text-decoration: none;
}

.contact-content a:hover {
    color: #0072ff;
}

/* Social Media */

i {
    color: inherit;
}

.contact-social {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.contact-social .social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;
    text-decoration: none;

    transition: all 0.35s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Facebook */
.contact-social .facebook {
    background: #1877f2;
}

.contact-social .instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* YouTube */
.contact-social .youtube {
    background: #ff0000;
}

/* WhatsApp */
.contact-social .whatsapp {
    background: #25d366;
}

/* Hover Effects */
.contact-social .social:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

img.ecp-shape-img {
    position: absolute;
    width: auto;
    z-index: -1;
}

img.ecp-shape-img.shape-1 {
    bottom: 30px;
    left: 30px;
    animation: rotation 15s infinite linear;
}

img.ecp-shape-img.shape-2 {
    top: 40px;
    right: 40px;
    animation: rotation 15s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

img.ecp-shape-img.shape-3 {
    right: 0;
    bottom: 0;

}

img.ecp-shape-img.shape-4 {
    top: 0;
    left: 0;
}

.map-wrap {
    margin-top: 20px;
    border-radius: 1rem;
    overflow: hidden;
}

strong {
    color: inherit;
}


.modal-content.glass-modal {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.modal-image {
    position: relative;
    height: 100%;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.image-overlay h3 {
    font-size: 22px;
    font-weight: 600;
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: #fff;
    border-radius: 50%;
}

.modal-content.glass-modal h4 {
    color: #fff;
}

.modal-content.glass-modal .form-label {
    color: #fff;
}

button.btn-close.custom-close {
    background-color: #ffffff;
    border: none !important;
    box-shadow: none !important;
}

.lang-switcher {
    display: flex;
    gap: 6px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
}

.lang-btn.active {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
}

html[lang="ta"] .hero-section .carousel-caption h2.banner-title {
    font-size: 70px;
}

html[lang="ta"] h2.title {
    font-size: 34px;
}

html[lang="ta"] h3.footer-heading {
    font-size: 24px;
}

html[lang="ta"] .footer-bottom-text p,
html[lang="ta"] .footer-bottom-text {
    font-size: 12px;
}

section.gallery-section a.lightbox {
    height: 100%;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    z-index: 9999;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 65px;
    background: #25d366;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

.img-wrap {
    height: 100%;
}

section.subjects-section {
    /* background-image: url(../images/bg/bg-section.jpg); */
    background-position: center center;
    background-size: contain;
    background-repeat: repeat;
    background-color: #b6dbff;
}

.subject-card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
    padding: 20px;
}

.subject-body h6 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.subject-body {
    width: 100%;
    min-height: 180px;
    background-color: #00ff66;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    height: 100%;
    flex-direction: column;
    color: #000;
}

.subject-body.box-2 {
    background-color: #ff8585;
}

.subject-body.box-3 {
    background-color: #a7a7ff;
}

.subject-body.box-4 {
    background-color: #ffff79;
}

.subject-body i {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 15px;
}

.subject-content p {
    color: #222222;
}

.course-subject-card {
    margin: 10px;
    cursor: grab;
}

h6.sub-title {
    font-weight: 500;
    font-size: 12px;
    color: #333;
}

.course-sub {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    position: relative;
}

img.course-img-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 10px;
}

.course-heading {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    width: 50%;
    text-align: center;
    padding: 12px 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.course-card.flex-card .course-img img.course-thumb {
    height: 350px;
}

span.badge-title {
    background: #00adff7a;
    position: absolute;
    font-size: 8px;
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    left: 0;
    top: 70px;
}

img.tools-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 12px;
}

.tools-name-card {
    display: grid;
    justify-content: center;
    text-align: center;
}

.tool-title {
    font-weight: 600;
    font-size: 12px;
    color: #333;
}

.course-head {
    padding: 10px;
    text-align: center;
}

h4.title {
    font-size: 18px;
    font-weight: 800;
    color: #000000;
}

html[lang="ta"] .course-body .title, html[lang="ta"] h4.title  {
    font-size: 12px;
}