* {
  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 ul {
  display: flex;
  list-style: none;
  gap: 40px;
  border: 1px solid white;
  border-radius: 100px;
  padding: 20px 20px;
   filter: opacity(100%);
   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;
}



/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 120px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
 
}
.biografia h1 {
  padding: 81px 0px 0px 170px;
  font-size: 32px;
}
.biografia p {
  padding: 30px 0px 350px 170px;
  width: 1167px;
  height: 155px;
  font-size: 20px;
}
.callicon{
  width: 22px;
}
nav a.active {
  opacity: 1;
  font-weight: bold;
}

/* PORTFOLIO */
.portfolio {
  padding: 40px 0px 0px 150px;
  margin: auto;
}

.portfolio h1 {
  padding: 15px 0px 0px 150px;
  font-size: 28px;
}

.portfolio p {
  padding: 10px 120px 20px 150px;
  max-width: 1083px;
}

/* CATEGORIES */
.categories {
  padding: 0 120px 30px;
  display: flex;
  gap: 20px;
}

.categories span {
  cursor: pointer;
  opacity: 0.7;
}

.categories .active {
  opacity: 1;
  font-weight: bold;
}

/* GRID — ՆԿԱՐԻ ՆՄԱՆ */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 10px;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; 
  padding: 0 10px;
}

.item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.portfolio-grid {
  column-count: 4;
  column-gap: 10px;
}

.item {
  break-inside: avoid;
  margin-bottom: 10px;
}
.filters {
  display: flex;
  gap: 16px;
  padding: 28px 0px 0px 150px;


}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 10px;
 padding: 28px 0px 0px 150px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header,
  .portfolio h1,
  .portfolio p,
  .categories,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.footer {

  padding: 80px 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;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* default վիճակ */
.item {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

/* թաքցված item */
.item.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* FILTERS */
.filters {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.filters button {
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  padding-bottom: 4px;
}

.filters button.active {
  color: #fff;
  border-bottom: 2px solid #ffd400;
}
.filters button.active:hover{
  transition: all 2s;
   border-bottom: 2px solid #ffd400;
  
}
/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.slot img {
  width: 100%;
  height: 100%;
  display: block;
 
  border-radius: 15px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  grid-auto-rows: 200px;
  gap: 10px;
  width: 1200px;
  justify-content: center;
  
}

/* Մեծ քարտեր */
.slot.a {
  grid-column: span 2;
  grid-row: span 2;
}
.slot.b {

  grid-row: span 3;
}
.slot.c {

  grid-row: span 3;
}


.slot.d {
  grid-column: span 2;
  grid-row: span 2;
}
.slot.e {
  grid-column: span 2;
  grid-row: span 2;
}

/* Միջին */

.slot.f {
  grid-column: span 2;
}

.slot.i {
  grid-column: span 2;
}
.slot.p {
  grid-column: span 2;
}

/* Փոքրերը default */

.slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;

    overflow: hidden;
 
}
.slot img:hover{
  cursor: pointer;
    object-fit: contain;

transform: scale(1);
transition: transform 0.4s ease;
 

}
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

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

  .formcall {
    padding: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  /* ===== HEADER ===== */
  .navbar {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    margin-top: 15px;
  }

  .nav ul {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .nav-right {
    display: none; /* search + language հանում ենք mobile-ում */
  }

  /* ===== PORTFOLIO SECTION ===== */
  .portfolio {
    padding: 40px 20px;
  }

  .portfolio h1 {
    font-size: 28px;
    text-align: center;
  }

  .portfolio p {
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
  }

  /* ===== FILTER BUTTONS ===== */
  .filters {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
  }

  .filters button {
    font-size: 14px;
    padding: 8px 14px;
  }

  /* ===== GRID ===== */
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .slot {
    height: 160px;
  }

  .slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===== FOOTER ===== */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-socials {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .slot {
    height: 200px;
  }

  .filters button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 30px;
  }

  .slot {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f3f3;
    height: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .slot:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  }

  .slot:hover img {
    transform: scale(1.08);
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .slot {
    height: 240px;
    border-radius: 22px;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    max-width: 620px;     
    margin: 0 auto;      
    justify-content: center;
  }

  .slot {
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 360px;  
  }

  .slot {
    height: 240px;
  }
}
.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;
}

/* -------------------------------- 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);
}
@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;
  }
}
/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: #4b4292;
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  padding: 40px;
}

.mobile-menu li {
  margin-bottom: 25px;
}

.mobile-menu a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

/* OPEN STATE */
.mobile-menu.open {
  right: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }
}
/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: #4b4292;
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }
}
.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);
}

/* ---------------- 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;
  }}
  .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;
}
/* ===== 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 BURGER ONLY ================= */
@media (max-width: 768px) {

  /* Desktop menu թաքցնում ենք */
  .nav {
    display: none !important;
  }

  /* Burger ցույց ենք տալիս */
  .burger {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
  }

  .burger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
  }

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

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

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile menu */


  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    text-align: center;
  }

  .mobile-menu li {
    margin: 22px 0;
  }

  .mobile-menu a {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
  }
    .gridbox {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 20px;
  }

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

  .portfolio-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* 1 սյուն */
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important;
  }

  .slot {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: auto !important;
  }

  .slot img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

}

.gridbox img {
  transition: opacity 0.3s ease;
}
.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;
}
.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;
}
body{
user-select:none;
}