/* casestudy banner block */
.inner-page-banner-v1.case-study-banner {
  position: relative;
  overflow: hidden;
}

/* Gradient Overlay */
.inner-page-banner-v1.case-study-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.0) 100%
  );

  z-index: 1;
}

/* Ensure content stays above overlay */
.inner-page-banner-v1.case-study-banner .container {
  position: relative;
  z-index: 2;
}
.inner-page-banner-v1.case-study-banner{
  min-height: 650px;
  background-size: cover;
  background-position: 60% 40%;
  background-repeat: no-repeat;
  padding:0px;
}
.inner-page-banner-v1.case-study-banner .container{
  padding-block: clamp(48px, 12vh, 120px);
  text-align: left;
}
.case-study-banner .banner-sub-title{
font-family: "Proxima Nova Semibold";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 140% */
background: linear-gradient(90deg, #E74C2D 0%, #E79D2D 100%);
background-clip: text; 
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom:48px;

}
.case-study-banner .banner-industry{
color: #FFF;
font-size: 20px;
font-style: normal;
line-height: 28px; 
margin-bottom:14px;
}
.case-study-banner .banner-industry-name{
    color: #FFF;
font-family: "Proxima Nova Rg";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 32px;
}
.case-study-banner .banner-title{
  color: #fff;
  font-family: "Proxima Nova Semibold";
  font-size: 62px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
line-height: 72px; 
text-transform: none;
margin-bottom:78PX;
}
@media only screen and (max-width: 1366px) {
  section.case-study-banner {
      margin-top: 35px;}}

@media (max-width: 991px){
  .inner-page-banner-v1.case-study-banner{
    min-height: clamp(360px, 55vh, 650px);
    background-position: 55% 35%;
  }
}
@media (max-width: 768px){  
  .case-study-banner .banner-title{
    font-size: 32px;
    line-height: 40px;
  }
  .case-study-banner .banner-industry-name{
    font-size: 20px;
    line-height: 28px;
  }
  .case-study-banner .banner-sub-title{
    font-size: 16px;
    line-height: 24px;
    margin-bottom:20px;
  }
}

/* banner block style end */

 /* Sticky Share Button */
 .sticky-share-btn {
  position: fixed;
  right: 99px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  transition: all 0.3s ease;
}

.share-dropdown {
  position: relative;
  display: inline-block;
}

.share-button {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  text-decoration: none;
}

.share-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.share-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.share-options {
  position: absolute;
  right: 0;
  top: 70px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.share-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-option {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.share-option:hover {
  background-color: #f5f5f5;
  color: #1a1a1a;
  text-decoration: none;
}

.share-option i {
  width: 20px;
  margin-right: 12px;
  text-align: center;
  font-size: 16px;
  color: #333;
  flex-shrink: 0;
}

.share-divider {
  height: 1px;
  background-color: #e8e8e8;
  margin: 6px 0;
}

.share-option i.fab.fa-facebook-f { color: #333; }
.share-option i.fab.fa-linkedin-in { color: #333; }
.share-option i.fas.fa-envelope { color: #333; }
.share-option i.fas.fa-link { color: #333; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .sticky-share-btn {
    right: 28px;
    bottom: 0px;
    transform: none;
  }
  
  .share-button {
    width: 50px;
    height: 50px;
  }
  
  .share-options {
    right: -10px;
    top: -200px;
    bottom: auto;
    min-width: 180px;
    padding: 4px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .share-option {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .share-option i {
    width: 18px;
    margin-right: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .sticky-share-btn {
    right: 29px;
    bottom: 15px;
  }
  
  .share-button {
    width: 45px;
    height: 45px;
  }
  
  
  
  .share-options {
    right: -20px;
    top: -180px;
    min-width: 160px;
    padding: 3px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  
  .share-option {
    padding: 7px 12px;
    font-size: 12px;
  }
  
  .share-option i {
    width: 16px;
    margin-right: 8px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 567px) {
  section.inner-page-banner-v1.case-study-banner h1.banner-title br {
    display: block !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sticky-share-btn {
    right: 60px;
  }
  
  .share-options {
    right: -10px;
    top: 70px;
    min-width: 170px;
  }
}
