@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-color: #001618;
  --secondary-color: #1D616A;
  --accent-color: #3DC7D2;
  --accent-hover: #1D616A;
  --text-primary: #ffffff;
  --text-secondary: #001618;
  --text-muted: #808080;
  --card-bg: #001618;
  --card-border: #1D616A;

  --header-pad-y: clamp(10px, 1vw, 16px);
  --header-gap: clamp(10px, 1.2vw, 20px);
  --hero-top-pad: clamp(110px, 12vw, 180px);

  --card-gap: 25px;
  --card-header-h: clamp(44px, 6vh, 56px);
  --price-box-h: clamp(140px, 20vh, 180px);
  --info-box-h: clamp(150px, 26vh, 180px);
  --title-fs: clamp(1.25rem, 2.5vw, 2rem);
  --price-fs: clamp(1.3rem, 3.5vw, 2rem);
  --price-sub-fs: clamp(0.8rem, 2vw, 1.2rem);
  --info-title-fs: clamp(12px, 1.8vw, 14px);
  --info-strong-fs: clamp(0.8rem, 2vw, 1rem);
  --btn-fs: clamp(1rem, 2.6vw, 1.2rem);
  --btn-pad-y: clamp(6px, 1vw, 10px);
}

* {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  line-height: 1.6; 
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}



/*header qismi*/
.header {
  background-color: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  padding: 55px 0;
  width: 100%;
  z-index: 999999;
  transition: transform .28s ease, box-shadow .2s ease;
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header.is-stuck  {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.navbar {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  padding: clamp(10px, 1vw, 16px) 0;
  border: 1.5px solid rgb(61, 199, 210, 0.1);
  border-left: none;
  border-right: none;
  box-shadow: 0 12px 30px rgba(0,51,51,0.25);
  background-color: var(--primary-color);
  transition: all .5s ease;
}

.navbar.scrolled-down {
  top: -100px;
}

.navbar.scrolled-up {
  top: 0px;
}

.navbar.scrolled-up .logo img {
  height: clamp(48px, 5vw, 55px) !important;
  transition: all .3s ease;
}

.navbar.scrolled-down .logo img {
  height: clamp(48px, 5vw, 55px) !important;
}

.navbar.scrolled-up .logo-absolute {
  height: clamp(72px, 7vw, 76px);
  transition: all .3s ease;
  border: 1px solid transparent;
}

.navbar.scrolled-down .logo-absolute {
  height: clamp(72px, 7vw, 76px);
  border: 1px solid transparent;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  gap: clamp(10px, 1.2vw, 20px);
}

.navbar-brand {
  position: relative;
  width: auto;
  min-width: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: bold;
}

.logo-absolute {
  position: absolute;
  width: clamp(72px, 7vw, 110px);
  height: clamp(72px, 7vw, 110px);
  background-color: var(--card-bg);
  border: 1.5px solid rgb(61, 199, 210, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-absolute .logo img {
  height: clamp(48px, 5vw, 80px) !important;
  transition: all .3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(8px, 1.2vw, 20px);
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 8px 1rem;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  padding: 8px clamp(10px, 1.2vw, 15px);
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 999;
}

.navbar-actions .language-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px clamp(10px, 1.2vw, 15px);
  border: 1.5px solid rgb(61 199 210 / 0.1);
  border-radius: 12px;
}

.language-btns button {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.language-btns button:hover {
  color: var(--accent-color);
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px clamp(14px, 1.6vw, 20px);
  background: var(--accent-color);
  color: var(--card-bg);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.login-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transform: translateY(100%) rotateX(90deg);
  transition: transform 0.3s ease-in-out;
}

.login-btn:hover::before {
  transform: translateY(0) rotateX(0);
}

.login-btn::after {
  content: "";
  position: absolute;
  top: -5px; left: -5px;
  width: calc(100% + 10px); height: calc(100% + 10px);
  border-radius: 15px;
  border: 1px solid #00b5ff;
  z-index: -1;
}

.login-btn:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

.login-btn:active {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transform: scale(0.95);
}

.menu-wrap{
  position:relative;
  display:none;
  align-items: center;
  z-index: 99999;
  height: calc(var(--bar-h)*3 + var(--gap)*2);
}

#toggle{
  --bar-h: 3px;
  --gap: 6px;
  display: inline-block;
  width: 28px;
  height: calc(var(--bar-h)*3 + var(--gap)*2);
  cursor: pointer;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

#toggle span{
  top: 50%;
  transform: translateY(-50%);
}

#toggle span, #toggle span:before, #toggle span:after {
  position: absolute; left: 0; right: 0;
  height: var(--bar-h);
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s ease;
}

#toggle span:before, #toggle span:after {
  content: "";
  position: absolute; left:0;
}

#toggle span:before {
  top: calc(50% - (var(--gap) + var(--bar-h)));
}

#toggle span:after {
  top: calc(50% + var(--gap));
}

.menu-wrap.open #toggle span {
  background:transparent;
}

.menu-wrap.open #toggle span:before {
  transform: rotate(45deg) translateY(calc(var(--gap) + var(--bar-h)));
}

.menu-wrap.open #toggle span:after {
  transform: rotate(-45deg) translateY(calc(-1 * (var(--gap) + var(--bar-h))));
}

#menu {
  position: absolute; top: calc(100% + 40px); left: auto; right: 0;
  min-width: 200px;
  background: var(--card-bg);
  border: 1.5px solid rgb(61,199,210,0.1);
  text-align: center;
  border-top: none;
  box-shadow: 0 12px 30px rgba(0,51,51,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: auto;
}

.menu-wrap.open #menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu ul, #menu li, #menu a {
  margin: 0; padding: 0;
  list-style: none;
  display:block;
}

#menu li a {
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: clamp(14px,1.2vw,16px);
  font-weight: 500;
  border-bottom: 1px solid rgb(61,199,210,0.1);
  transition: background .3s ease;
}

#menu li a:hover, #menu li a:focus {
  background:rgba(255,255,255,0.1);
}
/*header qismi tugadi*/



/*main section*/
.demo-content {
  background: linear-gradient(to bottom, #001618 0%, #001618 70%, #003333 100%);
  padding: 0;
  margin: 0 !important;
}

.demo-content .container {
  display: flex;
  flex-direction: column;
  padding: clamp(96px, 11vw, 130px) 20px 0 20px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease-out;
  padding-top: 150px;
  padding-bottom: 270px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.carousel-item {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: min(100%, clamp(640px, 72vw, 1080px));
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(62, 193, 202, 0.3);
}

.item-1 {
  background-image: url(../assets/j1.jpg);
}

.item-2 {
  background-image: url(../assets/banner2.jpg);
}

.item-3 {
  background-image: url(../assets/banner3.jpg);
}

.pic-title-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: normal;
  width: min(90%, 520px);
  height: auto;
  top: clamp(40px, 8vw, 80px);
  left: clamp(20px, 4vw, 60px);
  right: 20px;
  z-index: 10;
  color: white;
}

.main-title-pic {
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.under-main-title {
  width: 70%;
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.2;
  margin-top: clamp(8px, 1.2vw, 16px);
}

.more-btn {
  position: absolute; bottom: 10%; left: 7%;
}
.more-btn button {
  padding: clamp(8px, 1.2vw, 12px) clamp(16px, 1.8vw, 24px);
  background: var(--accent-color);
  color: var(--card-bg);
  font-weight: 700;
  border: none;
  border-radius: 12px;
}

.carousel-item.center {
  z-index: 9999; opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
}

.carousel-item.left {
  transform: translateX(-60%) translateZ(-200px) rotateY(55deg) scale(0.9);
  z-index: 4;
  opacity: 0.8;
}

.carousel-item.right {
  transform: translateX(60%) translateZ(-200px) rotateY(-55deg) scale(0.9);
  z-index: 4;
  opacity: 0.8;
}

.carousel-item.left-2, .carousel-item.right-2, .carousel-item.hidden {
  transform: translateX(0) translateZ(-600px) rotateY(0deg) scale(0.3);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.nav-btn:focus, .indicator:focus {
  outline: 2px solid var(--accent-hover);
  outline-offset: 2px;
}

.carousel-item.center:hover {
  box-shadow: 0 0 60px #000;
}

.carousel-item.left:hover  {
  transform: translateX(-70%) translateZ(-180px) rotateY(35deg) scale(0.85);
}

.carousel-item.right:hover {
  transform: translateX(70%)  translateZ(-180px) rotateY(-35deg) scale(0.85);
}

.carousel-nav {
  position: absolute;
  width: 80%;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex; justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  margin: 0 auto;
}
.carousel-wrapper:hover .carousel-nav {
  opacity: 1;
  pointer-events: all;
}

.nav-btn {
  width: 50px; height: 50px;
  border: none; border-radius: 50%;
  background: var(--accent-color);
  color: white; font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.nav-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
}

.nav-btn:active {
  transform: scale(0.95);
}

.carousel-indicators {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translate(-50%, clamp(24px, 4vw, 60px));
  display: flex; gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px; height: 12px;
  border: 1px solid rgb(0, 51, 51);
  border-radius: 50%;
  background: #001618;
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  background: var(--accent-color); transform: scale(1.2);
}

.indicator:hover {
  background: rgba(62, 193, 202, 0.8);
}

.advertising {
  max-width: 1200px;
  width: 100%;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.advertising .advert-container {
  position: relative;
  min-width: 0;
  max-width: 100%;
  height: auto;
  border: 1.5px solid rgb(0, 51, 51);
  border-radius: 12px;
  color: var(--text-primary);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
  padding: clamp(12px, 2.2vw, 16px);
  transition: all 0.3s ease-in-out;
}

.advertising .advert-container:hover {
  transform: translateY(-5px);
}

.advertising .advert-container::before {
  content: '';
  position: absolute;
  left: -5px; top: 30px;
  width: 10px; height: 90px;
  background: var(--accent-color);
  border-radius: 5px;
}

.advert-text {
  font-size: clamp(14px, 1.2vw, 18px);
}

.svg-icon {
  width: auto;
  height: clamp(40px, 5vw, 55px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/*main section tugadi*/



/*ulanish jarayoni sectioni*/
.connect-informations-section {
  position: relative;
  padding-top: clamp(90px,8vh,140px);
  padding-bottom: clamp(35px,8vh,75px);
  background-color: #001618;
}

.connect-informations-section .container {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vh, 80px);
}

.connect-informations-section::before {
  position: absolute;
  content: '';
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  background: rgb(255, 255, 255, 0.1);
  filter: blur(100px);
}

.connect-steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 6.5vh, 100px);
}

.step-cards-cont {
  display: grid;
  grid-template-areas: 
      "a b c d";
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.step-cards-cont .a {grid-area: a;}
.step-cards-cont .b {grid-area: b;}
.step-cards-cont .c {grid-area: c;}
.step-cards-cont .d {grid-area: d;}

.step-card-cont-title {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.step-card-cont-title strong {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
}

.step-card-cont-title span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.step-card {
  position: relative;
  height: auto;
  aspect-ratio: 12 / 14;
  background: #00161870;
  border: none;
  border-radius: 16px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-sizing: border-box;
  box-shadow: 0 4px 15px #00000069;
  overflow: hidden;
  padding: clamp(12px, 2vh, 16px);
  z-index: 3;
}

input:focus-visible {
  outline: 1px solid #3e3e3e;
}

.step-card:nth-child(1) {
  animation-duration: 4.6s;
}

.step-card:nth-child(2) {
  animation-duration: 4.9s;
}

.step-card:nth-child(3) {
  animation-duration: 5.3s;
}

.step-card:nth-child(4) {
  animation-duration: 4.7s;
}

.odd {
  transform: translateY(-5%);
  animation: hanging-odd 3s ease-in-out infinite;
}

.even {
  transform: translateY(5%);
  animation: hanging-even 3s ease-in-out infinite;
}

@keyframes hanging-odd {
  0%, 100% {
      transform: translateY(-5%);
  }
  50% {
      transform: translateY(-8%);
  }
}

@keyframes hanging-even {
  0%, 100% {
      transform: translateY(5%);
  }
  50% {
      transform: translateY(2%);
  }
}

.step-card .lamp-head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 50px;
  background: linear-gradient(to bottom, rgb(0, 22, 24) 30%, #999999) 100%;
  transform: translateX(-50%);
  z-index: 0;
}

.step-card .lamp-head::before {
  position: absolute;
  left: -20px;
  bottom: -20px;
  transform: translate(calc(50% + 2px), -20px);
  content: '';
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background-color: #1D616A;
}

.step-card .lamp-head::after {
  position: absolute;
  left: -60px;
  bottom: -30px;
  transform: translate(calc(50% + 2px), -10px);
  content: '';
  width: 60px;
  height: 30px;
  border: none;
  border-radius: 30px 30px 0 0;
  background-color: #01272b;
  z-index: 2;
}

.step-card .lamp-ray {
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
  width: 100%;
  height: 50%;
  background: radial-gradient(circle at 50% -110px, rgba(255, 255, 255, 0.1), transparent 80%);
  clip-path: polygon(41% 0%, 59% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.step-title-container {
  margin-top: 40%;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.step-title-container strong {
  font-size: clamp(0.8rem, 1.3vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
}

.step-title-container span {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 400;
  color: var(--text-muted);
}

.step-svg {
  position: relative;
  width: 60%;
  height: auto;
  text-align: center;
  margin: clamp(6px, 1.2vw, 12px) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.connect-call-container {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0 0 0;
  padding: 15px 1rem 1rem 1rem;
}

.arrow-wrap {
  position: absolute;
  left: -50px;
  top: 30;
  pointer-events: none;
}

.wanna-connect-now {
  position: relative;
  padding: 7px 2rem;
  font-size: clamp(1rem, 1.9vw, 1.7rem);
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid rgb(61, 199, 210, 0.1);
  border-radius: 12px;
  background: var(--card-bg);
  width: 70%;
}

.send-application {
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 20px;
  letter-spacing: 0.5px;
}

.connect-call-btns {
  position: relative;
  margin: 50px auto;
  display: flex;
  gap: 20px;
}

.connect-call-btns button {
  width: 200px;
  padding: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.connect-call-btns button:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px #000;
}

.connect-call-btns .send-application-btn {
  border: none;
  background: var(--accent-color);
  color: var(--card-bg);
}

.connect-call-btns .phone-call-btn {
  border: 1px solid rgb(61, 199, 210, 0.1);
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
}
/*ulanish jarayoni sectioni tugadi*/



/*tariflar bo'limi*/
.pricing {
  position: relative;
  margin: 0;
  padding-block: clamp(22px, 4vw, 40px);
  width: 100%;
}

.pricing .container {
  display: flex; flex-direction: column;
  gap: clamp(20px, 4vw, 30px);
  align-items: center;
  max-width: min(1120px, 95vw);
  margin-inline: auto;
}

canvas {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  z-index: -1;
}

.tarif {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 1rem) clamp(12px, 2vw, 1rem) clamp(12px, 2vw, 1rem) clamp(18px, 3vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border: 2px solid rgb(61 199 210 / 0.1);
  border-radius: 12px;
}
.tarif span{
  font-size: var(--title-fs);
  font-weight: 600;
  color: var(--text-primary);
}

.person-btns{
  display:flex;
  align-items:center;
  gap: clamp(6px, 2vw, 20px);
}

.person-btns .tab {
  line-height: 1;
  display: inline-flex; align-items: center;
  padding: clamp(6px, 1.8vw, 1rem);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--text-primary);
  background: var(--card-bg);
  border: none; border-radius: 12px;
  transition: all .25s ease;
}

.person-btns button:hover{
  transform: translateY(-3px);
  box-shadow: 0 2px 4px var(--accent-color);
}

.person-btns button.active-btn{
  background: var(--accent-color);
  color: var(--card-bg);
}

.person-btns button.active-btn:hover{
  box-shadow: none;
  transform: none;
}

.person-btns .yuridik{
  position: relative;
  display: flex; flex-direction: row; align-items: center;
  gap: clamp(8px, 2.4vw, 12px);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 6px;
  background: transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.person-btns .yuridik.is-open{
  border-color: rgb(61 199 210 / .18);
  background: color-mix(in oklab, var(--card-bg) 92%, white 8%);
}

.yuridik-mask{
  width: 0;
  transition: width .35s ease;
  will-change: width;
  pointer-events: none;
}
.yuridik-in{
  display: flex;
  gap: 10px;
  transform: translateX(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  will-change: transform, opacity;
  background: transparent;
}
.yuridik.is-open .yuridik-mask{
  width: var(--rail-w, 220px);
}

.yuridik.is-open .yuridik-in{
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.show-tarif { display: block; }
.hide-tarif { display: none; }

.slider-container {
  position: relative;
  width: 100%;
  max-width: min(1120px, 95vw);
  overflow: hidden;
  padding: 1rem .7rem 1rem 1rem;

  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.slider{
  display:flex;
  transition: transform .5s ease;
  will-change: transform;
  gap: var(--card-gap);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card-tarif-bg {
  min-width: calc(100% / 3 - 1.3rem);
  height: auto;
  background: none;
  padding: 3px;
  border-radius: 16px;
  animation: 3s spin linear infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  cursor: pointer;
}

@keyframes spin {
  from {
  --angle: 0deg;
  }

  to {
  --angle: 360deg;
  }
}

.card-tarif {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border-radius: 16px;
  border: 2px solid rgb(61 199 210 / 0.1);
  display: flex; flex-direction: column; align-items:center;gap: clamp(15px, 3vh, 15px);
  text-align: center;
  padding: 80px 20px 20px 20px;
  font-size: 1rem;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}

.card-tarif::before {
  content: '';
  position: absolute; left:50%; top:0; width:50%;
  height: var(--card-header-h);
  background: rgb(61 199 210);
  transform: translateX(-50%);
  border: none; border-radius: 0 0 16px 16px;
}

.card-tarif-bg.focus {
  transform: scale(1.05);
  box-shadow: inset 0 4px 20px rgb(61, 199, 210, 0.1);
  border: none;
  background-image: conic-gradient(from var(--angle), #3DC7D2, #001618, #001618, #001618, #3DC7D2, #001618, #001618, #001618, #3dc7d2);
  transition: all 0.4s ease;
}

.card-tarif-bg.focus .card-tarif {
  border: none;
}

.card-header {
  position: absolute;
  inset: 0 auto auto 0;
  width:100%;
  height: var(--card-header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.card-header span {
  font-size: clamp(0.8rem, 2.4vw, 1.2rem);
  font-weight: 600;
  color: var(--card-bg);
}

.tarif-price-container {
  position: relative;
  width: min(82%, 520px);
  border: 2px solid rgb(61 199 210 / 0.1);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  color: var(--text-primary);
  padding: 1rem clamp(16px, 3vw, 2rem);
}

.tarif-price-container span {
  font-size: var(--price-sub-fs);
  font-weight: 600;
  letter-spacing: 1px;
}

.tarif-price-container strong {
  font-size: var(--price-fs);
  font-weight: 800;
  letter-spacing: 2px;
}

.tarif-info-container {
  position: relative;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.info-cont {
  width: 100%; 
  display: flex; gap: 12px; align-items:center;
  padding: 4px 8px;
  border: none;
  border-radius: 10px;
}

.info-cont:hover {
  background: rgb(0 0 0 / 0.2);
}

.info-cont .svg {
  flex-shrink: 0;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-cont svg {
  fill: var(--accent-color) !important;
}

.info-cont .info-contents {
  flex: 1;
  display: flex; flex-direction: column; text-align: left; gap: 0;
}

.info-contents span {
  font-size: var(--info-title-fs);
  font-weight: 400;
  color: var(--text-muted);
}

.info-contents strong {
  font-size: var(--info-strong-fs);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.tarif-connect-btn {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 0 0;
  display: flex; flex-direction:column; gap: 15px;
}

.tarif-connect-btn button {
  width: 100%;
  padding: var(--btn-pad-y) 1rem;
  border: none;
  border-radius: 12px;
  background: rgb(61 199 210);
  font-size: var(--btn-fs);
  font-weight: 700;
  color: var(--card-bg);
  transition: all .2s ease-in-out;
}

.tarif-connect-btn button:active {
  transform: scale(.96);
}

.tarif-connect-btn button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px #000;
}

.tarif-connect-btn a {
  font-size: clamp(.8rem, 2.2vw, .9rem);
  text-decoration: none;
  color: rgb(61 199 210);
}

.nav-btns-tarif {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2.5vw, 20px);
}

.nav-tarif {
  fill: var(--text-primary);
  background: var(--card-bg);
  color: #fff;
  border: 1px solid rgb(61 199 210 / .1);
  border-radius: 12px;
  padding: 4px clamp(18px, 3vw, 25px);
  cursor: pointer;
  display: flex;
  z-index: 1;
  transition: all .3s ease;
}

.nav-tarif:hover {
  background: var(--accent-color);
  fill: var(--card-bg);
}

.card-tarif-bg.focus {
  transform: scale(1.05);
  box-shadow: inset 0 4px 20px rgb(61 199 210 / .1);
  border: none;
  background-image: conic-gradient(from var(--angle), #3DC7D2, #001618, #001618, #001618, #3DC7D2, #001618, #001618, #001618, #3dc7d2);
}

.card-tarif-bg.focus .card-tarif {
  border: none;
}

.prev-tarif {
  left: 0;
}

.next-tarif {
  right: 0;
}
/*tariflar bo'limi tugadi*/



.help-section {
  position: relative;
  padding-top: clamp(30px, 3vh, 50px);
  padding-bottom: clamp(35px, 8vh, 75px);
  background-color: #013438;
}

.help-section h2 {
  text-align: center;
  color: var(--text-primary);
  font-size: clamp(22px, 2.4vw, 32px);
}

.accordion {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 100px;
}

.faq-item {
  background: var(--card-bg);
  margin: 8px 0;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.faq-item.faq-open {
  border-color: var(--accent-color);
  text-decoration: underline;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  padding: 16px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-icon {
  margin-left: auto;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: #013438;
  transition: .25s;
}

.faq-icon::before {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.faq-item.faq-open .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.faq-open .faq-icon::before {
  background-color: var(--accent-color);
}

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}

.faq-a-inner {
  padding: 0 16px 16px;
  color: var(--text-muted);
}



.help-container-grid {
  display: grid;
  grid-template-areas:
      "form pic";
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 60px);
  max-width: min(1120px, 95vw);
  margin: 0 auto;
}

.help-pic { grid-area: pic;}
.help-form { grid-area: form;}

.help-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.help-pic img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.help-pic p {
  margin-top: 15px;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.5;
  padding: 0 1rem;
}

.help-form {
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  background-color: var(--card-bg);
}

.help-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vw, 20px);
}

.help-form .input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--text-primary);
}

.input-group input {
  width: 100%;
  padding: clamp(10px, 1.8vw, 14px);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  border: 1px solid rgb(61, 199, 210, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  background-color: #013438;
}

.input-group select {
  width: 100%;
  padding: clamp(10px, 1.8vw, 14px);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  border: 1px solid rgb(61, 199, 210, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  background-color: #013438;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366D1DB'><path d='M7 10l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
  background-size: 18px;
}

select option {
  padding: 6px;
}

select option:hover {
  background-color: var(--accent-color);
  color: var(--card-bg);
}

select {
  max-height: 200px;
  overflow-y: auto;
}

form button {
  width: 100%;
  padding: clamp(12px, 2vw, 16px);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--card-bg);
  background: var(--accent-color);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px #000;
}

form button:active {
  transform: scale(0.97);
}
/*FAQ sectioni tugadi*/



/*footer qismi*/
.site-footer {
  position: relative;
  width: 100%;
  background: rgb(0, 16, 17);
  color: var(--text-primary);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-areas:
    "about map links"
    "about map contact";
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: stretch;
}

.f-links {
  background: rgb(0, 22, 24, .9);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.aboutus {grid-area: about; height: 100%; display: flex; flex-direction: column; gap: 10px;}
.quick-links {grid-area: links; height: 100%;}
.contact {grid-area: contact; height: 100%;}
.map {grid-area: map; height: 100%; display: flex; flex-direction: column;}

.aboutus .footer-logo-cont {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.aboutus img {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin: 2rem 0;
}

.f-links h2 {
  font-size: clamp(18px, 2.1vw, 22px);
  margin: 0 0 12px;
  color: #fff;
}

.f-links p {
  color: var(--text-muted);
  line-height: 1.65;
}

.f-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  gap: 16px;
  margin-top: 16px;
}

.socials a {
  text-decoration: none;
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: none;
  transition: transform .2s ease, background .2s ease;
}
.socials a:hover {
  background: rgba(0,181,255,.18);
  transform: translateY(-1px);
}

.socials a i {
  font-size: 18px;
  line-height: 1;
}

.quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quick-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
}

.quick-links a:hover {
  color: var(--accent-color);
}

.info {
  display: grid;
  gap: 14px;
}

.info li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.info .icon {
  color: var(--accent-color);
  flex-shrink: 0;
  font-size: 20px;
}

.info a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color .2s ease, color .2s ease;
}

.info a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.info li p, .info li span {
  margin: 0;
  line-height: 1.5;
  color: var(--text-muted);
}

.map {
  display: flex;
  flex-direction: column;
}

.map .map-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: auto;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
}

.map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.copyright {
  border-top: 1px solid rgb(61, 199, 210, 0.1);
  margin-top: 28px;
}

.copyright .container {
  text-align: center;
}

.copyright p {
  color: var(--text-muted);
  font-size: 14px;
    padding: 15px 0;
}
/*footer tugadi*/



@media (min-width: 1440px) {
  .container{
    max-width: 1440px;
  }

  .nav-menu{
    max-width: 58vw;
  }

  .carousel-wrapper {
    padding-top: 170px;
  }

  .carousel-item{
    width: min(100%, 900px);
  }

  .carousel-item.left {
    transform: translateX(-55%) translateZ(-180px) rotateY(45deg) scale(0.9);
  }

  .carousel-item.right {
    transform: translateX(55%)  translateZ(-180px) rotateY(-45deg) scale(0.9);
  }

  /*tarif section*/
  .pricing .container{
    max-width: min(1280px, 88vw);
  }

  .slider-container{
    max-width: min(1280px, 88vw);
  }
  
  .nav-btns-tarif{
    width: clamp(170px, 12vw, 220px);
  }
  /*tarif section tugadi*/

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .aboutus{
    aspect-ratio: 1 / 1.3;
  }
}

@media (min-width: 2560px) {
  .container {
    max-width: 1600px;
  }

  .nav-menu {
    max-width: 720px;
  }

  .carousel-wrapper {
    padding-top: 300px;
    padding-bottom: 330px;
  }

  .carousel-item {
    width: min(100%, 1200px);
  }

  /*tarif section*/
  .pricing .container {
    max-width: 1600px;
  }

  .slider-container {
    max-width: 1600px;
  }

  .card-tarif-bg {
    height: auto;
  }
  /*tarif section tugadi*/

  .nav-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .site-footer {
    padding-top: 72px;
    padding-bottom: 48px;
  }
}

@media (max-width: 1024px){
  html, body {
    overflow-x: hidden;
  }

  .mobile-toggle {
    display: inline-block;
    font-size: 24px;
  }

  .login-btn {
    display: none;
  }

  .menu-wrap {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
  }

  .navbar-actions {
    order: 2;
  }

  .demo-content .container {
    padding-top: clamp(96px, 11vw, 140px);
  }

  .carousel-wrapper {
    padding-top: 120px;
    padding-bottom: 200px;
  }

  .pic-title-text {
    width: min(90%, 480px);
    top: clamp(32px, 6vw, 60px);
    left: clamp(16px, 3vw, 40px);
  }

  .carousel-item.left, .carousel-item.right {
    transform: translateX(0) translateZ(-200px) rotateY(0) scale(0.9);
    opacity: 0.9;
  }

  .carousel-nav {
    display: none;
  }

  .advertising {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    grid-template-rows: repeat(2, minmax(150px, 1fr));
  }

  /*tarif section*/
  .tarif {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .person-btns {
    justify-content: space-between;
  }

  .slider {
    gap: clamp(14px, 3vw, 18px);
  }

  .card-tarif-bg {
    min-width: min(49%, 460px);
    height: auto;
  }

  .tarif-price-container {
    width: min(88%, 520px);
  }

  .tarif-info-container {
    width: min(94%, 520px);
  }

  .tarif-connect-btn {
    width: min(86%, 440px);
  }

  .nav-btns-tarif {
    width: clamp(150px, 28vw, 190px);
    bottom: -9%;
  }
  /*tarif section tugadi*/

  .step-cards-cont {
    grid-template-areas:
      "a b"
      "c d";
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .step-card .lamp-ray { 
    clip-path: polygon(43% 0%, 57% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  }

  .step-title-container {
    margin-top: clamp(24%, 30%, 36%);
  }

  .step-svg {
    height: clamp(96px, 28%, 150px);
  }
 
  .footer-grid {
    grid-template-areas:
      "about about"
      "links contact"
      "map map";
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .aboutus .socials {
    width: 100%;
  }

  .map {
    display: flex;
    flex-direction: column;
    min-height: 360px;
  }

  .map .map-frame {
    flex: 1 1 auto;
    height: auto;
    aspect-ratio: auto;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .logo-absolute {
    position: static;
  }

  .navbar-content {
    align-items: center;
  }

  .carousel-wrapper {
    padding-top: 120px;
    padding-bottom: 180px;
  }

  .main-title-pic {
    font-size: clamp(20px, 5.2vw, 28px);
  }

  .under-main-title {
    font-size: clamp(13px, 3.4vw, 16px);
  }

  .pic-title-text {
    width: 88%;
    top: clamp(18px, 5vw, 32px);
    left: clamp(14px, 4vw, 24px);
  }

  .carousel-indicators{
    transform: translate(-50%, clamp(16px, 5vw, 30px));
  }

  /*tarif section*/
  .slider {
    gap: clamp(14px, 3vw, 18px);
  }

  .card-tarif-bg {
    min-width: min(48%, 460px);
    height: auto;
  }

  .tarif-price-container {
    width: min(88%, 520px);
  }
  
  .tarif-connect-btn {
    width: min(86%, 440px);
    padding: 2.5rem 0 0 0;
  }

  .nav-btns-tarif {
    width: clamp(150px, 28vw, 190px);
    bottom: -9%;
  }
  /*tarif section tugadi*/

  .flex-container {
    flex-direction: column;
  }

  .flex-container div {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 645px){
  html, body {
    overflow-x: hidden;
  }

  .login-btn {
    padding: 8px 14px;
  }

  .carousel-wrapper {
    padding-top: 100px;
    padding-bottom: 160px;
  }

  .carousel-item {
    width: 95vw;
  }

  .pic-title-text {
    position: absolute;
    width: 90%;
    left: 5%;
    top: clamp(14px, 6vw, 22px);
  }

  .more-btn {
    left: 5%;
  }  

  /*tarif section*/
  .tarif {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .person-btns {
    justify-content: space-between;
  }

  .person-btns .yuridik {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .yuridik-mask {
    width: 100%;
    height: 0;
    transition: height .35s ease;
  }

  .yuridik-in {
    transform: translateY(-10px);
    opacity: 0;
  }

  .yuridik.is-open .yuridik-mask {
    height: var(--rail-h, 0px);
  }
  
  .yuridik.is-open .yuridik-in {
    transform: translateY(0);
    opacity: 1;
    transition: all .35s ease .15s;
  }

  .slider-container {
    width: 100%;
    max-width: min(500px, 90vw);
  }

  .slider {
    gap: 30px;
  }

  .card-tarif-bg {
    min-width: calc(100% - 5px);
    height: auto;
  }

  .tarif-price-container {
    width: min(88%, 520px);
  }

  .tarif-info-container {
    width: min(86%, 520px);
  }

  .tarif-connect-btn {
    width: min(86%, 440px);
  }

  .nav-btns-tarif {
    width: clamp(150px, 28vw, 190px);
    bottom: -9%;
  }
  /*tarif section tugadi*/

  .aboutus-section {
    display: none;
  }

  .arrow-wrap {
    display: none;
  }

  .step-card .lamp-ray { 
    clip-path: polygon(40% 0%, 60% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  }

  .connect-call-btns {
    flex-direction: column;
    gap: 15px;
    margin: 30px auto 0 auto;
  }

  .help-container-grid {
    grid-template-areas:
      "pic"
      "form";
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .help-container-grid form {
    gap: 25px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-areas:
      "about"
      "links"
      "contact"
      "map";
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .f-links {
    padding: 16px;
  }

  .map .map-frame {
    aspect-ratio: auto;
    flex: 1 1 auto;
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 0;
  }

  .logo-absolute {
    width: 68px;
    height: 68px;
  }

  .logo-absolute .logo img {
    height: 44px !important;
  }

  .nav-menu {
    gap: 6px;
  }

  .nav-menu a {
    font-size: 12px;
    padding: 6px 10px;
  }

  .carousel-wrapper {
    padding-top: 50px;
    padding-bottom: 120px;
  }

  .carousel-indicators {
    bottom: -8px;
    transform: translate(-50%, 18px);
  }

  .advertising {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(150px, 1fr));
  }

  .advert-text {
    font-size: 14px;
  }

  /*tarif section*/
  .slider-container {
    width: 100%;
    max-width: min(450px, 80vw);
  }

  .person-btns {
    gap: 2px;
  }

  .person-btns button {
    padding: 10px 12px;
  }

  .card-tarif-bg {
    min-width: calc(100% + 5px);
    height: auto;
  }

  .tarif-price-container {
    width: 92%;
  }

  .tarif-info-container {
    width: 90%;
  }

  .tarif-connect-btn {
    width: 90%;
    gap: 12px;
  }

  .nav-btns-tarif {
    bottom: -6%;
    width: clamp(150px, 45vw, 190px);
  }
  /*tarif section tugadi*/

  .step-cards-cont {
    grid-template-areas:
      "a b"
      "c d";
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    grid-gap: 20px;
  }

  .step-title-container {
    margin-top: clamp(24%, 30%, 36%);
  }

  .step-card .lamp-head {
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, rgb(53, 53, 53) 10%, #999999) 90%;
  }

  .step-card .lamp-head::before {
    left: -10px;
    bottom: -15px;
    width: 10px;
    height: 10px;
  }

  .step-card .lamp-head::after {
    position: absolute;
    left: -40px;
    bottom: -15px;
    width: 40px;
    height: 15px;
  }

  .step-card .lamp-ray {
    top: 35px;
    clip-path: polygon(40% 0%, 60% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  }

  .step-title-container {
    margin-top: 25%;
  }

  .step-svg {
    width: 40%;
    height: auto;
  }

  .step-svg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .connect-call-container {
    width: 100%;
    padding: 0;
  }

  .wanna-connect-now {
    width: 100%;
    padding: 4px 0;
  }
}

@media (max-width: 375px) {
  .carousel-wrapper {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  /*tarif section*/
  .slider-container {
    width: 100%;
    max-width: min(400px, 94vw);
  }

  .person-btns {
    gap: 2px;
  }

  .person-btns button {
    padding: 4px 6px;
  }

  .card-tarif-bg {
    min-width: 100%;
    height: auto;
  }

  .tarif-price-container {
    width: 92%;
  }

  .tarif-info-container {
    width: 90%;
  }

  .tarif-connect-btn {
    width: 90%;
    gap: 12px;
  }

  .nav-btns-tarif {
    bottom: -6%;
    width: clamp(150px, 45vw, 190px);
  }
  /*tarif section tugadi*/
}


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .enable-smooth { scroll-behavior: smooth; }
}

@media (hover: hover) {
  .person-btns button:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 4px var(--accent-color);
  }
}

@media (hover: none) {
  .person-btns button:hover {
    transform: none; box-shadow: none;
  }
}