*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:'Kumbh Sans', sans-serif;
  
}
html, body {
  margin: 0;
  padding: 0;
  background-color: #000 !important;
  color: #fff;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.main{
  background-color: black;

}
.main__container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  justify-self:center;
  margin:0 auto;
  height:90vh;
  background-color:black;
  z-index:1;
  width:1005;
  max-width:1300px;
  padding:0 50px;
}
.main__content h1{
  font-size:56px;
  font-weight: bold;
  background-color: skyblue;
  background-image:linear-gradient(to top,#59049a 0%, #4ba3c5 100%);
  background-size:100%;
  -webkit-background-clip:text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color:transparent;

}
.main__content h2{
  font-size:56px;
  font-weight: bold;
  /* background-color: skyblue; */
  background-image:linear-gradient(to top, #4ba3c5 0%, #59049a 100%);
  background-size:100%;
  -webkit-background-clip:text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color:transparent;


}
.main__content p{
  margin-top: 1rem;
  font-size:24px;
  font-weight:400;
  color:white;
}
.name__btn{
  font-size:1rem;
  background-image:linear-gradient(to top,#8d1416 0%,#f9b0b1 100%);
  padding:14px 32px;
  border:none;
  border-radius:4px;
  color:aliceblue;
  margin-top:2rem;
  position:relative;
  transition:all 0.35s;
  outline:none;
}
.name__btn a{
  position:relative;
  z-index:2;
  color:white;
  text-decoration: none;
}

.name__btn:after{
  position:absolute;
  content:'';
  top:0;
  left:0;
  width:0;
  height:100%;
  background:blue;
  transition:all 0.3s;
  border-radius:4px;
}
.name__btn:hover{
  color:rgb(231, 236, 240);
  
}
.name__btn:hover:after{
  width:100%
}
.main__img--container{
  text-align:center;
}
#main__img{
  height:80%;

}

@media screen and (max-width:768px){
  .main__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: auto;
}

  .main__content{
    text-align: center;
    margin-bottom: 4rem;

  }
  .main__content h1{
    font-size:3rem;
    margin-top:2rem;
  }
  .main__content  h2{
    font-size:3rem;

  }
  .main__content p{
    margin-top: 1rem;
    font-size:1.5rem;
  }
  .main__img--container {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .main__img--container video {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width:480px){
  .main__content h1{
    font-size:2rem;
    margin-top:3rem;
  }
  .main__content  h2{
    font-size:2rem;

  }
  .main__content p{
    margin-top: 2rem;
    font-size:1.5rem;
  }
  .name__btn{
    padding:12px 36px;
    margin: 2.5rem 0;
  }

  .main__img--container {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .main__img--container video {
    max-width: 100%;
    height: auto;
  }
}



.dna-section {
  width: 100%;
  background-color: black;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.dna-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00f0ff, transparent);
  animation: pulseGlow 3s ease-in-out infinite;
  opacity: 0.4;
  margin-bottom: 10px;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.dna-horizontal {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 800px;
  height: 80px;
  animation: rotateDNA 6s linear infinite;
  transform-style: preserve-3d;
}

.dna-horizontal .dot {
  width: 12px;
  height: 12px;
  background: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00f0ff;
  animation: waveY 1s ease-in-out infinite alternate;
}

.dna-horizontal .dot:nth-child(1) { animation-delay: 0s; }
.dna-horizontal .dot:nth-child(2) { animation-delay: 0.1s; }
.dna-horizontal .dot:nth-child(3) { animation-delay: 0.2s; }
.dna-horizontal .dot:nth-child(4) { animation-delay: 0.3s; }
.dna-horizontal .dot:nth-child(5) { animation-delay: 0.4s; }
.dna-horizontal .dot:nth-child(6) { animation-delay: 0.5s; }
.dna-horizontal .dot:nth-child(7) { animation-delay: 0.6s; }
.dna-horizontal .dot:nth-child(8) { animation-delay: 0.7s; }

@keyframes waveY {
  from { transform: translateY(0); }
  to   { transform: translateY(20px); }
}

@keyframes rotateDNA {
  0%   { transform: rotateX(0deg); }
  100% { transform: rotateX(360deg); }
}


#stream-overlay {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1000;
}
.stream-char {
  position: absolute;
  font-size: 14px;
  font-family: monospace;
  color: #00f0ff;
  animation: drop 3s linear infinite;
}
@keyframes drop {
  from { transform: translateY(-100px); opacity: 1; }
  to { transform: translateY(100vh); opacity: 0; }
}


.main-content-area-new {
    width: 100%;
    max-width: 1300px; 
    margin: 0 auto;
    padding: 20px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; 
    background-color: #0d0d0d; 
    color: #f0f0f0; 
}


.section-heading-new {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 3rem; 
    font-weight: 700; 
    color: #1e90ff; 
    text-align: center;
    margin-bottom: 40px;
}


.core-expertise-section-new {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 60px 0; 
    background-color: #1a1a1a; 
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}


.scattered-icon {
    position: absolute;
    color: rgba(30, 144, 255, 0.1); 
    font-size: 3rem;
    z-index: 0;
    pointer-events: none;
    filter: blur(0.5px);
}

.scattered-icon-1 { top: 8%; left: 5%; transform: rotate(10deg); }
.scattered-icon-2 { bottom: 15%; left: 7%; transform: rotate(-25deg); }
.scattered-icon-3 { top: 3%; right: 5%; transform: rotate(-15deg); }
.scattered-icon-4 { bottom: 8%; right: 6%; transform: rotate(20deg); }
.scattered-icon-5 { top: 25%; left: 3%; opacity: 0.08; font-size: 2.5rem; transform: rotate(40deg); }
.scattered-icon-6 { bottom: 25%; right: 3%; opacity: 0.08; font-size: 2.5rem; transform: rotate(-50deg); }
.scattered-icon-7 { top: 50%; left: 5%; transform: rotate(5deg); }
.scattered-icon-8 { top: 60%; right: 5%; transform: rotate(-35deg); }
.scattered-icon-9 { top: 75%; left: 10%; opacity: 0.05; font-size: 2rem; transform: rotate(15deg); }
.scattered-icon-10 { bottom: 0%; right: 10%; opacity: 0.05; font-size: 2rem; transform: rotate(-20deg); }


.pipeline-container-new {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1; 
}

.pipeline-container-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #4682b4;
    z-index: -1;
    border-radius: 2px;
}

.pipeline-item-new {
    position: relative;
 
    padding: 30px 70px;
    
    background-color: #2a2a2a; 
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 30px; 
    max-width: 550px; 
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pipeline-item-new:last-child {
    margin-bottom: 0;
}

.pipeline-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.pipeline-icon-new {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);

    color: #ffffff;
    font-size: 2.5rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #1e90ff; 
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #007bff; 
    z-index: 2; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.pipeline-item-new:hover .pipeline-icon-new {
    transform: translateY(-50%) scale(1.1); 
}


.pipeline-item-new:nth-child(odd) .pipeline-icon-new {
    left: -35px; 
}
.pipeline-item-new:nth-child(even) .pipeline-icon-new {
    right: -35px; 
    left: auto; 
}



.pipeline-title-new {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 1.8rem; 
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e90ff; 
}


.pipeline-description-new {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 1.1rem; 
    color: #cccccc; 
    line-height: 1.5;
}


@media (max-width: 767px) {
    .pipeline-item-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px; 
    }
    .pipeline-icon-new {
        position: static; 
        margin-bottom: 20px;
        transform: none; 
    }
 
    .pipeline-item-new:nth-child(odd) .pipeline-icon-new,
    .pipeline-item-new:nth-child(even) .pipeline-icon-new {
        left: auto;
        right: auto;
    }
    .pipeline-container-new::before {
        left: 50%;
        transform: translateX(-50%);
    }
}


@media (min-width: 768px) {
    .pipeline-container-new::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .pipeline-item-new {
        margin-left: 0;
        margin-right: 0;
    }
 
    .pipeline-item-new:nth-child(even) {
        flex-direction: row-reverse;
        text-align: right;
    }
    .pipeline-item-new:nth-child(odd) {
        flex-direction: row; 
        text-align: left;
    }
}



.why-choose-section-new {
    padding: 60px;
    background-color: #1a1a1a; 
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    box-sizing: border-box;
}


.why-choose-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px; 
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 1.15rem; 
    color: #cccccc; 
}

.why-choose-item-new {
    display: flex;
    align-items: flex-start;
}

.check-icon-new {
    color: #1e90ff; 
    font-size: 1.3rem; 
    margin-top: 3px;
    margin-right: 15px;
    flex-shrink: 0;
}

.why-choose-strong-new {
    font-weight: 600; 
    color: #ffffff; 
}


.ready-transform-section-new {
    padding: 60px;
    background-color: #1a1a1a; 
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    box-sizing: border-box;
}


.ready-transform-description-new {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 1.15rem;
    color: #cccccc; 
    margin-bottom: 40px;
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ready-transform-button-new {
    display: inline-block;
    background-color: #1e90ff; 
    color: #ffffff; 
    padding: 15px 40px; 
    border-radius: 9999px; 
    font-size: 1.25rem; 
    font-weight: 600; 
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ready-transform-button-new:hover {
    background-color: #007bff; 
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .main-content-area-new {
        padding: 20px 20px; 
        gap: 60px;
    }

    .section-heading-new {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .why-choose-section-new,
    .ready-transform-section-new {
        padding: 40px 20px;
    }

    .why-choose-list-new {
        font-size: 1rem;
        gap: 20px;
    }

    .ready-transform-description-new {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ready-transform-button-new {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-heading-new {
        font-size: 1.8rem;
    }
}