* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}


body {
  background: #f2f4f8;
}

/* Navbar */




/* Hero */
.hero {
  min-height: 100vh;
  display:flex;
  width:100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: linear-gradient(135deg, #020420ff, #020122);
  color: #ffdf6c;
}

.hero-left img {
  width: 480px;
  
}
.hero-right img {
  width: 680px;
  height:280px;
}

/* Jumping heading */
.jump-text {
  font-size: 60px;
  line-height:1;
 
  font-family: 'Rajdhani', sans-serif;
}



.btn-primary {
  margin-top: 30px;
  margin-left:40%;
 
  padding: 12px 28px;
  background: #d1d4d2ff;
  border: none;
  border-radius: 25px;
  color: black;
  font-size: 16px;
  cursor: pointer;
  text-decoration:none;
}
.btn-primary :hover{

color: #4b4b4cff;
}

/*** benifits page od the techspire ***/



    .process-box {
      display: flex;
      align-items: center;
      padding: 20px;
      border-radius: 50px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      margin-bottom: 25px;
      background: #fff;
      transition: 0.3s;
    }

    .process-box:hover {
      transform: translateY(-5px);
    }

    .step-number {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      font-weight: bold;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .bg-blue { background: #4e73df; }
    .bg-orange { background: #fd7e14; }
    .bg-gray { background: #0ae96e; }
    .bg-yellow { background: #f6c23e; color: #000; }
   
    .process-text h5 {
      margin: 0;
      font-weight: 600;
    }
 
/**     ====== input for form data=======***/
/*-------input customise------ for mail sending in the footer----------------------------------------*/
.input{
	
	padding:10px;
	border:none;
	width:430px;
}
.input-t{
	
	padding:10px;
	border:none;
	width:430px;
	height:300px;

}

/*** ease animation for heading **/

.section-heading {
 
  opacity: 0;
  animation: fadeSlide 1.1s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/****** text click copy  js snd css  *****/
    .copy-box {
      width: fit-content;      
      cursor: pointer;
      user-select: none;

    }



/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left img {
    width: 320px;
    margin-bottom: 40px;
  }
}
/*====================================*/
/* card hover effects*/
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
/*****************************************/
/* links hover effects*/
.linkh {
  transition: all 0.3s ease;
}

.linkh:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 10px rgba(255, 255, 255, 0.25);
}

