/********** Template CSS **********/
:root {
    --primary: #036DB7;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}



.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

:root {
    --skv1: #322E8D;
    --skv2: #036DB7;
}


body {
    font-family: Arial;

}

/* ================= HERO WRAPPER ================= */
.skvH-wrap {
    position: relative;
}

/* ================= SLIDE ================= */
.skvH-slide {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.skvH-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transform: scale(1);
    will-change: transform;
}

/* OVERLAY */
.skvH-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* ================= CONTENT ================= */
.skvH-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 750px;
    padding: 20px;
}

/* 3D TITLE (NO SHAKING) */
.skvH-title {
    font-size: 68px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-shadow:
        1px 1px 0 #000,
        2px 2px 0 #111,
        3px 3px 0 #222,
        0 20px 40px rgba(0, 0, 0, 0.6);

    transform: translateY(40px);
    opacity: 0;
}

/* TEXT */
.skvH-sub {
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    letter-spacing: 1px;
}

/* ================= BUTTON AREA ================= */
.skvH-btnBox {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTON 1 (3D BLOCK) */
.skvH-btnA {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--skv1), var(--skv2));
    box-shadow: 0 10px 0 #1a1455;
    position: relative;
    transition: 0.2s;
}

/* BUTTON PRESS EFFECT */
.skvH-btnA:active {
    transform: translateY(6px);
    box-shadow: 0 4px 0 #1a1455;
}

/* BUTTON 2 (GLASS) */
.skvH-btnB {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* SHINE */
.skvH-btnB::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.skvH-btnB:hover::before {
    left: 120%;
}

/* ================= FLOWER ================= */
.skv-flower {
    position: fixed;
    font-size: 20px;
    pointer-events: none;
    animation: drop 1s linear forwards;
}

@keyframes drop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(150px);
        opacity: 0;
    }
}

/* ================= ACTIVE ANIMATION ================= */
.owl-item.active .skvH-title {
    animation: up 0.8s ease forwards;
}

.owl-item.active .skvH-sub {
    animation: up 1s ease forwards;
}

.owl-item.active .skvH-btnBox {
    animation: up 1.2s ease forwards;
}

/* SLIDE UP (NO SHAKING FIX) */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BG SLOW ZOOM ONLY */
.owl-item.active .skvH-img {
    animation: zoom 8s linear forwards;
}

@keyframes zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* ================= RESPONSIVE FIX (MOBILE + TABLET) ================= */

/* Tablet */
@media(max-width:1024px) {

    .skvU-item {
        height: 80vh;
        /* medium height instead of full screen */
    }

    .skvU-title3D {
        font-size: 42px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .skvH-slide {
        height: 70vh;
    }

    .skvU-item {
        height: 70vh;
        /* 🔥 MEDIUM HEIGHT (important fix) */
        min-height: 520px;
    }

    .skvU-centerBox {
        padding: 15px;
    }

    .skvU-title3D {
        font-size: 30px;
        line-height: 1.2;
    }

    .skvH-title {
        font-size: 38px;
        font-weight: 900;

    }

    .skvU-subText {
        font-size: 15px;
    }

    .skvU-btnRow {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .skvU-btnPrimary,
    .skvU-btnGlass {
        width: 80%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* Small mobile */
@media(max-width:480px) {
    .skvH-slide {
        height: 70vh;
    }

    .skvU-item {
        height: 65vh;
        /* even smoother on small phones */
        min-height: 480px;
    }

    .skvU-title3D {
        font-size: 26px;
    }

    .skvU-subText {
        font-size: 14px;
    }

    .skvU-btnPrimary,
    .skvU-btnGlass {
        width: 90%;
    }
}

/* ================= SECTION ================= */
.skv-3d-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f9ff, #e8f0ff);
}

/* ================= WAVES ================= */
.skv-wave {
    position: absolute;
    width: 200%;
    height: 200px;
    left: -50%;
    border-radius: 50%;
    transform: rotate(-6deg);
    opacity: 0.35;
    z-index: 0;
}

.skv-wave.w1 {
    background: linear-gradient(90deg, #322E8D, #0060AD);
    top: -80px;
}

.skv-wave.w2 {
    background: linear-gradient(90deg, #0060AD, #322E8D);
    bottom: -100px;
    transform: rotate(8deg);
    opacity: 0.25;
}

/* ================= TITLE BADGE ================= */
.skv-title-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #322E8D, #0060AD);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ================= TITLE ================= */
.skv-title {
    font-size: 44px;
    font-weight: 900;
    color: #1c1c1c;
    margin-bottom: 20px;
    text-shadow:
        2px 2px 0 #ccc,
        4px 4px 0 rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.skv-title span {
    color: #0060AD;
}

/* ================= PARAGRAPH ================= */
.skv-para {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0060AD;
    transform: perspective(600px) rotateX(5deg);
}

/* ================= 3D BUTTON ================= */
.skv-3d-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #322E8D, #0060AD);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;

    box-shadow:
        0 8px 0 #1b1a55,
        0 15px 25px rgba(0, 0, 0, 0.25);

    transform: perspective(600px) rotateX(10deg);
    transition: 0.3s ease;
}

.skv-3d-btn:hover {
    transform: perspective(600px) rotateX(0deg) translateY(4px);
    box-shadow:
        0 4px 0 #1b1a55,
        0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ================= CONTAINER ================= */
.skv-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ================= LEFT ================= */
.skv-left {
    flex: 1;
    position: relative;
}

/* KID */
.skv-kid {
    position: absolute;
    top: -90px;
    left: -50px;
    width: 120px;
    animation: floatKid 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25));
}

@keyframes floatKid {
    0% {
        transform: translateY(0) rotateY(-10deg);
    }

    50% {
        transform: translateY(-15px) rotateY(10deg);
    }

    100% {
        transform: translateY(0) rotateY(-10deg);
    }
}

/* ================= RIGHT ================= */
.skv-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
    padding-top: 90px;
}

.skv-right img:nth-child(1) {
    grid-column: span 2;
    height: 290px;
}

.skv-right img {
    width: 100%;
    border-radius: 18px;
    border: 5px solid #fff;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: 0.4s;
    height: 220px;
}

.skv-right img:hover {
    transform: scale(1.05);
}

/* ================= ANIMATION ================= */
.skv-anim {
    opacity: 0;
    transform: translateY(-60px);
    transition: 0.8s ease;
}

.skv-anim.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {

    .skv-container {
        flex-direction: column;
        text-align: center;
    }

    .skv-right {
        grid-template-columns: 1fr;
    }

    .skv-right img:nth-child(1) {
        grid-column: span 1;
    }

    .skv-title {
        font-size: 30px;
    }

    .skv-para {
        text-align: left;
    }

    .skv-kid {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 15px;
    }

    .skv-3d-btn {
        margin: 15px auto 0;
    }
}

@media(max-width:576px) {

    .skv-title {
        font-size: 22px;
    }

    .skv-para {
        font-size: 14px;
    }

    .skv-kid {
        width: 90px;
    }
}

.owl-dots {
    display: none;
}

.skv-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;

    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* GRADIENT WORD */
.skv-title span {
    background: linear-gradient(135deg, #0060AD, #1a7ed6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {

    .skv-title {
        font-size: 34px;
    }
}

@media(max-width:576px) {
    .skv-title {
        font-size: 26px;
    }
}

.skv-blue-sec {
    padding: 90px 20px;
    position: relative;
    overflow: hidden;

    /* 🌈 NEW PREMIUM BG */
    background: linear-gradient(135deg, #eef3ff, #dfe8ff, #f5f8ff);
}

/* ===== FLOATING GLOW BLOBS ===== */
.skv-blue-sec::before,
.skv-blue-sec::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    animation: floatBlob 12s infinite alternate ease-in-out;
}

.skv-blue-sec::before {
    background: rgba(50, 46, 141, 0.25);
    top: -150px;
    left: -150px;
}

.skv-blue-sec::after {
    background: rgba(0, 96, 173, 0.25);
    bottom: -150px;
    right: -150px;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(40px) scale(1.2);
    }
}

/* ===== WAVE LAYER ===== */
.skv-wave {
    position: absolute;
    width: 200%;
    height: 200px;
    left: -50%;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.skv-wave.w1 {
    background: linear-gradient(90deg, #322e8d, #0060ad);
    top: -100px;
    transform: rotate(-6deg);
}

.skv-wave.w2 {
    background: linear-gradient(90deg, #0060ad, #322e8d);
    bottom: -120px;
    transform: rotate(8deg);
}

/* ===== TITLE ===== */
.skv-blue-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.skv-blue-title h2 {
    font-size: 40px;
    font-weight: 900;
    color: #222;
}

.skv-blue-title span {
    color: #322e8d;
}

/* ===== GRID ===== */
.skv-blue-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    position: relative;
    z-index: 2;
}

/* ===== ITEM ===== */
.skv-blue-item {
    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);

    padding: 16px 18px;
    border-radius: 14px;

    box-shadow: 0 12px 25px rgba(50, 46, 141, 0.08);

    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.skv-blue-item.show {
    opacity: 1;
    transform: translateY(0);
}

.skv-blue-item:hover {
    transform: translateY(-5px) scale(1.02);
}

/* ===== SMALL 3D BOOK ICON ===== */
.skv-blue-book {
    width: 28px;
    height: 42px;
    background: linear-gradient(135deg, #322e8d, #0060ad);
    border-radius: 4px;
    position: relative;
    transform: rotateY(-12deg);
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.2);
}

.skv-blue-book::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 18px;
    height: 32px;
    background: #fff;
    border-radius: 2px;
}

.skv-blue-book::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1c1c6d;
}

/* ===== TEXT ===== */
.skv-blue-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

    .skv-blue-grid {
        grid-template-columns: 1fr;
    }

    .skv-blue-title h2 {
        font-size: 28px;
    }

    .skv-blue-text {
        font-size: 14px;
    }
}

/* ===== SECTION ===== */
.mxc-sec {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* ===== STAR ICON ===== */
.mxc-star {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 40px;
    color: #ffd700;
    z-index: 1;
    opacity: 0.9;


    animation: starFloat 4s ease-in-out infinite alternate,
        starRotate 8s linear infinite;
}

@keyframes starFloat {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(20px) scale(1.2);
    }
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== COLORFUL BLOBS ===== */
.mxc-sec::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;

    top: -150px;
    left: -150px;
    border-radius: 50%;
    animation: float 8s infinite alternate;
}

.mxc-sec::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #00c9ff33, transparent 70%);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
    animation: float 10s infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

/* ===== TITLE ===== */
.mxc-title {
    text-align: center;
    margin-bottom: 60px;
}

.mxc-title h2 {
    font-size: 40px;
    font-weight: 900;
    color: #222;
}

.mxc-title span {
    background: linear-gradient(90deg, #ff6ec7, #ff9a44, #00c9ff);
    -webkit-background-clip: text;
    color: transparent;
}

/* ===== GRID ===== */
.mxc-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 75px;
    position: relative;
    z-index: 2;
}

/* ===== CARD ===== */
.mxc-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 45px 20px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

    transform: translateY(60px);
    opacity: 0;
    transition: 0.7s ease;
}

.mxc-card.show {
    transform: translateY(0);
    opacity: 1;
}

.mxc-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===== ICON ===== */
.mxc-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) rotateX(25deg);

    width: 75px;
    height: 75px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* COLORS */
.mxc-card:nth-child(1) .mxc-icon {
    background: linear-gradient(135deg, #ff6ec7, #ff9a44);
}

.mxc-card:nth-child(2) .mxc-icon {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

.mxc-card:nth-child(3) .mxc-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.mxc-card:nth-child(4) .mxc-icon {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.mxc-card:nth-child(5) .mxc-icon {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
}

.mxc-card:nth-child(6) .mxc-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.mxc-card:nth-child(7) .mxc-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.mxc-card:nth-child(8) .mxc-icon {
    background: linear-gradient(135deg, #30cfd0, #330867);
}

/* RING */
.mxc-icon::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 2px dashed #999;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mxc-card:hover .mxc-icon {
    transform: translateX(-50%) rotateX(0deg) scale(1.1);
}

/* ===== TEXT ===== */
.mxc-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-top: 30px;
}

/* ===== COLOR STRIP ===== */
.mxc-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 0 0 20px 20px;
}

.mxc-card:nth-child(1)::before {
    background: #ff6ec7;
}

.mxc-card:nth-child(2)::before {
    background: #00c9ff;
}

.mxc-card:nth-child(3)::before {
    background: #667eea;
}

.mxc-card:nth-child(4)::before {
    background: #ffd200;
}

.mxc-card:nth-child(5)::before {
    background: #ff4e50;
}

.mxc-card:nth-child(6)::before {
    background: #43e97b;
}

.mxc-card:nth-child(7)::before {
    background: #fa709a;
}

.mxc-card:nth-child(8)::before {
    background: #30cfd0;
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .mxc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .mxc-grid {
        grid-template-columns: 1fr;
    }

    .mxc-title h2 {
        font-size: 26px;
    }
}

.cf3d-zone-x22 {
    padding: 100px 20px;

    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* TITLE */
.cf3d-head-x22 {
    text-align: center;
    margin-bottom: 60px;
}

.cf3d-head-x22 h2 {
    font-size: 40px;
    font-weight: 900;
}

.cf3d-head-x22 span {
    color: #007bff;
}

/* ===== SLIDER ===== */
.cf3d-wrap-x22 {
    position: relative;
    max-width: 1000px;
    margin: auto;
    perspective: 1200px;
}

/* TRACK */
.cf3d-track-x22 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* CARD */
.cf3d-card-x22 {
    position: absolute;
    width: 300px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.6s;

    opacity: 0;
    transform: scale(0.7);
}

/* ACTIVE */
.cf3d-card-x22.active {
    opacity: 1;
    transform: translateX(0) scale(1.1);
    z-index: 5;
}

/* LEFT */
.cf3d-card-x22.left {
    opacity: 0.6;
    transform: translateX(-220px) rotateY(25deg) scale(0.9);
    z-index: 3;
}

/* RIGHT */
.cf3d-card-x22.right {
    opacity: 0.6;
    transform: translateX(220px) rotateY(-25deg) scale(0.9);
    z-index: 3;
}

/* HIDDEN */
.cf3d-card-x22.hide {
    opacity: 0;
    transform: scale(0.6);
    z-index: 1;
}

/* TEXT */
.cf3d-text-x22 {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* NAME */
.cf3d-name-x22 {
    font-weight: bold;
}

/* STARS */
.cf3d-stars-x22 {
    color: #C5881E;
    margin-top: 5px;
}

/* QUOTE */
.cf3d-quote-x22 {
    font-size: 22px;
    color: #0060ad;
    margin-bottom: 10px;
}

/* BUTTONS */
.cf3d-btn-x22 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0060ad;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
}

.cf3d-prev-x22 {
    left: -20px;
}

.cf3d-next-x22 {
    right: -20px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

    .cf3d-card-x22 {
        width: 260px;
    }

    .cf3d-card-x22.left {
        transform: translateX(-160px) scale(0.8);
    }

    .cf3d-card-x22.right {
        transform: translateX(160px) scale(0.8);
    }

    .cf3d-head-x22 h2 {
        font-size: 26px;
    }
}

.zyn3d-zone-q1 {
    padding: 75px 20px;
    background: linear-gradient(135deg, #ffffff, #eef3ff);
    font-family: 'Segoe UI', sans-serif;
    
    position: relative;
    overflow: hidden;
}



/* ===== ⭐ STAR ===== */
.zyn-star-q1 {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 28px;
    color: #ffc107;
    animation: starFloat 4s ease-in-out infinite;

}

@keyframes starFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
}

/* ===== TITLE ===== */
.zyn3d-head-q1 {
    text-align: center;
    margin-bottom: 80px;
}

.zyn3d-head-q1 h2 {
    font-size: 42px;
    font-weight: 900;
}

.zyn3d-head-q1 span {
    color: #007bff;
}

/* ===== WRAPPER ===== */
.zyn3d-wrap-q1 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    transform-style: preserve-3d;
}

/* ===== 3D CARD ===== */
.zyn3d-layer-q1 {
    background: #fff;

    border-radius: 25px;
    padding: 40px;
    position: relative;

    transform-style: preserve-3d;
    transition: 0.6s ease;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.05);
}

/* DEPTH LAYER */
.zyn3d-layer-q1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;

    transform: translateZ(-40px);
}

/* HOVER 3D */
.zyn3d-layer-q1:hover {
    transform: rotateY(10deg) rotateX(8deg) scale(1.03);
}

/* ===== INFO ===== */
.zyn3d-info-q1 .zyn3d-item-q1 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transform: translateZ(40px);
}

.zyn3d-icon-q1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #322E8D, #322E8D);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
}

/* ===== SOCIAL ROW ===== */
.zyn3d-social-row {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.zyn3d-social-row a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CD8B1A, #CD8B1A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.zyn3d-social-row a:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* ===== FORM ===== */
.zyn3d-form-q1 form {
    transform: translateZ(40px);
}

.zyn3d-field-q1 {
    margin-bottom: 20px;
}

.zyn3d-field-q1 input,
.zyn3d-field-q1 textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

/* INPUT FOCUS */
.zyn3d-field-q1 input:focus,
.zyn3d-field-q1 textarea:focus {
    border-color: #322E8D;
    box-shadow: 0 0 10px #007bff33;
}

/* BUTTON */
.zyn3d-btn-q1 {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #322E8D, #322E8D);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.zyn3d-btn-q1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 123, 255, 0.3);
}

/* ===== SCROLL ANIMATION ===== */
.zyn3d-anim-q1 {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s ease;
}

.zyn3d-show-q1 {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .zyn3d-wrap-q1 {
        grid-template-columns: 1fr;
    }

    .zyn3d-head-q1 h2 {
        font-size: 28px;
    }

    .zyn-star-q1 {
        right: 20px;
        top: 20px;
    }
}

.skvGal_zone_91 {
    padding: 100px 20px;
    background: #fff;

}

/* TITLE */
.skvGal_title_91 {
    text-align: center;
    margin-bottom: 60px;
}

.skvGal_title_91 h2 {
    font-size: 38px;
    font-weight: 900;
}

.skvGal_title_91 span {
    color: #007bff;
}

/* ===================== GRID ===================== */
.skvGal_grid_91 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===================== CARD ===================== */
.skvGal_card_91 {
    position: relative;
    border-radius: 18px;
    overflow: hidden;

    transform: translateY(80px);
    opacity: 1;
    transition: 0.8s ease;

    cursor: pointer;
}

/* SHOW ANIMATION */
.skvGal_card_91.skv_show_91 {
    transform: translateY(0);
    opacity: 1;
}

/* CARTOON BORDER */
.skvGal_card_91::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff4ecd, #ffb703, #00c9ff, #7cff6b);
    z-index: -1;
}

/* IMAGE */
.skvGal_card_91 img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s;
}

.skvGal_card_91:hover img {
    transform: scale(1.07);
}

/* OVERLAY */
.skvGal_overlay_91 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* ===================== MODAL ===================== */
.skvGal_modal_91 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.skvGal_modal_91 img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 14px;
}

.skvGal_close_91 {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:992px) {
    .skvGal_grid_91 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .skvGal_grid_91 {
        grid-template-columns: 1fr;
    }

    .skvGal_card_91 img {
        width: 100%;
        height: auto;
    }
}

.skvVid_zone_91 {
    padding: 70px 20px;


}

/* TITLE */
.skvVid_title_91 {
    text-align: center;
    margin-bottom: 60px;
}

.skvVid_title_91 h2 {
    font-size: 38px;
    font-weight: 900;
}

.skvVid_title_91 span {
    color: #007bff;
}

/* GRID */
.skvVid_grid_91 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.skvVid_card_91 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;

    transform: translateY(80px);
    opacity: 1;
    transition: 0.8s ease;

    transform-style: preserve-3d;
    cursor: pointer;
}

.skvVid_card_91.skv_show_91 {
    transform: translateY(0);
    opacity: 1;
}

/* 3D HOVER CARD */
.skvVid_card_91:hover {
    transform: rotateY(10deg) rotateX(8deg) scale(1.05);
}

/* CARTOON BORDER */
.skvVid_card_91::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ff4ecd, #ffb703, #00c9ff, #7cff6b);
    z-index: -1;
}

/* VIDEO */
.skvVid_card_91 video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

/* ===== 3D PLAY BUTTON ===== */
.skvVid_play_91 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: linear-gradient(145deg, #1e90ff, #00c9ff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;

    cursor: pointer;

    /* 3D DEPTH EFFECT */
    box-shadow:
        0 8px 0 #0b5ed7,
        0 18px 30px rgba(0, 0, 0, 0.35),
        inset 0 4px 6px rgba(255, 255, 255, 0.4);

    transition: 0.2s ease;
}

/* FLOAT EFFECT */
.skvVid_play_91:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
        0 10px 0 #0b5ed7,
        0 25px 40px rgba(0, 0, 0, 0.4),
        inset 0 5px 8px rgba(255, 255, 255, 0.5);
}

/* PRESS EFFECT */
.skvVid_play_91:active {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow:
        0 4px 0 #0b5ed7,
        0 10px 20px rgba(0, 0, 0, 0.3);
}

/* LABEL */
.skvVid_label_91 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* RESPONSIVE */
@media(max-width:992px) {
    .skvVid_grid_91 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .skvVid_grid_91 {
        grid-template-columns: 1fr;
    }
}

.skvGalFtr_zone {
    background: #ffffff;
    padding: 80px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

/* TOP LINE */
.skvGalFtr_zone::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0b5ed7, #00c9ff);
}

/* GRID */
.skvGalFtr_grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 25px;
}

/* ANIMATION */
.skvGalFtr_box {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.skvGalFtr_box.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LEFT BRAND ===== */
.skvGal_brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* LOGO */
.skvGal_logo {
    width: 60px;

}

/* TITLE */
.skvGal_brand h2 {
    color: #0b5ed7;
    font-size: 22px;
    letter-spacing: 1px;
}

.skvGal_brand p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== 3 IMAGE GALLERY ===== */
.skvGal_images {
    display: flex;
    gap: 10px;
}

.skvGal_images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e6f0ff;
    transition: 0.3s;
}

.skvGal_images img:hover {
    transform: scale(1.05);
    border-color: #0b5ed7;
}

/* RIGHT BOX TITLE */
.skvGal_title {
    font-size: 17px;
    color: #0b5ed7;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* LINKS */
.skvGal_box a {
    display: block;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.skvGal_box a:hover {
    color: #0b5ed7;
    padding-left: 6px;
}

/* CONTACT */
.skvGal_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

/* ⭐ FIXED EQUAL ICON SIZE */
.skvGal_icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;

    border-radius: 10px;
    background: #0b5ed7;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;

    flex-shrink: 0;

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

/* ICON INSIDE CENTER PERFECT */
.skvGal_icon i {
    font-size: 16px;
    line-height: 1;
}

/* SOCIAL */
.skvGal_social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.skvGal_social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0b5ed7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.skvGal_social a:hover {
    transform: translateY(-5px) scale(1.1);
    background: #00c9ff;
}

/* WHATSAPP */
.skvGal_whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 25px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* BOTTOM */
.skvGal_bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .skvGalFtr_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .skvGalFtr_grid {
        grid-template-columns: 1fr;
    }

    .skvGal_images img {
        height: 70px;
    }
}

.skvMiniBnr_zone {
    width: 100%;
    height: 60vh;
    background: url("../img/hero2.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Segoe UI, sans-serif;
    overflow: hidden;
}

/* DARK OVERLAY */
.skvMiniBnr_zone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.skvMiniBnr_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1s ease;
}

/* TITLE */
.skvMiniBnr_title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

/* TEXT */
.skvMiniBnr_text {
    font-size: 16px;
    color: #e6e6e6;
    margin-bottom: 15px;
}

/* BUTTON */
.skvMiniBnr_btn {
    display: inline-block;
    padding: 10px 22px;
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.skvMiniBnr_btn:hover {
    background: #00c9ff;
    transform: translateY(-4px);
}

/* ===== BOTTOM MENU ===== */
.skvMiniBnr_menu {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 40px;
    z-index: 3;
    animation: none;
}

.skvMiniBnr_menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;

}

.skvMiniBnr_menu a:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {

    .skvMiniBnr_title {
        font-size: 26px;
    }

    .skvMiniBnr_text {
        font-size: 14px;
    }

    .skvMiniBnr_zone {
        height: 45vh;
    }

    .skvMiniBnr_menu {
        gap: 10px;
        padding: 8px 15px;
    }

    .skvMiniBnr_menu a {
        font-size: 13px;
    }
}

.kidoFun_zoneZ {
    padding: 90px 20px;
    background: linear-gradient(135deg, #eef6ff, #f3f1ff);
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
}

/* TITLE */
.kidoFun_titleZ h2 {
    font-size: 40px;
    font-weight: 900;
}

.kidoFun_titleZ span {
    color: #056CB7;
}

/* TIMING BUBBLE */
.kidoFun_timeWrapZ {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.kidoFun_timeZ {
    background: linear-gradient(135deg, #056CB7, #322E8D);
    color: #fff;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 10px 0 #022f63;
}

/* BADGE */
.kidoFun_badgeZ {
    display: inline-block;
    background: #322E8D;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
}

/* GRID */
.kidoFun_gridZ {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.kidoFun_cardZ {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 0 #dbe6ff;
    transition: 0.3s;
    transform: translateY(40px);
    opacity: 0;
}

/* SHOW */
.kidoFun_cardZ.show {
    transform: translateY(0);
    opacity: 1;
}

/* HOVER */
.kidoFun_cardZ:hover {
    transform: translateY(-8px) scale(1.03);
}

/* ICON */
.kidoFun_iconZ {
    font-size: 32px;
    color: #056CB7;
    margin-bottom: 10px;
}

/* TEXT */
.kidoFun_cardZ p {
    font-size: 18px;
    font-weight: 600;
}

/* BUTTON */
.kidoFun_btnZ {
    margin-top: 40px;
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, #056CB7, #322E8D);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 10px 0 #022f63;
    transition: 0.3s;
}

.kidoFun_btnZ:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .kidoFun_gridZ {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .kidoFun_gridZ {
        grid-template-columns: 1fr;
    }

    .kidoFun_titleZ h2 {
        font-size: 26px;
    }
}

.skvTopSmooth_X {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #056CB7, #322E8D);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    /* HIDDEN STATE */
    opacity: 0;
    transform: translateY(80px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SHOW STATE */
.skvTopSmooth_X.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ICON */
.skvTopSmooth_X img {
    width: 28px;
    height: 28px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.skvTopSmooth_X:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* ICON MOVE */
.skvTopSmooth_X:hover img {
    transform: translateY(-3px);
}

/* FLOAT ANIMATION */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.skvTopSmooth_X.show {
    animation: floatY 3s ease-in-out infinite;
}

/* MOBILE */
@media(max-width:576px) {
    .skvTopSmooth_X {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .skvTopSmooth_X img {
        width: 22px;
        height: 22px;
    }
}

/* MODAL BACKGROUND */
.skvVidModal_91 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

/* SHOW */
.skvVidModal_91.show {
    opacity: 1;
    visibility: visible;
}

/* VIDEO */
.skvVidModal_91 video {
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
}

/* CLOSE BUTTON */
.skvVidClose_91 {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
    .skvVidModal_91 video {
        width: 95%;
    }
}



/* TAGLINE */
.skvGal_tagline {

    font-size: 14px;
    color: #555;
    font-weight: 600;
    line-height: 1.5;
    max-width: 260px;

    /* STYLE EFFECT */
    position: relative;
    padding-left: 15px;
}

/* LEFT LINE DESIGN */
.skvGal_tagline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 80%;
    background: linear-gradient(#056CB7, #322E8D);
    border-radius: 5px;
}

/* HOVER EFFECT */
.skvGal_tagline:hover {
    color: #056CB7;
    transform: translateX(3px);
    transition: 0.3s;
}

/* MOBILE */
@media(max-width:576px) {


    .skvGal_tagline {

        padding-left: 0;
    }

    .skvGal_tagline::before {
        display: none;
    }
}

.skvGal_bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    color: #666;
    background: #f8f9ff;
}

/* DESIGNED BY */
.skvGal_design {

    font-weight: 600;
}

/* LINK STYLE */
.skvGal_design a {
    color: #043659;
    text-decoration: none;
    position: relative;
}

/* UNDERLINE ANIMATION */
.skvGal_design a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #322E8D;
    transition: 0.3s;
}

.skvGal_design a:hover::after {
    width: 100%;
}

/* HOVER COLOR */
.skvGal_design a:hover {
    color: #322E8D;
}

.krxvplm-video-gallery-zone {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(135deg, #f1f2ff, #ffffff);
}

.krxvplm-gallery-heading {
    text-align: center;
    margin-bottom: 60px;
}

.krxvplm-gallery-heading h2 {
    font-size: 44px;
    color: #322e8d;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.krxvplm-gallery-heading p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    max-width: 750px;
    margin: auto;
}

/* VIDEO GRID */

.krxvplm-video-grid-box {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* VIDEO CARD */

.krxvplm-single-video-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    padding: 14px;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
    transition: 0.5s ease;
    box-shadow:
        0 12px 30px rgba(50, 46, 141, 0.20),
        0 0 25px rgba(50, 46, 141, 0.10);
}

.krxvplm-single-video-card:hover {
    transform: perspective(1200px) rotateX(5deg) rotateY(-5deg) translateY(-12px);
    box-shadow:
        0 25px 45px rgba(50, 46, 141, 0.32),
        0 0 40px rgba(50, 46, 141, 0.18);
}

/* 3D BORDER EFFECT */

.krxvplm-single-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, #322e8d, #5750d9, #322e8d);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* VIDEO */

.krxvplm-single-video-card iframe {
    width: 100%;
    height: 240px;
    border: none;
    border-radius: 20px;
    display: block;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .krxvplm-video-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .krxvplm-gallery-heading h2 {
        font-size: 36px;
    }
}

@media(max-width:768px) {

    .krxvplm-video-grid-box {
        grid-template-columns: 1fr;
    }

    .krxvplm-gallery-heading h2 {
        font-size: 30px;
    }

    .krxvplm-gallery-heading p {
        font-size: 15px;
    }

    .krxvplm-single-video-card iframe {
        height: 220px;
    }
}