/********** Template CSS **********/
:root {
    --primary: #b53535;
    --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;
    background: var(--primary);
}

.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 ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Roboto';
    font-weight: 400;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.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;
}

.matters_box {
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .couse_box3 {

        background-position: center !important;
        text-align: center;
    }

    .matters_box {
        width: 70%;

    }

    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 1200px;
    }

    .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;

}

@media only screen and (max-width: 576px) {
    .matters_box {
        width: 100% !important;
    }

    .page-header {
        background-position: 70%;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** 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: 180px;
    height: 180px;
    bottom: -20px;
    right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 8px solid var(--light);
    border-radius: 50%;
    transition: .5s;
    z-index: 3;
}

.team-item .team-bio {
    position: absolute;
    width: 0px;
    height: 0px;
    bottom: 0px;
    left: 150px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(0.2px);
    /*border: 1px solid var(--light);*/
    /*border-radius: 50%;*/
    transition: .5s;
    /* border-top-left-radius: 50%;
    border-top-right-radius: 50%;*/
    z-index: 2;
    overflow: hidden;
    padding: 35px;
}

.team-item .team-bio p {
    font-size: 14px;
    text-wrap: wrap;
    text-align: center;
}

.team-item:hover .team-bio {
    width: 80%;
    height: 100%;
    transform: translate(-160px, 0px);
    /*transform: translateX();*/

}

.team-item:hover .team-bio p {
    display: block;
}

.team-item .team-text h3 {
    font-size: 22px;
}

.team-info {
    position: relative;
}

.team-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid red;
    content: 'dfdfdfdf';
    color: blue;
    z-index: 99;

}

.team-item {
    /*border: 1px solid green;*/
}

.team-item .team-text p {
    font-size: 14px;
    text-align: center;
    line-height: 14px;
}

.team-item:hover .team-text {
    border-color: var(--primary);
    scale: 0.7;
    transform: translate(-90px, 70px);
}


/*team end*/

/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** 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;
}

.logo {
    width: 80px;
    object-fit: cover;
}

.logo-full {
    width: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

.hero_tagline {
    background: url(../images/hero_tagline_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.hero_tagline:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 53, 0.4);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.hero_tagline .container {
    position: relative;
    z-index: 3;
}

.note2 {
    background: url(../images/note3.webp);
    background-size: cover;

}

.course_bg {
    background: url(../images/course-bg.webp);
    background-size: cover;
    background-position: center;
}

.couse_box3 {
    background: url(../images/course-bg.webp);
    background-size: cover;
    background-position: 100%;
}

.who-are-we {
    margin-top: 40px;
}

.couse-card {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
    flex-wrap: wrap;

}

.couse-card li {
    max-width: 100px;
    box-shadow: 0 0 1px 0.5px var(--primary);
    padding: 15px 5px;
    min-height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    transition: 0.5s;
    border-radius: 3px;
    /*font-size: 16px;*/

}

.couse-card li:hover {
    background: var(--primary);
    color: #fff;
}

.couse_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.demo_videos_row video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid var(--primary);
}

.demo_videos_row .col-sm-6 {
    /*padding: 15px;*/
}

.footer_con:hover {
    color: var(--primary) !important;
}

.contact_con {
    color: #103741 !important;
}

.list_number {
    /*list-style: ;*/
}

#thankyouBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.thankyou-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

#thankyouBox #closeBox {
    margin-top: 15px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

#thankyouBoxNewsletter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.thankyou-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.thankyou-content p {
    color: #000;
}

#closeNewsletterBox {
    margin-top: 15px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

/*
 .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
      padding: 20px;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }*/


/* Masonry Layout */
.gallery {
    column-count: 3;
    column-gap: 15px;
    padding: 20px;
}

.gallery a {
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery {
        column-count: 1;
    }
}

/*......................................*/
.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    text-align: center;
    background: #fff;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.course-card-box {
    padding: 10px;
}

.course-card {

    border-radius: 3px;
    /*border:1px solid var(--primary);*/
    box-shadow: 0 0 4px 1px rgba(100, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    overflow: hidden;


}

.course-card:hover {
    background: var(--primary);
}

.course-card:hover h6 {
    color: #ffff;
}

.course-card h6 {
    padding-inline: 10px;
    text-align: center;
    padding-block: 10px;
    min-height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card img {
    width: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.course-card:hover img {
    transform: scale(1.1);
}

.font_i {
    font-family: vardana !important;
}


/*team member style 2 start*/
/* Team Section 2 */
.team-card2 {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    /*padding-bottom: 20px;*/
    height: 100%;
}

.team-card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-img2 {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.team-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    transition: transform 0.4s ease;
}

.team-card2:hover .team-img2 img {
    transform: scale(1.05);
}

.team-info2 {
    padding: 20px 15px 10px;
}

.team-info2 h3 {
    font-size: 1.80rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #222;
    text-align: left;
}

.role2 {
    font-size: 0.95rem;
    font-weight: 400;
    text-align: left;
    margin-left: 5px;
    color: rgba(0, 0, 0, 0.5);
    /*margin-bottom: 12px;*/
}

.bio2 {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 15px;
    min-height: 40px;
    /* sab cards ka height balance karne ke liye */
}

.icons2 {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-info {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-info a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;

}

.social-info a:hover {
    /*color: #0a58ca;*/
    transform: scale(1.2);
}

.team-header {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);

}

.name-into {
    flex: 1;
}

.social-info {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .team-img2 {
        height: 220px;
    }

    .bio2 {
        min-height: auto;
    }
 .header-carousel .video-thumb {
     position: relative;
     cursor: pointer;
     height: auto;
     height: 480px;
     /* margin-bottom: 10px; */
 }
         .header-carousel .video-thumb2 {
          
             height: 220px;
             /* margin-bottom: 10px; */
         }
         .header-carousel .owl-carousel-item img {
             
             object-position: top;
         }
}

/*team member style 2 end*/

.banner-number .col-md-4:not(:last-child) {
    border-right: 1px dashed #CFD3DA;
}

.banner-number h3 {

    /* font-weight: 700; */
    text-align: center;
    /* font-size: 38px; */
    font-size: 32px;
    margin-bottom: 20px;
}

.banner-number h6 {

    /* font-weight: 700; */
    text-align: center;
    /* font-size: 16px; */
    font-size: 18px;
    letter-spacing: 1.2px;
    margin-bottom: 0px;
}

.banner-number h3 {
    color: var(--primary);
}

.featured-logos .owl-item {
    display: flex;
    justify-content: center;
}

.featured-item {
    padding: 40px;
}

.featured-item img {
    width: 100%;
}

.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    border-radius: 6px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 5px;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    background: #dc3545;
    /* Bootstrap danger color */
    transform: translate(-50%, -50%) scale(1.1);
}

.floating-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    /* border-radius: 50%; */
    /* overflow: hidden; */
    animation: shake2 2.5s ease infinite;
}

.floating-btn a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.4);
}
.btn-wp{
        background: linear-gradient(135deg, #25D366, #1DA851);
            color: #FFF;
            border-radius: 50%;
}
.btn-cl{
    background: #103741;
    color: #fff;
}



/*drection aware starts*/

.snake-rel {
    position: relative;

    overflow: hidden;
}

.snake-over {
    position: absolute;
    width: 100%;
    /* padding: 10px; */
    height: 300px;
    z-index: 100;
    margin-top: -200px;

    z-index: 100;
}

.direction-aware-hover {

    display: inline-block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.snake-img {
    height: 200px;
    width: 100%;
    z-index: 10;
    overflow: hidden;
    text-align: center;
}

.snake-img img {
    object-fit: contain;
    width: 70%;
    height: 100%;
    /* z-index: 1000; */
    /* position: absolute; */
}

.snake-text h5 {
    position: absolute;
    bottom: 10%;
    left: 35%;
    color: #fff;
    text-decoration: underline;
    /* background-color: rgb(255, 255, 255); */
    padding: 10px;
    border-radius: 10px;
    z-index: 10;
}

@media (max-width: 767px) {
    .snake-text h5 {
        position: absolute;
        bottom: 10%;
        left: 25%;
    }
}

.direction-aware-hover>* {
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(45deg);
    z-index: 1;
}

.direction-aware-hover__left {
    left: -70.75%;
    right: 70.75%;
}

.direction-aware-hover__right {
    left: 70.75%;
    right: -70.75%;
}

.direction-aware-hover__top {
    bottom: 70.75%;
    top: -70.75%;
}

.direction-aware-hover__bottom {
    bottom: -70.75%;
    top: 70.75%;
}

.direction-aware-hover__content {
    background: rgb(0, 0, 0, .5);
    bottom: none;
    color: #EEE;
    height: 100%;
    opacity: 0;
    right: none;
    transform: none;
    transition: opacity .25s,
        left .25s ease-in-out,
        top .25s ease-in-out,
        z-index 0s linear .25s;
    width: 100%;
    z-index: -1;
}

.direction-aware-hover__content:after {
    bottom: -100%;
    content: '';
    left: -100%;
    position: absolute;
    right: -100%;
    top: -100%;
    z-index: -1;
}

*:hover~.direction-aware-hover__content {
    transition: opacity 0s,
        left 0s ease-in-out,
        top 0s ease-in-out,
        z-index 0s linear 0s;
    z-index: 1;
}

.direction-aware-hover__left:hover~.direction-aware-hover__content {
    left: -100%;
}

.direction-aware-hover__right:hover~.direction-aware-hover__content {
    left: 100%;
}

.direction-aware-hover__top:hover~.direction-aware-hover__content {
    top: -100%;
}

.direction-aware-hover__bottom:hover~.direction-aware-hover__content {
    top: 100%;
}


.direction-aware-hover__content:hover {
    left: 0;
    opacity: 1;
    top: 0;
    transition: opacity 0.25s,
        left .25s ease-in-out,
        top .25s ease-in-out,
        z-index 0s linear 0s;
    z-index: 1;
}


.clients-area .col-6 {
    border-right: 1px solid #ccc;
}

.clients-area .col-6:nth-child(1),
.clients-area .col-6:nth-child(2),
.clients-area .col-6:nth-child(3),
.clients-area .col-6:nth-child(4),.clients-area .col-6:nth-child(5),
.clients-area .col-6:nth-child(6),
.clients-area .col-6:nth-child(7),
.clients-area .col-6:nth-child(8) {

    border-bottom: 1px solid #ccc;
}

.clients-area .col-6:nth-child(4),
.clients-area .col-6:nth-child(8) {
    border-right: none !important;
}

.imk-bx{
        background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            text-align: center;
            padding: 10px;
            height: 100%;
}
.imk-bx h4{
margin-top: 15px;
}
/*direction aware ends*/


.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    border-radius: 6px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 5px;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    background: #dc3545;
    /* Bootstrap danger color */
    transform: translate(-50%, -50%) scale(1.1);
}