/* HEADER SECTION START HERE */

.header-section {
    position: absolute;
    z-index: 9998;
    width: 100%;
    position: fixed;
    backdrop-filter: blur(5px);
}

.header-main {
    display: flex;
    justify-content: center;
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo img {
    width: 95px !important;
}

.navbar-main {
    justify-content: center;
    display: flex;
}

nav {
    background: white;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-radius: 20px;
    height: 41px;
    justify-content: center;
}

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-top: 14px;
    margin-left: -30px;
}

.menu li a {
    text-decoration: none;
    color: #444;
    font-weight: 430;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px !important;
    font-family: "Poppins", sans-serif !important;
}

.menu li a:hover {
    color: var(--Blue) !important;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0f0f0f;
    transition: width 0.3s;
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a.active {
    color: var(--Blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    gap: 20px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

.call-now-btn {
    justify-content: end;
    display: flex;
}

/* HEADER SECTION END HERE */

/* HERO SECTION START HERE */

.hero-section {
    position: relative;
    padding-top: 130px !important;
    background-image: url(../assets/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-main-h h1 {
    font-size: 80px;
    line-height: 80px;
    font-weight: 520 !important;
    font-family: 'Montserrat', sans-serif !important;
    position: absolute;
    color: #fffffff5 !important;
    z-index: 999999;
    left: 5%;
}

.hero-h-sp {
    font-size: 70px !important;
    font-weight: 400 !important;
}

.hero-h-sp-2 {
    color: #f5f3f380;
    font-size: 50px !important;
}

.reviewers {
    position: absolute;
    z-index: 6665565;
    right: 5%;
}

.reviewers-imgs {
    display: flex;
    justify-content: end;
}

.review-text {
    display: flex;
    justify-content: end;
    padding-left: 30%;
    text-align: right;
}

.review-text p {
    color: #ffffff !important;
}

.reviewers-img {
    margin-left: -20px;
}

.hero-video video {
    width: 100%;
}

.hero-video {
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
    margin-top: -40px;
}

.review-text i {
    color: #ffc400;
    box-shadow: #111;
    box-shadow: 3px 5px 52px -17px rgba(0, 0, 0, 0.75);
}

.hero-img img {
    width: 100%;
    margin-top: -50px;
}

.hero-ball-1 {
    position: absolute;
    z-index: 998;
    top: 22%;
    right: 24%;
}

.hero-ball-2 {
    position: absolute;
    z-index: 996;
    top: 10%;
    right: 40%;
}

.hero-ball-3 {
    position: absolute;
    z-index: 997;
    top: 14%;
    left: 30%;
}

.hero-ball-4 {
    position: absolute;
    z-index: 995;
    top: 34%;
    right: 88%;
}

.hero-card {
    width: 13%;
    position: absolute;
    z-index: 990;
    bottom: 100px;
    left: 70px;
    padding: 30px;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1.4px solid #ffffff9f;
}

.hero-card p {
    color: #ffffffc4 !important;
}

/*  */

.hero-ball-1 {
    animation: bigFloatDrift 70s ease-in-out infinite;
    display: inline-block;
}

@keyframes bigFloatDrift {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    10% {
        transform: translate(50px, 10px) rotate(10deg) scale(1.01);
    }

    20% {
        transform: translate(-100px, -10px) rotate(15deg) scale(1.08);
    }

    30% {
        transform: translate(-150px, 40px) rotate(25deg) scale(1.04);
    }

    40% {
        transform: translate(-200px, -50px) rotate(45deg) scale(1.09);
    }

    50% {
        transform: translate(-250px, -120px) rotate(30deg) scale(1.04);
    }

    60% {
        transform: translate(-300px, -200px) rotate(15deg) scale(1.07);
    }

    70% {
        transform: translate(-250px, -130px) rotate(5deg) scale(1.09);
    }

    80% {
        transform: translate(-200px, -50px) rotate(15deg) scale(1.05);
    }

    90% {
        transform: translate(-100px, -20px) rotate(2deg) scale(1.02);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}


.hero-ball-2 {
    animation: bigFloatDrift 150s ease-in-out infinite;
    display: inline-block;
    width: 50px;
}

@keyframes bigFloatDrift {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    10% {
        transform: translate(-50px, 10px) rotate(10deg) scale(0.8);
    }

    20% {
        transform: translate(-100px, 30px) rotate(15deg) scale(0.8);
    }

    30% {
        transform: translate(-150px, -40px) rotate(25deg) scale(0.8);
    }

    40% {
        transform: translate(-200px, -50px) rotate(45deg) scale(0.8);
    }

    50% {
        transform: translate(250px, -20px) rotate(30deg) scale(0.8);
    }

    60% {
        transform: translate(-300px, 200px) rotate(15deg) scale(0.8);
    }

    70% {
        transform: translate(-250px, -30px) rotate(5deg) scale(0.8);
    }

    80% {
        transform: translate(-200px, -50px) rotate(15deg) scale(0.8);
    }

    90% {
        transform: translate(-100px, -20px) rotate(2deg) scale(0.8);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}


.hero-ball-3 {
    animation: rightFloatDrift 80s ease-in-out infinite;
    display: inline-block;
}

@keyframes rightFloatDrift {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(-100px, -90px) rotate(24deg) scale(1.05);
    }

    40% {
        transform: translate(-200px, -40px) rotate(37deg) scale(1.09);
    }

    60% {
        transform: translate(300px, -80px) rotate(10deg) scale(1.07);
    }

    80% {
        transform: translate(200px, -40px) rotate(8deg) scale(1.1);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}


.hero-ball-4 {
    animation: bigFloatDriftRightTop 16s ease-in-out infinite;
    display: inline-block;
}

@keyframes bigFloatDriftRightTop {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(5px, -8px) rotate(12deg) scale(1.01);
    }

    40% {
        transform: translate(10px, -15px) rotate(35deg) scale(1.02);
    }

    60% {
        transform: translate(30px, -30px) rotate(10deg) scale(1.03);
    }

    80% {
        transform: translate(10px, -10px) rotate(3deg) scale(1.01);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}




/* HERO SECTION END HERE */

/* WHY BILLIARDS SECTION START HERE */

.why-billiards-section {
    position: relative;
}

.why-billiards-section-main-tittle {
    display: flex;
}

.why-billiards-section-main-tittle {
    position: relative;
}

.why-billiards-section-main-tittle h2 {
    width: 90%;
}

.click-txt {
    display: none;
}

/*  */

.why-billiards-item {
    position: relative;
}

.w-card {
    color: #1b1b1b;
    height: 485px;
    position: relative;
    outline: 6px solid #f5f5f5;
    border-radius: 30px;
    line-height: 150%;
    padding: 16px;
    background: #ffffff;
    background-blend-mode: multiply;
    background: linear-gradient(to top, #ffffff, #f1f1f0);
    transition: background-color 1s ease-in-out;
    overflow: hidden;
}

.w-card-front {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    transition: transform 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}

.w-card-back {
    transform: translateX(120%);
    transition: transform 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}

.w-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.w-title::after {
    content: "";
    display: block;
    width: 50%;
    border-radius: 50%;
    height: 2px;
    margin: 2px auto;
    background-color: #1b1b1b;
}

.w-card:hover {
    background-color: #1b1b1b25;
}

.w-card:hover .w-card-front {
    transform: translateX(-100%);
}

.w-card:hover .w-card-back {
    transform: translateX(0);
}

.why-billiards-item-img {
    height: 287px;
    background-color: var(--Blue);
    border-radius: 30px;
    overflow: hidden;
}

.why-billiards-item-img img {
    width: 100%;
    transform: scale(1.5);
}

.w-card-front h4 {
    text-align: start;
    padding: 20px;
    padding-top: 40px;
}

.sensitive-text {
    position: absolute;
    bottom: -85px;
    right: 20px;
    text-decoration: underline;
    color: #2222226e;
}

.why-billiards-cards {
    margin-top: 50px;
}

.why-billiards-item {
    position: relative;
    padding: 15px;
}

.w-b-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.w-b-ball-1 {
    position: absolute;
    top: 200px;
    right: 27%;
}

.w-b-ball-2 {
    position: absolute;
    top: 10px;
    left: 20%;
}

/*  */

.w-b-ball-1 {
    animation: bigFloatDrift 50s ease-in-out infinite;
    display: inline-block;
}

@keyframes bigFloatDrift {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    10% {
        transform: translate(50px, 10px) rotate(1deg) scale(1.02);
    }

    20% {
        transform: translate(-100px, -30px) rotate(25deg) scale(1.06);
    }

    30% {
        transform: translate(-150px, -40px) rotate(35deg) scale(1.04);
    }

    40% {
        transform: translate(-200px, -50px) rotate(45deg) scale(1.05);
    }

    50% {
        transform: translate(-250px, -120px) rotate(40deg) scale(1.07);
    }

    60% {
        transform: translate(-300px, -200px) rotate(35deg) scale(1.07);
    }

    70% {
        transform: translate(-250px, -130px) rotate(20deg) scale(1.2);
    }

    80% {
        transform: translate(-200px, -50px) rotate(4deg) scale(1.05);
    }

    90% {
        transform: translate(-100px, -20px) rotate(2deg) scale(1.02);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

.w-b-ball-2 {
    animation: rightFloatDrift 60s ease-in-out infinite;
    display: inline-block;
}

@keyframes rightFloatDrift {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(100px, -90px) rotate(45deg) scale(0.9);
    }

    40% {
        transform: translate(200px, -40px) rotate(24deg) scale(0.8);
    }

    60% {
        transform: translate(300px, -80px) rotate(15deg) scale(1);
    }

    80% {
        transform: translate(200px, -40px) rotate(8deg) scale(0.8);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

/* WHY BILLIARDS SECTION END HERE */

/* ABOUT SECTION START HERE */

.about-section {
    background-color: #ffffff;
    border-radius: 60px;
    position: relative;
}

.about-small-card {
    left: 50%;
    transform: translate(-50%);
    top: 0;
}

.about-section {
    text-align: center;
}

.about-content {
    position: relative;
}

.about-main-p {
    max-width: 40%;
    margin: auto;
    margin-top: 30px;
}

.about-content h3 {
    padding-top: 130px;
}

.about-btn-btn {
    margin-top: 30px;
}

.about-img1 {
    position: absolute;
    left: 7%;
    top: 200px;
    border-radius: 20px;
}

.about-img2 {
    position: absolute;
    right: 7%;
    top: 170px;
    border-radius: 20px;
}

.about-img3 {
    position: absolute;
    left: 5%;
    bottom: 150px;
    border-radius: 20px;
}

.about-img4 {
    position: absolute;
    right: 7%;
    bottom: 200px;
    border-radius: 20px;
}

.about-ball1 {
    position: absolute;
    right: 20%;
    bottom: 200px;
}

.about-ball2 {
    position: absolute;
    left: 25%;
    bottom: 50px;
}

.achievements {
    padding-top: 90px;
}

.achievements .item {
    text-align: center;
}

.achievements .item .counter {
    color: #000000;
    font-size: 42px;
}

.count {
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.count h3 {
    margin-bottom: 0 !important;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.achievements-main {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.achievements-main h3 {
    margin-top: 0 !important;
}

.achievements-main {
    max-width: 70%;
    margin: auto;
}

/* ABOUT SECTION END HERE */

/* CARDS SECTION START HERE */

.card-section {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.blue-card {
    width: 80%;
    margin: auto;
    display: flex;
    background-color: var(--Blue);
    border-radius: 30px;
    border: 5px solid #ffffff;
    min-height: 400px;
}

.blue-card-1 {
    transform: rotate(-0.8deg);
}

.crd-1-doted {
    margin-top: -30px;
}

.blue-card-1-content {
    padding: 50px 0;
}

.blue-card-1-content h4 {
    color: #ffffff !important;
    font-weight: 300 !important;
    font-size: 38px !important;
    max-width: 70%;
}

.blue-card-1-content p {
    color: #ffffffab !important;
}

.blue-card-btn::before {
    background-color: #ffffff !important;
}

.b-button .blue-card-b-text_button {
    background-image: linear-gradient(90deg,
            rgb(12, 12, 12) 0%,
            hsla(0 0% 100% / var(--active, 0)) 200%) !important;
}

.blue-card-btn .b-sparkle .b-path {
    color: hsl(0, 0%, 0%) !important;
}

.blue-card-btn::after {
    background-color: hsla(0, 0%, 91%, 0.75) !important;
    background-image: radial-gradient(at 51% 89%,
            rgb(228, 228, 228) 0px,
            transparent 50%),
        radial-gradient(at 100% 100%, rgb(228, 228, 228) 0px, transparent 50%),
        radial-gradient(at 22% 91%, rgb(228, 228, 228) 0px, transparent 50%) !important;
}

.blue-card-btn::before {
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
        0px 2px 5px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
        0 0 0 calc(var(--active, 0) * 0.375rem) hsla(0, 0%, 79%, 0.75) !important;
}

.blue-card-2 {
    margin-top: 100px;
    transform: rotate(0.8deg);
}

.crd-2-doted {
    margin-top: -10px;
}

.blue-card-2-content h4 {
    color: #ffffff !important;
    font-weight: 300 !important;
    font-size: 38px !important;
    max-width: 70%;
}

.blue-card-2-content p {
    color: #ffffffab !important;
}

.blue-card-2-content {
    padding: 50px 0;
    padding-left: 50px;
}

/* CARDS SECTION END HERE */

/* CENTERS START HERE*/

.centers-sections {
    background-color: #EDEDED;
}

.centers-main {
    position: relative;
}

.centers-small-card {
    position: absolute;
    top: 0;
    left: 0;
    border: 5.5px solid #dddcdc !important;
}

.centers-main-p {
    text-align: start;
}

.centers-main-tittle {
    padding-top: 130px;
}

/*  */

.c-card {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 14px;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    ;
}

.c-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 97.5%;
    height: 240px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
}

.c1 {
    background-image: url(../assets/link-road.jpeg) !important;
    background-size: cover;
    background-repeat: no-repeat;
}

.c2 {
    background-image: url(../assets/hilite.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
}

.c3 {
    background-image: url(../assets/mukkam.jpeg) !important;
    background-size: cover;
    background-repeat: no-repeat;
}


.c-blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 150px;
    border-radius: 50%;
    background-color: var(--Blue);
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

/*  */

.centers-main {
    margin-top: 30px;
}

.c-item-num {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
    font-size: 80px;
    color: #1b1b1b33 !important;
}

.c-card-item-content {
    text-align: center;
    margin-top: 70px;
}

.c-card-item-content p {
    max-width: 90%;
    color: #ffffff !important;
    margin: auto;
    text-decoration: underline;
}

.c-card-item-content a {
    color: #ffffff !important;
}

.c-card-item-content i {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 30px;
}

/* CENTERS END HERE*/

/* FOOTER START HERE */

.footer-section {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.footer-main {
    background-color: #222222;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: relative;
}

.footer-list {
    display: flex;
    gap: 50px;
    padding-left: 0 !important;
    margin: auto;
    align-items: center;
}

.footer-list-main {
    align-items: center;
    display: flex;
}

.footer-list a {
    color: #ffffff !important;
    margin-bottom: 0 !important;
}

.socila-icons {
    display: flex;
    gap: 7px;
    padding: 7px;
    background-color: #000000a8;
    border: 1px solid rgb(66, 66, 66);
    width: fit-content;
    position: absolute;
    right: 3.8%;
    top: 10%;
    border-radius: 10px;
}

.footer-logo {
    margin-left: 10%;
}

.instagram,
.facebok,
.youtube,
.whatsapp {
    transition: transform 0.3s ease;
}

.instagram:hover {
    transform: scale(1.1) translateY(-15px) rotate(3deg);
    box-shadow: 0px 39px 49px -38px rgba(0, 0, 0, 0.87);
}

.facebok:hover {
    transform: scale(1.1) translateY(-13px) rotate(-2deg);
    box-shadow: 0px 39px 49px -38px rgba(0, 0, 0, 0.87);
}

.youtube:hover {
    transform: scale(1.1) translateY(-20px) rotate(3.5deg);
    box-shadow: 0px 39px 49px -38px rgba(0, 0, 0, 0.87);
}

.whatsapp:hover {
    transform: scale(1.1) translateY(-10px) rotate(-6deg);
    box-shadow: 0px 39px 49px -38px rgba(0, 0, 0, 0.87);
}

.copyright {
    text-align: center;
    background-color: #222222;
}

.copyright h6 {
    color: #ffffffb2 !important;
    font-weight: 400;
}

.copyright a {
    color: #ffffff !important;
}

.copyright-main {
    border-top: 1px solid #ffffff67;
    max-width: 70%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.rashadweb {
    display: inline-block;
    transition: transform 0.3s ease;
}

.copyright-main h6:hover .rashadweb {
    transform: scale(1.1) translateX(10px);
}

.blur-popup {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 30px;
}

.youtube img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube img:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* FOOTER SECTION END HERE */


/*  *
/* / */
/*  */

/* ABOUT INNER PAGE START HERE */

.who-we-are-img {
    border-radius: 30px;
    margin: 30px;
}

.who-we-are-img img {
    width: 100%;
    border-radius: 30px;
}

.wh-we-are,
.quality {
    background-color: #ffffff;
    border-radius: 30px;
    border: 5px solid #d3d3d3;
}

.wh-we-are {
    margin-bottom: 50px;
}

.who-we-are-content {
    padding: 30px;
}

/*  */

.quality-img {
    border-radius: 30px;
    margin: 30px;
    width: 90%;
}

.quality-img img {
    width: 100%;
    border-radius: 30px;
}

.quality-content {
    padding: 30px;
}

.quality {
    margin-bottom: 50px;
}

.about-inner-points {
    border: 2px dashed var(--Blue);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    background: white;
}

.about-inner-point-item i {
    color: var(--Blue);
}

.about-inner-point-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
}

/*  */


.vision-mission .card {
    transition: all 0.3s ease;
}

.vision-mission .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/*  */

.vision-mission {
    margin-top: 50px;
    margin-bottom: 50px;
}

.vision-mission-card {
    background-color: #ffffff;
    border-radius: 30px;
    border: 5px solid #d3d3d3;
    padding: 30px;
    transition: all 0.6s ease;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
}

.vission-mission-icon i {
    color: var(--Blue);
    margin-bottom: 20px;
}

/* FAQS */

.faqs-section {
    padding-bottom: 100px;
    padding-top: 100px;
    background-color: #d8d8d8;
    border-radius: 80px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 10px 25px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 5px solid #f0efef;
}

.faq-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    overflow: hidden;
    opacity: 0;
    height: 0;
    font-size: 16px;
    color: #333;
    margin-top: 12px;
    line-height: 1.6;
    margin-bottom: -10px;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
    color: #1d1d1f;
}

.faq-card.active .arrow {
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

.faqs-main {
    max-width: 1022px;
    margin: auto;
}

/*  */

.faqs-box-container {
    position: relative;
    width: 290px;
    height: 310px;
    transition: 200ms;
}

#faqs-box-card {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: 700ms;
    background-color: #ececec;
    border: 5px solid #f0efef;
    box-shadow: 0px 0px 11px -6px rgba(0, 0, 0, 0.75);
}

.faqs-box-subtitle {
    transform: translateY(160px);
    color: rgb(114, 75, 255);
    text-align: center;
    width: 100%;
}

.faqs-box-title {
    opacity: 0;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out-out;
    transition-delay: 100ms;
    position: absolute;
    font-size: x-large;
    font-weight: bold;
    color: white;
}

.faqs-box-tracker:hover~#faqs-box-card .faqs-box-title {
    opacity: 1;
}

#faqs-box-prompt {
    bottom: 8px;
    left: 12px;
    z-index: 20;
    font-size: 20px;
    font-weight: bold;
    transition: 300ms ease-in-out-out;
    position: absolute;
    max-width: 110px;
    color: rgb(255, 255, 255);
}

.faqs-box-tracker {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 100%;
}

.faqs-box-tracker:hover {
    cursor: pointer;
}

.faqs-box-tracker:hover~#faqs-box-card #faqs-box-prompt {
    opacity: 0;
}

.faqs-box-tracker:hover~#faqs-box-card {
    transition: 300ms;
    filter: brightness(1.1);
}

.faqs-box-container:hover #faqs-box-card::before {
    transition: 200ms;
    content: '';
    opacity: 80%;
}

.faqs-box-canvas {
    perspective: 800px;
    inset: 0;
    z-index: 200;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        "faqs-box-tr-1 faqs-box-tr-2 faqs-box-tr-3 faqs-box-tr-4 faqs-box-tr-5"
        "faqs-box-tr-6 faqs-box-tr-7 faqs-box-tr-8 faqs-box-tr-9 faqs-box-tr-10"
        "faqs-box-tr-11 faqs-box-tr-12 faqs-box-tr-13 faqs-box-tr-14 faqs-box-tr-15"
        "faqs-box-tr-16 faqs-box-tr-17 faqs-box-tr-18 faqs-box-tr-19 faqs-box-tr-20"
        "faqs-box-tr-21 faqs-box-tr-22 faqs-box-tr-23 faqs-box-tr-24 faqs-box-tr-25";
}

#faqs-box-card::before {
    content: '';
    background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(154, 134, 255) 46%, rgba(0, 17, 255, 0.76) 100%);
    filter: blur(2rem);
    opacity: 30%;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transition: 200ms;
}

.faqs-box-tr-1 {
    grid-area: faqs-box-tr-1;
}

.faqs-box-tr-2 {
    grid-area: faqs-box-tr-2;
}

.faqs-box-tr-3 {
    grid-area: faqs-box-tr-3;
}

.faqs-box-tr-4 {
    grid-area: faqs-box-tr-4;
}

.faqs-box-tr-5 {
    grid-area: faqs-box-tr-5;
}

.faqs-box-tr-6 {
    grid-area: faqs-box-tr-6;
}

.faqs-box-tr-7 {
    grid-area: faqs-box-tr-7;
}

.faqs-box-tr-8 {
    grid-area: faqs-box-tr-8;
}

.faqs-box-tr-9 {
    grid-area: faqs-box-tr-9;
}

.faqs-box-tr-10 {
    grid-area: faqs-box-tr-10;
}

.faqs-box-tr-11 {
    grid-area: faqs-box-tr-11;
}

.faqs-box-tr-12 {
    grid-area: faqs-box-tr-12;
}

.faqs-box-tr-13 {
    grid-area: faqs-box-tr-13;
}

.faqs-box-tr-14 {
    grid-area: faqs-box-tr-14;
}

.faqs-box-tr-15 {
    grid-area: faqs-box-tr-15;
}

.faqs-box-tr-16 {
    grid-area: faqs-box-tr-16;
}

.faqs-box-tr-17 {
    grid-area: faqs-box-tr-17;
}

.faqs-box-tr-18 {
    grid-area: faqs-box-tr-18;
}

.faqs-box-tr-19 {
    grid-area: faqs-box-tr-19;
}

.faqs-box-tr-20 {
    grid-area: faqs-box-tr-20;
}

.faqs-box-tr-21 {
    grid-area: faqs-box-tr-21;
}

.faqs-box-tr-22 {
    grid-area: faqs-box-tr-22;
}

.faqs-box-tr-23 {
    grid-area: faqs-box-tr-23;
}

.faqs-box-tr-24 {
    grid-area: faqs-box-tr-24;
}

.faqs-box-tr-25 {
    grid-area: faqs-box-tr-25;
}

/* Hover Effects */
.faqs-box-tr-1:hover~#faqs-box-card {
    transform: rotateX(20deg) rotateY(-10deg);
}

.faqs-box-tr-2:hover~#faqs-box-card {
    transform: rotateX(20deg) rotateY(-5deg);
}

.faqs-box-tr-3:hover~#faqs-box-card {
    transform: rotateX(20deg) rotateY(0deg);
}

.faqs-box-tr-4:hover~#faqs-box-card {
    transform: rotateX(20deg) rotateY(5deg);
}

.faqs-box-tr-5:hover~#faqs-box-card {
    transform: rotateX(20deg) rotateY(10deg);
}

.faqs-box-tr-6:hover~#faqs-box-card {
    transform: rotateX(10deg) rotateY(-10deg);
}

.faqs-box-tr-7:hover~#faqs-box-card {
    transform: rotateX(10deg) rotateY(-5deg);
}

.faqs-box-tr-8:hover~#faqs-box-card {
    transform: rotateX(10deg) rotateY(0deg);
}

.faqs-box-tr-9:hover~#faqs-box-card {
    transform: rotateX(10deg) rotateY(5deg);
}

.faqs-box-tr-10:hover~#faqs-box-card {
    transform: rotateX(10deg) rotateY(10deg);
}

.faqs-box-tr-11:hover~#faqs-box-card {
    transform: rotateX(0deg) rotateY(-10deg);
}

.faqs-box-tr-12:hover~#faqs-box-card {
    transform: rotateX(0deg) rotateY(-5deg);
}

.faqs-box-tr-13:hover~#faqs-box-card {
    transform: rotateX(0deg) rotateY(0deg);
}

.faqs-box-tr-14:hover~#faqs-box-card {
    transform: rotateX(0deg) rotateY(5deg);
}

.faqs-box-tr-15:hover~#faqs-box-card {
    transform: rotateX(0deg) rotateY(10deg);
}

.faqs-box-tr-16:hover~#faqs-box-card {
    transform: rotateX(-10deg) rotateY(-10deg);
}

.faqs-box-tr-17:hover~#faqs-box-card {
    transform: rotateX(-10deg) rotateY(-5deg);
}

.faqs-box-tr-18:hover~#faqs-box-card {
    transform: rotateX(-10deg) rotateY(0deg);
}

.faqs-box-tr-19:hover~#faqs-box-card {
    transform: rotateX(-10deg) rotateY(5deg);
}

.faqs-box-tr-20:hover~#faqs-box-card {
    transform: rotateX(-10deg) rotateY(10deg);
}

.faqs-box-tr-21:hover~#faqs-box-card {
    transform: rotateX(-20deg) rotateY(-10deg);
}

.faqs-box-tr-22:hover~#faqs-box-card {
    transform: rotateX(-20deg) rotateY(-5deg);
}

.faqs-box-tr-23:hover~#faqs-box-card {
    transform: rotateX(-20deg) rotateY(0deg);
}

.faqs-box-tr-24:hover~#faqs-box-card {
    transform: rotateX(-20deg) rotateY(5deg);
}

.faqs-box-tr-25:hover~#faqs-box-card {
    transform: rotateX(-20deg) rotateY(10deg);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq-box-main {
    justify-content: end;
    display: flex;
}

/*  */

.faqs-box-icon {
    --stone-50: #fafaf9;
    --stone-800: #292524;
    --yellow-300: #dadadf;
    --yellow-400: #cac9cf;
    --yellow-500: #dedde2;
    --black-25: rgba(0, 0, 0, 0.25);

    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    margin: auto;
    margin-bottom: 20px;

    &>button {
        cursor: pointer;
        display: inline-block;
        height: 100%;
        width: 100%;
        appearance: none;
        border: 2px solid var(--stone-800);
        border-radius: 0.25rem;
        background-color: var(--yellow-400);
        outline: 2px solid transparent;
        outline-offset: 2px;
        cursor: pointer;
        transition: background-color 0.2s;

        &:hover {
            background-color: var(--yellow-300);
        }

        &:checked {
            background-color: var(--stone-800);
            border-color: var(--stone-800);

            &:hover {
                background-color: #44403c;
            }
        }

        &:active {
            outline-color: var(--stone-800);
        }

        &:focus-visible {
            outline-color: var(--stone-800);
            outline-style: dashed;
        }
    }

    &>span:nth-child(2) {
        position: absolute;
        inset: 3px;
        pointer-events: none;
        background-color: var(--yellow-400);
        border-bottom: 2px solid var(--black-25);
        transition: transform 75ms;

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgb(255 255 255 / 80%) 20%,
                    transparent 20%),
                radial-gradient(rgb(255 255 255 / 100%) 20%, transparent 20%);
            background-position:
                0 0,
                4px 4px;
            background-size: 8px 8px;
            mix-blend-mode: hard-light;
            opacity: 0.5;
            animation: dots 0.5s infinite linear;
        }
    }

    &>span:nth-child(3) {
        position: absolute;
        pointer-events: none;
        inset: 0;

        &::before {
            content: "";
            width: 0.375rem;
            height: 0.375rem;
            position: absolute;
            top: 0.25rem;
            left: 0.25rem;
            background-color: var(--stone-800);
            border-radius: 0.125rem;
            box-shadow:
                3.125em 0 var(--stone-800),
                0 3.125em var(--stone-800),
                3.125em 3.125em var(--stone-800);
        }
    }

    &>span:nth-child(4) {
        position: absolute;
        pointer-events: none;
        inset: 0;
        filter: drop-shadow(0.25em 0.25em 0 rgba(0, 0, 0, 0.2));
        transition: all 75ms;

        &::after {
            content: "";
            width: 0.25rem;
            height: 0.25rem;
            position: absolute;
            top: 0.875rem;
            left: 1rem;
            border-radius: 0.0625px;
            background-color: var(--stone-800);
            box-shadow:
                0.75em 2em var(--stone-800),
                1em 2em var(--stone-800),
                0.75em 1.75em var(--stone-800),
                1em 1.75em var(--stone-800),
                0.75em 1.25em var(--stone-800),
                1em 1.25em var(--stone-800),
                0.75em 1em var(--stone-800),
                1em 1em var(--stone-800),
                1em 0.75em var(--stone-800),
                1.5em 0.75em var(--stone-800),
                1.25em 0.75em var(--stone-800),
                1.25em -0.25em var(--stone-800),
                1.5em 0em var(--stone-800),
                1.25em 0.5em var(--stone-800),
                1.5em 0.5em var(--stone-800),
                1.25em 0.25em var(--stone-800),
                1.5em 0.25em var(--stone-800),
                1.25em 0 var(--stone-800),
                1em -0.25em var(--stone-800),
                0.75em -0.25em var(--stone-800),
                0.5em -0.25em var(--stone-800),
                0.25em -0.25em var(--stone-800),
                0.25em 0 var(--stone-800),
                0 0.25em var(--stone-800),
                0 0.5em var(--stone-800),
                0.25em 0.25em var(--stone-800),
                0.25em 0.5em var(--stone-800);
        }
    }

    &>span:nth-child(5) {
        position: absolute;
        background-color: var(--yellow-400);
        border: 2px solid var(--stone-800);
        border-radius: 0.75rem;
        pointer-events: none;
        z-index: -1;
        inset: 0.5rem 1.5rem;
        box-shadow:
            7px 0 0 0 var(--stone-800),
            inset 0 2px 0 0 var(--yellow-300),
            inset 0 -2px 0 0 var(--yellow-500);
        transition: all 0ms cubic-bezier(0, 0.5, 0.4, 1);
    }

    & button:active~span:nth-child(5) {
        transform: translateY(-200%);
        transition-duration: 200ms;
        opacity: 0;
    }

    & button:hover~span:nth-child(4) {
        filter: drop-shadow(0.125em 0.125em 0 rgba(0, 0, 0, 0.2));
    }
}

@keyframes dots {
    0% {
        background-position:
            0 0,
            4px 4px;
    }

    100% {
        background-position:
            8px 0,
            12px 4px;
    }
}

@media (prefers-color-scheme: dark) {
    .faqs-box-icon {

        & button:active,
        & button:focus-visible {
            outline-color: var(--yellow-400);
        }
    }
}

.faq-box-main h4 {
    font-size: 26px;
    text-align: center;
}

.faq-box-main p {
    text-align: center;
    padding: 0 20px;
}

/*  */

.time-section {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

.time-section-content {
    background-color: #ffffff;
    border-radius: 30px;
    border: 5px solid #d3d3d3;
    padding: 30px;
}

.time-item {
    display: flex;
    gap: 50px;
    padding: 10px 0;
}

.time {
    display: flex;
    gap: 20px;
}

.time-item i {
    margin-top: 7px;
    color: var(--Blue);
}

.time-item h4 {
    width: 35%;
    font-size: 20px !important;
}

.time {
    width: 65%;
}

.map iframe {
    border-radius: 30px;
    border: 5px solid #d3d3d3;
    width: 100%;
}

/* ABOUT INNER PAGE END HERE */

/* GALLERY INNER START HERE */

:root {
    --gap: 20px;
    --border-radius: 16px;
    --transition: 0.3s ease;
}

.gallery-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.gallery-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap);
    background-color: #ffffff;
    border-radius: 30px;
    border: 5px solid #d3d3d3;
    padding: 30px;
}

.session-section  .gallery-item {
    border: 2x solid #000000 !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform var(--transition);
}

.gallery-item::after {
    content: "View";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-heading {
        font-size: 1.8rem;
    }
}

/* GALLERY INNER END HERE */

/* CONTACT INNER START HERE */

.contact-section {
    padding-top: 30px;
    padding-bottom: 50px;
    position: relative;
}

.contact-form-main {
    margin-top: 30px;
}

.contact-form {
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 50px;
    background-color: #fff;
}

.conact-form input {
    width: 100%;
    border: none;
    border-radius: 30px;
    height: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
    border: 1px solid #999999;
}

.conact-form textarea {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding-left: 30px;
    padding-top: 1%;
    margin-bottom: 20px;
    height: 120px;
    border: 1px solid #999999;
}

.submit-btn {
    width: 30% !important;
    padding-left: 0 !important;
    background-color: #090909;
    color: #fff;
}

/* CONTACT INNER END HERE */

/* TRANING INNER START HERE */

.traning-section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 50px;
}

/* Modal Background */
.modal {
    display: none;
    position: absolute;
    z-index: 8888;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.tranings {
    flex-wrap: wrap;
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px !important;
}

.modal-content button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 30px;
    background-color: #151615;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #000000;
}

.tranings {
    margin-top: 30px;
}

.traning-item {
    border-radius: 30px;
    background-color: #ffffff;
    outline: 6px solid #f5f5f5;
    margin: 20px 0;
    height: 580px;
    position: relative;
    transition: all 0.3s ease;
}

.traning-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.traning-item:hover .traning-img img {
    transform: scale(1.15);
}

.traning-img {
    height: 287px;
    background-color: var(--Blue);
    border-radius: 30px;
    overflow: hidden;
}

.traning-img img {
    width: 100%;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.traning-item h4 {
    text-align: start;
    padding: 0 20px;
    padding-top: 40px;
}

.traning-item p {
    text-align: start;
    padding: 0 20px;
}

.traning-btn {
    padding-bottom: 20px !important;
    padding-left: 20px;
}

/* TRANING INNER END HERE */

/* SESSION MAIN START HERE */

.session-section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 50px;
}

.acc {
    border: none !important;
}


/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.tranings {
    flex-wrap: wrap;
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px !important;
}

.modal-content button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 30px;
    background-color: #151615;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #000000;
}

.session {
    margin-top: 30px;
}

.session-item {
    border-radius: 30px;
    background-color: #ffffff;
    outline: 6px solid #f5f5f5;
    margin: 20px 0;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 20px; 
}

.session-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.session-item h4 {
    text-align: start;
    padding: 0 20px;
    padding-top: 40px;
}

.session-btn {
    padding-bottom: 20px !important;
    padding-left: 20px;
}

.session-points {
    padding-left: 30px;
    margin: 20px;
}

.session-pont-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.session-pont-item i {
    color: #168600;
}

/* SESSION MAIN END HERE */

/* COURSES INNER START HERE */

.course-section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 50px;
}

/* Modal Background */
.modal {
    display: none;
    position: absolute;
    z-index: 8888;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.courses {
    flex-wrap: wrap;
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px !important;
}

.modal-content button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 30px;
    background-color: #151615;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #000000;
}

.tranings {
    margin-top: 30px;
}

.course-item {
    border-radius: 30px;
    background-color: #ffffff;
    outline: 6px solid #f5f5f5;
    margin: 20px 0;
    height: 580px;
    position: relative;
    transition: all 0.3s ease;
}

.course-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.course-item:hover .course-img img {
    transform: scale(1.15);
}

.course-img {
    height: 287px;
    background-color: var(--Blue);
    border-radius: 30px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.course-item h4 {
    text-align: start;
    padding: 0 20px;
    padding-top: 40px;
}

.course-item p {
    text-align: start;
    padding: 0 20px;
}

.course-btn {
    padding-bottom: 20px !important;
    padding-left: 20px;
}

.courses-p {
    width: 70%;
}

/* COURSES INNER END HERE */