/* DEVELOPMENT */

.development{
  padding:160px 0 120px;
  position:relative;
  overflow:hidden;
}

/* BACKGROUND EFFECT */

.development::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(175, 102, 0, 0.08);
  border-radius:50%;
  top:-180px;
  right:-120px;
  filter:blur(50px);
}

.development::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(102, 58, 0, 0.08);
  border-radius:50%;
  bottom:-180px;
  left:-120px;
  filter:blur(50px);
}

.development-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* TEXT */

.development-text{
  animation:fadeLeft 1s ease;
  margin-left: 2%;
}

.development-text h1{
  font-size:68px;
  line-height:1.05;
  margin-bottom:30px;
  color:#111827;
  letter-spacing:-2px;
}

.development-text p{
  font-size:19px;
  color:#4b5563;
  line-height:1.8;
  margin-bottom:22px;
  transition:0.3s;
}

.development-text p:hover{
  transform:translateX(6px);
  color:#111827;
}

/* BUTTON */

.btn{
  background:#663a00;
  color:white;
  padding:12px 22px;
  font-weight:600;
  display:inline-block;
  transition:0.3s;
}

.btn:hover{
  background:#281700;
  color: #281700;
  transform:translateY(-2px);
}
a{
  text-decoration: none;
  text-decoration-style: none;
}
a:hover{
  text-decoration: none;
  text-decoration-style: none;
}

/* CARD */

.development-card{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(12px);
  padding:45px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.5);
  box-shadow:0 20px 45px rgba(0,0,0,0.08);
  animation:fadeRight 1s ease;
  transition:0.4s;
  margin-right: 2%;
}

.development-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.development-card h3{
  font-size:30px;
  margin-bottom:28px;
  color:#111827;
}

/* TAGS */

.tags{
  display:flex;
  flex-wrap:wrap;
}

.tag{
  display:inline-block;
  background:linear-gradient(135deg,#af6600,#663a00);
  color:white;
  padding:12px 18px;
  border-radius:999px;
  margin:7px;
  font-weight:600;
  font-size:15px;
  transition:0.35s;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(102,58,0,0.15);
}

.tag:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 12px 24px rgba(102,58,0,0.25);
}

/* ANIMATIONS */

@keyframes fadeLeft{

  from{
    opacity:0;
    transform:translateX(-60px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeRight{

  from{
    opacity:0;
    transform:translateX(60px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* RESPONSIVE */

@media(max-width:992px){

  .development-content{
    grid-template-columns:1fr;
    gap:40px;
  }

  .development-text h1{
    font-size:52px;
  }
}

@media(max-width:768px){

  .development{
    padding:130px 0 90px;
  }

  .development-text h1{
    font-size:40px;
  }

  .development-text p{
    font-size:17px;
  }

  .development-card{
    padding:30px;
  }

  .btn{
    width:100%;
    text-align:center;
  }
}