:root {
    --indigo: #5B52FF;
    --indigo-700: #4941e7;
    --indigo-900: #2d2a6b;
    --purple: #7e77ff;
    --orange: #FFA64D;
    --orange-600: #ff8e1f;
    --blue-50: #f4f7ff;
    --text: #0b1020;
    --muted: #6b7280;
    --card: #ffffff;
    --shadow: 0 10px 25px rgba(18, 25, 40, .08);
    --shadow-hover: 0 15px 35px rgba(18, 25, 40, .15);
    --radius: 16px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    font-weight: 300;
}
.aboutblock-section .content p {
    font-size: 18px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1,  h2, h3, h4, h5, h6 {
    color: #292929;
}
h2 {
    color: #292929;
    line-height: 1.25;
    font-size: 38px;
    font-weight: 400;
    text-transform: none;
    margin: 0px;
}
/* Container */
.container {
    width: min(1160px, 92vw);
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-decoration: none;
    font-weight: 300;
    margin-top: 18px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--orange-600);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--indigo);
}

/* NAV */
.nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff;
}

.brand-badge {
    background: #fff;
    color: var(--indigo);
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 10px;
}

.menu {
    display: flex;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu a {
    color: #eef;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.menu a:hover {
    color: #fff;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.cta-nav {
    background: #fff;
    color: var(--indigo);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--indigo) 0%, var(--purple) 100%);
}

.hero .waves {
    position: absolute;
    inset: auto 0 -2px 0;
    height: 180px;
}

.hero .decor-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #ffe0b9, #ffb65a);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

.hero .decor-dot.dot1 {
    top: 86px;
    left: 5%;
    animation-delay: 0s;
}

.hero .decor-dot.dot2 {
    top: 500px;
    left: 14%;
    animation-delay: 1s;
    width: 140px;
    height: 140px;
}

.hero .decor-dot.dot3 {
    top: 600px;
    right: 18%;
    animation-delay: 2s;
    width: 100px;
    height: 100px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 100px 0 90px;
}

.headline {
    color: #fff;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .8;
}

.h1 {
    font-size: 40px;
    line-height: 1.15;
    margin: 8px 0 14px;
    font-weight: 300;
}

.lead {
    color: #e7e8ff;
    max-width: 560px;
    font-size: 18px;
}

.hero-illustration {
    position: relative;
}

.device {
    width: min(420px, 86%);
    margin-inline: auto;
    filter: drop-shadow(0 30px 40px rgba(15, 22, 36, .25));
    transition: var(--transition);
}

.device:hover {
    transform: translateY(-5px);
}

/* FEATURE SQUARES ROW */
.features {
    padding: 60px 0 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fcard {
    background: var(--card);
    border-radius: 18px;
    padding: 26px;
    min-height: 122px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.fcard:before {
    content: "";
    position: absolute;
    inset: -40% -40% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: .18;
    transition: var(--transition);
}

.fcard:hover:before {
    transform: scale(1.1);
}

.fcard.orange:before {
    background: linear-gradient(135deg, #ffd39c, #ffa650);
}

.fcard.indigo:before {
    background: linear-gradient(135deg, #a7a3ff, #5b52ff);
}

.f-title {
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.f-desc {
    font-size: 13px;
    color: var(--muted);
    position: relative;
    z-index: 2;
}

/* SECTION heading duo */
.section {
    padding: 60px 0;
}

.section.center {
    text-align: center;
}

.section .sub {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #9aa1ff;
}

.section h2 {
    font-size: 32px;
    margin: 8px 0 10px;
    font-weight: 800;
}

.section p {
    color: #606a86;
    max-width: 700px;
    margin: 0 auto;
}

/* categories */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.cat {
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cat.indigo {
    background: linear-gradient(180deg, #6d65ff, #4d45ff);
}

.cat.orange {
    background: linear-gradient(180deg, #ffb466, #ff8a1a);
}

.cat small {
    display: block;
    opacity: .9;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 8px;
}

/* metrics */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px;
    background: var(--blue-50);
    border-radius: 14px;
    transition: var(--transition);
}

.metric:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.metric .num {
    font-size: 32px;
    font-weight: 800;
    color: #4d45ff;
}

.metric .lbl {
    font-size: 14px;
    color: var(--muted);
}

/* course grid */
.courses {
    padding: 20px 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card .thumb {
    aspect-ratio: 16/9;
    background: #e7e9ff center/cover no-repeat;
    transition: var(--transition);
}

.card:hover .thumb {
    transform: scale(1.05);
}

.card .content {
    padding: 20px;
}

.tag {
    display: inline-block;
    background: #eef;
    color: #4d45ff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

.title {
    margin: 14px 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.meta {
    display: flex;
    gap: 18px;
    font-size: 16px;
    color: var(--muted);
    margin-top: 10px;
}

/* experience */
.experience {
    padding: 60px 0;
}

.exp-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.exp-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background: #f0f2ff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.exp-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.exp-img:hover img {
    transform: scale(1.05);
}

.exp-bullet {
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.exp-bullet:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--indigo);
    font-weight: bold;
    font-size: 18px;
}

.exp-bullet h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.exp-bullet p {
    margin: 0;
    color: #606a86;
}

/* events */
.events {
    padding: 20px 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.event .thumb {
    aspect-ratio: 4/3;
    background: #e9f0ff center/cover no-repeat;
    transition: var(--transition);
}

.event:hover .thumb {
    transform: scale(1.05);
}

.event .content {
    padding: 20px;
}

/* testimonial */
.testimonial {
    padding: 60px 0;
}

.bubble {
    position: relative;
    background: #fff3e2;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}

.bubble .circle {
    flex: 0 0 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe4bd, #ffb466);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #7a4c00;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}

.bubble .text {
    color: #654d2d;
    font-style: italic;
}

.bubble .text p {
    margin-bottom: 10px;
}

.bubble .text div {
    font-weight: 700;
    color: #333;
}

/* CTA */
.cta {
    padding: 10px 0 60px;
}

.cta-inner {
    background: linear-gradient(90deg, #4d45ff, #7e77ff);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.cta-inner strong {
    font-size: 20px;
}

/* footer */
footer {
    background: #f9faff;
    padding: 60px 0;
    border-top: 1px solid #eef1ff;
}

.fcols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.fcol h4 {
    margin: 0 0 15px;
    font-size: 16px;
    color: var(--indigo-900);
}

.fcol a {
    display: block;
    color: #69708d;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: var(--transition);
}

.fcol a:hover {
    color: var(--indigo);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #eef1ff;
    border-radius: 50%;
    color: var(--indigo);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--indigo);
    color: #fff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .device {
        margin-top: 30px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-wrap {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .h1 {
        font-size: 36px;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .bubble {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {

    .grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .categories {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .fcols {
        grid-template-columns: 1fr;
    }
}

.Waves {
    background-image: url(../images/bg-slider-3.png);
    height: 305px;
    background-size: cover;
    background-position: center;
    margin-top: -80px;
}

/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding: 0;
    height: 100px;
    border: none;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.navbar .container {
    border: none;
}

.nav-scroll .container {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #fff;
}

.navbar .navbar-nav .nav-link {
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    margin: 1px;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
}

.navbar .navbar-nav .nav-link.nav-color {
    color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
    color: #f8c76c;
}

.navbar .navbar-nav .nav-link:hover i {
    color: #f8c76c;
}

.navbar .navbar-nav .active {
    color: #f8c76c !important;
}

.navbar .navbar-nav .active i {
    color: #f8c76c;
}

.nav-scroll {
    background: #554df1;
    padding: 0;
    position: fixed;
    top: -85px;
    left: 0;
    width: 100%;
    transition: transform .5s;
    transform: translateY(85px);
    border: none;
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    height: 85px;
}

.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #101010;
}

.nav-scroll .navbar-nav .nav-link {
    color: #ffffff;
}

.nav-scroll .navbar-nav .active {
    color: #f8c76c;
}

.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}

.nav-scroll .logo-img {
    width: 150px;
    margin-bottom: 0px;
}

.nav-scroll .logo-wrapper .logo h2 {
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
}

.nav-scroll .logo-wrapper .logo span {
    color: #f8c76c;
}

.logo-wrapper {
    float: left;
}

.logo-wrapper .logo h2 {
    font-size: 30px;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.25em;
}

.logo-wrapper .logo h2 span {
    color: #f8c76c;
}

.logo {
    padding: 0;
}

.logo-img {
    width: 150px;
    text-align: center;
}

.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 9px;
    color: #fff;
}

.nav-scroll .dropdown .nav-link i {
    color: #ffffff;
}

.nav-scroll .navbar-nav .active i {
    color: #f8c76c;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 9px 0;
    /* font-family: "Barlow", sans-serif; */
    font-size: 14px;
    font-weight: 400;
    color: #101010;
    position: relative;
    background-color: transparent;
    transition: all .4s;
}

.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}

.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 9px;
    float: right;
    color: #727272;
}

.navbar .dropdown-menu .dropdown-item.active i {
    color: #f8c76c;
}

.navbar .dropdown-menu .dropdown:hover>.dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #f8c76c;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-menu {
    box-shadow: 0 16px 50px rgb(27 27 27 / 7%);
}

.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}

/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    transition: all 500ms ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}

.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/* navbar-right */
.navbar .navbar-right {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar .navbar-right .wrap {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    margin-left: 20px;
}

.navbar .navbar-right .wrap .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 17px;
    color: #fff;
    transition: all 500ms ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-scroll .navbar-right .wrap .icon {
    color: #fff;
}

.navbar .navbar-right .wrap .text {
    margin-left: 5px;
    top: 0;
    position: relative;
}

.navbar .navbar-right .wrap .text p {
    font-size: 12px;
    line-height: 11px;
    color: #fff;
    margin-bottom: 4px;
}

.navbar .navbar-right .wrap .text h5 {
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.navbar .navbar-right .wrap .text h5 a {
    color: #fff;
    transition: all 500ms ease;
}

.navbar .navbar-right .wrap .text h5 a:hover {
    color: #f8c76c;
}

.nav-scroll .navbar-right .wrap .text p,
.nav-scroll .navbar-right .wrap .text h5,
.nav-scroll .navbar-right .wrap .text h5 a {
    color: #fff;
}

/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        width: 200px;
        padding: 20px;
        border-radius: 15px;
        border: 0;
        background-color: #fff;
        transition: all .3s;
    }

    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -20px;
        right: auto;
        min-width: 200px;
        transform: translateY(0);
        background-color: #fff;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding: 0px;
        background: #ffffff;
        height: 125px;
        border: none;
    }

    .navbar .navbar-toggler-icon, .navbar .icon-bar {
        color: #000000;
    }
    .navbar-collapse {
        margin-top: -15px;
    }

    .nav-scroll {
        background: #fff;
    }

    .logo-wrapper {
        float: left;
        padding: 35px 15px;
    }

    .nav-scroll .logo-wrapper {
        padding: 34px 15px;
        background-color: transparent;
    }

    .nav-scroll .logo-img {
        width: 150px;
    }

    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }

    .logo-img {
        margin-bottom: 0px;
        width: 150px;
        padding: 0;
    }

    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }

    .navbar button:hover {
        background: transparent;
    }

    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar .nav-link {
        margin: 0px auto !important;
    }

    .navbar .navbar-nav .nav-link {
        color: #101010;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #101010 !important;
    }

    .nav-scroll .navbar-collapse .active {
        color: #f8c76c !important;
    }

    .navbar .dropdown-menu .dropdown-item {
        color: #101010;
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
    }

    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }

    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 10px;
    }

    .navbar .dropdown-submenu:hover>.dropdown-toggle::after {
        transform: rotate(0deg);
    }

    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }

    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
        box-shadow: none;
    }

    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }

    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar .navbar-nav {
        padding: 20px;
    }

    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #fff;
        text-align: left;
    }

    .dropdown .nav-link i {
        color: rgba(0, 0, 0, 0.5);
    }

    .nav-scroll .dropdown .nav-link i {
        color: rgba(0, 0, 0, 0.5);
    }

    .nav-scroll .dropdown .nav-link.active i {
        color: #f8c76c;
    }

    .navbar .dropdown-menu .dropdown-item i {
        color: #101010;
    }

    .navbar .navbar-right {
        display: none;
    }
}

:root {
    --stagger: 40px;
    /* how far the 2nd column is pushed down */
    --gap: 40px;
    /* space between cards/columns */
    --card-radius: 14px;
    --card-pad: 22px;
    --shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

/* Whole section: left cards + right content */
.section.aboutblock-section {
    display: grid;
    grid-template-columns: minmax(320px, 560px) 1fr;
    /* left cluster, right content */
    gap: clamp(24px, 4vw, 64px);
    max-width: 1200px;
    padding: 0px 20px 50px 20px;
    margin: auto;
    align-items: center;
}

/* LEFT cluster: two vertical columns of cards */
.aboutblock-section .cards-left {
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
    /* so we can nudge the 2nd column down */
}

.aboutblock-section .col {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    flex: 1 1 0;
    min-width: 0;
}

.aboutblock-section .col.col-2 {
    margin-top: var(--stagger);
}

/* the stagger */

/* CARD + hover background image reveal */
.aboutblock-section .card {
    min-height: 290px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 13px 15px 15px 0px rgba(105, 105, 105, 0.08);
    padding: 40px;
    border: none;
}

.aboutblock-section .card h4 {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.625;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.aboutblock-section .card p {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.375;
    color: #fff;
}

/* background image holder */
.aboutblock-section .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg, none) center/cover no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .35s ease, transform .35s ease;
    z-index: -1;
    pointer-events: none;
}

.aboutblock-section .card:hover::before {
    opacity: .28;
    /* slightly visible on hover */
    transform: scale(1.08);
}

/* solid color bases */
.aboutblock-section .theme-blue {
    background: #4d58b1;
}

.aboutblock-section .theme-amber {
    background: #f8c86e;
    color: #0b0b0b;
}

.aboutblock-section .theme-orange {
    background: #f8c86e;
    color: #0b0b0b;
}

.aboutblock-section .theme-navy {
    background: #4d58b1;
}

/* RIGHT content */
.aboutblock-section .content h5 {
    margin: 0 0 10px;
    color: #7c8594;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.aboutblock-section .content h2 {
    color: #292929;
    line-height: 1.25;
    font-size: 38px;
    font-weight: 400;
    text-transform: none;
    margin: 0px;
}

.aboutblock-section .content p {
    margin: 0;
    color: #424b57;
    line-height: 1.7
}

/* RESPONSIVE: stack everything on mobile */
@media (max-width: 900px) {
    .section.aboutblock-section {
        grid-template-columns: 1fr;
    }

    /* flatten two columns into one vertical list */
    .aboutblock-section .cards-left {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
    }

    .aboutblock-section .cards-left .col {
        display: contents;
    }

    /* lets the cards flow as one list */
    .aboutblock-section .col.col-2 {
        margin-top: 0;
    }

    /* remove stagger on mobile */
}

.headerline {
    height: 2px;
    width: 87px;
    background-color: #e1e1e1;
    margin: 20px 0 20px -20px;
}

.header-top-text {
    margin: 0 0 10px;
    color: #7c8594;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.course-slider .course-card {
    position: relative;
    background: linear-gradient(135deg, #546de5, #4834d4);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center content vertically */
    align-items: center;
    margin: 10px;
    /* add gap between cards */
    padding: 30px;
}

.course-slider .course-card:nth-child(odd) {
    background: linear-gradient(135deg, #546de5, #4834d4);
    /* blue */
}

.course-slider .course-card:nth-child(even) {
    background: linear-gradient(180deg, #ffb466, #ff8a1a);
    /* orange */
}

/* background image on hover */
.course-slider .course-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    z-index: 0;
}

.course-slider .course-card:hover::before {
    opacity: 0.3;
}

.course-slider .course-card h3,
.course-slider .course-card p {
    position: relative;
    z-index: 1;
    margin: 5px 0;
}

.course-slider .course-card h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.333333;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 6px;
}

.course-slider .course-card p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

/* custom arrows */
.slick-prev,
.slick-next {
    background: none;
    border: none;
    font-size: 28px;
    color: #000;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.slick-prev {
    left: 5px;
}

.slick-next {
    right: 5px;
}

.slick-prev:hover,
.slick-next:hover {
    color: #333;
}

/* responsive arrow adjustments */
@media (max-width: 992px) {
    .slick-prev {
        left: -10px;
    }

    .slick-next {
        right: -10px;
    }
}

@media (max-width: 576px) {

    .slick-prev,
    .slick-next {
        font-size: 22px;
    }

    .slick-prev {
        left: -5px;
    }

    .slick-next {
        right: -5px;
    }
}

.slick-prev::before,
.slick-next::before {
    content: none;
}


.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    font-weight: 300;
    color: #666;
    font-size: 14px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat h2 {
    font-size: 36px;
    margin: 0;
    color: #555;
    font-weight: 300;
}

.stats-container .divider {
    font-size: 36px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.courses .card {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 0px;
}


/* Wrapper with decorative shapes */
.image-wrapper {
    position: relative;
    display: inline-block;
}

/* Circle image container */
.image-circle {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Hover overlay */
.image-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(41, 72, 255, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.image-circle:hover::after {
    opacity: 1;
}

/* Sliding Read More */
.readmore-link {
    position: absolute;
    top: 50%;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
    transform: translateY(-50%);
}

.image-left .readmore-link {
    right: -30%;
}

.image-left:hover .readmore-link {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.image-right .readmore-link {
    left: 130%;
}

.image-right:hover .readmore-link {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape.big {
    width: 100px;
    height: 100px;
    background: #f7b733;
    top: -30px;
    left: -50px;
    opacity: 0.4;
}

.shape.small {
    width: 20px;
    height: 20px;
    background: #f7b733;
    bottom: 40px;
    right: -20px;
}

.shape.tiny {
    width: 10px;
    height: 10px;
    background: #ccc;
    bottom: 10px;
    left: 20px;
}

/* For the second block readmore link */
.second-block .readmore {
    position: absolute;
    bottom: 20px;
    left: -100%;
    /* Start hidden outside left */
    opacity: 0;
    transition: all 0.5s ease;
}

.second-block:hover .readmore {
    left: 20px;
    /* Slide inside */
    opacity: 1;
}

/* Second block override */
.second-block .image-circle .readmore-link {
    left: -30%;
    /* Start hidden on the left */
    right: auto;
    opacity: 0;
    transform: translateY(-50%);
}

.second-block .image-circle:hover .readmore-link {
    left: 50%;
    /* Slide in from left to center */
    transform: translate(-50%, -50%);
    opacity: 1;
}




.blog-section {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.blog-slider {
    margin-top: 40px;
}

.blog-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
}

.blog-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

/* Overlay */
.blog-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 165, 0, 0.75);
    /* orange */
    transition: opacity 0.4s ease-in-out;
}

.blog-card:nth-child(even) .overlay {
    background: rgba(106, 90, 205, 0.75);
    /* purple */
}

.blog-card:hover .overlay {
    opacity: 0;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 10px;
    line-height: 1.2;
    z-index: 2;
}

.date-badge span {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

/* Content */
.card-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    text-align: left;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    display: flex;
    align-items: center;
}

.card-content img.author {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    color: #000;
}

/* Add gap between slides */
.blog-slider .slick-slide {
    margin: 0 15px;
    /* Adjust 15px as per your design */
}

/* Fix alignment since slick adds negative margins */
.blog-slider .slick-list {
    margin: 0 -15px;
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #000;
}

.slick-prev:before {
    content: "\f104";
}

/* fa-chevron-left */
.slick-next:before {
    content: "\f105";
}

/* fa-chevron-right */
.slick-prev,
.slick-next {
    font-size: 0;
    /* hides text */
    line-height: 0;
    /* avoids extra space */
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    /* restore size for arrow icon */
    line-height: 1;
}

.testimonial-area {
    padding: 50px 0 30px;
}

.testimonial-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.testimonial-left {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-shape {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
}

.circle-shape::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 200, 150, 0.2);
    top: -30px;
    left: -30px;
    z-index: -1;
}

.testimonial-right {
    flex: 0 0 55%;
}

.testimonial-item {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.testimonial-item p {
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-info img {
    border-radius: 50%;
    margin-right: 12px;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.author-info span {
    font-size: 14px;
    color: #999;
}

/* Slick Dots */
.slick-dots {
    text-align: left;
    margin-top: 20px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #ff5e62;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ff5e62;
}

.aboutblock-section .nooverlay.card::before {
    opacity: 0.28;
}
.course-slider .nooverlay.course-card::before {
    opacity: 0.28;
}

footer {
    background: linear-gradient(90deg, #4d45ff, #7e77ff);
    color: #fff;
}
.fcol h4 {
    margin: 0 0 15px;
    font-size: 16px;
    color: #fff
}
.fcol a  {
    color: #fff;
}
.fcol a:hover {
    color: #ffa64d
}
footer .social-links a {
    color: var(--indigo);
}
.block-content p {
    font-size: 18px;
    color: #747474;
}
.block-content h4 {
    font-size: 22px;
}
.hero .h1 {
    font-size: 45px;
    line-height: 1.15;
    margin: 8px 0 14px;
    font-weight: 300;
    color: #fff;
}
.testimonial-area p {
    font-size: 20px;
}
.header-top-text {
    font-size: 15px;
}
.aboutblock-section .content h5 {
    font-size: 15px;
}
.blog-slider h4 {
    color: #fff;
}
.btn-01 {
      background-color: #4a5fc1; /* blue shade */
      color: #fff;
      padding: 12px 28px;
      border: none;
      border-radius: 30px; /* makes it rounded */
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-01:hover {
      background-color: #3b4e9e; /* darker shade on hover */
      transform: translateY(-3px); /* lift effect */
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

    .btn-01:active {
      transform: translateY(-1px);
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

.stats-container {
  display: flex;
  flex-wrap: wrap; /* ✅ allows stacking */
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.stat {
  min-width: 150px; /* ✅ prevent squishing */
}

.divider {
  font-size: 2rem;
  font-weight: bold;
  color: #999;
}

/* ✅ Hide divider on mobile */
@media (max-width: 768px) {
  .divider {
    display: none !important;
  }
  .image-circle {
    width: 100%;
    height: auto;    
    }
}




