@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
 :root {
      --black-btn: #2F2F2E;
      --red-btn: #E12416;
      --menu-color: #060806;
      --hero-text: #1F1F1F;
      --bg-light:#FFF4F4;
      --padding-small: 32px 0px;
      --padding-large: 48px 0px;
      --side-padding: 30px 10px;
    }

    h1,h2,h3,h4,h5,h6{
      font-family: "Source Sans 3", sans-serif;
      font-weight: 700;
      color: var(--hero-text);
    }

    h2 {
      font-size: 48px;
    }
@media (max-width: 992px) {
  h2 {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 34px;
  }
}

body {
  font-family: "Rubik", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

/* bg-banner */
.landing-set{
    min-height: 100vh;
    background-image: url('./resources/image/bg-banner.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}


/* hero section */
.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mega-menu-wrap-primary {
  background: transparent;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: #FFDDD0;
  color: var(--hero-text);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--red-btn);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--hero-text);
  line-height: 1.2;
}
.hero h1 span {
  color: var(--red-btn);
  text-decoration: none;
}
    /* buttons */

.btn-dark-custom {
  background: var(--black-btn);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  margin-right: 12px;
  border: none;
  transition: 
    box-shadow 0.3s ease,
    transform 0.3s ease,
    
}

/* Hover Effect */
.btn-dark-custom:hover {
  background: var(--black-btn);
  color: #fff; 
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35); 
  transform: translateY(2px); 
}

.btn-red-custom {
  background: var(--red-btn);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease,
}


/* Hover Effect */
.btn-red-custom:hover {
  background: var(--red-btn);
  color: #fff; 
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35); 
  transform: translateY(2px); 
}
.hero-btn {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.Enterprises-set, section:has(.logo-slider){
    padding:var(--padding-small);
}

section.process-section, section.core-bg, section.whychoose, section .case-study, section.case-parent {
    padding: var(--padding-large) !important;
}


/* moving cards set */

.project-card {
  width: 160px;
  height: 100px;
  

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 20px;
  border: 1px solid rgba(255, 77, 28, 0.3);

  box-shadow: 
    0 8px 20px rgba(239, 59, 59, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 20);

  text-align: center;
  transform: translateY(0);
  display: inline-block;
}

.project-card h3 {
  color: #E12416;
  font-weight: 700;
}

.project-card p {
  font-size: 16px;
  color: #333;
}

.icon {
  font-size: 18px;
  color: #E12416;
}
/* ---------floating-card-section -------*/
.parent-float {
  position: relative;
  display: inline-block;
}

.parent-float img {
  display: block;
}

.right-float {
  position: absolute;
  top: 10px;
  right: -30px;
  z-index: 2;
}

.left-top-float {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 2;
}

.left-bottom-float{
  position: absolute;
  bottom: 100px;
  left: -90px;
  z-index: 2;
}

#float {
  width: 133px;
  background: red;
  height: 100px;
  font-size: 200px;
}

.float {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}


/* -------- Enterprises section logo auto scroll animation ---------- */


.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  min-height: 50px;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
  padding-right: 3.5rem;
  display: flex !important;
  align-items: center;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/*  OUR CORE CAPABILITIES ------- */
   
.core-bg{
  background:url("./resources/image/our-core-capabilities-3.svg")
  center/cover no-repeat;
}

.enterprise-showcase{
  width:100%;
  overflow:hidden;
}

/* SLIDER WRAPPER-------*/

.enterprise-slider-wrapper{
  width:100%;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-behavior:smooth;
  scrollbar-width:none;

  cursor:grab;
  user-select:none;
}

.enterprise-slider-wrapper::-webkit-scrollbar{
  display:none;
}

.enterprise-slider-wrapper.dragging{
  cursor:grabbing;
}

/* TRACK ---------------*/

.enterprise-track{
  display:flex;
  align-items:center;

  gap:16px;

  width:max-content;

  padding-inline:22vw;

  transition:transform .8s ease;
  will-change:transform;
}

/* CARD--------*/
   
.enterprise-card{
  flex:0 0 56vw;

  opacity:.45;

  transform:scale(.88);

  transition:
    transform .6s ease,
    opacity .6s ease;
}

.enterprise-card.active{
  opacity:1;
  transform:scale(1);
}


.enterprise-content p{
  max-width:600px;

  margin:0 auto 35px;

  text-align:center;
}

.enterprise-content img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:16px;
}


/* TABLET ======================= */

@media (min-width:768px) and (max-width:991px){

  .enterprise-track{
    gap:18px;
    padding-inline:18vw;
  }

  .enterprise-card{
    flex:0 0 72vw;
  }

}


/* MOBILE==================================*/

@media (max-width:767px){

  .enterprise-showcase{
    padding:60px 0;
  }

  .enterprise-slider-wrapper{
    padding:0 16px;
  }

  .enterprise-track{
    gap:16px;

    width:auto;

    padding-inline:0;
  }

  .enterprise-card{
    flex:0 0 calc(100vw - 32px);
    max-width:calc(100vw - 32px);

    opacity:1 !important;

    transform:none !important;
  }

  .enterprise-card.active{
    transform:none !important;
  }

  .enterprise-content{
    width:100%;
  }

  .enterprise-content h2{
    font-size:32px;
    line-height:1.1;

    margin-bottom:14px;
  }

  .enterprise-content p{
    font-size:15px;

    margin-bottom:18px;
  }

  .enterprise-content img{
    border-radius:16px;
  }

}
/* core end here */
/* ========= our dev process section ========= */

.process-section {
  height: 320vh;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}


.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.timeline::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: var(--progress, 0%);
  background: red;
  transition: height 0.2s linear;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  opacity: 0.3;
  transition: 0.4s;
}

.step.active {
  opacity: 1;
}

.circle {

  padding: 0.3rem 0.75rem;
  background: #eee;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  font-weight: bold;
}

.step.active .circle {
  background: red;
  color: #fff;
  
}

/* image */
#processImage {
  max-width: 150%;
  transition: 0.5s;
}

/* next section */
.icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0; 
}

/* why choose our service */


.sticky-img {
  position: sticky;
  top: 20px; /* little gap from top */
}

/* dynamic Featured case study section style */
.case-card {
  position: relative;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--black-btn);
  /* overflow: hidden; */
}

.case-image {
  width: 50%;
}

.case-image img{
  width: 100%;
}

.case-content {
  width: 50%;
  padding-left: 30px;
}

/* arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eee;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.3s ease;
}

.arrow.right {
  right: -20px;

}

.arrow.left {
  left: -20px;
}

.arrow:hover {
  background: #000;
  color: #fff;
}
/* animation */
.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}
.case-parent{
  background-color: var(--bg-light);
}

/* case-study ended  */

/* -------- Flexible engagement models style section ---------- */
.engagement-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  cursor: pointer;
  color: #999;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.engagement-list li.active {
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid #000; 
}

/* ICON */
.active-icon {
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.engagement-list .active-icon {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* SHOW ICON ONLY WHEN ACTIVE */
.engagement-list li.active .active-icon {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


#featureList li {
  padding-bottom: 8px;
}


/*  */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.col-three{
    min-height: auto;
    background-image: url('./resources/image/fix-scope-pro.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* Let’s Build something great together */
.let-talks{
    min-height: fit-content;
    background-image: url('./resources/image/Let-us-discuss-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.let-talks-img {
  position: relative; 
  animation: moveX 6s ease-in-out infinite;
}

@keyframes moveX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px); 
  }
  100% {
    transform: translateX(0);
  }
}
/* footer section styles */

/* FOOTER BLOCK */
.footer-block {
  margin-top: -100px;   
  position: relative;  
  z-index: 10;         
}


/* WAVE IMAGE */
.footer-wave {

  overflow: hidden;
}

.footer-wave img {
  width: 100%;
  object-fit: cover;    
  display: block;
}

/* FOOTER CONTENT */
.footer-section {
  background-color: #0c1033;
  color: #fff;
  padding-top: 80px;
}

/* FOOTER TEXT STYLES */
.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: red;
}

   .device-wrapper img {
      max-width: 100%;
    }

    /* ==================== For mobile Device ============ */
 

@media (max-width: 768px) {
      

  .hero h1 {
    font-size: 34px;
  }
  .h2 {
    font-size: 36px;
  }
   .float-card {
    display: none;
  }
/* our dev process*/

  .timeline {
    margin-top: 4px;
  }
  #processImage{
    max-width: 80%;
  }
  .step {
    margin-bottom: 10px;
  }

  .hide-img{ display: none;}

/* yuga */
  .case-card{
    flex-direction: column;
  }
  
  .case-image{
    width:100%;
    margin-bottom: 1rem;
  }
  
  .case-content {
    width: 100%;
    padding-left: 0px;
  }
/* our core capability  */

  .img-item.active {
    opacity: 1;
    transform: scale(1);
    width: 80%;
  }

  /* button */

  .btn-dark-custom {
    padding: 10px 18px;
  }

  .btn-red-custom {
    display: none;
  }

  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
    flex: 1;
    justify-content: flex-end;
    background: #fed7d8;
  }

  #mega-menu-wrap-primary .mega-menu-toggle ~ button.mega-close:before {
    color: #fff;
  }

}

/* ============= tab view =============== */
@media (max-width: 991px) {
  .footer-wave img {
   display: none;
  }
  .dev-img{
    display: none;
  }
}

@media (max-width: 1200px) {
  .footer-wave img {
    display: none;
  }
  .footer-block {
    margin-top: -20px;   
  }
  .whychoose{
    display: flex;
    flex-direction: column;
  }

  #processImage {
    max-width: 100%;
    transition: 0.5s;
  }

  /* our dev process*/
  .timeline {
    margin-top: 20px;
  }
  #processImage{
    max-width: 80%;
  }
  .step {
    margin-bottom: 10px;
  }

}
/* ================iphone old  screens (2000px and above) ===========*/
@media (max-width: 576px) {

  .timeline {
    padding-left: 20px; 
  }

  .timeline::before,
  .timeline::after {
    left: 5px; 
  }

  .step {
    margin-bottom: 30px;
    padding-left: 10px;
  }

  .circle {
    margin-right: 10px;
    font-size: 14px;
    padding: 0.25rem 0.6rem;
  }

  .step h4 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
    line-height: 1.6;
  }

  .process-section {
    height: auto;
    padding-bottom: 40px;
  }

  .sticky-wrapper {
    position: relative; 
    height: auto;
  }

  #processImage {
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-btn {
    gap: 3px;
  }

  .btn-dark-custom {
    padding: 10px 12px;
    margin-right: 1px;    
  }

  section.process-section, section.core-bg, section.whychoose, section .case-study, section.case-parent {
    padding:var(--side-padding) !important;
  }
}


/* ================For large screens (2000px and above) ===========*/
@media (min-width: 2000px) {
  .landing-set {
    min-height: auto;
  }
  .img-item {
    width: 20%;
  }
  /* .content-wrapper {
  gap: 6%;
  } */
  .core-p{
    width: 800px;
  }

  .process-section {
    height: 200vh; 
  }

}
