


:root {
  --primary: #deff9a;
  --dark: #000000;
  --grey: #121212;
  --text: #ffffff;
}

/* ================================================
/* ================================================
   NAVBAR WRAPPER
================================================ */

.navbar-wrapper {

    position: fixed;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    z-index: 1000;

    transition: all 0.4s ease;

}


/* ================================================
   MAIN NAV
================================================ */

.main-nav {

    position: relative;

    width: 100%;

    background: rgba(10, 10, 10, 0.9);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border-radius: 8px;

    padding: 12px 35px;

    min-height: 66px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* ================================================
   LOGO
================================================ */

.logo {

    position: relative;

    z-index: 10;

}


.logo-link {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

}


.logo img {

    width: 122px;

    height: auto;

    display: block;

}


/* ================================================
   CENTER TEXT
================================================ */

.navbar-center-text {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    white-space: nowrap;

    pointer-events: none;

    z-index: 5;

}


.navbar-center-text span {

    font-family: 'Montserrat', sans-serif;

       font-size: 15px;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;

    line-height: 1;

}


.navbar-center-text span:first-child {

    color: #016c3f;

}


.navbar-center-text span:last-child {

    color: #8f9094;

}


/* ================================================
   DESKTOP NAVIGATION
================================================ */

.nav-links {

    position: absolute;

    top: 50%;

    left: 92%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    list-style: none;

    gap: 30px;

    margin: 0;

    padding: 0;

    white-space: nowrap;

}


.nav-links li {

    margin: 0;

    padding: 0;

}


.nav-links a {

    text-decoration: none;

    color: rgb(255 255 255 / 90%);

    font-family: 'Montserrat', sans-serif;

    font-weight: 300;

    font-size: 13px;

    letter-spacing: 0.6px;

    transition: 0.3s ease;

    white-space: nowrap;

}


.nav-links a:hover {

    color: #ffffff;

}


/* ================================================
   ACTION AREA
================================================ */

.actions {

    position: relative;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 14px;

}


/* ================================================
   BURGER
================================================ */

.burger {

    display: none;

    font-size: 22px;

    cursor: pointer;

    color: #ffffff;

}


/* ================================================
   MOBILE HEADER
================================================ */

.mobile-header {

    display: none;

}


/* ================================================
   OVERLAY
================================================ */

.nav-overlay {

    display: none;

}


/* ================================================
   SCROLLED NAVBAR
================================================ */

.navbar-wrapper.scrolled {

    top: 0;

    width: 100%;

    max-width: 100%;

}


.navbar-wrapper.scrolled .main-nav {

    border-radius: 0;

    padding: 12px 45px;

    background: rgba(0, 0, 0, .5);

}


/* ================================================
   TABLET / MOBILE
================================================ */

@media (max-width: 991px) {

    .navbar-wrapper {

        top: 0px;

        width: 92%;

    }


    .navbar-wrapper.scrolled {

        top: 0;

        width: 100%;

    }


    .navbar-wrapper.scrolled .main-nav {

        border-radius: 0;

        padding: 12px 18px;

    }


    .main-nav {

        min-height: 58px;

        padding: 12px 18px;

        justify-content: space-between;

    }


    .logo img {

        width: 105px;

    }


    /* CENTER TEXT */

    .navbar-center-text {

        left: 56%;

        gap: 5px;

    }


    .navbar-center-text span {

        font-size: 6px;

        letter-spacing: 2px;

    }


    /* SHOW BURGER */

    .burger {

        display: block;

    }


    /* ============================================
       MOBILE OVERLAY
    ============================================ */

    .nav-overlay {

        display: block;

        position: fixed;

        inset: 0;

        width: 100vw;

        height: 100vh;

        background: rgba(0, 0, 0, 0.75);

        opacity: 0;

        visibility: hidden;

        transition: 0.3s ease;

        z-index: 999;

    }


    .nav-overlay.active {

        opacity: 1;

        visibility: visible;

    }


    /* ============================================
       MOBILE MENU
    ============================================ */

    .nav-links {

        position: fixed;

        top: 0;

        left: auto;

        right: -100%;

        transform: none;

        width: 280px;

        max-width: 82vw;

        height: 100vh;

        background: #000000;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 20px;

        padding: 28px 26px;

        margin: 0;

        overflow-y: auto;

        z-index: 1001;

        box-shadow:
            -5px 0 30px
            rgba(0, 0, 0, 0.6);

        transition:
            right 0.4s
            cubic-bezier(0.2, 0.9, 0.4, 1.1);

    }


    .nav-links.active {

        right: 0;

    }


    .nav-links li {

        width: 100%;

    }


    .nav-links a {

        display: inline-flex;

        align-items: center;

        gap: 6px;

        font-size: 15px;

        color: #ffffff;

        white-space: normal;

    }


    /* ============================================
       MOBILE MENU HEADER
    ============================================ */

    .mobile-header {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        margin-bottom: 18px;

        padding-bottom: 16px;

        border-bottom: 1px solid #222222;

        color: #ffffff;

    }


    .mobile-header span {

        font-size: 17px;

        font-weight: 700;

    }


    .close-btn {

        font-size: 20px;

        cursor: pointer;

        transition: 0.2s ease;

    }


    .close-btn:hover {

        opacity: 0.7;

    }

}


/* ================================================
   SMALL MOBILE
================================================ */

@media (max-width: 600px) {

    .navbar-center-text {

        display: block;

    }

}


/* ================================================
   SMALL MOBILE
================================================ */

@media (max-width: 480px) {

    .navbar-wrapper {

        width: 100%;

    }


    .main-nav {

        padding: 10px 16px;

    }


    .logo img {

        width: 95px;

    }


    .nav-links {

        width: 330px;

        max-width: 80vw;

        padding: 28px 24px;

    }

}


/* ====================== NAVBAR END ====================== */


/* =================== about section start  */

.mission-section {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background: #000;
  /*margin-bottom: 70px;*/
}



.mission-row {
  row-gap: 50px;
}

.mission-left {
  position: relative;
  min-height: 520px;
  width: 100%;
}

.back-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 470px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.back-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.front-img {
  position: absolute;
  top: 102px;
  left: 0;
  width: 64%;
  height: 432px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.front-img img,
.back-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-right {
  padding-top: 20px;
}

.small-title {
  display: inline-block;
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin-bottom: 1px;
  letter-spacing: 0.3px;
  background: #016c3f;
  padding: 3px 16px;
  border-radius: 15px;
}

.mission-right h2 {
  /* font-size: 40px; */
  line-height: 1.45;
  font-weight: 800;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
font-family: "Inter", sans-serif;
}
.mission-right h2 span {
  color: #a5a5a8;
 font-family: "Inter", sans-serif;
}

.mission-right p {
 color: #666872;
font-family: Arial, Helvetica, sans-serif;
  line-height: 2.2;
  max-width: 760px;
  margin-bottom: 5px;
}

.mission-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 45px;
  background: #292929;
  color: #fff;
  border: 2px solid #111;
  border-radius: 7px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
}

.mission-btn:hover {
  background: transparent;
  color: #292929;
}

/* Tablet */
@media (max-width: 991px) {
  .mission-section {
    padding: 70px 0;
  }

  .mission-left {
    min-height: 500px;
  }

  .front-img {
    width: 72%;
    height: 440px;
  }

  .back-img {
    width: 72%;
    height: 440px;
  }

  .mission-right h2 {
    font-size: 36px;
  }

  .mission-right p {
    line-height: 2;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mission-section {
    padding: 45px 0;
  }

  .mission-left {
    min-height: 380px;
  }

  .front-img {
    width: 75%;
    height: 340px;
    left: 0;
    top: 35px;
  }

  .back-img {
    width: 75%;
    height: 340px;
    right: 0;
    top: 0;
  }

  .mission-right {
    text-align: center;
    padding-top: 0;
  }

  .small-title {
    font-size: 15px;
    margin-bottom: 18px;
    display: none;
  }

  .mission-right h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .mission-right p {
    line-height: 1.9;
    margin-bottom: 35px;
  }

  .mission-btn {
    min-width: 170px;
    height: 42px;
    font-size: 14px;
  }
}
/* =================== about section end  */

/* ============== marquee section start   */
.text-marquee-section {
  width: 100%;
  background: #000;
  padding: 28px 0;
  overflow: hidden;
}

.marquee-row {
  width: 110%;
  margin-left: -5%;
  background:
    radial-gradient(
      circle at top center,
      rgba(120, 0, 0, 0.35),
      transparent 38%
    ),
    #111;
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  margin-bottom: 30px;
}

.row-one {
  transform: rotate(-1deg);
}

.row-two {
  transform: rotate(1.1deg);
}

.row-three {
  transform: rotate(-1deg);
  margin-bottom: 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  animation: marqueeMove 40s linear infinite;
}

.marquee-track.reverse {
  animation: marqueeMoveReverse 45s linear infinite;
}

.marquee-track span {
  font-size: clamp(33px, 2vw, 60px);
  line-height: 1;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  /*text-shadow:*/
  /*  4px 4px 0 rgba(255, 255, 255, 0.18),*/
  /*  7px 7px 0 rgba(0, 0, 0, 0.35);*/
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeMoveReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .text-marquee-section {
    padding: 22px 0;
  }

  .marquee-row {
    padding: 10px 0;
    margin-bottom: 22px;
  }

  .marquee-track span {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .marquee-row {
    width: 120%;
    margin-left: -10%;
    margin-bottom: 18px;
  }

  .marquee-track span {
    font-size: 30px;
  }
}
/* ============== marquee section end   */

/* =================== services section start  */
.services-tab-section {
  /*background:*/
  /*  radial-gradient(*/
  /*    circle at top center,*/
  /*    rgba(120, 0, 0, 0.35),*/
  /*    transparent 38%*/
  /*  ),*/
  /*  #111;*/
  background: #000000;
  padding: 80px 0;
  overflow: hidden;
  /*margin-top: 80px;*/
}

.services-wrap {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 70px;
  margin-bottom: 60px;
}

.services-top h2 {
  /* font-family: "Anton", sans-serif; */
  color: #fff;
  /* font-size: 64px; */
  line-height: 0.95;
  letter-spacing: 2px;
  font-weight: 800;
}

.services-top p {
  color: #d7d7d7;
  /* font-family: "Inter", sans-serif; */
  /* font-size: 17px; */
  line-height: 1.7;
  max-width: 360px;
}

.service-btn {
  background: #016c3f;
  color: #fff;
  text-decoration: none;
  /* font-family: "Anton", sans-serif; */
  letter-spacing: 1px;
  padding: 10px 12px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  font-size: 14px;
}
.details-btn {
  /* background: #016c3f; */
  color: #fff;
  text-decoration: none;
  /* font-family: "Anton", sans-serif; */
  letter-spacing: 1px;
  padding: 10px 12px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  font-size: 14px;
}
.service-btn,
.details-btn:hover {
  color: #fff !important;
}

.service-tabs {
  width: 100%;
}

.service-tab {
  border-top: 1px solid rgb(255 255 255 / 23%);
  cursor: pointer;
}

.service-tab:last-child {
  border-top: 1px solid rgb(255 255 255 / 23%);
}

.service-tab h3 {
  font-size: clamp(54px, 7vw, 65px);
  line-height: 1.12;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  letter-spacing: 3px;
  transition: 0.35s ease;
  padding: 15px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
      letter-spacing: -4px;
      text-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

.service-tab.active h3 {
  color: #fff;
  -webkit-text-stroke: 0;
}

.video-box {
  display: none;
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin: 0 0 35px;
}

.service-tab.active .video-box {
  display: block;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.video-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* min-height: 100px; */
  min-height: 76px;
  background: rgb(0 0 0 / 36%);
  backdrop-filter: blur(12px);
  display: grid;
  /* grid-template-columns: 1.5fr 1fr auto; */
  gap: 25px;
  align-items: center;
  /* padding: 26px 32px; */
  padding: 18px 32px;
  border: 1px solid #cccccc80;
  border-radius: 10px;
}

.video-content p {
  color: #fff;
  /* font-family: "Inter", sans-serif; */

  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  border: 1px solid #016c3f;
  color: #fff !important;
  padding: 5px 12px;
  font-size: 13px;
  /* font-family: "Inter", sans-serif; */
  border-radius: 20px;
}

.details-btn {
  padding: 16px 28px;
  white-space: nowrap;
}

/* responsive */
@media (max-width: 991px) {
  .services-top {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .services-top p {
    margin: auto;
  }

  .services-top h2 {
    font-size: 56px;
  }

  .video-box {
    height: 360px;
  }

  .video-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tags {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services-tab-section {
    padding: 55px 0;
  }

  .services-wrap {
    width: 92%;
  }

  .services-top h2 {
    font-size: 28px;
  }

  .service-btn {
    padding: 15px 24px;
  }

  .service-tab h3 {
    font-size: 23px;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 1px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .video-box {
    height: 300px;
  }

  .video-content {
    padding: 20px;
  }

  .video-content p {
    font-size: 14px;
  }

  .details-btn {
    width: 100%;
  }
}
/* =================== services section end  */

/* ========================== team section start  */
.team-section {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #fffaf6 0%, #f3fff8 100%); */
  background: #f0f3f9;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(1, 108, 63, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.team-left-side {
  position: relative;
  z-index: 1;
}

.team-d {
  display: inline-block;
  background: #016c3f;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;

  font-weight: 600;
  margin-bottom: 18px;
}

.team-left-side h2 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 900;
  /*text-transform: uppercase;*/
  color: #222;
  letter-spacing: -2px;
  margin-bottom: 36px;
}

.team-span {
  color: #a5a5a8 !important;
}

.team-left-side p {
  max-width: 500px;

  line-height: 1.9;
  color: #030303;
  margin-bottom: 30px;
}

.team-right-side {
  position: relative;
  z-index: 1;
}

.team-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 38px 28px 34px;
  text-align: center;
  border: 1px solid rgba(1, 108, 63, 0.12);
  /* box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08); */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.team-slider .slick-track,
.team-slider .slick-list {
  background: transparent !important;
}

.team-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 110px;
  background: linear-gradient(135deg, #016c3f, #000);
  top: 0;
  left: 0;
  z-index: 0;
}

.team-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 75px rgba(1, 108, 63, 0.18);
}

.team-img {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.team-img img {
  /*width: 165px;*/
  /*height: 165px;*/
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid #fff;
  /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);*/
}

.team-content {
  position: relative;
  z-index: 1;
}

.team-content p {
  color: #333;

  line-height: 1.7;
  margin-bottom: 22px;
}

.team-content h5 {
  color: #016c3f;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-content h6 {
  color: #555;

  font-weight: 500;
  margin: 0;
}

/* ================ slick start  */
.team-slider .slick-slide {
  padding: 0 12px;
}

.team-slider .slick-list {
  margin: 0 -12px;
}

.team-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  padding: 0;
  list-style: none;
}

.team-slider .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #cfcfcf;
}

.team-slider .slick-dots li.slick-active button {
  background: #016c3f;
  width: 26px;
  border-radius: 20px;
}

/* ================ slick start end */

@media (max-width: 991px) {
  .team-section {
    padding: 70px 0;
  }

  .team-left-side {
    text-align: center;
    margin-bottom: 25px;
  }

  .team-left-side h2 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .team-section {
    padding: 55px 0;
  }

  .team-left-side h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .team-box {
    padding: 32px 22px 30px;
    min-height: auto;
  }

  /*.team-img img {*/
  /*  width: 145px;*/
  /*  height: 145px;*/
  /*}*/

  .team-content h5 {
    font-size: 20px;
  }
}
/* ========================== team section end  */
/* ================ pricing section start  */
.pricing-section {
  padding: 80px 35px;
  /* background: #050505; */
  background: #f0f3f9;
  overflow: hidden;
  position: relative;
  margin-bottom: 35px;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 120, 0, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 80, 0, 0.12),
      transparent 35%
    );
  pointer-events: none;
}

.pricing-slider {
  max-width: 1650px;
  margin: auto;
}

.pricing-item {
  padding: 18px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  height: 535px;
  padding: 90px 35px 35px;
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(28, 28, 28, 0.98),
    rgba(10, 10, 10, 0.98)
  );

  border: 1px solid rgba(255, 140, 0, 0.15);

  display: flex;
  flex-direction: column;

  backdrop-filter: blur(15px);

  /* box-shadow:
    0 0 0 1px rgba(255, 140, 0, 0.05),
    0 15px 50px rgba(0, 0, 0, 0.7); */

  transition: all 0.4s ease;
}

/* TOP LEFT GLOW */

/* .pricing-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;

  background: rgba(255, 140, 0, 0.25);

  filter: blur(75px);
} */

/* BOTTOM RIGHT GLOW */

.pricing-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 70, 0, 0.18);

  /* filter: blur(90px); */
}

/* TOP BORDER LIGHT */
.pricing-card .top-light {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8c00, transparent);
  box-shadow: 0 0 15px #ff8c00;
}

/* LEFT LIGHT */

.pricing-card .left-light {
  position: absolute;
  left: 0;
  top: 20%;
  width: 2px;
  height: 60%;

  background: linear-gradient(transparent, #ff8c00, transparent);

  box-shadow: 0 0 15px #ff8c00;
}

/* GLASS REFLECTION */

.pricing-card .shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  transform: skewX(-25deg);

  animation: shineMove 7s linear infinite;
}

@keyframes shineMove {
  from {
    left: -150%;
  }
  to {
    left: 200%;
  }
}

.pricing-card:hover {
  transform: translateY(-10px);

  /* border-color: rgba(255, 140, 0, 0.45);

  box-shadow:
    0 0 25px rgba(255, 140, 0, 0.2),
    0 0 60px rgba(255, 140, 0, 0.1),
    0 25px 55px rgba(0, 0, 0, 0.75); */
}

/* RIBBON */

.plan-ribbon {
  position: absolute;
  top: 30px;
  left: 25px;
  right: -15px;

  height: 55px;
  line-height: 55px;

  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;

  border-radius: 12px 8px 0 12px;

  background: linear-gradient(90deg, #ff5e00, #ff8c00, #ff4500);

  box-shadow:
    0 0 15px rgba(255, 140, 0, 0.55),
    0 0 35px rgba(255, 140, 0, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.5);
}

.plan-ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;

  border-top: 18px solid rgba(0, 0, 0, 0.4);
  border-right: 15px solid transparent;
}

/* FEATURES */

.features {
  list-style: none;
  padding: 0 8px 0 0;
  margin-top: 25px;

  flex: 1;
  overflow-y: auto;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.6;

  margin-bottom: 16px;
}

.features li:nth-child(2) {
  color: #888 !important;
}

.features i {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff8c00, #ff4500);

  color: #fff;
  font-size: 10px;

  box-shadow: 0 0 12px rgba(255, 140, 0, 0.45);
}

/* BUTTON */

.btn-wrap {
  text-align: center;
  margin-top: 20px;
}

.subscribe-btn {
  border: none;
  cursor: pointer;

  padding: 13px 30px;

  color: #fff;
  font-size: 15px;
  font-weight: 700;

  border-radius: 10px;

  background: linear-gradient(90deg, #ff5e00, #ff8c00, #ff4500);

  box-shadow:
    0 0 15px rgba(255, 140, 0, 0.45),
    0 0 30px rgba(255, 140, 0, 0.15);

  transition: 0.3s;
}

.subscribe-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 0 25px rgba(255, 140, 0, 0.6),
    0 0 45px rgba(255, 140, 0, 0.25);
}

/* COLOR CLASSES */

.blue,
.green,
.darkblue,
.red {
  background: linear-gradient(90deg, #ff5e00, #ff8c00, #ff4500) !important;
  border: none !important;
}

/* SCROLLBAR */

.features::-webkit-scrollbar {
  width: 4px;
}

.features::-webkit-scrollbar-track {
  background: #1d1d1d;
}

.features::-webkit-scrollbar-thumb {
  background: #ff8c00;
  border-radius: 20px;
}

/* DOTS */

.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
  list-style: none;
}

.slick-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  font-size: 0;
  background: #555;
}

.slick-dots .slick-active button {
  background: #016c3f;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.6);
}

/* MOBILE */

@media (max-width: 767px) {
  .pricing-section {
    padding: 50px 15px;
    margin-bottom: 50px;
  }

  .pricing-item {
    padding: 10px;
  }

  .pricing-card {
    height: 535px;
    padding: 85px 25px 30px;
  }

  .plan-ribbon {
    left: 20px;
  }

  .features li {
    font-size: 14px;
  }

  .subscribe-btn {
    width: 100%;
  }
}
/* ================ pricing section end  */

/* =================== counetr section start  */
.counter-section {
  padding: 50px 0;
   background: #000; 
  /*background:*/
  /*  radial-gradient(*/
  /*    circle at top center,*/
  /*    rgba(120, 0, 0, 0.35),*/
  /*    transparent 38%*/
  /*  ),*/
  /*  #111;*/
}

/* .container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 15px;
} */

.counter-wrapper {
  background: linear-gradient(to right, #60606038, #60606038);
  border-radius: 60px 0 60px 0;
  padding: 50px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid #cccccc42;
}

.counter-box {
  text-align: center;
}

.counter-number {
  font-size: 75px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.counter-number .plus {
  color: #fff;
}

.counter-title {
  color: #fff;

  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 991px) {
  .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 30px;
    gap: 40px;
  }

  .counter-number {
    font-size: 70px;
  }

  .counter-title {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .counter-wrapper {
    grid-template-columns: 1fr;
    border-radius: 40px 0 40px 0;
    padding: 40px 20px;
    gap: 35px;
  }

  .counter-number {
    font-size: 35px;
    border-bottom: 1px solid #cccccc75;
    padding-bottom: 15px;
  }

  .counter-title {
    margin-top: 12px;
  }
}
/* =================== counetr section end  */

/* ===================== gallery section start  */
.gallery-section {
  width: 100%;
  padding: 70px 0 70px;
  overflow: hidden;
      background: #030303;
  /* background: rgb(1 108 63 / 11%); */
  /* margin-bottom: 60px; */
  /* margin-top: 80px; */
}

.gallery-container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 0 0 90px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 520px calc(100% - 555px);
  gap: 35px;
  align-items: center;
}

.gallery-content {
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.gallery-content h2 {
  /*font-size: 40px;*/
       font-family: "Inter", sans-serif !important;
    font-size: clamp(57px, 2vw, 92px);
    font-weight: 400;
    line-height: 0.99;
      letter-spacing: -4px;

}

.gallery-content h2 span {
  color: #fff;
       font-family: "Inter", sans-serif !important;
}

.circle-word {
  position: relative;
  display: inline-block;
}

.circle-word:after {
  content: "";
  position: absolute;
  left: -45px;
  top: 4px;
  width: 340px;
  height: 82px;
  border: 4px solid #444;
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
}

.gallery-content p {
  max-width: 500px;
  line-height: 1.9;
  color: #9b9b9b;
  margin-bottom: 30px;
 font-family: Arial, Helvetica, sans-serif;
}

.gallery-btns {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gallery-btn {
  min-width: 140px;
  height: 40px;
  padding: 0 24px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn.dark {
  min-width: 185px;
  background: #060b12;
  color: #fff;
  border-color: #060b12;
  gap: 14px;
}

.gallery-slider-wrap {
  width: 100%;
  overflow: hidden;
}

.gallery-slider {
  width: 100%;
}

.gallery-slide {
  padding: 0 18px;
}

.gallery-img {
  width: 100%;
  /* height: 575px; */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-img:hover img {
  transform: scale(1.05);
}

/* Popup */
.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.gallery-popup.active {
  display: flex;
}

.gallery-popup img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: 20px;
}

.popup-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

.gallery-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  list-style: none;
  padding: 0;
}

.gallery-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.gallery-slider .slick-dots button {
  font-size: 0;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9c9c9;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

/* Active Dot */
.gallery-slider .slick-dots li.slick-active button {
  width: 28px;
  height: 12px;
  border-radius: 30px;
  background: #006b3f;
}

/* Responsive */
@media (max-width: 1400px) {
  .gallery-container {
    padding-left: 50px;
  }

  .gallery-row {
    grid-template-columns: 480px calc(100% - 515px);
  }

  .gallery-content h2 {
    font-size: 52px;
  }

  .gallery-img {
    height: 535px;
  }
}

@media (max-width: 1199px) {
  .gallery-row {
    grid-template-columns: 430px calc(100% - 465px);
  }

  .gallery-content h2 {
    font-size: 44px;
  }

  .circle-word:after {
    left: -25px;
    width: 255px;
    height: 60px;
  }

  .gallery-img {
    height: 480px;
    border-radius: 55px;
  }
}

@media (max-width: 991px) {
  .gallery-container {
    padding: 0 20px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .gallery-content h2 {
    font-size: 46px;
  }

  .gallery-slider-wrap {
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .gallery-section {
    /* padding: 40px 0; */
    padding-top: 66px !important;
    margin-top: 25px !important;
  }

  .gallery-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .gallery-content p {
    line-height: 1.7;
  }

  .circle-word:after {
    left: -20px;
    top: 3px;
    width: 220px;
    height: 50px;
    border-width: 3px;
  }

  .gallery-btns {
    gap: 12px;
    flex-wrap: wrap;
  }

  .gallery-btn {
    height: 42px;
    font-size: 13px;
    min-width: 130px;
  }

  .gallery-btn.dark {
    min-width: 160px;
  }

  .gallery-slide {
    padding: 0 6px;
  }

  .gallery-img {
    height: 390px;
    border-radius: 15px;
  }
}
/* ===================== gallery section end  */

/* ====================== learn more section start  */
.sound-cta-section {
  padding: 50px 0;
  /* background: #f7f7f7; */
}

.sound-cta-container {
  width: 100%;
  max-width: 1770px;
  margin: auto;
  padding: 0 38px;
}

.sound-cta-box {
  position: relative;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background: url(../img/bg.webp) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sound-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.sound-cta-content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  padding: 20px;
  color: #fff;
}

.sound-cta-content h2 {
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 34px;
  letter-spacing: -1px;
}

.sound-cta-content p {
  /* font-size: 21px; */
  line-height: 1.8;
  font-weight: 500;
  max-width: 1100px;
  margin: 0 auto 45px;
  color: #fff;
}

.sound-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.sound-btn {
  height: 40px;
  min-width: 188px;
  padding: 0 17px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sound-btn.light {
  background: #fff;
  color: #0b1118;
  border-color: #fff;
  min-width: 260px;
  gap: 14px;
}

@media (max-width: 991px) {
  .sound-cta-container {
    padding: 0 20px;
  }

  .sound-cta-box {
    min-height: 470px;
    border-radius: 55px;
  }

  .sound-cta-content h2 {
    font-size: 40px;
  }

  .sound-cta-content p {
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .sound-cta-section {
    padding: 35px 0;
  }

  .sound-cta-container {
    padding: 0 15px;
  }

  .sound-cta-box {
    min-height: 430px;
    border-radius: 35px;
    padding: 35px 0;
  }

  .sound-cta-content h2 {
    font-size: 28px;
    margin-bottom: 22px;
    font-weight: 600;
  }

  .sound-cta-content p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .sound-cta-buttons {
    flex-direction: column;
  }

  .sound-btn,
  .sound-btn.light {
    width: 100%;
    max-width: 260px;
    min-width: auto;
  }
}
/* ====================== learn more section end  */

/* ====================== footer start  */
.footer-section {
  padding: 30px 0 0;
  /* background: #eefaff; */
}

.footer-container {
  width: 100%;
  max-width: 1850px;
  margin: auto;
  padding: 0;
}

.footer-main {
  /* background: linear-gradient(105deg, #020b3f 0%, #090720 48%, #3b0b00 100%); */
  background: linear-gradient(105deg, #153d2c 0%, #090720 48%, #3b0b00 100%);
  border-radius: 70px 0 0 0;
  padding: 70px 95px 24px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 1.5fr;
  gap: 70px;
}

.footer-logo img {
  width: 150px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-logo span {
  font-weight: 300;
}

.footer-about p,
.footer-col p,
.footer-col a {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
}

.copyright a {
  color: #09db83;
}

.footer-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 26px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 35px;
  height: 3px;
  background: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-contact p {
  margin-bottom: 16px;
}

.newsletter-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 12px;
  max-width: 390px;
}

.newsletter-box i {
  font-size: 15px;
  margin-right: 12px;
}

.newsletter-box input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 14px;
}

.newsletter-box input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-box button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
}

.footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 45px 0 18px;
}

.copyright {
  text-align: center;
  font-size: 15px;
  color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .footer-main {
    padding: 55px 35px 24px;
    border-radius: 50px 0 0 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .footer-section {
    padding-top: 15px;
  }

  .footer-main {
    padding: 45px 22px 22px;
    border-radius: 40px 0 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo {
    margin-bottom: 18px;
  }

  .footer-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .social-icons {
   margin-top: 28px;
        display: flex;
        justify-content: center;
  }

  .footer-line {
    margin: 35px 0 16px;
  }
}
/* ====================== footer end  */

/* ================ whatapps start  */
.float-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.float-item {
  width: 57px;
  height: 50px;
  margin-bottom: 12px;
  margin-left: auto;
  border: 1px solid #fff;
  border-right: 0;
  border-radius: 45px 0 0 45px;
  background: #252525;
  overflow: hidden;
  transition: width 0.35s ease;
}

.float-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  padding-left: 5px;
}

.float-icon {
  width: 46px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.float-item.whatsapp .float-icon {
  background: #19c64a;
  color: #fff;
}

.float-item.email .float-icon {
  color: #ff3038;
}

.float-text {
  color: #ff3038;

  font-weight: 800;
  margin-left: 18px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Only WhatsApp Open */
.float-item.whatsapp:hover {
  width: 230px;
}

.float-item.whatsapp:hover .float-text {
  opacity: 1;
}

/* Only Email Open */
.float-item.email:hover {
  width: 235px;
}

.float-item.email:hover .float-text {
  opacity: 1;
}

@media (max-width: 575px) {
  .float-item {
    width: 72px;
    height: 68px;
    border-radius: 38px 0 0 38px;
  }

  .float-item a {
    padding-left: 14px;
  }

  .float-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 21px;
  }

  .float-text {
    font-size: 18px;
    margin-left: 12px;
  }

  .float-item.whatsapp:hover {
    width: 260px;
  }

  .float-item.email:hover {
    width: 245px;
  }
}

/* ================ whatapps end  */

/* ====================================== project section start  */
.project-jovel {
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: #000;
}
.project-jovel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(1, 108, 63, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

/* Heading */

.project-heading {
  text-align: center;
  margin-bottom: 40px;
}

.project-heading h2 {
 color: rgb(255, 255, 255);
  /* font-size: 40px; */
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
     font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
  
}

.project-heading h2 span {
  color: #a5a5a8;
 font-family: 'Montserrat', sans-serif;
}

.project-heading p {
  color: #000;
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
}

/* Dots Position */

.project-slider-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

/* Slick Dots */

.project-slider-dots .slick-dots {
  display: flex !important;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin-top: 25px;
}

.project-slider-dots .slick-dots li {
  margin: 0;
}

.project-slider-dots .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #bfbfbf;
  font-size: 0;
  cursor: pointer;
  transition: 0.3s;
}

.project-slider-dots .slick-dots li.slick-active button {
  width: 34px;
  height: 10px;
  border-radius: 30px;
  background: #0b7a49;
  box-shadow: 0 0 15px rgba(11, 122, 73, 0.5);
}

/* Hide Arrows */

.slick-prev,
.slick-next {
  display: none !important;
}

.project-item {
  padding: 15px;
  border: 1px solid #03030352;
  /* box-shadow:
    rgb(60 64 67 / 0%) 0px 1px 2px 0px,
    rgb(60 64 67 / 0%) 0px 1px 3px 1px; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  background: #f0f3f9;
}

.project-img {
  margin-bottom: 25px;
  /*transition: 0.4s;*/
}

/*.project-item:hover .project-img {*/
/*  transform: translateY(-8px);*/
/*}*/

.project-img img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: auto;
}

.project-item h3 {
  color: #030303;
  font-size: 18px;
  margin-bottom: 9px;
  font-weight: 800;
}

.project-item p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 25px;
}

.project-btn {
  text-decoration: none;
    color: #016c3f;
  font-weight: 600;
  font-size: 17px;
}

.project-btn:hover {
  color: #000;
}

.project-footer-link {
  text-align: center;
  margin-top: 34px;
  color: #0b7a49;
  font-size: 18px;
  font-weight: 800;
}

.project-footer-link a {
  color: #c89d2d;
  text-decoration: none;
  margin-left: 10px;
  font-weight: 700;
}

.project-jovel-slider .slick-slide {
  margin: 0 10px;
}

/* .project-jovel-slider .slick-list {
  margin: 0 -px;
} */
/* ================ custom  */
.project-jovel-slider .slick-list {
  margin: -15px -15px;
  padding-bottom: 20px;
}

@media (max-width: 991px) {
  .project-heading h2 {
    font-size: 42px;
  }

  .project-heading span {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .project-jovel {
    padding: 70px 0;
  }

  .project-heading h2 {
            font-size: 30px;
        text-align: start;
        padding-left: 21px;
  }

  .project-heading span {
    font-size: 28px;
  }
  .project-heading p {
  }

  .project-item h3 {
    font-size: 26px;
  }
}
/* ====================================== project section end  */

/* ============================== testimunils start  */
.testimonial-section {
  padding: 80px 0;
  overflow: hidden;
  background: #000;
}

/* Slider */

.testimonial-slider {
  margin: 0 -12px;
}

.testimonial-slider .slick-slide {
  padding: 0 12px;
}

.testimonial-slider .slick-track {
  display: flex;
}

.testimonial-slider .slick-slide {
  height: inherit;
}

/* Card */

.testimonial-card {
  background: #050505;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 24px;
  padding: 35px;
  /*min-height: 290px;*/
  transition: 0.3s;
      height: 90%;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

.user-info span {
  color: rgb(255 255 255 / 79%);
  font-size: 13px;
}

.rating {
  color: #f5b04c;
  font-size: 24px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: rgb(255 255 255 / 79%);
  font-size: 16px;
  line-height: 1.8;
}

/* Dots */

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  color: #fff;
  opacity: 0.4;
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  color: #f5b04c;
  opacity: 1;
}

/* Tablet */

@media (max-width: 991px) {
  .testimonial-card {
    min-height: auto;
  }

  .testimonial-top {
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 25px;
    border-radius: 20px;
  }

  .user-info img {
    width: 60px;
    height: 60px;
  }

  .user-info h4 {
    font-size: 15px;
  }

  .user-info span {
    font-size: 14px;
  }

  .rating {
    font-size: 20px;
  }

  .testimonial-card p {
      font-size: 13px;
  }
}
/* ============================== testimunils end  */
/* ========================= breadcrumb section start  */
.about-hero {
  position: relative !important;
  width: 100%;
  height: 70vh;
  /* min-height: 700px; */
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
      /*background-size: 100%, 100% !important;*/
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(*/
  /*  to top,*/
  /*  rgba(0, 0, 0, 0.85) 0%,*/
  /*  rgba(0, 0, 0, 0.45) 50%,*/
  /*  rgba(0, 0, 0, 0.1) 100%*/
  /*);*/
  z-index: 1;
}

.custom-ccc{
    max-width: 500px;
    margin: 0 auto;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 0 70px 60px;
}

.hero-left {
  max-width: 700px;
}

.sub-title {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  margin-bottom: 15px;
}

.hero-left h1 {
  color: #fff;
  font-size: 45px;
  line-height: 0.9;
  font-weight: 700;
  /* letter-spacing: -5px; */
}

.green-dot {
  color: #42d97a;
}

.hero-right {
  max-width: 450px;
  /*margin-bottom: 20px;*/
}

.hero-right p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.scroll-down {
  position: absolute;
  right: 40px;
  bottom: 35px;
  z-index: 10;
}

.scroll-down i {
  color: #fff;
  font-size: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Tablet */

@media (max-width: 991px) {
  .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 40px 50px;
  }

  .hero-left h1 {
    font-size: 80px;
  }

  .hero-right {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .hero-right p {
    font-size: 18px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .about-hero {
    min-height: 550px;
  }

  .hero-wrapper {
    padding: 0 20px 30px;
  }

  .hero-left h1 {
    font-size: 28px;
    letter-spacing: -2px;
  }

  .sub-title {
    font-size: 14px;
  }

  .hero-right p {
  }

  .scroll-down {
    right: 20px;
    bottom: 20px;
  }

  .scroll-down i {
    font-size: 28px;
  }
}

/* ===================== new css start about  */
.trust-image {
  position: relative;
  max-width: 640px;
  margin: auto;
  padding-right: 110px;
  padding-bottom: 70px;
}

.trust-image .main-image {
  position: relative;
  z-index: 1;
}

.trust-image .main-image img {
  width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.trust-image .small-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  background: #fff;
  padding: 18px;
  z-index: 2;
}

.trust-image .small-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Tablet */

@media (max-width: 991px) {
  .trust-area {
    padding: 70px 0;
  }

  .trust-image {
    max-width: 600px;
    padding-right: 70px;
    padding-bottom: 60px;
    margin-bottom: 50px;
  }

  .trust-image .small-image {
    width: 48%;
    padding: 15px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .trust-image {
    padding-right: 0;
    padding-bottom: 0;
  }

  .trust-image .small-image {
    position: relative;
    width: 70%;
    margin: -70px 0 0 auto;
    right: auto;
    bottom: auto;
    padding: 12px;
  }
}

@media (max-width: 575px) {
  .trust-image .small-image {
    width: 75%;
    margin-top: -55px;
    padding: 10px;
  }
}
/* ===================== new css end about  */
/* ========================= breadcrumb section end  */

/* =================== about page section start  */
.hr-section {
  background: #f0f3f9;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 44px;
}

.hr-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* LEFT */

.hr-left {
  flex: 1;
}

.sub-title {
  color: #0c8a8a;
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 15px;
  display: inline-block;
}

.hr-left h2 {
  /* font-size: 40px; */
  color: #000;
  margin-bottom: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 800;
}

.hr-left p {
  line-height: 25px;
  color: #111;
  margin-bottom: 10px;
  text-align: justify;
}

.hr-left span {
  color: #016c3f;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.btn-contact {
  background: #118b8d;
  color: #fff;
  text-decoration: none;
  padding: 22px 45px;
  border-radius: 50px;
  font-size: 20px;
}

.founder img {
  max-width: 220px;
  display: block;
}

.founder h4 {
  margin-top: 10px;
  font-size: 20px;
}

.founder span {
  color: #118b8d;
  font-weight: 400;
}

.download-box {
  margin-top: 25px;
}

.download-box a {
  text-decoration: none;
  color: #212529;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.download-box i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #118b8d;
  color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 14px;
}

/* RIGHT */

.hr-right {
  flex: 1;
  position: relative;
  min-height: 700px;
  overflow: visible;
}

.circle-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #e9edf2;
  border-radius: 50%;
  right: 100px;
  top: 120px;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 65%; */
  z-index: 2;
}

.main-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.play-btn {
  position: absolute;
  left: 65%;
  top: 52%;
  width: 85px;
  height: 85px;
  background: #118b8d;
  border-radius: 15px;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  color: #fff;
  font-size: 30px;
}

.small-image {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 67%;
  z-index: 3;
}

.small-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.main-image,
.small-image {
  overflow: hidden;
  border-radius: 20px;
}

.main-image img,
.small-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .hr-section {
    padding: 80px 0;
  }

  .hr-content {
    flex-direction: column;
    gap: 60px;
  }

  .hr-left,
  .hr-right {
    width: 100%;
    flex: 100%;
  }

  .hr-left h2 {
    font-size: 34px;
  }

  .hr-right {
    min-height: 600px;
  }

  .circle-shape {
    width: 400px;
    height: 400px;
    right: 50%;
    transform: translateX(50%);
    top: 120px;
  }

  .main-image {
    width: 65%;
  }

  .small-image {
    width: 60%;
  }

  .play-btn {
    width: 75px;
    height: 75px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .hr-section {
    padding: 60px 15px;
  }

  .hr-left h2 {
    font-size: 28px;
  }

  .hr-left p {
    font-size: 15px;
    line-height: 1.8;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-contact {
    padding: 16px 35px;
  }

  .founder img {
    max-width: 160px;
  }

  .founder h4 {
    font-size: 18px;
  }

  .download-box a {
  }

  /* IMAGE SECTION */

  .hr-right {
    height: auto;
    min-height: 465px;
  }

  .circle-shape {
    width: 280px;
    height: 280px;
    top: 140px;
    right: 50%;
    transform: translateX(50%);
  }

  .main-image {
    width: 100% !important;
    left: 0;
    top: 0;
  }

  .small-image {
    width: 75%;
    right: 0;
    bottom: 0;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    left: 58%;
    top: 45%;
    border-radius: 10px;
  }

  .play-btn i {
    font-size: 22px;
  }

  .small-image {
    position: absolute;
    right: -12px;
    bottom: -18px !important;
    width: 67%;
    z-index: 3;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .hr-left h2 {
    font-size: 28px;
  }

  .sub-title {
    font-size: 18px;
  }

  .hr-right {
    height: 420px;
  }

  .circle-shape {
    width: 220px;
    height: 220px;
  }

  .main-image {
    width: 85%;
  }

  .small-image {
    width: 80%;
  }

  .play-btn {
    width: 55px;
    height: 55px;
    left: 56%;
    top: 43%;
  }

  .play-btn i {
    font-size: 18px;
  }
}
/* =================== about page section end  */

/* ======================= about us music start  */
.jovel-music {
  background: #fff;
  padding: 55px 0;
  overflow: hidden;
}

.jovel-music-heading {
  text-align: center;
  max-width: 900px;
  margin: auto auto 20px;
}

.portfolio-about {
  color: #fff;
  font-size: 14px;
  /* font-family: cursive; */
  /* display: block; */
  margin-bottom: 10px;
  background: #016c3f;
  padding: 3px 16px;
  border-radius: 15px;
}
.portfolio-ab {
  color: #016c3f;
}

.jovel-music-heading h2 {
  /* font-size: 40px; */
  font-weight: 800;
  color: #1c1c30;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-top: 10px;
}

.jovel-music-heading p {
  line-height: 1.8;
  color: #000;
}
.custom-p-0 {
  padding: 0;
}

.jovel-music-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.jovel-music-left {
  flex: 0 0 280px;
}

.jovel-music-right {
  flex: 0 0 350px;
}

.jovel-music-left img,
.jovel-music-right img {
  width: 100%;
  display: block;
}

/* .jovel-music-center {
  flex: 1;
} */

.jovel-music-center {
  flex: 1;
  height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}

/* scroll start  */
.jovel-music-center::-webkit-scrollbar {
  width: 8px;
}

.jovel-music-center::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

.jovel-music-center::-webkit-scrollbar-thumb {
  background: #e63768;
  border-radius: 20px;
}

.jovel-music-center::-webkit-scrollbar-thumb:hover {
  background: #c92756;
}
/* scroll end  */

.jovel-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #ddd;
}

.jovel-track:last-child {
  border-bottom: 1px solid #ddd;
}

.track-info {
  width: 40%;
}

.track-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #016c3f;
  margin-bottom: 8px;
}

.track-info p {
  color: #000;
  font-size: 14px;
}

.track-player {
  display: flex;
  align-items: center;
  gap: 15px;
}

.music-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #d2bf72;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

.music-btn i {
  font-size: 10px;
}

.music-btn:hover {
  opacity: 0.9;
}

.track-player span {
  font-size: 18px;
  color: #333;
}

.track-volume {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-volume i {
  font-size: 20px;
  color: #d2bf72;
}

.volume-slider {
  -webkit-appearance: none;
  width: 120px;
  height: 6px;
  background: #ddd;
  border-radius: 10px;
  cursor: pointer;
}

/* Track */
.volume-slider::-webkit-slider-runnable-track {
  height: 6px;
  background: #d2bf72;
  border-radius: 10px;
}

/* Thumb */
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #016c3f;
  border-radius: 50%;
  margin-top: -5px;
  cursor: pointer;
}

/* Firefox */
.volume-slider::-moz-range-track {
  height: 6px;
  background: #d2bf72;
  border-radius: 10px;
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #e63768;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .jovel-music-wrapper {
    flex-direction: column;
    position: relative;
    gap: 30px;
  }

  .jovel-music-left,
  .jovel-music-right {
    flex: unset;
    width: 220px;
  }

  .jovel-music-center {
    width: 100%;
    height: auto;
    max-height: 500px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .jovel-music {
    padding: 50px 15px;
  }

  .jovel-music-heading h2 {
    font-size: 28px;
  }

  .jovel-music-heading p {
    padding: 0 15px;
  }

  .jovel-music-wrapper {
    position: relative;
    display: block;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* TOP LEFT IMAGE */

  .jovel-music-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    z-index: 1;
  }

  /* BOTTOM RIGHT IMAGE */

  .jovel-music-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    z-index: 1;
  }

  .jovel-music-left img,
  .jovel-music-right img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* CENTER CONTENT */

  .jovel-music-center {
    width: 100%;
    height: auto;
    max-height: 550px;
    padding-right: 0;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 30px;
  }

  .jovel-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .track-info {
    width: 100%;
  }

  .track-player {
    width: 100%;
  }

  .track-volume {
    width: 100%;
  }

  .volume-slider {
    width: 100%;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .jovel-music-left {
    width: 100px;
  }

  .jovel-music-right {
    width: 100px;
  }

  .jovel-music-heading h2 {
    font-size: 24px;
  }

  .track-info h3 {
    font-size: 18px;
  }

  .track-player span {
  }
}

/* ================================= jump animation  */
.jovel-music-left {
  animation: floatLeft 4s ease-in-out infinite;
}

.jovel-music-right {
  animation: floatRight 4.5s ease-in-out infinite;
}

@keyframes floatLeft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
/* ================================= jump animation  end */

/* Responsive */

@media (max-width: 991px) {
  .jovel-music-wrapper {
    flex-direction: column;
  }

  .jovel-music-left,
  .jovel-music-right {
    max-width: 300px;
  }

  .jovel-music-heading h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .jovel-music {
    padding: 70px 0;
  }

  .jovel-music-heading h2 {
    font-size: 28px;
  }

  .jovel-track {
    flex-direction: column;
    align-items: flex-start;
  }

  .track-info,
  .track-player,
  .track-volume {
    width: 100%;
  }

  .volume-slider {
    width: 100%;
  }
}
/* ======================= about us music end  */
.information-section {
  margin-bottom: 100px;
}
.jovel-information {
  height: 100%;
  width: 100%;
  background: url(../img/bg1.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 59px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 64px;
}

.jovel-information h2 {
  padding-bottom: 13px;
  text-align: center;
  /* font-size: 42px; */
  font-weight: 800;
}

.jovel-information p {
  color: #fff;
  text-align: center;
  line-height: 29px;
}

.infomation-img {
  height: 100%;
}

.infomation-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.infomation-img .slick-slide img {
  transform: scale(1);
  transition: transform 6s ease;
}

.infomation-img .slick-active img {
  transform: scale(1.08);
}

.infomation-img .slick-track,
.infomation-img .slick-list {
  height: 100%;
}

.information-section .row {
  min-height: 500px;
}

.infomation-img,
.infomation-img .slick-list,
.infomation-img .slick-track,
.infomation-img .slick-slide,
.infomation-img .slick-slide > div {
  height: 100%;
}
@media (max-width: 776px) {
  .jovel-information {
    padding: 36px 12px;
  }
  .jovel-information h2 {
    font-size: 28px;
  }
  .jovel-information p {
    color: #fff;
    text-align: center;
    line-height: 26px;
  }
}
/* ================================ galery about start  */
.gallery-global {
  overflow: hidden;
}

.gallery-global-slider-item {
  position: relative;
  overflow: hidden;
}

.gallery-global-slider-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.gallery-global-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-global-slider-item:hover .gallery-global-overlay {
  opacity: 1;
}

.gallery-global-slider-item:hover img {
  transform: scale(1.08);
}

.gallery-global-view-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff0057;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  transform: scale(0);
  transition: 0.4s;
}

.gallery-global-slider-item:hover .gallery-global-view-btn {
  transform: scale(1);
}

.gallery-global-view-btn:hover {
  background: #fff;
  color: #ff0057;
}

.gallery-global-slider .slick-slide {
  margin: 0;
}

.gallery-global-slider .slick-track {
  display: flex;
}

@media (max-width: 991px) {
  .gallery-global-slider-item img {
    height: 220px;
  }

  .gallery-global-view-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .gallery-global-slider-item img {
    height: 180px;
  }

  .gallery-global-view-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
/* ================================ galery about end  */

/* ================================ jovel section start  */
.jovel-sound-section {
  padding: 0px 20px;
  margin-bottom: 70px;
  background: #fff;
  overflow: hidden;
}

.jovel-sound-container {
  max-width: 1400px;
  margin: auto;
  padding: 90px 0;
}

.jovel-sound-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
}

.jovel-sound-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.jovel-sound-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.jovel-sound-icon {
  min-width: 80px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #016c3f;
  font-size: 38px;
}

.jovel-sound-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #232334;
  margin-bottom: 12px;
}

.jovel-sound-content p {
  color: #000;
  line-height: 1.9;
}

.jovel-sound-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jovel-sound-center::before,
.jovel-sound-center::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.06);
}

.jovel-sound-center::before {
  left: -110px;
}

.jovel-sound-center::after {
  right: -110px;
}

.jovel-sound-waves-left,
.jovel-sound-waves-right {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.jovel-sound-waves-left {
  left: -120px;
}

.jovel-sound-waves-right {
  right: -120px;
}

.jovel-sound-waves-left span,
.jovel-sound-waves-right span {
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
}

.jovel-sound-waves-left span:nth-child(1),
.jovel-sound-waves-right span:nth-child(1) {
  inset: 0;
}

.jovel-sound-waves-left span:nth-child(2),
.jovel-sound-waves-right span:nth-child(2) {
  inset: 20px;
}

.jovel-sound-waves-left span:nth-child(3),
.jovel-sound-waves-right span:nth-child(3) {
  inset: 40px;
}

.jovel-sound-waves-left span:nth-child(4),
.jovel-sound-waves-right span:nth-child(4) {
  inset: 60px;
}

.jovel-sound-image {
  position: relative;
  z-index: 2;
}

.jovel-sound-image img {
  max-width: 100%;
  width: 560px;
  display: block;
}

.jovel-sound-btn-wrap {
  text-align: center;
  margin-top: 70px;
}

.jovel-sound-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 235px;
  height: 50px;
  background: #016c3f;
  color: #fff;
  text-decoration: none;
  border-radius: 60px;

  font-weight: 600;
  transition: 0.3s;
}

.jovel-sound-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

@media (max-width: 1200px) {
  .jovel-sound-wrapper {
    gap: 30px;
  }

  .jovel-sound-content h3 {
    font-size: 24px;
  }

  .jovel-sound-content p {
  }

  .jovel-sound-image img {
    width: 430px;
  }
}

@media (max-width: 991px) {
  .jovel-sound-wrapper {
    grid-template-columns: 1fr;
  }

  .jovel-sound-center {
    order: -1;
    margin-bottom: 30px;
  }

  .jovel-sound-features {
    gap: 35px;
  }

  .jovel-sound-item {
    text-align: left;
  }

  .jovel-sound-waves-left,
  .jovel-sound-waves-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .jovel-sound-section {
    padding: 0px 15px;
  }

  .jovel-sound-item {
    gap: 18px;
  }

  .jovel-sound-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    font-size: 36px;
  }

  .jovel-sound-content h3 {
    font-size: 20px;
  }

  .jovel-sound-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .jovel-sound-image img {
    width: 320px;
  }

  .jovel-sound-btn {
    min-width: 220px;
    height: 60px;
    font-size: 18px;
  }
}
/* ================================ jovel section end  */

/* =============================== production-services start  */
.jovel-services {
  background: #f3f3f5;
}

.jovel-service-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  /* border-radius: 15px; */
  overflow: visible;
  /* hidden hata do */
  text-align: center;
  position: relative;
  transition: 0.4s;
  height: 96%;
  padding-bottom: 16px;
  /* button ke liye space */
}

.jovel-service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.jovel-service-img {
  height: 275px;
  overflow: hidden;
}

.jovel-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.jovel-service-box:hover img {
  transform: scale(1.08);
}

.jovel-icon {
  width: 80px;
  height: 80px;
  background: #016c3f;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 235px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  border: 5px solid #fff;
}

.jovel-content {
  padding: 36px 30px 35px;
}

.jovel-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 9px;
}

.jovel-content p {
  line-height: 25px;
  color: #555;
  margin-bottom: 25px;
}

.jovel-btn {
  position: absolute;
  left: 50%;
  bottom: -24px;
  /* border ke center me aayega */
  transform: translateX(-50%);
  display: inline-block;
  background: #000;
  font-size: 14px;
  color: #fff;
  padding: 10px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.4s;
}

.jovel-btn:hover {
  background: #fff;
  color: #000;
}

.jovel-btn i {
  margin-left: 8px;
}

@media (max-width: 991px) {
  .jovel-service-img {
    height: 230px;
  }

  .jovel-icon {
    top: 190px;
  }

  .jovel-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .jovel-service-box {
    margin-bottom: 35px;
    height: 95%;
  }

  .jovel-btn {
    padding: 14px 30px;
    font-size: 14px;
    bottom: -25px;
  }
}
/* =============================== production-services end  */

/* ============================= our blog start  */
.jovel-blog {
  /* background: #f5f5f5; */
}

.jovel-blog-item {
  width: 100%;
}

.jovel-blog-img {
  overflow: hidden;
  margin-bottom: 25px;
}

.jovel-blog-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.jovel-blog-item:hover .jovel-blog-img img {
  transform: scale(1.08);
}

.jovel-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 6px;
  color: #666;
  font-weight: 600;
}

.jovel-blog-meta a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.jovel-blog-meta span {
  font-size: 15px;
}

.jovel-blog-meta i {
  color: #e91e63;
  margin-right: 5px;
}

.jovel-blog-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 7px;
  padding-top: 10px;
}

.jovel-blog-title a {
  color: #000;
  text-decoration: none;
  transition: 0.4s;
}

.jovel-blog-title a:hover {
  color: #e91e63;
}

.jovel-blog-item p {
  line-height: 28px;
  color: #030303;
}

/* Tablet */
@media (max-width: 991px) {
  .jovel-blog-img img {
    height: 250px;
  }

  .jovel-blog-title {
    font-size: 24px;
  }

  .jovel-blog-item p {
    line-height: 30px;
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .jovel-blog-img img {
    height: 220px;
  }

  .jovel-blog-title {
    font-size: 22px;
  }

  .jovel-blog-meta {
    font-size: 15px;
    gap: 8px;
  }

  .jovel-blog-item p {
    line-height: 28px;
  }
}
/* ============================= our blog end  */

/* ========================= contact us Address start  */
.jovel-address {
   background: #000; 
  padding: 100px 0;
}

.jovel-office h2,
.jovel-hours h2 {
  /*font-size: 30px;*/
  /*font-weight: 800;*/
  color: #fff;
  margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

.jovel-office p {
  line-height: 28px;
  color: #000;
  margin-bottom: 30px;
}

.jovel-contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.jovel-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.jovel-contact i {
 color: #aaaaae;
  font-size: 22px;
  width: 25px;
  margin-right: 15px;
}

.jovel-social {
  margin-top: 55px;
}

.jovel-social a {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
  font-size: 22px;
  text-decoration: none;
}

.facebook {
  background: #4b6ea9;
}

.twitter {
  background: #2db2e4;
}

.youtube {
  background: #d83a3a;
}

.instagram {
  background: #444;
}

.jovel-address-image img {
  max-width: 100%;
}

.jovel-hours ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.jovel-hours ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*border-bottom: 1px solid #ddd;*/
  padding: 16px 0;
}

.jovel-hours ul li span {
  font-weight: 700;
  color: #fff;
}

.jovel-hours ul li b {
  color: #fff;
}

@media (max-width: 991px) {
  .jovel-office,
  .jovel-hours {
    text-align: center;
    margin-bottom: 50px;
  }

  .jovel-contact li {
    justify-content: center;
  }

  .jovel-office h2,
  .jovel-hours h2 {
    font-size: 40px;
  }

  .jovel-office p {
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .jovel-address {
    padding: 70px 0;
  }

  .jovel-office h2,
  .jovel-hours h2 {
    font-size: 34px;
  }

  .jovel-hours ul li span,
  .jovel-hours ul li b {
    font-size: 15px;
  }

  .jovel-contact li {
  }
}
/* ========================= contact us Address end  */
.jovel-contacts {
  background: #000;
  padding: 100px 0;
}

.jovel-contact-title {
  text-align: center;
  margin-bottom: 50px;
}

.jovel-contact-title h2 {
  /*font-size: 35px;*/
  font-weight: 700;
  color: #016c3f;
      font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

.jovel-contact-form input,
.jovel-contact-form select,
.jovel-contact-form textarea {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 50px;
  padding: 16px 35px;
  font-size: 18px;
  color: #666;
  outline: none;
  box-shadow: none;
}

.jovel-contact-form textarea {
  border-radius: 35px;
  height: 180px;
  resize: vertical;
  padding-top: 28px;
}

.jovel-contact-form select {
  appearance: none;
  cursor: pointer;
}

.jovel-contact-form input:focus,
.jovel-contact-form select:focus,
.jovel-contact-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(225, 35, 94, 0.15);
}

.jovel-btnn {
  border: none;
  background: #016c3f;
  color: #fff;

  font-weight: 700;
  padding: 16px 90px;
  border-radius: 50px;
  transition: 0.4s;
}

.jovel-btn:hover {
  background: #fff;
  color: #000;
}

/* Tablet */
@media (max-width: 991px) {
  .jovel-contact-title h2 {
    font-size: 46px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .jovel-contact {
    padding: 70px 0;
  }

  .jovel-contact-title h2 {
    font-size: 34px;
  }

  .jovel-contact-form input,
  .jovel-contact-form select,
  .jovel-contact-form textarea {
    padding: 18px 25px;
  }

  .jovel-btnn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
  }
}

.map-content {
  margin-top: 30px;
}
.map-content iframe {
  border-radius: 20px;
}

/* ===================== video production section start  */
.jovel-production {
  /* background: #111018; */
  margin-top: 70px;
  margin-bottom: 80px;
  overflow: hidden;
}

.jovel-production-main {
  background: #fff;
}

.jovel-production-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 0 0 4px 4px;
}

.jovel-production-content {
  padding: 24px 25px 35px;
}

.jovel-production-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.jovel-production-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.jovel-production-meta i {
  color: #ffe600;
  font-size: 13px;
}

.jovel-production-meta .line {
  color: #777;
}

.jovel-production-content h2 {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  color: #016c3f;
  margin-bottom: 16px;
}

.jovel-production-content p {
  line-height: 1.75;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.jovel-production-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.jovel-production-gallery img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
}
.end-p {
  padding-top: 15px;
}

.jovel-production-sidebar {
  background: #ffffff;
  padding: 18px 25px 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jovel-production-sidebar h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #016c3f;
}

.jovel-production-sidebar .yellow-line {
  width: 32px;
  height: 2px;
  background: #ffe600;
  display: block;
  margin-bottom: 26px;
}

.jovel-recent-post {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  margin-bottom: 20px;
  align-items: start;
}

.jovel-recent-post:last-child {
  margin-bottom: 0;
}

.jovel-recent-post img {
  width: 82px;
  height: 65px;
  object-fit: cover;
  display: block;
}

.jovel-recent-post h4 {
  font-size: 14px;
  line-height: 1.45;
  color: #000;
  font-weight: 800;
  margin-bottom: 8px;
}

.jovel-recent-post span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #000;
  font-size: 11px;
  font-weight: 500;
}

.jovel-recent-post span i {
  color: #ffe600;
  font-size: 11px;
}

@media (max-width: 991px) {
  .jovel-production-hero img {
    height: 360px;
  }

  .jovel-production-sidebar {
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  .jovel-production {
    padding: 0 0 50px;
  }

  .jovel-production-content {
    padding: 22px 18px 28px;
  }

  .jovel-production-hero img {
    height: 260px;
  }

  .jovel-production-content h2 {
    font-size: 21px;
  }

  .jovel-production-gallery {
    grid-template-columns: 1fr;
  }

  .jovel-production-gallery img {
    height: 210px;
  }

  .jovel-production-sidebar {
    padding: 18px 18px 24px;
  }
}

@media (max-width: 480px) {
  .jovel-production-hero img {
    height: 220px;
  }

  .jovel-recent-post {
    grid-template-columns: 75px 1fr;
    gap: 14px;
  }

  .jovel-recent-post img {
    width: 75px;
    height: 60px;
  }

  .jovel-recent-post h4 {
    font-size: 13px;
  }
}
/* ===================== video production section end  */

/* ============================== album details section start  */
.album-details-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1018, #000);
  overflow: hidden;
  border-bottom-left-radius: 61px;
  border-top: 1px solid #cccccc7a;
}

.album-details-section .album-details-box {
  background: #212529;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.album-details-section .album-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.album-details-section .ablum-details {
  margin-bottom: 0 !important;
}

.album-details-section .ablum-img {
  width: 100%;
}

.album-details-section .ablum-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.album-details-section .album-content {
  padding-left: 20px;
  color: #fff;
}

.album-details-section .album-sub-title {
  display: inline-block;
  color: #ffcc00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.album-details-section .album-content h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.album-details-section .album-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #d6d6d6;
  margin-bottom: 22px;
}

.album-details-section .album-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 28px;
}

.album-details-section .album-info-box {
  background: #202333;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.album-details-section .album-info-box i {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 8px;
}

.album-details-section .album-info-box h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}

.album-details-section .album-info-box p {
  font-size: 13px;
  color: #bfbfbf;
  margin: 0;
  line-height: 1.5;
}

.album-details-section .album-music-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffcc00;
  color: #111;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: 0.3s ease;
  min-width: 160px;
}

.album-details-section .album-music-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.album-details-section .album-music-btn i {
  transition: 0.3s ease;
}

.album-details-section .album-music-btn:hover i {
  transform: translateX(5px);
}

.album-details-section .album-slider-wrapper .slick-list {
  border-radius: 22px;
}

.album-details-section .album-slider-wrapper .slick-track {
  display: flex;
}

.album-details-section .album-slider-wrapper .slick-slide {
  height: auto;
}

.album-details-section .album-slider-wrapper .slick-prev,
.album-details-section .album-slider-wrapper .slick-next {
  width: 44px;
  height: 44px;
  background: #ffcc00;
  border-radius: 50%;
  z-index: 99;
  display: none !important;
}

.album-details-section .album-slider-wrapper .slick-prev {
  left: 18px;
}

.album-details-section .album-slider-wrapper .slick-next {
  right: 18px;
}

.album-details-section .album-slider-wrapper .slick-prev:before,
.album-details-section .album-slider-wrapper .slick-next:before {
  color: #111;
  font-size: 22px;
  opacity: 1;
}

.album-details-section .album-slider-wrapper .slick-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 99;
}

.album-details-section .album-slider-wrapper .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.album-details-section .album-slider-wrapper .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #777;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}

.album-details-section
  .album-slider-wrapper
  .slick-dots
  li.slick-active
  button {
  background: #ffcc00;
}

.album-details-section .album-slider-wrapper .slick-dots li button:before {
  display: none;
}

@media (max-width: 991px) {
  .album-details-section .album-content {
    padding-left: 0;
    padding-top: 35px;
  }

  .album-details-section .album-content h2 {
    font-size: 34px;
  }

  .album-details-section .ablum-img img {
    height: 430px;
  }
}

@media (max-width: 767px) {
  .album-details-section {
    padding: 50px 0;
  }

  .album-details-section .album-details-box {
    padding: 20px;
    border-radius: 18px;
  }

  .album-details-section .ablum-img img {
    height: 350px;
    border-radius: 18px;
  }

  .album-details-section .album-content h2 {
    font-size: 28px;
  }

  .album-details-section .album-info {
    grid-template-columns: 1fr;
  }

  .album-details-section .album-slider-wrapper .slick-prev,
  .album-details-section .album-slider-wrapper .slick-next {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .album-details-section .ablum-img img {
    height: 280px;
  }

  .album-details-section .album-content h2 {
    font-size: 24px;
  }

  .album-details-section .album-content p {
    font-size: 14px;
  }

  .album-details-section .album-music-btn {
    width: 100%;
  }
}
/* ============================== album details section end  */

/* ========================== register section start  */
.jovel-ragister {
  width: 100%;
  padding: 70px 15px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 138, 43, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(30, 180, 120, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(160, 35, 95, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #120d0b, #17110f 45%, #090909);
  border-bottom-left-radius: 70px;
}

.jovel-ragister-box {
  max-width: 980px;
  margin: auto;
  padding: 34px 38px;
  border-radius: 16px;
  border: 1px solid rgba(255, 180, 90, 0.35);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}

.jovel-ragister-heading {
  text-align: center;
  margin-bottom: 24px;
}

.jovel-ragister-heading h2 {
  font-size: 32px;
  color: #fffaf6;
  font-weight: 800;
  margin-bottom: 8px;
}

.jovel-ragister-heading p {
  max-width: 720px;
  margin: auto;
  font-size: 13px;
  color: #fffaf6;
  line-height: 1.6;
}

.jovel-ragister-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.jovel-ragister .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fffaf6;
  margin-bottom: 5px;
}

.jovel-ragister .form-group input,
.jovel-ragister .form-group select {
  width: 100%;
  height: 36px;
  border: 1px solid #e2d8cf;
  background: #fffaf6;
  padding: 7px 10px;
  font-size: 12px;
  color: #333;
  outline: none;
  border-radius: 5px;
  transition: 0.3s;
}

.jovel-ragister .form-group input:focus,
.jovel-ragister .form-group select:focus {
  border-color: #ff8a2b;
  box-shadow: 0 0 0 3px rgba(255, 138, 43, 0.16);
  background: #fff;
}

.jovel-ragister .form-group input[type="file"] {
  padding: 6px;
  cursor: pointer;
}

.jovel-ragister-btn {
  margin-top: 18px;
  background: linear-gradient(135deg, #ff8a2b, #a70b12);
  color: #fff;
  border: none;
  padding: 11px 38px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(167, 11, 18, 0.25);
}

.jovel-ragister-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(167, 11, 18, 0.35);
}

.jovel-ragister-note {
  margin-top: 18px;
  font-size: 12px;
  color: #fffaf6;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .jovel-ragister {
    padding: 45px 12px;
    border-bottom-left-radius: 45px;
  }

  .jovel-ragister-box {
    padding: 26px 18px;
    border-radius: 12px;
  }

  .jovel-ragister-heading h2 {
    font-size: 26px;
  }

  .jovel-ragister-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jovel-ragister-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .jovel-ragister-heading h2 {
    font-size: 23px;
  }

  .jovel-ragister-heading p {
    font-size: 12px;
  }
}
/* ========================== register section end  */

/* ============================== jovel csating start =================  */
.jovel-casting {
  /* background: radial-gradient(
    circle at top,
    #2b2b2b 0%,
    #151515 55%,
    #090909 100%
  ); */
  background:
    radial-gradient(
      circle at top center,
      rgba(120, 0, 0, 0.35),
      transparent 38%
    ),
    #111;
  padding: 80px 15px;
  color: #fff;
  border-bottom-left-radius: 70px;
}

.jovel-casting * {
  box-sizing: border-box;
}

.jovel-casting-container {
  max-width: 1280px;
  margin: auto;
}

.jovel-casting-subtitle {
  text-align: center;
  color: #d5c476;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.jovel-casting h2 {
  text-align: center;
  /* font-size: 34px; */
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 22px;
}

.jovel-casting-desc {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #e8e8e8;
}

.jovel-casting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.jovel-casting-card {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 18, 0.45);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.jovel-casting-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: 0.5s ease;
}

.jovel-casting-card:hover img {
  transform: scale(1.07);
}

.jovel-casting-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.92)
  );
  z-index: 1;
}

.jovel-casting-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  z-index: 2;
  text-align: center;
}

.jovel-casting-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ff9b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.45);
}

.jovel-casting-content h3 {
  /* font-size: 35px; */
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.jovel-casting-content p {
  margin: 0 auto 25px;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.7;
  color: #eeeeee;
}

.jovel-casting-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 185px;
  height: 54px;
  border-radius: 50px;
  background: linear-gradient(135deg, #046d41, #ff8424);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.jovel-casting-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.45);
  color: #fff;
}

@media (max-width: 991px) {
  .jovel-casting {
    padding: 60px 15px;
    border-bottom-left-radius: 30px;
  }

  .jovel-casting h2 {
    font-size: 42px;
  }

  .jovel-casting-grid {
    grid-template-columns: 1fr;
  }

  .jovel-casting-card {
    min-height: 460px;
  }
}

@media (max-width: 575px) {
  .jovel-casting h2 {
    font-size: 22px;
  }

  .jovel-casting-desc {
    font-size: 15px;
  }

  .jovel-casting-card {
    min-height: 420px;
    border-radius: 18px;
  }

  .jovel-casting-content {
    left: 18px;
    right: 18px;
    bottom: 25px;
  }

  .jovel-casting-content h3 {
    font-size: 25px;
  }

  .jovel-casting-content p {
    font-size: 14px;
  }
}
/* ============================== jovel csating end =================  */

/* ============================= casting section start ===========================  */
.jovel-talent {
  width: 100%;
  padding: 35px 15px 70px;
  background:
    radial-gradient(
      circle at top left,
      rgba(214, 162, 75, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(214, 162, 75, 0.1),
      transparent 25%
    ),
    linear-gradient(135deg, #05070b 0%, #0b1018 45%, #040507 100%);
  color: #fff;
  border-bottom-left-radius: 70px;
}

.jovel-talent * {
  box-sizing: border-box;
}

.jovel-talent-wrap {
  max-width: 1320px;
  margin: auto;
}

.jovel-filter {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  margin-bottom: 42px;
}

.filter-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-box i {
  color: #d6a24b;
  font-size: 26px;
}

.filter-box label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.filter-box select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #cfd3dc;
  font-size: 14px;
}

.filter-box select option {
  color: #000;
}

.search-btn {
  border: 0;
  background: linear-gradient(135deg, #f1c36a, #c88b2e);
  color: #070707;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 14px;
}

.search-btn i {
  margin-right: 10px;
}

.section-title {
  margin-bottom: 22px;
  position: relative;
}

.section-title h2 {
  /* font-family: "Oswald", sans-serif; */
  /* font-size: 34px; */
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 0 10px;
  color: #fff;
}

.section-title h2::after {
  content: "";
  width: 48px;
  height: 3px;
  background: #d6a24b;
  display: block;
  margin-top: 12px;
}

.section-title p {
  margin: 0;
  color: #d9d9d9;
  font-size: 15px;
}

.top-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.top-card {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 360px;
  background: linear-gradient(
    135deg,
    rgba(15, 22, 31, 0.98),
    rgba(6, 9, 13, 0.98)
  );
  border: 1px solid rgba(214, 162, 75, 0.22);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: 0.35s ease;
}

.top-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 162, 75, 0.6);
}

.top-img {
  position: relative;
  min-height: 360px;
}

.top-img span {
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 2;
  padding: 8px 18px;
  background: linear-gradient(135deg, #f0c46c, #c79034);
  color: #080808;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-info {
  padding: 34px 36px;
}

.top-info h3 {
  /* font-family: "Oswald", sans-serif; */
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

.top-info h3 span {
  color: #d6a24b;
  /* display: block; */
}

.top-info h5,
.profile-body h5 {
  color: #f0bd57;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 0 24px;
  font-weight: 500;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 24px;
}

.info-grid p,
.small-info p {
  margin: 0;
  color: #e4e4e4a8;
  font-size: 13px;
  line-height: 1.5;
}

.info-grid i,
.small-info i {
  color: #d6a24b;
  margin-right: 8px;
}

.available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #35e65d;
  background: rgba(39, 190, 77, 0.14);
  padding: 9px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.available span {
  width: 10px;
  height: 10px;
  background: #35e65d;
  border-radius: 50%;
}

.view-btn {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c99638;
  color: #f0bd57;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.view-btn:hover {
  background: linear-gradient(135deg, #f0c46c, #c79034);
  color: #050505;
}

.more-title {
  margin-top: 30px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.profile-card {
  background: linear-gradient(
    135deg,
    rgba(15, 22, 31, 0.98),
    rgba(6, 9, 13, 0.98)
  );
  border: 1px solid rgba(214, 162, 75, 0.18);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.35s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 162, 75, 0.58);
}

.profile-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.profile-body {
  padding: 18px;
}

.profile-body h3 {
  /* font-family: "Oswald", sans-serif; */
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.small-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-bottom: 18px;
}

.small-info p:last-child {
  grid-column: span 2;
}

@media (max-width: 1199px) {
  .top-profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .jovel-filter {
    grid-template-columns: 1fr;
  }

  .filter-box {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .search-btn {
    padding: 18px;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .jovel-talent {
    padding: 25px 12px 50px;
    border-bottom-left-radius: 30px;
  }

  .top-card {
    grid-template-columns: 1fr;
  }

  .top-img {
    min-height: auto;
    height: 360px;
  }

  .top-info {
    padding: 26px 22px;
  }

  .top-info h3 {
    font-size: 17px;
  }

  .section-title h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }
}

@media (max-width: 575px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    height: 320px;
  }

  .info-grid,
  .small-info {
    grid-template-columns: 1fr;
  }

  .small-info p:last-child {
    grid-column: span 1;
  }

  .top-img {
    height: 330px;
  }
}
/* ============================= casting section end ===========================  */

/* =============================== casting detsils section start  ===============  */
.jovel-profile-details {
  width: 100%;
  padding: 42px 15px;
  background:
    radial-gradient(
      circle at top left,
      rgba(214, 162, 75, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(214, 162, 75, 0.16),
      transparent 26%
    ),
    linear-gradient(135deg, #05070b 0%, #0a0e14 48%, #030406 100%);
  color: #fff;
  border-bottom-left-radius: 70px;
}

.jovel-profile-details * {
  box-sizing: border-box;
}

.jovel-profile-container {
  max-width: 1420px;
  margin: auto;
}

.jovel-profile-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 28px;
  align-items: stretch;
}

.jovel-profile-left {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(214, 162, 75, 0.25);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.jovel-main-slider,
.jovel-main-slider .slick-list,
.jovel-main-slider .slick-track,
.jovel-main-slider .slick-slide,
.jovel-main-slider .slick-slide > div {
  height: auto;
}

.jovel-main-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.jovel-main-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
  z-index: 1;
  pointer-events: none;
}

.jovel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(214, 162, 75, 0.6);
  background: rgba(0, 0, 0, 0.72);
  color: #f0bd57;
  z-index: 5;
  cursor: pointer;
}

.jovel-arrow:hover {
  background: #d6a24b;
  color: #000;
}

.jovel-main-slider .slick-prev {
  left: 18px;
}

.jovel-main-slider .slick-next {
  right: 18px;
}

.jovel-thumb-slider {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}

.jovel-thumb-slider .slick-slide {
  padding: 0 5px;
  cursor: pointer;
}

.jovel-thumb-slider img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  object-position: top center;
  border-radius: 9px;
  border: 2px solid transparent;
  opacity: 0.75;
}

.jovel-thumb-slider .slick-current img {
  border-color: #d6a24b;
  opacity: 1;
}

.jovel-profile-right {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(9, 11, 15, 0.96);
  border: 1px solid rgba(214, 162, 75, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.profile-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.verified-badge,
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.verified-badge {
  background: rgba(214, 162, 75, 0.12);
  color: #f0bd57;
}

.available-badge {
  border: 1px solid rgba(214, 162, 75, 0.7);
  color: #f0bd57;
}

.jovel-profile-right h1 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 700;
}

.jovel-profile-right h1 span {
  color: #d6a24b;
}

.jovel-profile-right h4 {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: #f4f4f4;
}

.gold-line {
  width: 75px;
  height: 3px;
  background: #d6a24b;
  margin: 20px 0;
}

/* TWO COLUMN PROFILE INFO */
.profile-info-list {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(214, 162, 75, 0.18);
  background: rgba(255, 255, 255, 0.025);

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}

.profile-info-item {
  min-height: 72px;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.075);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0;
}

.info-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.info-left i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid #d6a24b;
  border-radius: 50%;
  color: #d6a24b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-left strong {
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}

.profile-info-item span {
  position: relative;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  line-height: 1.4;
}

.profile-info-item span::before {
  content: "•";
  color: #d6a24b;
  margin-right: 10px;
}

/* FEATURE ROW */
.profile-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(214, 162, 75, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-feature-row div {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-feature-row div:last-child {
  border-right: 0;
}

.profile-feature-row i {
  color: #d6a24b;
  font-size: 30px;
  margin-bottom: 10px;
}

.profile-feature-row h5 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #fff;
}

.profile-feature-row p {
  margin: 0;
  font-size: 13px;
  color: #cfd3dc;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .jovel-profile-grid {
    grid-template-columns: 430px 1fr;
  }

  .jovel-main-slider,
  .jovel-main-slider .slick-list,
  .jovel-main-slider .slick-track,
  .jovel-main-slider .slick-slide,
  .jovel-main-slider .slick-slide > div,
  .jovel-main-slider img {
    height: 680px;
  }

  .profile-info-list {
    grid-template-columns: 1fr;
  }

  .profile-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-feature-row div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 991px) {
  .jovel-profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-info-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .jovel-main-slider,
  .jovel-main-slider .slick-list,
  .jovel-main-slider .slick-track,
  .jovel-main-slider .slick-slide,
  .jovel-main-slider .slick-slide > div,
  .jovel-main-slider img {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .jovel-profile-details {
    padding: 25px 12px;
    border-bottom-left-radius: 30px;
  }

  .jovel-profile-right {
    padding: 22px;
  }

  .jovel-profile-right h1 {
    font-size: 22px;
    padding-bottom: 7px;
    padding-top: 7px;
  }

  .jovel-profile-right h4 {
    font-size: 18px;
  }

  .profile-info-list {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .profile-info-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .profile-info-item span {
    text-align: left;
    padding-left: 39px;
    font-size: 16px;
  }

  .jovel-main-slider,
  .jovel-main-slider .slick-list,
  .jovel-main-slider .slick-track,
  .jovel-main-slider .slick-slide,
  .jovel-main-slider .slick-slide > div,
  .jovel-main-slider img {
    height: 560px;
  }
}

@media (max-width: 575px) {
  .jovel-main-slider,
  .jovel-main-slider .slick-list,
  .jovel-main-slider .slick-track,
  .jovel-main-slider .slick-slide,
  .jovel-main-slider .slick-slide > div,
  .jovel-main-slider img {
    height: 460px;
  }

  .jovel-thumb-slider img {
    height: 68px;
  }

  .profile-feature-row {
    grid-template-columns: 1fr;
  }

  .profile-feature-row div {
    border-right: 0;
  }

  .verified-badge,
  .available-badge {
    width: 100%;
    justify-content: center;
  }
  .verified-badge,
  .available-badge {
    padding: 11px 20px;
  }
}
/* =============================== casting detsils section end  ===============  */

/* =================================== actor section start  */
.actors-creative-section {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 12% 45%,
      rgba(255, 162, 54, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 50%,
      rgba(232, 45, 126, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #05060a 0%, #111217 50%, #07070a 100%);
  color: #fff;
  overflow: hidden;
  border-bottom-left-radius: 70px;
}

.actors-heading-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 55px;
}

.actors-small-title {
  color: #ff9d32;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 9px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.actors-heading-box h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.actors-heading-box h2 span {
  background: linear-gradient(90deg, #ff9d32, #e82883);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.actors-heading-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #d7d7d7;
  margin: 0 auto;
}

.actor-card {
  position: relative;
  min-height: 560px;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  transition: 0.4s ease;
}

.actor-card:hover {
  transform: translateY(-8px);
}

.actor-card.male {
  box-shadow: 0 0 35px rgba(255, 157, 50, 0.24);
}

.actor-card.female {
  box-shadow: 0 0 35px rgba(232, 40, 131, 0.24);
}

.actor-img {
  height: 330px;
  position: relative;
  overflow: hidden;
}

.actor-img img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  transition: 0.5s ease;
}

.actor-card:hover .actor-img img {
  transform: scale(1.06);
}

.actor-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgb(0 0 0 / 23%));
}

.actor-content {
  position: relative;
  padding: 52px 35px 29px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(12, 13, 17, 0.95),
    rgba(4, 5, 8, 0.98)
  );
  min-height: 230px;
}

.actor-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid currentColor;
  backdrop-filter: blur(8px);
}

.male .actor-icon,
.male .actor-title span {
  color: #ffac35;
}

.female .actor-icon,
.female .actor-title span {
  color: #ec2d86;
}

.actor-title {
  /* font-size: 34px; */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.actor-content p {
  font-size: 16px;
  color: #d6d6d6;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 28px;
}

.actor-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 34px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  background: transparent;
}

.male .actor-btn {
  border: 1px solid #ff9d32;
  color: #fff;
}

.female .actor-btn {
  border: 1px solid #ec2d86;
  color: #fff;
}

.male .actor-btn:hover {
  background: linear-gradient(90deg, #ff9d32, #d71964);
  border-color: transparent;
}

.female .actor-btn:hover {
  background: linear-gradient(90deg, #ff6245, #ec2d86);
  border-color: transparent;
}

@media (max-width: 991px) {
  .actors-creative-section {
    padding: 70px 0;
  }

  .actors-heading-box h2 {
    font-size: 42px;
  }

  .actors-heading-box p {
    font-size: 16px;
  }

  .actor-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .actors-creative-section {
    padding: 55px 0;
    border-bottom-left-radius: 30px;
  }

  .actors-small-title {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .actors-heading-box h2 {
    font-size: 32px;
  }

  .actors-heading-box p {
    font-size: 14px;
  }

  .actor-card {
    min-height: auto;
    border-radius: 16px;
  }

  .actor-img {
    height: 260px;
  }

  .actor-content {
    padding: 52px 18px 28px;
  }

  .actor-title {
    font-size: 26px;
  }

  .actor-content p {
    font-size: 14px;
  }

  .actor-btn {
    width: 100%;
    justify-content: center;
  }
}
/* =================================== actor section end  */
.work-preview img {
  width: 100%;
  transition: 0.3s ease;
}

.video-box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.jovel-recent-post h4 {
  margin: 0;
  line-height: 1.4;
  white-space: nowrap; /* ek hi line me rakhega */
}

/* ========================= serach start  */
/* Search Popup */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
}

/* Animation Top To Center */
.search-box {
  width: 600px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-top: -100px;
  position: relative;
  animation: searchSlide 0.5s ease forwards;
}

@keyframes searchSlide {
  from {
    margin-top: -150px;
    opacity: 0;
  }
  to {
    margin-top: 150px;
    opacity: 1;
  }
}

.search-box form {
  display: flex;
  align-items: center;
}

.search-box input {
  width: 100%;
  height: 55px;
  padding: 0 20px;
  border: 1px solid #ddd;
  font-size: 18px;
  outline: none;
}

.search-box button {
  width: 60px;
  height: 55px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.close-search {
  position: absolute;
  right: 15px;
  top: -10px;
  font-size: 35px;
  cursor: pointer;
  color: #333;
}
/* ========================= serach end */



table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  table-layout: fixed;
  word-wrap: break-word;
  margin-bottom: 20px;
}

table th,
table td {
  border: 1px solid #bfbfbf !important;
  padding: 12px !important;
  vertical-align: top;
  word-break: break-word;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  table {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: normal !important;
  }

  table th,
  table td {
    padding: 10px !important;
    font-size: 14px;
    word-break: break-word;
    white-space: normal !important;
  }
}



.video-production-content {
    width: 100%;
    overflow-x: auto;
    color: #222 !important;
}

.video-production-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    background: #fff !important;
    margin-top: 20px;
}

.video-production-content table th,
.video-production-content table td {
    border: 1px solid #cfcfcf !important;
    padding: 16px 18px !important;
    text-align: left !important;
    vertical-align: middle !important;
    color: #222 !important;
    background: #fff !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

/* Header */
.video-production-content table th {
    background: #087b57 !important;
    color: #fff !important;
    font-weight: 700 !important;
}

/* CKEditor ke andar ke tags */
.video-production-content table td *,
.video-production-content table td span,
.video-production-content table td p,
.video-production-content table td strong,
.video-production-content table td b,
.video-production-content table td div {
    color: #222 !important;
    -webkit-text-fill-color: #222 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Header inner text */
.video-production-content table th *,
.video-production-content table th span,
.video-production-content table th p,
.video-production-content table th strong,
.video-production-content table th b {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.video-production-content table tbody tr:nth-child(even) td {
    background: #f8faf9 !important;
}

.video-production-content table tbody tr:hover td {
    background: #eef8f4 !important;
}

@media (max-width: 767px) {
    .video-production-content table {
        min-width: 850px;
    }

    .video-production-content table th,
    .video-production-content table td {
        padding: 12px !important;
        font-size: 13px !important;
    }
}


/*=================================== footer new start */


/* ==========================================
   MAIN SECTION
========================================== */

.jovial-create-section {
    position: relative;
    width: 100%;
    min-height: 760px;

    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 80px 20px 150px;
}


/* ==========================================
   CONTAINER
========================================== */

.jovial-create-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
}


/* ==========================================
   CONTENT
========================================== */

.jovial-create-content {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


/* ==========================================
   SMALL LABEL
========================================== */

.jovial-create-label {
    display: block;
    margin-bottom: 50px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}


/* ==========================================
   MAIN HEADING
========================================== */

.jovial-create-heading {
    margin: 0;
    color: #f5f5f7;
    font-size: clamp(115px, 10.5vw, 205px);
    font-weight: 800;
    line-height: 0.80;
    letter-spacing: -7px;
    text-transform: uppercase;
}


/* Dot */

.jovial-create-heading span {
    color: #ffffff;
}


/* ==========================================
   EMAIL LINK
========================================== */

.jovial-create-email {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 55px;

    padding-bottom: 9px;

    color: #d6d6d6;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1;

    text-decoration: none;

    transition: color 0.3s ease;
}


/* Underline */

.jovial-create-email::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.55);

    transform-origin: left;

    transition: transform 0.35s ease;
}


/* Arrow */

.jovial-create-arrow {
    display: inline-block;

    transition: transform 0.3s ease;
}


/* Hover */

.jovial-create-email:hover {
    color: #ffffff;
}


.jovial-create-email:hover::after {
    transform: scaleX(0.55);
}


.jovial-create-email:hover .jovial-create-arrow {
    transform: translateX(6px);
}


/* ==========================================
   BOTTOM COPYRIGHT
========================================== */

.jovial-create-footer {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 0 20px 28px;

    background: #000000;
}


/* LINE */

.jovial-create-footer-line {
    width: 100%;
    height: 1px;

    margin-bottom: 27px;

        background: rgb(255 255 255 / 35%);
}


/* COPYRIGHT */

.jovial-create-copyright {
    margin: 0;

    text-align: center;

    color: #a5a5a8;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.5;
}


/* WEB TECHMEDIA */

.jovial-create-copyright a {
    color: #fff;

    text-decoration: none;

    transition: 0.3s ease;
}


.jovial-create-copyright a:hover {
    color: #ffffff;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .jovial-create-section {
        min-height: 599px;
        padding-bottom: 130px;
    }


    .jovial-create-heading {
        font-size: clamp(150px, 10vw, 210px);
    }

}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1200px) {

    .jovial-create-section {
        min-height: 680px;

        padding: 70px 20px 140px;
    }


    .jovial-create-heading {
        font-size: clamp(100px, 11vw, 155px);

        line-height: 0.77;

        letter-spacing: -8px;
    }


    .jovial-create-email {
        margin-top: 45px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .jovial-create-section {
        min-height: 620px;

        padding: 65px 20px 135px;
    }


    .jovial-create-label {
        margin-bottom: 15px;

        font-size: 10px;

        letter-spacing: 5px;
    }


    .jovial-create-heading {
        font-size: clamp(85px, 14vw, 130px);

        line-height: 0.8;

        letter-spacing: -7px;
    }


    .jovial-create-email {
        margin-top: 40px;

        font-size: 14px;
    }


    .jovial-create-copyright {
        font-size: 14px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .jovial-create-section {
        min-height: 540px;

        padding: 60px 15px 130px;
    }


    .jovial-create-label {
        margin-bottom: 14px;

        font-size: 8px;

        letter-spacing: 4px;
    }


    .jovial-create-heading {
        /*font-size: clamp(70px, 20vw, 105px);*/
                font-size: 55px;

        line-height: 0.83;

        letter-spacing: -5px;
    }


    .jovial-create-email {
        margin-top: 35px;

        font-size: 13px;
    }


    /* Copyright */

    .jovial-create-footer {
        padding: 0 15px 22px;
    }


    .jovial-create-footer-line {
        margin-bottom: 20px;
    }


    .jovial-create-copyright {
        font-size: 12px;

        line-height: 1.6;

        padding: 0 10px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .jovial-create-section {
        min-height: 470px;

        padding: 50px 12px 125px;
    }


    .jovial-create-label {
        font-size: 7px;

        letter-spacing: 3.5px;
    }


    .jovial-create-heading {
        /*font-size: clamp(58px, 19vw, 85px);*/
                font-size: 55px;

        line-height: 0.85;

        letter-spacing: -4px;
    }


    .jovial-create-email {
        margin-top: 30px;

        font-size: 12px;

        padding-bottom: 7px;
    }


    .jovial-create-footer {
        padding: 0 12px 18px;
    }


    .jovial-create-footer-line {
        margin-bottom: 18px;
    }


    .jovial-create-copyright {
        max-width: 340px;

        margin: 0 auto;

        font-size: 11px;

        line-height: 1.6;
    }

}

.location-map{
    background: #000;
}

.custom_width{
      max-width: 439px;
    margin: 0 auto;
}

/*=================================== footer new end */

.jovial-create-copyright a {
        color: #00ff87;
    text-decoration: none;
    transition: 0.3s ease;
}