.hero-slider .slider {
      position: relative;
      width: 100%;
      height: calc(100vh - 0px);
      overflow: hidden;
	  margin: 0;
    }

    .hero-slider .slider img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transform: scale(1);
      animation: zoomIn 10s ease-in-out infinite alternate;
    }
    .slick-dots li button:before{
    color: rgba(0,0,0,0) !important;
    }

    @keyframes zoomIn {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.2);
        /* Slight zoom */
      }
    }


    .hero-slider .slider::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, transparent 00%, rgba(0, 0, 0, 0.7) 97%);
      z-index: 1;
    }

    .hero-slider .slider-title {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0px 15px;
    }

    .hero-slider .slider-title h2 {
	  font-size: 2rem;
      margin: 0;
      text-transform: uppercase;
      font-family: 'Roboto';
      letter-spacing: 5px;
    }
    .hero-slider .slider-video-bg{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slider .slider-title h1 {
      font-size: 8rem;
      margin: 0;
    }

    .hero-slider .mobile-img {
      display: none;
    }

    .hero-slider .slick-arrow {
      display: none !important;
    }

    .hero-slider .slick-dots {
      bottom: 70px;
      display: flex;
      max-width: 1240px;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-slider .slick-dots li {
      width: 100%;
      height: 0px;

    }

    .hero-slider .slick-dots li button {
      width: 100%;
      background: rgba(27, 26, 53, 0.2);
      height: 0px;
      padding: 2px;
      border-radius: 10px;
    }
.slick-dotted.slick-slider{
	margin-bottom:0px;
}
    .hero-slider .slick-dots .slick-active button {
      position: relative;
      overflow: hidden;
    }

    .hero-slider .slick-dots .slick-active button::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 0%;
      height: 100%;
      background-color: #E95E26;
      animation: fillRightToLeft 5s linear forwards;
    }

    @keyframes fillRightToLeft {
      from {
        width: 0%;
      }

      to {
        width: 100%;
      }
    }

    @media (max-width:767px) {
      .hero-slider .mobile-img {
        display: block;
      }

      .hero-slider .desktop-img {
        display: none;
      }

      .hero-slider .slider-title h1 {
        font-size: 6rem !important;
        line-height: 6rem;
      }
    }


.our-mission {
  display: flex;
  gap: 50px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 200px 20px;
  flex-wrap: wrap;
}

.our-mission .left {
  flex: 0 25%;
}
.our-mission .left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.our-mission .left p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.our-mission .right {
  flex: 0 65%;
  position: relative;
}

/* Container that wraps front and back media */
.our-mission .right .media-box {
  position: relative;
  width: 100%;
  cursor: pointer; /* show pointer cursor */
}

/* Shared base styles for images, videos, and iframes */
.our-mission .right .media-box img,
.our-mission .right .media-box video,
.our-mission .right .media-box iframe {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease, z-index 0.4s ease;
}

/* Front media: initially on top */
.our-mission .right .media-box .front-media > * {
  position: relative;
  z-index: 2;
  opacity: 1;
}

/* Back media: behind and offset */
.our-mission .right .media-box .back-media > * {
  width: 90%;
  position: absolute;
  bottom: 80px;
  left: 5%;
  z-index: 1;
  opacity: 0.5;
}

/* Hover: bring back media on top, scaled and fully visible */
.our-mission .right .media-box:hover .back-media > * {
  transform: scale(1.02);
  z-index: 3;
  opacity: 1;
}

/* Hover: push front media behind and reduce opacity */
.our-mission .right .media-box:hover .front-media > * {
  transform: none;
  z-index: 1;
  opacity: 0.5;
}

/* Responsive: on mobile, stack vertically and adapt sizes */
@media (max-width: 768px) {
  .our-mission {
    flex-direction: column;
    gap: 40px;
    padding: 40px 15px;
  }
  
  .our-mission .right .media-box .back-media > * {
    bottom: 30px;
    left: 2.5%;
    width: 95%;
  }
  
  .our-mission .right .media-box img,
  .our-mission .right .media-box video,
  .our-mission .right .media-box iframe {
    height: auto; /* responsive height */
  }
  
  .our-mission .left,
  .our-mission .right {
    flex: 0 100%;
	min-height: 160px;
  }
  
  .our-mission .left h2 {
    font-size: 1.5rem;
  }
  
  .our-mission .left p {
    font-size: 0.95rem;
  }
}






 .clients-section {
      display: flex;
      align-items: start;
      gap: 50px;
      max-width: 1240px;
      margin: 0 auto;
      padding: 200px 20px;
      justify-content: space-between;

    }

   .clients-section .clients-text {
      width: 100%;
    }

  .clients-section  .clients-text h1 {
      margin: 0;
    }

  .clients-section  .client-slider {
      width: 65%;
      position: relative;
    }

  .clients-section  .swiper {
      width: 100%;
    }

  .clients-section  .swiper-wrapper {
      display: flex;
    }

  .clients-section  .swiper-slide {
      height: auto;
    }

    @media (min-width: 768px) {
  .clients-section    .swiper-slide {
        flex: 0 0 calc(50% - 10px) !important;
      }

   .clients-section   .img-wrapper img {
        width: 100%;
        height: 540px;
        object-fit: cover;
      }
    }

  .clients-section  .full-slide-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

  .clients-section  .img-wrapper {
      position: relative;
      overflow: hidden;
    }

  .clients-section  .img-wrapper img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }


  .clients-section  .overlay-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      opacity: 1;
      transition: opacity 0.6s ease;
    }

  .clients-section  .overlay-content h4 {
      margin: 0;
      font-size: 24px;
      color: white;
      text-align: center;
      font-family: 'BerinaSansBold', Arial, sans-serif !important;
      font-weight: 700 !important;
      text-transform: uppercase !important;
    }

  .clients-section  .arrow-btn {
      position: absolute;
      bottom: 0;
      left: 0;
      opacity: 0;
      z-index: 2;
      transition: opacity 0.6s ease 0s;
      /* default no delay */
    }

  .clients-section  .arrow-btn img {
      width: 45px;
      height: auto;
    }

    @media (max-width: 768px) {
      .clients-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        flex-wrap: wrap;
      }

  .clients-section    .clients-text {
        width: 100% !important;
      }

  .clients-section    .clients-text {
        padding-right: 0px;
      }

  .clients-section    .client-slider {
        width: 100% !important;
      }
    }

 .clients-section   .swiper-button-next,
 .clients-section   .swiper-button-prev {
      color: #fff;
    }


    .mz-section {
      display: flex;
      height: 600px;
      animation: mz-slideIn 1s ease forwards;
    }

    .mz-section a{
      width: 100%;
      text-decoration: none;
      height: 600px;
    }

    @keyframes mz-slideIn {
      from {
        transform: translateX(100%);
        opacity: 0;
      }

      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .mz-box {
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-position: center;
      width: 100%;
      transition: 0.5s ease;

    }

    .mz-box h3 {
      color: #fff;
      font-size: 2rem;
      z-index: 2;
      transition: opacity 0.5s ease;
      text-transform: uppercase;
      font-family: 'BerinaSansBold', Arial, sans-serif !important;
    font-weight: 700 !important;
    }

    .mz-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.8s ease;
    }

    .mz-box:hover {
      background-size: 110% 110%;
      transition: 0.5s ease;
    }

    .mz-box:hover::before,
    .mz-box:hover h3 {
      opacity: 0;
    }


    @media (max-width: 1024px) {
      .mz-section {
        height: auto;
      }
      .mz-section a{
        width: 100%;
      }

      .mz-box {
        flex: 0 0 50%;
        height: 100% !important;
      }
      .mz-section a{
        width: 50%;
      }
    }

    @media (max-width: 600px) {
      .mz-box {
      height:100%;
        flex: 0 0 100%;
        background-size: cover;
      }
  .mz-section {
    flex-wrap: wrap;
    margin-top: 80px;
}
      .mz-section a{
        width: 100%;
        height: 250px !important;
      }
    .mz-box:hover {
      background-size: cover;
      transition: 0.5s ease;
    }
    }




/* Design 2 - Table */

    .full-width-chart-container-d2{
      background:#fff;
      margin:20px;
    }

    /* Header Title (kept your style) */
    .full-width-chart-container-d2 .chart-title{
      font-size:1.5rem;
      font-weight:bold;
      padding:20px 0px;
      font-family:'BerinaSansBold';
    }

    /* Table base */
    .full-width-chart-container-d2 table{
      width:100%;
      border-collapse:separate;
      border-spacing:0px 10px;
    }

    .full-width-chart-container-d2 thead{ display:none; }

    .full-width-chart-container-d2 th,
    .full-width-chart-container-d2 td{
      padding:10PX 20px;
      text-align:right;
      border-top: 4px solid rgba(66, 75, 83, 1);
      border-bottom: 4px solid rgba(66, 75, 83, 1);
      background:#fff;
      position: relative;
    }

    .full-width-chart-container-d2 tr td:not(:last-child):after {
      display: block;
      position: absolute;
      height: 80%;
      width: 2px;
      background-color: rgba(66, 75, 83, 1);
      content: "";
      z-index: 99;
      top: 50%;
      right: 0%;
      transform: translateY(-50%);
    }

    .full-width-chart-container-d2 td:first-child{
      font-weight:bold;
      background:rgba(66, 75, 83, 1);
      color:#fff;
      text-align:left;
    }

    .full-width-chart-container-d2 td:last-child{
      border-right: 4px solid rgba(66, 75, 83, 1);
    }

    /* ===== Mobile: stack to accordion ===== */
    @media (max-width: 768px){
      .full-width-chart-container-d2 table,
      .full-width-chart-container-d2 tbody,
      .full-width-chart-container-d2 th,
      .full-width-chart-container-d2 td,
      .full-width-chart-container-d2 tr{
        display:block;
      }

      .full-width-chart-container-d2 tr{
        margin-bottom: 10px;
        border: 4px solid rgba(66, 75, 83, 1) !important;
      }

      .full-width-chart-container-d2 th,
      .full-width-chart-container-d2 td{
        border:none !important;
      }

      .full-width-chart-container-d2 td:after {
        display: none !important;
      }

      /* Accordion header (first cell) */
      .full-width-chart-container-d2 td:first-child{
        padding:16px 20px;
        background:rgba(66, 75, 83, 1);
        color:#fff;
        position:relative;
      }

      .full-width-chart-container-d2 td:first-child::before{
        content:"";
        position:absolute;
        right:16px; top:50%;
        width:20px; height:20px;
        background:url('https://bascomhunt1stg.wpenginepowered.com/wp-content/uploads/2025/08/ARROW.svg') no-repeat center / 100% 100%;
        filter: brightness(999%);
        transform:translateY(-50%);
        transition:transform .3s;
      }
	  /* Hide the ::before if the row has only one td */
	  .full-width-chart-container-d2 tr:not(:has(td + td)) td:first-child::before {
		  content: none;
	  }
      .full-width-chart-container-d2 tr.active td:first-child::before{
        transform:translateY(-50%) rotate(180deg);
      }

      /* Accordion body */
      .full-width-chart-container-d2 td:not(:first-child){
        display:none;
        padding:8px 15px;
        font-weight:normal;
        color:rgba(66, 75, 83, 1);
        text-align: left;
      }
      .full-width-chart-container-d2 tr.active td:not(:first-child){
        display:block;
      }
    }










/* Design 1 - Table */
    .full-width-chart-container {
      background: #fff;
      margin: 20px;
    }

    /* Header Title */
    .full-width-chart-container .chart-title {
      background: #39434c;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      padding: 0px 20px !important;
      font-family: 'BerinaSansBold';
    }

    .full-width-chart-container table {
      width: 100%;
      border-collapse: collapse;
    }

	.full-width-chart-container thead {
		border: 2px solid rgba(66, 75, 83, 1);
	}

    .full-width-chart-container tbody {
        border: 2px solid rgba(66, 75, 83, 1);
    }

    .full-width-chart-container th, 
	.full-width-chart-container td {
      padding: 4px 14px;
      text-align: left;
      position: relative;
    }

    .full-width-chart-container tr:not(:last-child) td:after {
        display: block;
        position: absolute;
        height: 1px;
        width: 95%;
        background-color: rgba(66, 75, 83, 1);
        content: "";
        z-index: 99;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
    }

    .full-width-chart-container th:not(:last-child), 
	.full-width-chart-container td:not(:last-child){
        border-right: 2px solid rgba(66, 75, 83, 1);
    }

    .full-width-chart-container th {
      background: #fafafa;
      font-weight: bold;
    }
    .full-width-chart-container td:first-child {
/*         font-weight: bold; */
        padding: 0px 20px;
        background: #fff;
        cursor: pointer;
        position: relative;
    }
    .full-width-chart-container tbody tr:nth-child(2n){
      background-color: transparent !important;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .full-width-chart-container table, 
	  .full-width-chart-container thead, 
	  .full-width-chart-container tbody, 
	  .full-width-chart-container th,
	  .full-width-chart-container td, 
	  .full-width-chart-container tr {
        display: block;
      }

      .full-width-chart-container thead {
        display: none;
      }

      .full-width-chart-container tr:not(:last-child) td:not(:first-child):not(:last-child)::after {
        display: none;
      }
	  
	  .full-width-chart-container th:not(:last-child), 
	  .full-width-chart-container td:not(:last-child){
			border: none;
	  }

      /* Accordion header (first cell) */
      .full-width-chart-container tr:has(td + td) td:first-child {
        font-weight: bold;
      }

      .full-width-chart-container td:first-child::before {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        width: 20px;
        height: 20px;
        background:url('https://bascomhunt1stg.wpenginepowered.com/wp-content/uploads/2025/08/ARROW.svg');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        transform: translateY(-50%);
        font-size: 14px;
        color: #666;
        transition: transform 0.3s;
      }
		
	  /* Hide the ::before if the row has only one td */
	  .full-width-chart-container tr:not(:has(td + td)) td:first-child::before {
		  content: none;
	  }

      .full-width-chart-container tr.active td:first-child::before {
        transform: translateY(-50%) rotate(180deg);
      }

      /* Accordion body */
      .full-width-chart-container td:not(:first-child) {
        display: none;
        padding: 12px 20px;
        font-weight: normal;
      }

      .full-width-chart-container tr.active td:not(:first-child) {
        display: block;
      }
    }


/* Button Styling */
 a.btn-style-1,
        a.btn-style-2{
            text-decoration: none;
            padding: 22px 38px;
             font-size: 16px;
            font-weight: 700;
            transition: all 0.5s ease;
            font-family: 'BerinaSansBold'!important;
			display:inline-block;
			margin:20px 0px;
        }
 a.btn-style-1{
           color: #1B1A35;
        }
       a.btn-style-1::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-color: #C2E3F7;
  -webkit-mask: url("https://bascomhunter.com/wp-content/uploads/2025/11/arrow.svg") no-repeat center;
  mask: url("https://bascomhunter.com/wp-content/uploads/2025/11/arrow.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

a.btn-style-1:hover::after {
  background-color: #ffffff; /* hover color */
}
         a.btn-style-2{
            border: 2px solid #1495C8;
            color: #1495C8;
           
        }
        a.btn-style-1:hover ,
        a.btn-style-2:hover{
            background-color: #1495C8;
             color:#ffffff;
        }