.card-link{
display:none;
}
.btn-share{
display:none;
}
.team__social-two{
display:none;
}
a::after{
display:none;
}

  .tg-header__area {
    padding-top: 10px;
    padding-bottom: 10px;
  }

.services__details-thumb{ display:none;}


.whatsapp-float {
  position: fixed;
  right: 35px;
  bottom: 85px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 5px;
    bottom: 55px;
    padding: -5px;
  }
}
@media (max-width: 768px) {
.footer-info-list .list-wrap li{
    align-items:flex-start;
    display:flex;
    gap:10px;
    margin-bottom:5px
}
}















/* =========================================
   VIDEO GALLERY SECTION css start here
========================================= */

/* =========================================
   MAIN SECTION
========================================= */
/* =========================================
   VIDEO GALLERY
========================================= */

.professional-video-gallery {
    width: 100%;
    padding: 50px 0;
    background: transparent;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.professional-video-heading {
    text-align: center;
    margin-bottom: 30px;
}

.professional-video-heading h2 {
    margin: 0;
    padding: 0;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;

    color: #27376a;

    text-transform: uppercase;
}


/* =========================================
   HORIZONTAL SCROLL
========================================= */

.professional-video-scroll {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    flex-wrap: nowrap;

    gap: 28px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 5px 5px 18px;

    box-sizing: border-box;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
}


/* =========================================
   SCROLLBAR
========================================= */

.professional-video-scroll::-webkit-scrollbar {
    height: 6px;
}

.professional-video-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.professional-video-scroll::-webkit-scrollbar-thumb {
    background: #27376a;
    border-radius: 20px;
}

.professional-video-scroll {
    scrollbar-width: thin;
    scrollbar-color: #27376a transparent;
}


/* =========================================
   VIDEO CARD
========================================= */

.professional-video-card {
    flex: 0 0 calc((100% - 28px) / 2);

    width: calc((100% - 28px) / 2);

    min-width: calc((100% - 28px) / 2);

    box-sizing: border-box;
}


/* =========================================
   VIDEO FRAME
========================================= */

.professional-video-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #050505;

    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14),
        0 3px 8px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   IFRAME
========================================= */

.professional-video-frame iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    border-radius: 14px;
}


/* =========================================
   HOVER
========================================= */

.professional-video-card:hover
.professional-video-frame {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        0 5px 12px rgba(0, 0, 0, 0.08);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .professional-video-scroll {
        width: calc(100% - 40px);

        gap: 20px;
    }

    .professional-video-card {

        flex: 0 0 calc((100% - 20px) / 2);

        width: calc((100% - 20px) / 2);

        min-width: calc((100% - 20px) / 2);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .professional-video-gallery {
        padding: 40px 0;
    }

    .professional-video-heading {
        margin-bottom: 22px;
    }

    .professional-video-heading h2 {
        font-size: 24px;
    }

    .professional-video-scroll {

        width: calc(100% - 30px);

        gap: 16px;

        padding-bottom: 15px;
    }

    .professional-video-card {

        flex: 0 0 90%;

        width: 90%;

        min-width: 90%;
    }

    .professional-video-frame {
        border-radius: 12px;
    }

    .professional-video-frame iframe {
        border-radius: 12px;
    }

}