/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --first-color: hsl(271, 100%, 60%);
  --first-color-alt: hsl(271, 100%, 50%);
  --second-color: hsl(280, 60%, 80%);
  --title-color: hsl(271, 40%, 15%);
  --text-color: hsl(271, 10%, 32%);
  --text-color-light: hsl(271, 8%, 54%);
  --white-color: hsl(0, 0%, 100%);
  --white-color-light: hsl(271, 48%, 90%);
  --dark-color: hsl(271, 50%, 15%);
  --gray-color: hsla(0, 0%, 92%, 0.848);
  --body-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  --body-font: 'Vazirmatn', sans-serif;
  --biggest-font-size: 2.25rem;
  --bigger-font-size: 1.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Transitions ==========*/
  --transition-fast: .2s ease;
  --transition-base: .35s cubic-bezier(.4,0,.2,1);
  --transition-slow: .55s cubic-bezier(.4,0,.2,1);
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 3.5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== ACCESSIBILITY ===============*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color .4s;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
body.dark-theme {
  --title-color: hsl(271, 40%, 90%);
  --text-color: hsl(271, 8%, 75%);
  --white-color-light: hsl(271, 30%, 70%);
  --body-color: hsl(271, 20%, 10%);
  --gray-color: hsla(271, 10%, 20%, 0.9);
  --white-color: hsl(271, 20%, 95%);
}
body.dark-theme .nav {
  background-color: hsl(271, 25%, 13%);
}
body.dark-theme .nav__menu {
  background-color: hsl(271, 25%, 10%);
}
/* About card always has dark bg — keep text light in both themes */
.about__card .about__title,
.about__card .about__subtitle,
.about__card .about__description,
.about__card .about__stat-label,
.about__card .about__stat-number {
  color: inherit;
}
.about__title     { color: var(--white-color) !important; }
.about__subtitle  { color: var(--white-color-light) !important; }
.about__description { color: hsl(0, 0%, 88%) !important; }
.about__stat-number { color: var(--first-color) !important; }
.about__stat-label  { color: hsl(271, 30%, 80%) !important; }

/*=============== LANGUAGE DROPDOWN ===============*/
.nav__lang {
  position: relative;
}
.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: hsla(271, 100%, 60%, 0.1);
  border: 1px solid hsla(271, 100%, 60%, 0.25);
  border-radius: .5rem;
  padding: .35rem .65rem;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  cursor: pointer;
  transition: background .3s;
}
.nav__lang-btn:hover {
  background: hsla(271, 100%, 60%, 0.2);
}
.nav__lang-btn i { font-size: .85rem; color: var(--first-color); }
.nav__lang-arrow { transition: transform .3s; }
.nav__lang.open .nav__lang-arrow { transform: rotate(180deg); }

.nav__lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background-color: var(--white-color);
  border: 1px solid hsla(271, 100%, 60%, 0.2);
  border-radius: .75rem;
  padding: .4rem;
  min-width: 110px;
  display: none;
  flex-direction: column;
  gap: .2rem;
  box-shadow: 0 8px 24px hsla(271, 100%, 40%, 0.15);
  z-index: 200;
}
.nav__lang.open .nav__lang-menu { display: flex; }

.nav__lang-item {
  padding: .45rem .75rem;
  border-radius: .5rem;
  font-size: var(--small-font-size);
  color: var(--title-color);
  cursor: pointer;
  transition: background .2s;
}
.nav__lang-item:hover { background: hsla(271, 100%, 60%, 0.1); }
.nav__lang-item.active {
  background: hsla(271, 100%, 60%, 0.15);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}
body.dark-theme .nav__lang-menu {
  background-color: hsl(271, 25%, 14%);
}

/* LTR layout for English */
body.ltr-lang {
  direction: ltr;
  text-align: left;
}
body.ltr-lang .about__description {
  border-right: none;
  border-left: 3px solid var(--first-color);
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.section {
  padding-block: 5rem 1rem;
}
.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 1rem;
  color: hsl(271, 60%, 18%);
  font-weight: var(--font-semi-bold);
  letter-spacing: -.01em;
}
.section__title span {
  font-weight: var(--font-regular);
  color: hsl(271, 80%, 35%);
}
body.dark-theme .section__title { color: #ffffff; }
body.dark-theme .section__title span { color: hsl(280, 60%, 85%); }
.section__title + p,
.section__title + .gallery__hint {
  margin-top: -.25rem;
}
.main {
  overflow-x: clip;
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: background-color .4s, box-shadow .4s;
    padding-top: 1rem;
}
.header__logo {
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
}
.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 4rem;
    padding-inline: 1.5rem;
    box-shadow: 0 4px 24px hsla(340, 60%, 65%, 0.15);
}
.nav__logo {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-size: 1.1rem;
    transition: color .4s;
}

.nav__logo i {
    font-size: 1.5rem;
    color: var(--first-color);
}

.nav__logo:hover {
    color: var(--first-color);
}

.nav__buttons {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav__theme,
.nav__toggle,
.nav__close {
    display: inline-flex;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--title-color);
    transition: color .4s;
}

.nav__theme:hover,
.nav__toggle:hover,
.nav__close:hover {
    color: var(--first-color);
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    transition: color .4s;
}

.nav__link:hover {
    color: var(--first-color);
}

/* Shadow on scroll */
.shadow-header {
    box-shadow: 0 2px 16px hsla(340, 60%, 65%, 0.15);
}

/* Active link */
.active-link {
    color: var(--first-color);
}


/*===== MOBILE (max 1150px) =====*/
@media screen and (max-width: 1150px) {
    .header {
        padding-top: 0;
    }
    .nav {
        padding-inline: 1rem;
        border-radius: 0;
        margin-inline: 0;
    }

    .container {
        margin-inline: 0;
        padding-inline: 1rem;
    }
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--body-color);
        box-shadow: 0 4px 16px hsla(340, 60%, 65%, 0.15);
        padding-block: 5rem 4rem;
        transition: top .4s;
        z-index: var(--z-fixed);
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 2rem;
    }

    .nav__link {
        font-size: 1.1rem;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
}

/* Show menu */
.show-menu {
    top: 0;
}

/*===== DESKTOP (min 1150px) =====*/
@media screen and (min-width: 1150px) {
    .nav {
        height: calc(var(--header-height) + 1rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__menu {
        display: flex;
        align-items: center;
    }

    .nav__list {
        display: flex;
        flex-direction: row;
        align-items: center;
        column-gap: 3rem;
    }

    .nav__link {
        font-size: var(--normal-font-size);
    }

    .container {
        margin-inline: auto;
    }

    .container {
      margin-inline: auto;

    }

    .section {
      padding-block: 7rem 2rem;

    }
    .section__title {
      margin-bottom: 1.5rem;
    }
}

  
/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--first-color) 0%, hsl(285,100%,55%) 100%);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  padding: .9rem 2rem;
  border-radius: .85rem;
  box-shadow: 0 4px 20px hsla(271,100%,60%,.4);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
}
.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, hsla(0,0%,100%,.18) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(271,100%,60%,.55);
}
.button:hover::after { opacity: 1; }
.button:active { transform: translateY(0); }

.button_dark {
  position: relative;
  background: hsla(271, 60%, 8%, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsla(271, 100%, 85%, 0.18);
  box-shadow:
    0 8px 32px hsla(271, 100%, 10%, 0.35),
    inset 0 1px 0 hsla(271, 100%, 90%, 0.12);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  transition: .4s;
}

.button_dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    hsla(271, 100%, 70%, 0.12) 0%,
    transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.button_dark::after {
  content: '';
  width: 60px;
  height: 60px;
  background: hsla(271, 100%, 65%, 0.35);
  border-radius: 50%;
  position: absolute;
  top: -1rem;
  right: -1rem;
  filter: blur(20px);
  pointer-events: none;
}

.button_dark i {
  font-size: 1.5rem;
  transition: transform .4s;
}
.button_dark:hover i {
  transform: translateX(.25rem);
}
.button_dark:hover {
  transform: translate(.25rem, -.25rem);
  border-color: hsla(271, 100%, 75%, 0.35);
  box-shadow:
    0 12px 40px hsla(271, 100%, 10%, 0.45),
    inset 0 1px 0 hsla(271, 100%, 90%, 0.2);
}
/*=============== HOME ===============*/
#home {
  min-height: 100vh;
}

.home {
  position: relative;
}

/* instant CSS background — shows before video loads */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 20%, hsla(271,100%,75%,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, hsla(300,80%,70%,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 50%, hsla(271,60%,90%,0.15) 0%, transparent 60%),
    hsl(271, 30%, 96%);
  animation: bgShift 8s ease-in-out infinite alternate;
}
body.dark-theme::before {
  background:
    radial-gradient(ellipse at 30% 20%, hsla(271,100%,40%,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, hsla(300,80%,40%,0.2) 0%, transparent 50%),
    hsl(271, 40%, 6%);
}
@keyframes bgShift {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}

.home__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home__video.loaded { opacity: 0.28; }
.home.container {
  row-gap: 4rem;
  padding-top: 2rem;
}

.home__data {
  text-align: center;
}

.home__description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    letter-spacing: 0.01em;
}
.home__title {
  font-size: var(--biggest-font-size);
  margin-bottom: 1rem;
  text-align: center;
}
.home__title-shine {
  font-weight: 900;
  background: linear-gradient(90deg, hsl(271,90%,30%) 0%, hsl(300,90%,40%) 35%, hsl(271,90%,30%) 55%, hsl(310,85%,45%) 80%, hsl(271,90%,30%) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 2.5s linear infinite;
  display: inline-block;
  filter: drop-shadow(0 0 12px hsla(280, 80%, 40%, 0.35));
}
.dark-theme .home__title-shine {
  background: linear-gradient(90deg, hsl(271,100%,85%) 0%, hsl(300,100%,90%) 35%, hsl(271,100%,85%) 55%, hsl(310,100%,88%) 80%, hsl(271,100%,85%) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px hsla(280, 100%, 80%, 0.7));
}
@keyframes titleShine {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}
.home__icons {
    display: flex;
    align-items: center;
    gap: .75rem;
    justify-content: space-around;
}
.home__box {
    background-color: var(--first-color-alt);
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    color: var(--white-color);
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.home__img {
    /* width: 220px; */
    size: 100%;
    justify-self: center;
    filter: drop-shadow(0 8px 24px hsla(271, 100%, 60%, 0.4));
    margin-top: -8rem;
}

.home__container {
    max-width: 90%;
    padding-inline: 2rem;
    margin-inline: auto;
}
.home__content {
    padding: 2rem 1.5rem 0 1rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--first-color) 0%, var(--dark-color) 100%);
    border: 1px solid hsla(271, 100%, 80%, 0.25);
    box-shadow:
      0 0 0 3px hsla(271, 100%, 60%, 0.08),
      0 8px 48px hsla(271, 100%, 20%, 0.5);
    position: relative;
  row-gap: 2rem;
  padding-bottom: 2rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
}

.home__content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    hsla(271, 100%, 85%, 0.5) 40%,
    hsla(280, 100%, 90%, 0.3) 60%,
    transparent);
  pointer-events: none;
}

.home__content::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: hsla(271, 100%, 60%, 0.12);
  border-radius: 50%;
  top: -100px;
  left: -80px;
  filter: blur(60px);
  pointer-events: none;
}

.home__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    column-gap: .75rem;
    gap: .5rem;
    width: 100%;
}
.home__name{
  color: var(--white-color);
  font-size: var(--h2-font-size);
  margin: .5rem;
  text-align: center;
}

.home__profession {
  font-size:var(--small-font-size)  ;
  font-weight: var(--font-regular);
  color: var(--white-color);
  margin-bottom: 2rem;
}


.home__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: .5rem;
    min-height: 200px;
    width: fit-content;
    padding: 2rem 1.5rem;
}
.home_button i {
  font-weight: initial;
  font-size: 2rem;
}



/*=============== Animations ===============*/
.home__data {
    animation: fadeSlideDown 1s ease forwards;
}

.home__content {
    animation: fadeSlideUp 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============== SERVICES ===============*/

.services {
    background: linear-gradient(
        180deg,
        transparent 0%,
        hsla(271, 50%, 5%, 0.3) 100%
    );
    padding-bottom: 5rem;
}
.services__container {
    row-gap: 2rem;
}



.services__scroll {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.services__scroll::-webkit-scrollbar { display: none; }
.services__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
}
.services__card {
    flex: 0 0 200px;
    min-height: 155px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-align: start;
}
.service__name {
    white-space: normal;
    text-align: center;
}
.service__description {
    text-align: center;
    white-space: normal;
}
.services__card {
 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: hsla(271, 100%, 60%, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid hsla(271, 100%, 80%, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s;
    border-left: none;

}

.services__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        to  right,
        hsla(271, 100%, 80%, .20),
        transparent
    );
    border-radius: 1.5rem 0 0 1.5rem;
}
.services__card::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 40px;
  background-color: hsla(322, 100%, 50%, 0.573);
  border-radius: 50%;
  top: -1rem;
  right: -.11rem;
  filter: blur(35px);

}

@media screen and (max-width: 1149px) {
  .services__card { flex: 0 0 160px; }
}

  .services__icons {
    background-color: var(--dark-color);
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--white-color-light);
    border: 3px solid var(--gray-color);
    border-radius: 1rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    margin-bottom: 1rem;
    transition: .4s;
    cursor: pointer;
  }
.services__icons:hover {
    background: var(--first-color);
    border-color: var(--first-color);
    color: var(--white-color);
    transform: rotate(5deg) scale(1.1);
}
  .services__card:hover {
    transform: translateY(-10px) scale(1.02);
    background: hsla(271, 100%, 60%, 0.18);
    z-index: 10;
    box-shadow: 0 20px 48px hsla(271, 100%, 60%, 0.28), inset 0 1px 0 hsla(271,100%,90%,.15);
    border-color: hsla(271,100%,70%,.35);
}

  .service__name {
    text-align: center;
  }
.service__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--first-color), hsl(280, 100%, 70%));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 2rem;
  margin-bottom: .4rem;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px hsla(271, 100%, 60%, 0.45);
}
.service__description {
    text-shadow: 0 0 10px hsla(271, 100%, 80%, 0.5);
    color: hsl(271, 20%, 88%);
}


.services__title {
  text-align: center;
  font-size: var(--h1-font-size);

}
.services__description {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: hsl(271, 60%, 25%);
  font-weight: var(--font-semi-bold);
}
body.dark-theme .services__description { color: hsl(280, 50%, 88%); }
/*=============== ABOUT ===============*/
.about__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  background: hsla(271, 50%, 15%, .9);
  border-radius: 2rem;
  padding: 3rem;
  align-items: center;

}

.about__title {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  /* margin-bottom: .5rem; */
  text-align: center;
}
.about__subtitle {
    color: var(--white-color-light);
    font-size: var(--small-font-size);
    text-align: center;
    margin-bottom: 1.5rem;
}
.about__description {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    background: hsla(271, 100%, 60%, 0.05);
    border-right: 3px solid var(--first-color);
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-size: var(--small-font-size);
}

/*=============== ABOUT STATS ===============*/
.about__stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.about__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: hsla(271, 100%, 60%, 0.1);
  border: 1px solid hsla(271, 100%, 60%, 0.25);
  border-radius: 1rem;
  padding: .75rem .5rem;
}
.about__stat-number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
}
.about__stat-label {
  font-size: var(--small-font-size);
  color: var(--white-color-light);
  text-align: center;
}
/* ---- Creative 3-photo layout ---- */
.about__images {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* عکس اصلی - قاب پرتره با گوشه‌های نامتقارن */
.about__img-main {
  position: absolute;
  width: 270px;
  height: 350px;
  border-radius: 60% 40% 55% 45% / 45% 45% 55% 55%;
  overflow: hidden;
  border: 4px solid var(--first-color);
  box-shadow: 0 16px 48px hsla(271, 100%, 60%, 0.35),
              inset 0 0 0 6px hsla(271, 100%, 60%, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: 3;
  transition: transform .4s, border-radius .4s;
}
.about__img-main:hover {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.03);
  border-radius: 2rem;
}
.about__img-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}

/* عکس دوم - مربع گرد، پایین-چپ، بیرون زده */
.about__img-secondary {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 2rem;
  overflow: hidden;
  border: 3px solid var(--second-color);
  box-shadow: 0 12px 32px hsla(271, 100%, 40%, 0.4);
  bottom: 20px;
  left: 10px;
  transform: rotate(5deg);
  z-index: 4;
  transition: transform .4s;
}
.about__img-secondary:hover { transform: rotate(0deg) scale(1.05); }
.about__img-secondary img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}

/* عکس سوم - دایره، بالا-راست، بیرون زده */
.about__img-third {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white-color);
  box-shadow: 0 8px 24px hsla(271, 100%, 60%, 0.5);
  top: 20px;
  right: 10px;
  transform: rotate(-6deg);
  z-index: 4;
  transition: transform .4s;
}
.about__img-third:hover { transform: rotate(0deg) scale(1.08); }
.about__img-third img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}

/* حلقه تزئینی دور عکس اصلی */
.about__img-ring {
  position: absolute;
  width: 305px;
  height: 385px;
  border-radius: 63% 37% 58% 42% / 48% 48% 52% 52%;
  border: 2px dashed hsla(271, 100%, 70%, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(3deg);
  z-index: 1;
  animation: ringRotate 12s linear infinite;
}
@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(3deg); }
  to   { transform: translate(-50%, -50%) rotate(363deg); }
}

/* نقطه‌های تزئینی */
.about__img-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 30px;
  right: 15px;
  background-image: radial-gradient(hsla(271,100%,70%,0.5) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 2;
  border-radius: 50%;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .about__card {
    grid-template-columns: 1fr;
  }
  .about__images {
    height: 380px;
  }
  .about__img-main  { width: 180px; height: 240px; }
  .about__img-secondary { width: 130px; height: 130px; left: 20px; bottom: 10px; }
  .about__img-third { width: 115px; height: 115px; right: 20px; top: 10px; }
  .about__img-ring  { width: 210px; height: 275px; }
}

/*=============== GALLERY ===============*/
.gallery {
  background: linear-gradient(180deg, hsla(271, 50%, 5%, 0.2) 0%, transparent 100%);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery__card {
  background: hsla(271, 100%, 60%, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(271, 100%, 80%, 0.12);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
}
.gallery__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, hsla(271,50%,5%,.65) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery__card::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 50px;
  background-color: hsla(271, 100%, 60%, 0.4);
  border-radius: 50%;
  top: -1rem;
  right: -1rem;
  filter: blur(35px);
  pointer-events: none;
}
.gallery__card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px hsla(271, 100%, 60%, 0.25);
  border-color: hsla(271, 100%, 70%, 0.35);
}
.gallery__card:hover::before { opacity: 1; }
.gallery__card:hover .gallery__img { transform: scale(1.06); }
.gallery__placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, hsla(271, 60%, 20%, 0.6), hsla(280, 40%, 30%, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__placeholder::before {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 2.5rem;
  color: hsla(271, 100%, 80%, 0.3);
}
.gallery__label {
  padding: .65rem 1rem;
  color: #ffffff;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  text-align: center;
  text-shadow: 0 1px 8px hsla(271, 100%, 30%, 0.8);
  letter-spacing: .02em;
  position: relative;
  z-index: 2;
}
.gallery__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 2rem;
  padding: .55rem 1.5rem;
  border: 1px solid hsla(271, 100%, 75%, 0.55);
  border-radius: 2rem;
  background: hsla(271, 100%, 55%, 0.22);
  color: #ffffff;
  font-size: var(--small-font-size);
  width: fit-content;
  text-align: center;
  letter-spacing: .02em;
  text-shadow: 0 1px 6px hsla(271,100%,30%,.6);
}
.gallery__hint i { color: hsl(280, 100%, 80%); font-size: .9rem; }

/* Before/After card */
.gallery__card--before-after .gallery__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
}
.gallery__before-wrap,
.gallery__after-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__before-wrap { border-left: 1px solid hsla(271,100%,80%,0.25); }
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform var(--transition-slow);
}
.gallery__ba-label {
  position: absolute;
  bottom: .5rem;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: .4rem;
  letter-spacing: .05em;
}
.gallery__ba-label--before {
  right: .5rem;
  background: hsla(0, 0%, 0%, 0.55);
  color: #fff;
}
.gallery__ba-label--after {
  left: .5rem;
  background: hsla(271, 100%, 60%, 0.75);
  color: #fff;
}
.gallery__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.gallery__nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: hsla(271, 100%, 60%, 0.12);
  border: 1px solid hsla(271, 100%, 75%, 0.25);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.gallery__nav:hover {
  background: hsla(271, 100%, 60%, 0.3);
  box-shadow: 0 0 18px hsla(271,100%,60%,.35);
  transform: scale(1.08);
}
.gallery__nav:disabled { opacity: .2; cursor: default; }
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.gallery__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: hsla(271, 100%, 60%, 0.12);
  border: 1.5px solid hsla(271, 100%, 60%, 0.3);
  color: hsl(271, 60%, 40%);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark-theme .gallery__dot { color: hsl(271, 80%, 85%); }
.gallery__dot.active {
  background: linear-gradient(135deg, var(--first-color), hsl(300,80%,70%));
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px hsla(271, 100%, 60%, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 8px hsla(271,100%,60%,.5);
}
.gallery__card { display: none; }
.gallery__card.visible { display: block; }
@media screen and (max-width: 767px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__nav { display: none; }
}

/*=============== CONTACT ===============*/
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 2rem;
  align-items: start;
}
.contact__form-card,
.contact__info-card {
  background: hsla(271, 50%, 15%, .9);
  border-radius: 2rem;
  padding: 2rem;
}
.contact__form-title,
.contact__info-title {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.contact__label {
  color: var(--white-color-light);
  font-size: var(--small-font-size);
}
.contact__input {
  background: hsla(271, 100%, 60%, 0.07);
  border: 1px solid hsla(271, 100%, 60%, 0.2);
  border-radius: .75rem;
  padding: .8rem 1rem;
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  outline: none;
  transition: border-color .3s;
  width: 100%;
  direction: rtl;
}
.contact__input:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px hsla(271,100%,60%,.12), 0 0 12px hsla(271,100%,60%,.15);
}
.contact__input::placeholder {
  color: hsla(271, 8%, 60%, 0.7);
}
.contact__select {
  cursor: pointer;
}
.contact__select option {
  background: var(--dark-color);
  color: var(--white-color);
}
.contact__textarea {
  resize: vertical;
  min-height: 100px;
}
.contact__submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  letter-spacing: .03em;
  margin-top: .25rem;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid hsla(271, 100%, 80%, 0.1);
}
.contact__info-item:last-child {
  border-bottom: none;
}
.contact__info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: hsla(271, 100%, 60%, 0.15);
  border: 1px solid hsla(271, 100%, 60%, 0.25);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--first-color);
  font-size: 1rem;
}
.contact__info-label {
  color: var(--white-color-light);
  font-size: var(--small-font-size);
  margin-bottom: .2rem;
}
.contact__info-value {
  color: var(--white-color);
  font-size: var(--normal-font-size);
}
@media screen and (max-width: 900px) {
  .contact__wrapper { grid-template-columns: 1fr; }
}

/*=============== FAQ ===============*/
.faq__list {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  border: 1px solid hsla(271, 100%, 60%, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  background: hsla(271, 50%, 98%, 0.6);
  backdrop-filter: blur(8px);
  transition: var(--transition-base);
}
.dark-theme .faq__item {
  background: hsla(271, 30%, 14%, 0.7);
}
.faq__item.open {
  border-color: hsla(271, 100%, 60%, 0.5);
  box-shadow: 0 4px 20px hsla(271, 100%, 60%, 0.12);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 600;
  color: hsl(271, 60%, 20%);
  text-align: right;
}
.dark-theme .faq__question { color: #fff; }
.faq__icon {
  flex-shrink: 0;
  color: var(--first-color);
  transition: transform 0.3s ease;
}
.faq__item.open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 1.4rem;
}
.faq__answer p {
  font-size: var(--small-font-size);
  color: hsl(271, 30%, 35%);
  line-height: 1.8;
  padding-bottom: 1.1rem;
}
.dark-theme .faq__answer p { color: hsl(280, 20%, 75%); }
.faq__item.open .faq__answer { max-height: 200px; padding-top: 0; }

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--dark-color);
  padding-block: 3rem 1.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(271,100%,70%) 40%, hsl(300,80%,75%) 60%, transparent);
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-size: 1.1rem;
}
.footer__logo:hover { color: var(--second-color); }
.footer__logo-img {
  width: 48px;
  border-radius: 50%;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer__link {
  color: var(--white-color-light);
  font-size: var(--normal-font-size);
  transition: color .3s;
}
.footer__link:hover { color: var(--first-color); }
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__social {
  width: 42px;
  height: 42px;
  background: hsla(271, 100%, 60%, 0.1);
  border: 1px solid hsla(271, 100%, 60%, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-light);
  font-size: 1.1rem;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.footer__social:hover {
  background: linear-gradient(135deg, var(--first-color), hsl(300,80%,60%));
  color: var(--white-color);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 20px hsla(271,100%,60%,.4);
  border-color: transparent;
}
.footer__bottom {
  border-top: 1px solid hsla(271, 100%, 80%, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}
.footer__copy {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/*=============== WHATSAPP FLOAT ===============*/
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  z-index: var(--z-fixed);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.whatsapp-float:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

/* WhatsApp link in contact */
.contact__wa-link {
  color: #25d366;
  text-decoration: none;
  transition: opacity .2s;
}
.contact__wa-link:hover { opacity: .75; }

/*=============== LIGHTBOX ===============*/
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: hsla(271, 50%, 5%, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { display: none; }
.lightbox__pair {
  display: flex;
  gap: 6px;
  max-width: 92vw;
  max-height: 85vh;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 60px hsla(271, 100%, 10%, 0.7);
  animation: lbFadeIn .25s ease;
}
.lightbox__pair img {
  width: 50%;
  max-height: 85vh;
  object-fit: contain;
  background: #08000f;
  display: block;
}
.lightbox__pair-wrap {
  position: relative;
  width: 50%;
}
.lightbox__pair-wrap img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  background: #08000f;
  display: block;
}
.lightbox__pair-badge {
  position: absolute;
  bottom: .6rem;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 2rem;
  color: #fff;
}
.lightbox__pair-badge--before {
  right: .6rem;
  background: hsla(0,0%,0%,0.55);
}
.lightbox__pair-badge--after {
  left: .6rem;
  background: hsla(271,100%,60%,0.8);
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  background: hsla(271,100%,60%,0.2);
  border: 1px solid hsla(271,100%,80%,0.25);
  border-radius: .75rem;
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox__close:hover { background: hsla(271,100%,60%,0.45); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: hsla(271,100%,60%,0.2);
  border: 1px solid hsla(271,100%,80%,0.25);
  border-radius: .75rem;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox__prev { right: 1.25rem; }
.lightbox__next { left: 1.25rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: hsla(271,100%,60%,0.45); }
.lightbox__label {
  position: absolute;
  bottom: 1.5rem;
  color: hsla(271,48%,90%,0.85);
  font-size: var(--small-font-size);
  background: hsla(271,50%,10%,0.6);
  padding: .4rem 1rem;
  border-radius: 2rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar { width: 8px; background-color: var(--gray-color); }
::-webkit-scrollbar-thumb { background: var(--first-color); border-radius: 1rem; }

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, var(--first-color), hsl(285,100%,55%));
  color: var(--white-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px hsla(271, 100%, 60%, 0.4);
  transition: transform var(--transition-base), opacity .3s, bottom .3s, box-shadow var(--transition-base);
  opacity: 0;
  pointer-events: none;
  z-index: var(--z-tooltip);
}
.scrollup:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px hsla(271, 100%, 60%, 0.55);
}
.scrollup.show-scroll {
  opacity: 1;
  pointer-events: auto;
  bottom: 3rem;
}
/*=============== AMBIENT GLOWS ===============*/
.services::after {
  content: '';
  display: block;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(271,100%,60%,.12) 0%, transparent 70%);
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}
.services { position: relative; }

.gallery::after {
  content: '';
  display: block;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, hsla(300,80%,60%,.08) 0%, transparent 70%);
  position: absolute;
  top: 0;
  right: -100px;
  pointer-events: none;
  filter: blur(60px);
}
.gallery { position: relative; overflow: hidden; }

/*=============== NAV LINK UNDERLINE ===============*/
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--first-color), hsl(300,80%,65%));
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav__link:hover::after,
.nav__link.active-link::after { width: 100%; }

/*=============== CONTACT INFO ICON HOVER ===============*/
.contact__info-item:hover .contact__info-icon {
  background: linear-gradient(135deg, var(--first-color), hsl(285,100%,55%));
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  transition: var(--transition-base);
  box-shadow: 0 4px 16px hsla(271,100%,60%,.4);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */

@media screen and (max-width: 330px) {
    .home__title {
        font-size: 1.8rem;
    }
    .home__icons {
        flex-direction: column;
    }
}
/* For medium devices */
@media screen and (max-width: 767px) {
    .home__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .home__image {
        order: 1;
        display: flex;
        justify-content: center;
    }
    .home__info {
        order: 2;
    }
    .home__button {
        order: 3;
    }
    .home__img {
        margin: 0;
        width: 200px;
    }
}

/* For large devices */
/* For 2K resolutions */