* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: rgb(68, 57, 141);
  font-family: "Poppins", sans-serif;
  color: white;
}
a {
  color: white;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
.lang-dropdown {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.lang-selected {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-selected img {
  width: 24px;
}

.lang-selected i {
  font-size: 12px;
  transition: 0.3s;
}

.lang-dropdown.open .lang-selected i {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 130%;
  right: 0;
  background: #1f1f1f;
  border-radius: 6px;
  padding: 6px 0;
  width: 140px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 1000;
}

.lang-dropdown.open .lang-menu {
  display: block;
}

.lang-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.2s;
}

.lang-menu li:hover {
  background: rgba(255,255,255,0.08);
}

.lang-menu img {
  width: 22px;
}
.totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
}
/* -------------------------------- NAVBAR ------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;

  align-items: center;
  padding: 25px 70px ;
  position: relative;
  z-index: 10;
  background: transparent;
}
.nav {
  width: 964px;
  height: 59px;
  vertical-align: middle;
}
li a:hover {
  background-color: white;
  border-radius: 40px;
  color: #2c1a73;
  padding: 10px;
  font-weight: bold;
}

.logo {
  width: 101px;
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  vertical-align: middle;
}
nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;

}
.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  border: 1px solid white;
  border-radius: 100px;
  padding: 20px 20px;
  background: transparent;
  backdrop-filter: blur(5px);
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 17px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right i {
  font-size: 20px;
}

.lang {
  padding: 14px 14px;
  border: 1px solid white;
  border-radius: 100px;
  font-size: 14px;
}
.fa-solid {
  padding: 14px 14px;
  border: 1px solid white;
  border-radius: 100px;
  font-size: 14px;
}

/* -------------------------------- NAVBAR ------------------------------- */
.navbar {
  display: flex;
  justify-content: space-around;

  align-items: center;
  padding: 25px 70px;
  position: relative;
  z-index: 10;
  background: transparent;
}
.nav {
  width: 964px;
  height: 59px;
  vertical-align: middle;
}
li a:hover {
  background-color: white;
  border-radius: 40px;
  color: #2c1a73;
  padding: 10px;
  font-weight: bold;
}

.logo {
  width: 101px;
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  vertical-align: middle;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  border: 1px solid white;
  border-radius: 100px;
  padding: 20px 20px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 17px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right i {
  font-size: 20px;
}

.lang {
  padding: 14px 14px;
  border: 1px solid white;
  border-radius: 100px;
  font-size: 14px;
}
.fa-solid {
  padding: 14px 14px;
  border: 1px solid white;
  border-radius: 100px;
  font-size: 14px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: linear-gradient(135deg, #5d49c7, #2c1a73);
  padding: 80px 30px;
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

/* Active state */
.mobile-menu.active {
  right: 0;
}

/* Burger animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Burger animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
    z-index: 1001;
  }

  .navbar {
    padding: 15px 20px;
    justify-content: space-between;
  }
  .logo img {
    width: 70px;
    height: auto;
  }

  .nav-right {
    gap: 10px;
  }
  .services {
    flex-direction: column;
    width: 50%;
  }

  .service-item img {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .mobile-menu {
    z-index: 1000;
  }
  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI {
    position: static;
    padding: 10px 20px;
    font-size: 18px;
  }
  .forma {
    width: 100%;
    height: auto;
  }

  .formcall {
    padding: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.process h1 {
  padding: 81px 0px 0px 170px;
  font-size: 32px;
}
.process p {
  padding: 30px 0px 0px 170px;
  width: 1167px;
  height: 155px;
  font-size: 20px;
}
.callicon{
  width: 22px;
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  min-height: 100vh;
  background-image: url(./pictures/Topographic\ 3.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 45%;
}

.service-item img {
  width: 1440px;
  height: 1393px;
  padding: 23px 0px 0px 110px;
}

.service-item_name {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  padding: 71px 449px 0px 130px;
  position: absolute;
  top: 150px;
  left: 60px;
}
.service-item_logo {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 380px;
  left: 450px;
}
.service-item_brend {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 580px;
  left: 185px;
}
.service-item_pack {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 650px;
  left: 905px;
}
.service-item_bigbrend {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 900px;
  left: 390px;
  width: 480px;
}
.service-item_UI {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 1100px;
  left: 980px;
}
.customer {
  padding: 62px 0px 0px 121px;
}

.step1.active {
  opacity: 1;
}
.yellow {
  background-color: white;
}
.steps-section1 {
  padding: 35px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.steps-wrapper1 {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
}

.step1 {
  min-width: 220px;
  height: 330px;
  border-radius: 28px;
  padding: 25px;
  flex-shrink: 0;
}
.callme {
  padding: 52px 0px 0px 120px;
}
.forma {
  background-color: rgba(120, 112, 172, 1);
  width: 750px;
  height: 719px;
  border: 1px solid white;
  border-radius: 25px;
}
.formcall {
  padding: 129px 345px 0px 445px;
}
.callinfo h2 {
  margin: auto;
  text-align: center;
  padding: 60px 128px;
}
.callinfo p {
  color: #ffbe26;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 67px 0px 2px 0px;
}
.callinfo address {
  text-align: center;
  margin: auto;
  width: 423px;
  font-size: 24px;
}

.tel {
  margin: auto;
  text-align: center;
  font-size: 24px;
}
.telmail {
  margin: auto;
  text-align: center;
  font-size: 24px;
}
#map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.maps {
  padding: 84px 0px;
}
.footer {
  background: #463b8f;
  padding: 60px 0;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 120px 0px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 55px;
}

.footer-logo h3 {
  font-size: 18px;
  color: #ffb400;
}

.footer-desc {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.6;
}
.footer-desc h3 {
  font-size: 16px;
  padding-bottom: 10px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgb(68, 57, 141);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #ffb400;
  background: rgb(68, 57, 141);
}

.footer-col h4 {
  color: #ffb400;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ffb400;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footerdown {
  color: #ffb400;
  text-align: center;
  padding: 35px;
}
.downfooter {
  padding: 6px;
}
.search-panel input {
  border: none;
  outline: none;
  font-size: 14px;
}

.close-search {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
}

.highlight {
  background: yellow;
  color: black;
}
/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  z-index: 9999;
}

/* SEARCH PANEL */
.search-panel {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 14px 45px 14px 16px;
  border-radius: 10px;
  position: relative;
}

.search-panel input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
}

/* CLOSE */
.close-search {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  cursor: pointer;
}

/* HIGHLIGHT */
.highlight {
  background: yellow;
  color: black;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .search-overlay {
    padding-top: 90px;
  }

  .search-panel {
    width: 92%;
  }
}
body {
  cursor: url(./pictures/cursor.png),auto;
}

.custom-cursor {
  position: fixed;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 
    transform 0.15s ease,
    opacity 0.15s ease,
    background 0.15s ease;
  z-index: 10000;
}

/* Hover ինտերակտիվ տեղերում */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor,
.close-search:hover ~ .custom-cursor,
.lang-menu li:hover ~ .custom-cursor {
  transform: translate(-50%, -50%) scale(1.4);
  background: rgba(255, 190, 38, 0.25); /* քո դեղին accent */
  border-color: #ffbe26;
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.services > div {
  opacity: 0;
  transform: translateY(40px);
  animation: serviceFade 0.8s ease forwards;
}

/* Delay-եր */
.services > div:nth-child(1) { animation-delay: 0.1s; }
.services > div:nth-child(2) { animation-delay: 0.2s; }
.services > div:nth-child(3) { animation-delay: 0.3s; }
.services > div:nth-child(4) { animation-delay: 0.4s; }
.services > div:nth-child(5) { animation-delay: 0.5s; }
.services > div:nth-child(6) { animation-delay: 0.6s; }
.services > div:nth-child(7) { animation-delay: 0.7s; }

@keyframes serviceFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services > div {
  transition: all 0.4s ease;
  cursor: pointer;
}

.services > div:hover {
  transform: translateY(-8px) scale(1.03);
}
.services p {
  transition: 0.3s;
}

.services > div:hover p {
  color: #f4c542;
}
.services > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;


  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.5s ease;
}

/* Soft radial light on hover */
.services > div::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,197,66,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0);
  transition: 0.6s ease;
}

.services > div:hover::before {
  opacity: 1;
}

.services > div:hover::after {
  transform: translate(-50%,-50%) scale(1);
}

/* Lift + smooth scale */
.services > div:hover {
  transform: translateY(-12px) scale(1.05);
}

/* Text smooth color */
.services p {
  transition: 0.4s ease;
}

.services > div:hover p {
  color: #f4c542;
}
.services > div {
  opacity: 0;
  transform: translateY(80px);
  filter: blur(8px);
  transition: opacity 0.8s ease, 
              transform 0.8s ease, 
              filter 0.8s ease;
}

.services > div.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* ===== OFFLINE OVERLAY ===== */

/*======================
    404 page
=======================*/


.page_404{ padding:40px 0; background:#fff; font-family: 'Arvo', serif;
}

.page_404  img{ width:100%;}

.four_zero_four_bg{
 
 background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
 }
 
 
 .four_zero_four_bg h1{
 font-size:80px;
 }
 
  .four_zero_four_bg h3{
			 font-size:80px;
			 }
			 
			 .link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;}
	.contant_box_404{ margin-top:-50px;}
  /* OFFLINE OVERLAY - BTOB STYLE */

.offline-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.offline-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.offline-card {
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  width: 400px;
  animation: fadeUp 0.6s ease forwards;
}

.offline-card h1 {
  font-size: 100px;
  margin: 0;
  background: linear-gradient(90deg, #00f5ff, #ff00c8);
background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

.offline-card h2 {
  margin: 10px 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.offline-card p {
  opacity: 0.6;
  font-size: 14px;
  margin-bottom: 25px;
}

.offline-card button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #00f5ff, #ff00c8);
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.offline-card button:hover {
  transform: scale(1.05);
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px #00f5ff); }
  to { filter: drop-shadow(0 0 20px #ff00c8); }
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.vector{
  width: 500px;
  height: 500px;
  padding: 20px 0px 0px 50px
}


/* Աջ դեղին կոր գիծ */
.vector {
  position: absolute;
  top: 100px;
  right: -800px;
  width: 500px; 
  height: auto;
}
.interier{
  font-size: 32px;
  position: relative;
  top: 200px;
  left: 320px;
}
.ui{
   font-size: 32px;
  position: relative;
  top: 600px;
  left: 220px;
}
@media (max-width: 768px) {

  /* SERVICES CONTAINER */
  .services {
    position: static !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  /* VECTOR-ը հանենք mobile-ում */
  .vector {
    display: none !important;
  }

  /* Բոլոր service item-ները */
  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI,
  .interier,
  .ui {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin: 0;
  }

}
@media (max-width: 768px) {

  /* SERVICES SECTION */
  .services {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 60px 20px;
    
    /* background fix */
    background-size: cover;       /* ոչ թե 100% 100% */
    background-position: center;
  }

  /* Հանում ենք մեծ ֆոնի նկարի խանգարումը */
  .service-item img {
    width: 100%;
    height: auto;
    padding: 0;
  }

  /* VECTOR հանում ենք mobile-ում */
  .vector {
    display: none;
  }

  /* Բոլոր absolute item-ները դարձնում ենք նորմալ */
  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI,
  .interier,
  .ui {
    position: static;
    width: 100%;
    text-align: center;
    font-size: 20px;
    padding: 0;
  }

  /* Եթե Ellipse կա տեքստի կողքը */
  .services img {
    max-width: 24px;
  }

}
@media (max-width:768px){

  .footer-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:30px;
  }

  .footer-col{
    width:100%;
  }

  .footer-logo{
    justify-content:center;
  }

  .footer-socials{
    justify-content:center;
  }

}
@media (max-width:768px){

  .services{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 20px;
  }

  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI,
  .interier,
  .ui{
    position:static !important;
    left:auto !important;
    top:auto !important;
    width:100%;
    margin:10px 0;
    font-size:20px;
  }

  .services img{
    margin:0 auto;
  }

}
.interier {
  transition: all 0.4s ease;
  cursor: pointer;
  font-weight: bold;
}

.interier:hover {
  transform: translateY(-8px) scale(1.03);
}
.services p {
  transition: 0.3s;
}

.interier:hover  {
  color: #f4c542;
}
.ui {
  transition: all 0.4s ease;
  cursor: pointer;
  font-weight: bold;
}

.ui:hover {
  transform: translateY(-8px) scale(1.03);
}
.ui p {
  transition: 0.3s;
}

.ui:hover  {
  color: #f4c542;
}
.services {
  position: relative;   /* ԱՅՍ ՏՈՂԸ ԱՎԵԼԱՑՐՈՒ */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 45%;
}

.service-item img {
  width: 1440px;
  height: 1393px;
  padding: 23px 0px 0px 110px;
}

.service-item_name {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  padding: 71px 449px 0px 130px;
  position: absolute;
  top: 150px;
  left: 60px;
}
.service-item_logo {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 380px;
  left: 450px;
}
.service-item_brend {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 580px;
  left: 185px;
}
.service-item_pack {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 650px;
  left: 905px;
}
.service-item_bigbrend {
  font-size: 32px;
  font-weight: 500;
  font-weight: bold;
  position: absolute;
  top: 900px;
  left: 390px;
  width: 480px;
}

/* նոր */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.services > div {
  opacity: 0;
  transform: translateY(40px);
  animation: serviceFade 0.8s ease forwards;
}

/* Delay-եր */
.services > div:nth-child(1) { animation-delay: 0.1s; }
.services > div:nth-child(2) { animation-delay: 0.2s; }
.services > div:nth-child(3) { animation-delay: 0.3s; }
.services > div:nth-child(4) { animation-delay: 0.4s; }
.services > div:nth-child(5) { animation-delay: 0.5s; }
.services > div:nth-child(6) { animation-delay: 0.6s; }
.services > div:nth-child(7) { animation-delay: 0.7s; }

@keyframes serviceFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services > div {
  transition: all 0.4s ease;
  cursor: pointer;
}

.services > div:hover {
  transform: translateY(-8px) scale(1.03);
}
.services p {
  transition: 0.3s;
}

.services > div:hover p {
  color: #f4c542;
}
.services > div::before {
  
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;


  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.5s ease;
}

/* Soft radial light on hover */
.services > div::after {
 
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,197,66,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0);
  transition: 0.6s ease;
}

.services > div:hover::before {
  opacity: 1;
}

.services > div:hover::after {
  transform: translate(-50%,-50%) scale(1);
}

/* Lift + smooth scale */
.services > div:hover {
  transform: translateY(-12px) scale(1.05);
}

/* Text smooth color */
.services p {
  transition: 0.4s ease;
}

.services > div:hover p {
  color: #f4c542;
}
.services > div {
  opacity: 0;
  transform: translateY(80px);
  filter: blur(8px);
  transition: opacity 0.8s ease, 
              transform 0.8s ease, 
              filter 0.8s ease;
}

.services > div.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
body{
user-select:none;
}