/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #000000, #000033);
    color: white;
    padding-top: 66px; /* Increased bottom padding to accommodate the overlap */
    min-height: 100vh;
    display: flex;
    align-items: center;
	justify-content: center;
}
.hero-section .content-side{
	 display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.first-common-full-screen-section{
	padding: 66px 0;
}
.common-section-content h1, .common-section-content h3, .common-section-content p {
	color: white !important;
}

.lets-started-btn{
    background-color: #FFCC00;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 2px;
    display: inline-block;
    min-width: auto;
    color: #1A1A1A;
}

.hero-image {
    height: 400px;
    border-radius: 10px;
}

.hero-image img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any inline spacing */
    margin: 0 auto; /* Center the image */
}

/* Info Banner */
.info-banner {
    background-color: #000000;
    color: white;
    padding: 30px 0;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	max-width: 1170px;
    margin: -60px auto 0;
}
.infotext-section {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    margin-top: -60px;
}
.info-banner p {
    margin: 0;
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-section h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.features-section .subtitle {
    color: #666;
    margin-bottom: 50px !important;
}

.features-row {
    background-color: #F6F6F6;
    padding: 20px;
    border-radius: 2px;
}

.feature-item {
    position: relative;
    padding: 0;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 2px;
    background-color: #000000;
    opacity: 0.2;
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 18px;
    /* margin-top: 15px; */
    padding: 0 25px; 
	font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .info-banner {
        margin-top: -70px; /* Adjusted for 50% overlap on mobile */
    }
    
    .feature-item:not(:last-child)::after {
        display: none; /* Hide vertical lines on mobile */
    }
    
    .features-section {
        margin-top: 40px;
    }

   
}

/* What We Offer Section */
.what-we-offer {
    min-height: 100vh;
     position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../black-pattern-bg.png') no-repeat center center;
    background-size: cover;
        padding: 80px 0;
}

.split-layout {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    position: absolute;
    padding: 0;
    width: 45%;
    height: 100vh;
    overflow: hidden;
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Added */
    max-width: 100%; /* Added */
}

.right-panel {
    width: 50%;
    margin-left: 50%;
	margin-right: 10%;
    color: white;
    height: 100vh; /* Full viewport height */
    overflow-y: auto; /* Add vertical scrolling */
	 /* Firefox */
    scrollbar-width: none;

    /* WebKit (Chrome, Safari, Edge) */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.right-panel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Edge */
}



/* .content-wrapper { */
    /* max-height: calc(100vh - 280px); */
    /* overflow-y: auto; */
	/* scrollbar-width: thin; */
	/* scrollbar-color: #ccc #f1f1f1; */
/* } */
/* .content-wrapper::-webkit-scrollbar { */
  /* width: 2px;  */
/* } */

/* .content-wrapper::-webkit-scrollbar-track { */
  /* background: #f1f1f1;  */
/* } */

/* .content-wrapper::-webkit-scrollbar-thumb { */
  /* background: #ededed; */
  /* border-radius: 0; */
/* } */

/* .content-wrapper::-webkit-scrollbar-thumb:hover { */
  /* background: #aaa;  */
/* } */
.content-wrapper {
    /* Let it take natural height */
    max-height: none;
    overflow: visible;
}


.section-header {
    position: relative;
	top: 0;
	color: white;
	z-index: 1;
	padding: 20px;
	background: #161617;
}

.what-we-do{
	position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../black-pattern-bg.png') no-repeat center center;
    background-size: cover;
	padding: 3rem 0;
	
}
.what-we-offer h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.what-we-offer h4 {
    font-size: 24px;
    color: #FFF;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.content-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.section-icon {
    margin-right: 10px;
}

.section-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.section-content {
    flex-grow: 1;
    position: relative;
}

.section-content::before {
    content: '';
    width: 0.5px;
    background-color: #4F4F4F;
    height: 100%;
    position: absolute;
    left: -10px;
    top: 0;
}

.section-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #FFF;
}

.section-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Styles for What We Offer Section */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .left-panel {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .right-panel {
        width: 100%;
        margin-left: 0;
    }

    .content-wrapper {
        padding: 40px 20px;
    }

    .what-we-offer h2 {
        font-size: 28px;
    }

    .what-we-offer h4 {
        font-size: 20px;
    }

    .content-section {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-icon {
        margin-bottom: 15px;
    }
} 

/* slider css */
/* css for slider */
.transformative-results {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 20px;
    }
    .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    }
    .results-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    }
    .slider-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    }
    .slider-controls button {
    padding: 6px 12px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color:black;
    }
    .slider-controls button:hover {
    background: #f5f5f5;
    }
    .slider-controls .view-all {
    background: #fff;
    }
    /* Updated Slider Styles */
    .common-results-slider {
    position: relative;
    width: 100%;
    }
    .result-slide {
    display: none;
    }
    .owl-carousel .result-slide {
    display: block;
    }
    .slide-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: #F6F6F6;
    }
    .slide-image {
     position: relative;
     height: auto;
    }
    .mm-gif{
       padding: 10px 0;
    }
    .slide-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    }
    .slide-info {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px 20px;
    }
    .category-slide {
    display: inline-block;
    padding: 8px 16px;
    background: #0066FF;
    color: #fff;
    border-radius: 20px;
    margin-top: 20px;
    margin-right: 20px;
    position: absolute;
    right: 0;
    top: 0;
    }
    .slide-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
    padding-right: 20px;
    }
    .slide-info p {
    padding-right: 20px;
    }
    .metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 30px 0;
    }
    .metric {
    padding: 0 8px;
    position: relative;
    }
    .metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: #E5E5E5;
    }
    .metric h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    }
    .metric p {
    color: #666;
    white-space: nowrap;
    }
    .slide-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 20px;
    }
    .slide-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    }
    .case-study-btn {
    padding: 15px 30px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-family: JetBrains Mono;
    }
  .case-study-btn:active,
.case-study-btn:focus,
.case-study-btn:hover {
    color: #1a1a1a !important;
    background-color: #fc0;
    border-color: #fc0;
    text-decoration: none !important;
}

    .play-btn-poc {
    width: 50px;
    height: 50px;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    }
    .play-btn-poc.focus, .play-btn-poc:focus, .play-btn-poc:hover {
     color: white;
     text-decoration: none;
     outline: 0;
    }
    .slide-actions img {
     max-height: 50px;
     margin-left: auto;
     width: 200px;
     margin-right: 50px;
    }
    .case-study-card {
        display: none;
      }
      /* css for mobile view slider */
      @media (max-width: 992px) {
        .transformative-results{
           display: none;
        }
        .constant-block h2 {
           text-align: center;
        }
    .case-study-card {
      display: block; /* Show only on mobile */
      max-width: 100%;
      padding: 10px;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border-radius: 8px;
    }
  
    .case-study-card h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }
  
    .case-study-image {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .case-study-image img {
      width: 100%;
      height: auto;
    }
  
    .case-study-logo {
      width: 150px;
      margin-bottom: 15px;
    }
  
    .case-study-logo img {
      width: 100%;
      height: auto;
    }
  
    .case-study-card h3 {
      font-size: 18px;
      margin-bottom: 15px;
    }
  
    .description {
      font-size: 14px;
      line-height: 1.5;
      color: #666;
      margin-bottom: 20px;
    }
  
    .stats {
      margin-bottom: 20px;
      width: 100%;
    }
  
    .stat-item {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #E5E5E5; /* Light gray divider line */
          text-align: center;
          position: relative;
          padding: 0 15px;
          display: flex;
          flex-direction: column;
          align-items: center;
    }
  
    .stat-item:last-child {
      border-bottom: none; /* Remove border from last item */
      margin-bottom: 0;
      padding-bottom: 0;
    }
  
    .stat-value {
      font-size: 16px;
      font-weight: bold;
      color: #000;
    }
  
    .stat-label {
      font-size: 14px;
      color: #666;
    }
  
    .case-study-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 20px;
      background: #FFD700;
      color: #000;
      text-decoration: none;
      border-top-left-radius: 4px;  
      border-top-right-radius: 4px;
      margin-bottom:20px;
      font-weight: 500;
      font-family: JetBrains Mono;
    }
    .case-study-btn :active, .case-study-btn :focus, .case-study-btn :hover {
      color: #1a1a1a ;
      background-color: #fc0;
      border-color: #fc0;
      text-decoration: none;
     }  
  
    .arrow {
      font-size: 20px;
    }
     }
     /* end css */
     /* crousal logo section start */
     .section-title {
        font-size: 32px;
        font-weight: bold;
        text-align: left;
        color:white;
      }
  
      .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
        color: white;
        text-align: left;
      }
  
      .carousel-indicators.custom-indicators {
        bottom: 20px;
      }
  
      .carousel-indicators.custom-indicators li {
        background-color: #FFFFFF;
        width: 6px;
        height: 6px;
        border: none;
        border-radius: 0 !important;
        margin: 5px;
      }
  
      .carousel-indicators.custom-indicators .active {
        background-color: red;
        width: 36px;
        height: 6px;
        border-radius: 0 !important;
      }
  
      .card {
        background-color:  #505050 !important;
        border-radius: 5px;
        overflow: hidden;
        margin: 15px auto;
        color: white;
        max-width: 100%;
      }
  
      .card .img-overlay {
        position: relative;
        height: 180px;
        background-size: cover;
        background-position: center;
      }
  
      .card .overlay-color {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
      }
  
      .overlay-content {
        position: absolute;
        bottom: 40px;
        left: 25px;
        z-index: 2;
        color: white;
      }
  
      .overlay-content .icon-box {
        font-size: 24px;
        border-radius: 5px;
        margin-bottom: 5px;
        display: inline-block;
      }
  
      .overlay-title {
        font-size: 18px;
        font-weight: bold;
        margin: 0;
        color: white;
      }
  
      .card .card-body {
        padding: 15px;
      }
  
      .carousel-controls-right {
        position: absolute;
        top: 100px;
        right: 0;
        z-index: 10;
      }
  
      .arrow-box {
        display: inline-block;
        padding: 6px 12px;
        border: 1px solid white;
        border-radius: 4px;
        color: white;
        font-size: 18px;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
      }
  
      .arrow-box:hover,
      .arrow-box:active,
      .arrow-box:focus {
        background: none;
        transform: none;
        text-decoration: none;
        color: white;
        outline: none;
      }
  
      .carousel-wrapper {
        position: relative;
      }
  
      @media (max-width: 767px) {
        .carousel-controls-right {
          display: none;
        }
      }
    /* crousal css end */
	
.contact-banner {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .contact-banner {
        padding: 50px 0;
    }
}
.item.active .card {
      width: 100%;
    max-width: none;
    margin-bottom: 5rem;
    border-radius: 0;
    height:360px !important;
}
   .feature-bordered {
   position: relative;
   }
   .feature-bordered::after {
   content: '';
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   height: 100%;
   width: 1px;
   background-color: #E5E5E5;
   }
   @media (max-width: 767.98px) {
   .feature-bordered::after {
   display: none;
   }
   .main-banner-img-ui {
   margin-top: 100px !important; 
   }
   }
   .feature-subtext{
   max-width: 800px;
   margin: auto;
   }
   .feature-image {
   margin-top: 20px;
   max-width: 100%;
   height: auto;
   border-radius: 8px;
   }
   @media (max-width: 480px) {
	   .feature-item {
    margin-bottom: 50px;
}
.feature-item img {
    margin-bottom: 0px;
}
   }
   .arrow-img {
    width: 15px !important;
    min-height: 0px !important;
    min-width: 0 !important;
    vertical-align: middle;
    background: 0 0 !important;
    margin-left: 8px;
    margin-top: 0;
}