* {
  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;
}
.lang-dropdown {
  position: relative;
  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;
}

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

  align-items: center;
  padding: 25px 70px ;
  position: relative;
  z-index: 10;
  background: transparent;
}
html {
  scroll-behavior: smooth;
}
.totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
}

.nav {
  width: 964px;
  height: 59px;
  vertical-align: middle;
}
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
 
}
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;
  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;
}
.hero {
  min-height: 100vh;
  background-image: url(./pictures/Topographic\ 3.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 75% 100%;
}

.hero-left {
  max-width: 480px;
}

.hero-left h1 {
  font-size: 80px;
  margin: 0;
  font-weight: 800;
}

.hero-left h2 {
  font-size: 52px;
  margin: 0 0 15px;
}

.hero-left p {
  opacity: 0.85;
  line-height: 1.6;
}

.hero-btn {
  padding: 14px 46px;
  width: 197px;
  height: 48px;
  font-size: 18px;
  border-radius: 40px;
  margin-top: 22px;
  cursor: pointer;
  filter: opacity(50%);
  border: 2px solid white;
}
.hero-btn:hover {
  background-color: white;
  color: black;
  filter: opacity(100%);
}
.socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  font-size: 22px;
  color: white;
}
.socials:hover img {
  transition: all 2s;
  transform: scale(1.1);
}
.hero-right .image-box {
  width: 430px;
  height: 520px;

  border-radius: 35px;
  background: linear-gradient(135deg, #5d49c7, #2c1a73);
  box-shadow: 0 0 40px #0004;
}
/*skide*/
.slider-wrapper {
  width: 650px;
  position: relative;
  padding: 255px 0;
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide {
  position: absolute;
  transition: 0.5s;
  opacity: 0.3;
  transform: scale(0.7);
  filter: blur(3px);
}

.slide img {
  width: 380px;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 3;
}

.slide.left {
  transform: translateX(-230px) scale(0.8);
  opacity: 0.5;
}

.slide.right {
  transform: translateX(230px) scale(0.8);
  opacity: 0.5;
}

.dots {
  text-align: center;
  margin-top: 320px;
}
.dots:hover {
  cursor: pointer;
}

.dots span {
  height: 10px;
  width: 10px;
  background: #bbb;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
}

.dots .active {
  background: rgba(249, 178, 30, 1);
}

.slider-wrapper {
  width: 650px;
  height: 10px;
  position: relative;
}

.slide {
  position: absolute;
  transition: 0.6s ease;
  opacity: 0.25;
  transform: scale(0.65);
  filter: blur(4px);
}

.slide.left,
.slide.right {
  opacity: 0.55;
  filter: blur(2px);
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 120px;
}
.border {
  border-top: 2px solid red;
}
.slide img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.slider-wrapper:hover {
  cursor: grab;
}

.container {
  max-width: 1440px;
}
.about {
  font-weight: bold;
  font-size: 32px;
  color: white;
  padding: 26px 0px 0px 126px;
  font-family: "Times New Roman", Times, serif;
}
.about_p {
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  padding: 30px 147px 0px 126px;
}
.right_about {
  display: flex;
  justify-content: space-between;
  padding: 20px 120px 0px 0px;
}
.right_about a{
  color: #6a5acd;
}
.hero-btn1 {
  padding: 14px 46px;

  font-size: 18px;
  border-radius: 40px;
  margin-top: 22px;
  cursor: pointer;
  filter: opacity(50%);
  border: 2px solid white;
  width: 197px;
  height: 48px;
}
.hero-btn1:hover {
  background-color: white;
  color: black;
  filter: opacity(100%);
}
.about_blok {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.steps-section {
  padding: 35px;
  display: flex;
  align-items: center;
  width: 1240px;
  justify-content: space-around;
  overflow: hidden;
}

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

.step {
  min-width: 260px;
  height: 340px;
  border-radius: 28px;
  padding: 25px;
  color: white;
  position: relative;
  flex-shrink: 0;
}

.step.yellow {
  background: #ffbe26;
  width: 258px;
  height: 266px;
}

.step.white {
  background: #ffbe26;
  color: white;
  width: 258px;
  height: 266px;
}

.step .num {
  font-size: 42px;
  font-weight: 800;
}

.step h3 {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.4;
}

.step p {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.arrow {
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 22px;
  width: 62px;
  height: 57px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #5d49c7;
}
.down_slide {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.portgolioh1 {
  font-size: 32px;
  font-weight: bold;
}

/* Վերնամաս */
.porfolio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 120px;
}

/* Տեսնել ավելին */
.seeall a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;

  transition: color 0.3s ease;
}

.seeall a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;

  transition: width 0.3s ease;
}

.seeall a:hover {
  color: #6a5acd;
}

.seeall a:hover::after {
  width: 100%;
}
.gridbox {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 180px;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
.gridbox img {
  transition: opacity 0.3s ease;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.box1 {
  grid-column: 1 / 5;
  grid-row: 1 /3;
}

.box2 {
  grid-column: 5 / 7;
  grid-row: 1 / 4;
}

.box3 {
  grid-column: 7 / 9;
  grid-row: 1 / 4;
}

.box4 {
  grid-column: 1 / 5;
  grid-row: 3 / 5;
}

.box5 {
  grid-column: 5 / 9;
  grid-row: 4 3/ 6;
}

.box7 {
  grid-column: 1 / 3;
  grid-row: 5 / 6;
}

.box8 {
  grid-column: 3 / 5;
  grid-row: 5 / 6;
}

.box9 {
  grid-column: 5 / 9;
  grid-row: 5/ 6;
}
.box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.function {
  padding: 71px 0px 0px 121px;
}
.function p {
  width: 877px;
  height: 93px;
  font-size: 20px;
  padding: 30px 0px;
}
.function h2 {
  font-size: 32px;
}
.function_box {
  background-image: url(./pictures/Topographic\ 3.png);
  background-size: cover;
}
.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);
}

 
/* նորը մինչև այստեղ */
.customer {
  padding: 62px 0px 0px 121px;
}

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

  overflow-x: auto;   
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.steps-section1::-webkit-scrollbar {
  height: 10px;
}

.steps-section1::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 20px;
}

.steps-section1::-webkit-scrollbar-thumb {
  background: #f4c542;
  border-radius: 20px;
}

.steps-section1:hover{
  cursor: pointer;
}

.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;
}
.picclient{
  width: 220px;
  height: 220px;
}
.forma {
  background-color: rgba(120, 112, 172, 1);
  width: 750px;
  height: 719px;
  border: 1px solid white;
  border-radius: 25px;
}
.formcall {
  padding: 129px 345px 0px 355px;
  margin: auto;
}
.callinfo h2 {
  margin: auto;
  text-align: center;
  padding: 60px 128px;
   font-size: 32px;
}
.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;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.tel {
  margin: auto;
  text-align: center;
  font-size: 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
}
.telmail {
  margin: auto;
  text-align: center;
  font-size: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
}
#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;
}

.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;
}
.callicon{
  width: 22px;
}
/* ---------------- BURGER MENU ---------------- */

.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);
}


/* ---------------- MOBILE ---------------- */

@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;
  }
  .hero-content {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left h2 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-btn {
    width: 100%;
  }
  .slider-wrapper {
    width: 100%;
    padding: 200px 0;
  }

  .slide img {
    width: 260px;
    height: 360px;
  }

  .slide.left {
    transform: translateX(-120px) scale(0.8);
  }

  .slide.right {
    transform: translateX(120px) scale(0.8);
  }
  .about_blok {
    flex-direction: column;
    padding: 20px;
  }

  .about {
    padding: 0;
    font-size: 24px;
  }

  .about_p {
    padding: 15px 0;
    font-size: 16px;
  }

  .right_about {
    padding: 0;
    justify-content: center;
  }
  .steps-section {
    width: 100%;
    padding: 20px;
  }
.function p{
width: 300px;
align-items: center;
}
  .step {
    min-width: 220px;
    height: 260px;
  }
  .gridbox {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 20px;
  }

  .box {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .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;
    text-align: center;
    margin: auto;
  }

  .formcall {
    padding: 20px;
    margin: auto;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* 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);
}
}


/* Modal background */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal image */
.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


.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;
  
}

.callall{
  margin-left: 150px;
 
}
/* ===== 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; }
}

/* ================= MOBILE CONTACT BEAUTY ================= */
@media (max-width: 768px) {

  .callall {
    padding: 60px 18px;
  }

  .callme h2:first-child {
    text-align: center;
    font-size: 28px;
    margin-bottom: 35px;
  }

  .callinfo {
    width: 100%;
    padding: 28px 22px;

    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);

    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .callinfo h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }

  .callinfo p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: -8px;
  }

  .callinfo address,
  .callinfo .tel,
  .callinfo .telmail {
    font-size: 16px;
    line-height: 1.7;
  }

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

  .callinfo a:hover {
    color: #ffbe26;
  }

}
/* ===== MOBILE CONTACT FULL WIDTH FIX ===== */
@media (max-width: 768px) {

  .formcall,
  .forma {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px -1px;
  }

  .callinfo {
    width: 100vw;        /* գրեթե ամբողջ էկրանի լայնք */
    max-width: 95vw;
 margin: auto;

    padding: 20px 20px;
    border-radius: 22px;
  }

}
/* ===== MOBILE CONTACT CENTER FIX ===== */
@media (max-width: 768px) {

  .callall {
    margin-left: 0;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .callme {
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .callme h2:first-child {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
  }

  .formcall {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .forma {
    width: 100%;
    max-width: 420px;
  }

  .callinfo {
    width: 100%;
    text-align: center;
  }

}
/* ===== GLOBAL MOBILE TEXT FIX ===== */
@media (max-width: 768px) {

  body {
    line-height: 1.6;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 12px;
  }

  p {
    line-height: 1.6;
    margin-bottom: 14px;
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  * {
    word-wrap: break-word;
  }

}
/* ===== MOBILE TEXT SPACING FIX ===== */
@media (max-width: 768px) {

  .callinfo {
    display: flex;
    flex-direction: column;
    gap: 18px; /* տողերի միջև տարածք */
  }

  .callinfo h2 {
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .callinfo p {
    margin: 0;
    line-height: 1.4;
  }

  .callinfo address,
  .callinfo .tel,
  .callinfo .telmail {
    line-height: 1.6;
    margin: 0;
  }

}
/* ===== SERVICES MOBILE FIX ===== */
@media (max-width: 768px) {

  .serviceh2{
    font-size: 10px;
    width: 110%;
    align-items: center;
    margin: auto;
  }
  .services {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 150px;
  }

  .services > div {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 20px;
    text-align: center;
  }

  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI {
    position: static !important;   /* ամենակարևորը */
    top: auto;
    left: auto;
    padding: 0;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
  }

}
/* ===== SERVICES MOBILE CENTER FIX ===== */
@media (max-width: 768px) {

  .services {
    align-items: center;
    text-align: center;
  }

  .services > div {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI {
    text-align: center;
    margin: 10px auto;
  }

}
/* ===================== MASTER MOBILE FIX ===================== */
@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  h1 { font-size: 38px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 20px !important; }
  p  { font-size: 14px !important; }

  /* ---------- NAVBAR ---------- */
  .nav { display: none !important; }
  .burger { display: flex !important; }

  .navbar {
    padding: 15px 20px !important;
  }

  .logo img {
    width: 65px !important;
  }

  /* ---------- HERO ---------- */
  .hero-content {
    flex-direction: column !important;
    text-align: center;
    padding: 20px !important;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-btn {
    width: 100%;
  }

  .slider-wrapper {
    width: 100%;
    padding: 200px 0 !important;
  }

  .slide img {
    width: 240px !important;
    height: 330px !important;
  }

  /* ---------- ABOUT ---------- */
  .about_blok {
    flex-direction: column !important;
    text-align: center;
  }

  .about {
    padding: 0 !important;
  }

  .about_p {
    padding: 15px 0 !important;
  }

  /* ---------- STEPS ---------- */
  .steps-section {
    width: 100% !important;
    padding: 20px !important;
 
  }

  /* ---------- PORTFOLIO GRID ---------- */
  .gridbox {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }

  .box {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* ---------- SERVICES ---------- */
  .services {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
  }

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

  .service-item_name,
  .service-item_logo,
  .service-item_brend,
  .service-item_pack,
  .service-item_bigbrend,
  .service-item_UI {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* ---------- CONTACT ---------- */
  .callall {
    margin-left: 0 !important;
    padding: 60px 20px !important;
    align-items: center;
  }

  .formcall {
    padding: 0 !important;
  }

  .forma {
    width: 100% !important;
    height: auto !important;
  }

  .callinfo {
    width: 100% !important;
    text-align: center;
  }

  /* ---------- FOOTER ---------- */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

}
.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: 300px;
}
.ui{
   font-size: 32px;
  position: relative;
  top: 600px;
  left: 290px;
}
@media (max-width: 768px){

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

  /* interier & ui absolute-ը հանում ենք */
  .interier,
  .ui{
    position: static !important;
    top:auto !important;
    left:auto !important;
    margin: 0 auto !important;
    text-align:center !important;
    font-size:18px !important;
  }

  .services{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:25px !important;
  }

  .services > div{
    width:100% !important;
    max-width:400px !important;
    margin:0 auto !important;
  }

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

  .footer-container{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:35px !important;
  }

  .footer-col{
    width:100% !important;
    text-align:center !important;
  }

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

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

}
.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;
}

.gridbox img{
transition: opacity 0.4s ease;
}
.gridbox img{
transition:opacity .4s;
}

.gridbox img.hide{
  opacity:0;
  transform: scale(0.9);
}

.gridbox img.show{
  opacity:1;
  transform: scale(1);
}
.portfolio-scroll{
width:70%;
margin:60px auto;
}

#portfolioSlider{
width:100%;
appearance:none;
height:10px;
border-radius:10px;
background:linear-gradient(to right,#f5c542 0%,#d3d3d3 0%);
outline:none; 
}

#portfolioSlider::-webkit-slider-thumb{
appearance:none;
width:300px;
height:10px;
border-radius:100%;
background:#f5c542;
cursor:pointer;
}

#portfolioSlider::-moz-range-thumb{
width:300px;
height:10px;
border-radius:100%;
background:#f5c542;
cursor:pointer;
}
.gridbox{
overflow:hidden;
}

.gridbox img{
transition:transform .6s ease, opacity .6s ease;
}
.gridbox img{
transition:all .4s ease;
}
@media (max-width: 768px){
  #portfolioSlider::-webkit-slider-thumb{
appearance:none;
width:30px;
height:10px;
border-radius:100%;
background:#f5c542;
cursor:pointer;
}

#portfolioSlider::-moz-range-thumb{
width:30px;
height:10px;
border-radius:100%;
background:#f5c542;
cursor:pointer;
}
}
body{
user-select:none;
}