@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
/* USER VARIABLES SECTION */
:root {
  --yellow: #fbc50b;
  --red: #BE0000;
  --accent: #006db8;
  --secondary: #45ccd1;
  --boxshadow-accent: 0 7px 15px 0 rgba(0,109,184, .4);
  --text: #222;
  --black: #000;
  --black-rgb: 0,0,0;
  --white: #FFF;
  --white-rgb: 255, 255, 255;
  --gray-400: #CED4DA;
  --regular-text: 16px;
  --lineheight: 1.65;
  --userfont: "Manrope", sans-serif;
  --headingfont: "Manrope", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --radius: 10px;
  --radius-pill: 50rem;
  --transition: .25s ease-out;
  --section-p: 60px;
  --section-bg: #EFF1F4;
  --sliderjs-title: 51px;
  --sliderjs-title-lg: 42px;
  --title: 51px;
  --title-lg: 42px;
}

/* BOOTSTRAP SETTINGS SECTION */
/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: .625rem;
}

.row, .row > * {
  --bs-gutter-x: 2rem;
}

/* GENERAL CSS SETTINGS */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #f0eae2;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--accent);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: var(--accent);
  color: #fff;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

input, textarea {
  outline: none;
}

input:focus:required:invalid, textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid, textarea:required:valid {
  border-color: green;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  cursor: none;

}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding-top: var(--section-p);
  padding-bottom: var(--section-p);
}

.section-bg {
  background-color: var(--section-bg);
}

.rounded {
  border-radius: var(--radius);
}

.rounded-pill {
  border-radius: 50%;
}

.position-relative {
  position: relative;
}

.text-right {
  text-align: right;
}

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

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.bg-primary {
  background-color: var(--accent);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-red {
  background-color: var(--red);
}

.text-muted {
  color: #6c757d;
}

.text-red {
  color: var(--red);
}

.text-secondary {
  color: var(--secondary);
}

.text-white {
  color: var(--white);
}

.text-light {
  color: rgba(var(--white-rgb), 0.85);
}

.text-black {
  color: var(--black);
}

.shadow-4 {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.list-icon-check {
  padding: 0;
  list-style: none;
}
.list-icon-check li {
  position: relative;
  padding-left: 24px;
}
.list-icon-check li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%23006db8' d='M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3e%3c/svg%3e");
}

.list-number {
  padding-left: 0;
  list-style: none;
}
.list-number li {
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
  counter-increment: mycount;
}
.list-number li::before {
  content: "0" counter(mycount) ".";
  font-weight: 700;
  color: var(--accent);
  transition: all 0.3s;
  position: absolute;
  left: 0px;
  top: 0px;
}

.breadcrumb {
  margin: 0;
  padding: 6px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}
.breadcrumb li + li {
  padding-left: 0.5rem;
}
.breadcrumb li + li::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* NAVBAR */
.navbar {
  position: fixed;
  /* top: 0; */
  z-index: 1000;
  width: 100%;
  height: 120px;
  padding:10px 0px;
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  background-color: white;
}
.navbar__row {
  display: flex;
  align-items: center;
}
.navbar__left {
  display: flex;
  align-items: center;
  margin-left: auto;
}


.navbar__logo {
  margin-right: auto;
  display: inline-flex;
}
.navbar__phone {
  display: flex;
  align-items: center;
  color: var(--accent);
  /* background-color: var(--accent); */
  border-radius: var(--radius);
  padding: 10px 10px 35px 10px;
  white-space: nowrap;
}
.navbar__phone-img {
  width: 34px;
  height: auto;
}
.navbar__phone-num {
  margin-left: 4px;
  font-weight: 500;
  line-height: 1;
}


.navbar__mail {
  display: flex;
  align-items: center;
  color: var(--accent);
  /* background-color: var(--accent); */
  border-radius: var(--radius);
  padding: 10px 10px 35px 10px;
  white-space: nowrap;
}
.navbar__mail-img {
  width: 34px;
  height: auto;
  
}
.navbar__mail-name {
  margin-left: 4px;
  font-weight: 500;
  line-height: 1;
}
.navbar__phone:hover, .navbar__phone:focus {
  color: inherit;
}
.navbar__lang {
  margin-left: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 4px 5px;
  padding: 10px 10px 35px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.navbar__lang-link {
  display: inline-block;
  padding: 5px;
}
.navbar__lang span {
  opacity: 0.6;
}
.navbar--scrolled {
  padding: 10px 0 !important;
  background-color: var(--white);
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
}
.navbar--scrolled .logo {
  color: var(--text);
}
.navbar--scrolled .logo:hover, .navbar--scrolled .logo:focus {
  color: var(--text);
}
.navbar--scrolled .logo__white {
  display: none;
  opacity: 0;
  transition: var(--transition);
}
.navbar--scrolled .logo__accent {
  display: block;
  opacity: 1;
  transition: var(--transition);
}
.navbar--scrolled .navbar__lang {
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar--scrolled .menu__link {
  color: var(--text);
}
.navbar--scrolled .menu__link.active, .navbar--scrolled .menu__link:hover, .navbar--scrolled .menu__link:focus {
  color: var(--accent);
}
.navbar--scrolled .menu__toggle {
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar--scrolled .menu__toggle span {
  background-color: var(--text);
}
.navbar--hidden {
  transform: translate(0, -100%);
}

@media (min-width: 1200px) {
  .uz-index .menu {
    font-size: 14px;
  }
}
.review-sliderjs-arrow {
  display: flex;
  gap: 10px;
}
.review-sliderjs-arrow > button {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: var(--section-bg);
  border-radius: var(--radius);
}

/* LOGO */
.logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
  color: var(--white);
  line-height: 1.4;
}
.logo__name {
  font-size: 32px;
  letter-spacing: 2px;
}
.logo__slogan {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}
.logo:hover, .logo:focus, .logo:active {
  color: var(--white);
}
.logo > img {
  max-height: 80px;
}
.logo__accent {
  display: none;
  opacity: 0;
  transition: var(--transition);
}
.logo__text {
  margin-left: 15px;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
.menu__list {
  display: flex;
  align-items: center;
  text-align: center;
  margin-left: 300px;
}
.menu__link {
  white-space: nowrap;
  color: var(--white);
  margin: 0 2px;
  padding: 10px 8px;
  opacity: 0.8;
  font-size: 17px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.menu__link.active, .menu__link:hover, .menu__link:focus {
  /* color: inherit; */
  opacity: 1;
  text-align: center;
  color: white;
}
.menu__toggle {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 9px;
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
  right: 0;
}
.menu__toggle span {
  width: 100%;
  height: 4px;
  margin: 2px 0;
  background-color: #fff;
  border-radius: var(--radius);
  transition: var(--transition);
}
.menu__toggle span:nth-child(2) {
  width: 80%;
}
.menu__toggle span:nth-child(3) {
  width: 50%;
}
.menu__toggle:hover span:nth-child(2), .menu__toggle:hover span:nth-child(3), .menu__toggle:focus span:nth-child(2), .menu__toggle:focus span:nth-child(3) {
  width: 100%;
}
.menu__toggle-close span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu__toggle-close span:nth-child(2) {
  transform: scale(0);
}
.menu__toggle-close span:nth-child(3) {
  width: 100%;
  transform: translateY(-8px) rotate(-45deg);
}



/* HOME SLIDER */
.home-slider {
  position: relative;
  background-color:#024A8C;
  background-image: url(../img/germany.png);
  background-repeat: no-repeat; 
  background-origin: content-box;
  background-position-y: center;
  background-size: cover;
}
  
 

.home-slider::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(2, 74, 140, 0.7);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  /*z-index: 1;*/
  position: absolute;
}

.home-slider__container {
  padding-top: 130px;
  /* padding-bottom: 120px; */
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.home-slider__logo {
  margin-bottom: 40px;
}
.home-slider__social {
  position: absolute;
  bottom: 40px;
  left: 15px;
}
.home-slider__arrows {
  position: absolute;
  bottom: 40px;
  right: 15px;
}
.home-slider__arrows-arrow {
  border-radius: var(--radius);
  /* background-color: transparent; */
  border: none;
  transition: var(--transition);
  width: 80px;
  height: 42px;
}
.home-slider__arrows-arrow svg {
  fill: var(--white);
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.social__youtube svg {
  color: red; /* yoki #FF0000 */
}

.home-slider__arrows-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.home-slider__row {
  display: flex;
  align-items: center;
}
.home-slider__content {
  flex-grow: 1;
}
.home-slider__title {
  color: var(--white);
  font-family: var(--headingfont);
  font-size: 46px;
  margin-bottom: 0;
  font-weight: 400;
  margin-bottom: 30px;
}
.home-slider__subtitle {
  line-height: 1.2;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 0;
  font-weight: 400;
}
.home-slider__form {
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
  padding: 30px;
  margin-left: 60px;
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.50);
  
  
}

.home-slider__form-title {
  text-align: center;
  font-weight: 500;
  color:#024A8C;
  font-size: 22px;
  margin: -30px -30px 30px;
  padding: 10px 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.51);
  overflow: hidden;
}

.home-slider__form .form-group .form-label{
  color:white;
  font-weight: 600;
}

.home-slider__form-btn {
  margin-top: 30px;
  text-transform: uppercase;
}
.home-slider__sliderjs {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.home-slider__sliderjs .slick-slider {
  display: flex;
}
.home-slider__sliderjs .slick-list {
  flex-grow: 1;
}
.home-slider__sliderjs .slick-track {
  display: flex;
  height: 100%;
}
.home-slider__sliderjs-image {
  position: relative;
  display: flex;
  height: 100%;
}
.home-slider__sliderjs-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}


/*   vakansi */
.home-vakansi{
  width: 100%;
  height: auto;
  background-image: url(../img/vakansi_bg.png);
  background-repeat: no-repeat;
  background-position: right;
  
}

.home-vakansi .container .title{
  color:#024A8C;
}


.swiper {
  width: 100%;
  padding: 20px 40px;
  overflow: hidden; /* Yon slide’lar ko‘rinmasin */
  box-sizing: border-box;
}

/* ========== SLIDE LAYOUT ========== */
.swiper-slide {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  margin: 0 auto;
  max-width: 400px;
}

.swiper-slide .img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.swiper-slide .info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-slide .info h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.swiper-slide .desc {
  font-size: 18px;
  color: #024A8C;
  margin-bottom: 10px;
}

.swiper-slide .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #222;
}

.swiper-slide .icon {
  position: absolute;
  right: -17px;
  bottom: -15px;
  width: 67px;
  height: 70px;
  background-color: #E1E1E1;
  border-radius: 20px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide .icon i {
  font-size: 20px;
  color: #000;
}

/* ========== HOVER EFFEKTLAR ========== */
.swiper-slide:hover .info {
  background-color: #024A8C;
}
.swiper-slide:hover .info h1,
.swiper-slide:hover .desc,
.swiper-slide:hover .price p {
  color: #fff;
}
.swiper-slide:hover .icon {
  background-color: #006db8;
}
.swiper-slide:hover .icon i {
  color: #fff;
}

/* ========== RESPONSIVE ========== */
/* Telefon: bitta slide markerda, yon slide’lar yashirin */
@media (max-width: 576px) {
  .swiper {
    padding: 10px;
  }
  .swiper-wrapper {
    justify-content: center;
  }
  .swiper-slide {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
  }
}

/* Planshet: hali ham bitta slide */
@media (min-width: 577px) and (max-width: 767px) {
  .swiper {
    padding: 15px;
  }
  .swiper-wrapper {
    justify-content: center;
  }
  .swiper-slide {
    max-width: 85%;
    width: 100%;
    margin: 0 auto;
  }
}

/* Kichik desktop: 2 slide */
@media (min-width: 768px) and (max-width: 991px) {
  .swiper {
    padding: 20px;
  }
  .swiper-slide {
    max-width: calc(50% - 20px);
    margin: 10px;
  }
}

/* Katta desktop: 3 slide */
@media (min-width: 992px) {
  .swiper {
    padding: 20px 40px;
  }
  .swiper-slide {
    max-width: calc(33.333% - 20px);
    margin: 10px;
  }
}







/* ABOUT */
.home-about__row {
  display: flex;
}
.home-about__content {
  align-self: center;
  flex: 0 0 50%;
}
.home-about__image {
  position: relative;
  padding-left: 30px;
}
.home-about__work {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  gap: 20px;
}
.home-about__work-item {
  background-color: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  flex-basis: 150px;
  text-align: center;
}
.home-about__work-year {
  margin-bottom: 10px;
  font-family: var(--headingfont);
  font-size: 36px;
  line-height: 1;
}
.home-about__work-text {
  line-height: 1.2;
}

.home-about p{
  color: black;
}

.home-about .title{
  color: #024A8C;
  font-weight: 900;
  font-size: 40px;
  margin-right: 520px;
}

/* Advantage */
.home-advantage__list {
  padding-left: 0;
  list-style: none;
}
.home-advantage__list li {
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}
.home-advantage__list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-pill);
}
.home-advantage .container {
  position: relative;
}
.home-advantage .rellax {
  position: absolute;
  top: -100px;
  right: -220px;
}

/* testimonial */
.testimonial-sliderjs__item {
  margin-left: -100px;
  margin-right: -100px;
}
.testimonial-sliderjs__item-box {
  padding: 0 30px;
  text-align: center;
  opacity: 0.6;
  transform: scale(0.65);
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.85);
}
.testimonial-sliderjs__item-photo {
  border-radius: var(--radius-pill);
  width: 100px;
  height: 100px;
  margin: 0px auto 10px auto;
  border: 5px solid var(--white);
}
.testimonial-sliderjs__item-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonial-sliderjs__item-text {
  color: rgba(0, 0, 0, 0.8);
}
.testimonial-sliderjs__item-answer {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  padding-top: 20px;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
}
.testimonial-sliderjs__item-answer span {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  padding: 0 10px;
  color: var(--accent);
}
.testimonial-sliderjs .slick-slide {
  position: relative;
  z-index: 1;
}
.testimonial-sliderjs .slick-center {
  z-index: 2;
}
.testimonial-sliderjs .slick-center .testimonial-sliderjs__item-box {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* certificate */
.certificate-sliderjs__item {
  text-align: center;
  margin: 0 var(--bs-gutter-x);
}
.certificate-sliderjs__item a {
  display: inline-block;
}

/* SERVICE */
.price-list-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed;
  padding: 10px 0;
}
.price-list-item__price {
  white-space: nowrap;
  font-weight: 600;
  margin-left: 10px;
}
.price-list-item__price span {
  font-weight: 400;
}

.home-service {
  width: 100%;
  height: 700px;
  background-color:  #53b1e2;;
}







/* TITLE */
.title {
 text-align: center;
 color: white;
 margin:50px 0;
 font-family: Gilroy-ExtraBold;
 font-weight: 900;
 font-size: 35px;
}



/* ======== HOME SERVICE BO‘LIMI ======== */
.home-service .container .box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 10px;
  box-sizing: border-box;
}

/* KARTALAR */
.home-service .container .box .card {
  background-color: #fff;
  color: #024A8C;
  padding: 15px;
  border: 1px solid #585858;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Default: 4 ta ustun */
  width: calc((100% / 4) - (20px * 3 / 4));
  box-sizing: border-box;
}

.home-service .container .box .card:hover {
  transform: scale(1.05);
  background-color: #d1dadf;
  border-color: transparent;
}

/* RASM BLOKI */
/*.home-service .container .box .card .img {*/
/*  width: 100px;*/
/*  height: 100px;*/
/*  background: #95c247;*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin-bottom: 15px;*/
/*}*/

.home-service .container .box .card .img img,
.home-service .container .box .card .img i {
  max-width: 80%;
  max-height: 80%;
}

/* MA'LUMOT BLOKLARI */
.home-service .container .box .card .info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.home-service .container .box .card .info .number {
  font-weight: 900;
  font-size: 25px;
  margin-right: 10px;
}

.home-service .container .box .card .info .name {
  font-weight: 900;
  font-size: 18px;
  color: #024A8C;
}

/* ======== RESPONSIVE ======== */
/* Planshet (768px–991px): 2 ta ustun */
@media (max-width: 991px) and (min-width: 768px) {
  .home-service .container .box .card {
    width: calc((100% / 2) - (20px / 2));
  }
}

/* Mobil (≤767px): 1 ta ustun */
@media (max-width: 767px) {
  .home-service .container .box .card {
    width: 100%;
  }

  .home-service .container .box {
    padding: 10px 5px;
    gap: 15px;
  }

  .home-service .container .box .card {
    padding: 20px 10px;
  }
}





.home-review {
  width: 100%;
  height: auto;
  background-image: url(../img/comment_bg.png);
  background-repeat: no-repeat;
  background-position: left;
}

.home-review .container .title {
  color: #024A8C;
  text-align: center;
}

.home-review .container .row .box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 130px 50px 20px 50px;
  margin-left: 0;
}

.home-review .container .row .box .card {
  width: calc(28.333% - 20px);
  height: 260px;
  background-color: #53b1e2;
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 100px;
}

.home-review .container .row .box .card:hover {
  transform: scale(1.05);
  background-color: #0369A1;
}

.home-review .container .row .box .card .img_absolute {
  position: relative;
}

.home-review .container .row .box .card .img_absolute img {
  width: 220px;
  position: absolute;
  bottom: 0;
  border-radius: 20px;
}

.home-review .container .row .box .card .description {
  padding: 20px 0px;
  color: white;
}

.home-review .container .row .box .card .name {
  display: flex;
}

.home-review .container .row .box .card h1 {
  font-size: 18px;
  color: white;
  margin-left: 20px;
  margin-top: 10px;
}

.home-review .container .row .btn-link {
  color: #024A8C;
  margin-left: 200px;
}

/* ✅ MOBIL QURILMALAR UCHUN */
@media (max-width: 768px) {
  .home-review .container .row .box {
    padding: 40px 15px 20px 15px;
    gap: 20px;
  }

  .home-review .container .row .box .card {
    width: 100%;
    height: auto;
    padding: 20px;
    margin-bottom: 30px;
  }

  .home-review .container .row .box .card .img_absolute img {
    width: 100px;
    position: static;
    display: block;
    margin: 0 auto 15px auto;
  }

  .home-review .container .row .box .card h1 {
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
  }

  .home-review .container .row .box .card .description {
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
  }

  .home-review .container .row .btn-link {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

/* home blog */


.home-blog h3{
  color: #024A8C;
  font-size: 32px;
  font-weight: bold;

}
.home-blog p{
  color: black;
  font-size: 20px;

}














/* SOCIAL */
.social a {
  height: 42px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  border-radius: var(--radius);
  border-color: rgba(0, 0, 0, 0.2);
}
.social a svg {
  width: 26px;
  height: 26px;
}
.social a:hover, .social a:focus {
  color: var(--white);
}
.social__telegram {
  color: var(--white);
  background-color: #0088CC;
}
.social__instagram {
  color: var(--white);
  background: #d92e7f;
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}
.social__viber {
  color: var(--white);
  background-color: #7E529F;
}
.social__whatsapp {
  color: var(--white);
  background-color: #2FB34D;
}
.social__facebook {
  color: var(--white);
  background-color: #1877f2;
}
.social__ok {
  color: var(--white);
  background-color: #EE8208;
}

/* BTN */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: var(--radius);
  background-color: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: var(--boxshadow-accent);
  transition: var(--transition);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn:hover {
  color: var(--white);
  background-color: var(--secondary);
}
.btn:active {
  background-color: var(--secondary);
}
.btn--block {
  display: block;
  width: 100%;
}

.btn-link {
  display: inline-block;
  position: relative;
  color: var(--text);
  font-weight: 600;
  margin-top: 10px;
  padding: 5px 0;
}
.btn-link::after {
  content: "";
  background: url(../images/border.svg) no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0;
  margin-bottom: 0;
  width: 100%;
  height: 4px;
  transition: bottom 0.3s ease;
}
.btn-link:hover {
  color: var(--accent);
}
.btn-link:hover::after {
  bottom: 3px;
}
.btn-link--white {
  color: var(--white);
}
.btn-link--white::after {
  background: url(../images/border-white.svg) no-repeat;
}
.btn-link--white:hover {
  color: rgba(var(--white-rgb), 0.8);
}

.btn-call {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
  cursor: pointer;
  height: 60px;
  width: 60px;
  text-align: center;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  transition: var(--transition);
  -webkit-animation: hoverWave linear 1s infinite;
          animation: hoverWave linear 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.btn-call__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: 1200ms ease 0s normal none 1 running callshake;
          animation: 1200ms ease 0s normal none 1 running callshake;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  color: white;
  transition: var(--transition);
}
.btn-call svg,
.btn-call path {
  width: 40px;
  height: auto;
  fill: var(--white);
}
.btn-call:hover {
  background-color: #fff;
}
.btn-call:hover svg,
.btn-call:hover path {
  fill: var(--secondary);
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
  cursor: pointer;
  height: 80px;
  width: 80px;
  text-align: center;
  transition: var(--transition);
  -webkit-animation: hoverWave linear 1s infinite;
          animation: hoverWave linear 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.btn-play__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: 1200ms ease 0s normal none 1 running callshake;
          animation: 1200ms ease 0s normal none 1 running callshake;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  color: white;
  transition: var(--transition);
}
.btn-play svg,
.btn-play path {
  margin-left: 5px;
  width: 60px;
  height: auto;
  fill: var(--white);
}
.btn-play:hover {
  background-color: #fff;
}
.btn-play:hover svg,
.btn-play:hover path {
  fill: var(--secondary);
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-label {
  margin-bottom: 8px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: var(--regular-text);
  border: 1px solid var(--gray-400);
  color: var(--text);
  border-radius: var(--radius);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--accent);
  outline: 0;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

/* RANGE */
.range {
  margin-bottom: 20px;
}
.range__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.range__label {
  line-height: 1;
}
.range__value {
  white-space: nowrap;
  flex-basis: 70px;
  text-align: right;
}
.range__num {
  font-size: 18px;
  font-weight: 700;
}

/* .rangeslider  */
.rangeslider__fill {
  background-color: var(--accent);
}
.rangeslider__handle {
  width: 30px;
  height: 30px;
}
.rangeslider--horizontal {
  height: 10px;
}

/* Magnific Popup */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  border-radius: var(--radius);
}

/* slick-custom */
.slick-custom-arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: none;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.slick-custom-arrow svg {
  fill: var(--white);
}
.slick-custom-arrow.slick-prev {
  left: -0.625rem;
}
.slick-custom-arrow.slick-next {
  right: -0.625rem;
}

/* Alert */
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}





.footer {
  position: relative;
  padding-top: 60px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.footer .mb-4{
  color: white;
  font-weight: 900;
  font-size: 35px;
}


.footer::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  top: 0;
  z-index: -1;
}
.footer__form {
  padding-left: 5%;
  padding-top: 6%;
  padding-right: 5%;
  padding-bottom: 6%;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
  color:#024A8C;
  background: rgba(176, 202, 233, 0.51);
  background-color: #53b1e2;
}


.footer__form h3,.name{
  color: white;
  font-weight: 900;
}

.footer__form .btn{
  background-color:#0088CC;
}

.footer__form .btn:hover {
  color: var(--white);
  background-color: var(--secondary);
}

.footer__phone {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  color: white;
}

.footer-top {
  /* color: var(--text); */
  padding-bottom: 40px;
  background:#95c247;
  padding-top: 80px;
}


.footer-top .name{
  font-size: 25px;
  font-family: Gilroy-ExtraBold;
  font-weight: 900;
}



.footer-top .contact{
  margin-bottom: 20px;
}

.footer-top .container .row .i{
  font-size: 20px;
  margin-right: 15px;

}




.footer-top__contact {
  padding-left: 0;
  list-style: none;
}
.footer-top__contact li + li {
  margin-top: 15px;
}
.footer-top__contact-text {
  font-size: 18px;
}
.footer-top__contact-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer-top__phone-num {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: white;
  transition: var(--transition);
}

.footer .text-black{
  color: white;
}
.footer-top__phone-num:hover {
  color: var(--text);
}
.footer-top__form {
  max-width: 380px;
  width: 100%;
  margin-left: 30px;
}
.footer-top__form-title {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

/* bottom */

.footer-bottom {
  
  position: relative;
  background-image: url(../img/footer_img.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 10px 0;
  z-index: 2;
   
   

  

}





.footer-bottom .logo,
.footer-bottom .footer-bottom__copyright {
  position: relative;
  z-index: 2; /* ::after'dan yuqori */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.footer-bottom__copyright a {
  color: var(--white);
  position: relative;
  z-index: 2; /* kerak bo‘lsa linklarga ham */

}








.footer-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 74, 140, 0.3);
  z-index: 0;
  pointer-events: none; /* Bu MUHIM */
}





.footer-bottom .logo img{
  width: 130px;
  height: 80px;
  border-radius: 10px;

}

ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 20px;
  margin: 0 auto 10px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
ul.accordion-list li h3 {
  font-weight: 700;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: var(--regular-text);
  cursor: pointer;
}
ul.accordion-list li h3:after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--accent);
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: var(--regular-text);
}






.rating-ico {
  display: inline-block;
  color: var(--yellow);
  font-size: 20px;
  line-height: 1;
}
.rating-ico::before {
  content: "★";
  position: absolute;
  opacity: 0;
}
.rating-ico--active::before {
  opacity: 1;
}

.form-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  vertical-align: bottom;
}
.form-rating > input {
  display: none;
}
.form-rating > label {
  position: relative;
  font-size: 36px;
  line-height: 0.7;
  color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
}
.form-rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}
.form-rating > label:hover:before,
.form-rating > label:hover ~ label:before {
  opacity: 1 !important;
}
.form-rating > input:checked ~ label:before {
  opacity: 1;
}
.form-rating:hover > input:checked ~ label:before {
  opacity: 0;
}

.review-card {
  background-color: #fff;
  border: 1px solid var(--section-bg);
  border-radius: 10px;
  position: relative;
  padding: 20px;
}
.review-card__info {
  display: flex;
  align-items: center;
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  margin-right: 22px;
  position: relative;
}
.review-card__avatar img {
  border-radius: 50%;
  border: 1px solid var(--section-bg);
}
.review-card__avatar::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -13px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  border-radius: 50%;
  background: var(--accent) url(../images/double-quotes.svg) no-repeat center/50%;
  text-align: center;
}
.review-card__name {
  font-weight: 700;
  color: var(--black);
}
.review-card__name a {
  color: var(--black);
}
.review-card__name a:hover {
  color: var(--accent);
}
.review-card__desc {
  margin-top: 15px;
}
.review-card__answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--section-bg);
  position: relative;
}
.review-card__answer-title {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  background-color: var(--section-bg);
  padding: 5px 6px 3px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
  border-radius: 3px;
}

/* form review */
.form-review {
  background-color: var(--section-bg);
  border-radius: 10px;
  position: relative;
  margin: 30px 120px;
}



.avatar-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  background: var(--white);
  border: 1px solid var(--gray-400);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.avatar-upload__input {
  display: none;
}
.avatar-upload__icon {
  position: absolute;
  top: 0;
  left: 0;
}
.avatar-upload--image .avatar-upload__icon {
  display: none;
}
.avatar-upload__upload {
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  color: inherit;
  pointer-events: none;
  font-weight: 500;
  z-index: 1;
}
.avatar-upload--image .avatar-upload__upload {
  display: none;
}
.avatar-upload__delete {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 32px;
  height: 32px;
  background: var(--gray-400);
  text-indent: -9999px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.avatar-upload__delete::after, .avatar-upload__delete::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 14px;
  background-color: #ff231f;
  content: "";
}
.avatar-upload__delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.avatar-upload__delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.avatar-upload--image .avatar-upload__delete {
  display: block;
}
.avatar-upload--image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: default;
}

.scrollup {
  position: fixed;
  color: #fff;
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  line-height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index: 10;
}
.scrollup:hover {
  background-color: var(--white);
  color: var(--secondary);
}
/* Animation */
@-webkit-keyframes hoverWave {
  0% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0);
  }
}
@keyframes hoverWave {
  0% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0);
  }
}
@-webkit-keyframes callshake {
  0% {
    transform: rotateZ(0deg);
  }
  10% {
    transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.28571deg);
  }
  80% {
    transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.33333deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
@keyframes callshake {
  0% {
    transform: rotateZ(0deg);
  }
  10% {
    transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.28571deg);
  }
  80% {
    transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.33333deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

/* section contact */

.py-4 .container .title,p{
  color: black;
  font-family: sans-serif;
}
/* 
.section-bg,li{
  background-color:#95c247;
  color: white;
} */



/* o Nas */

.py-4 .box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
}

.py-4 .card {
  width: calc(25% - 15px); /* 4 ta sig‘adi */
  height: auto;
  /* background-color: #53b1e2; */
  border-radius: 20px;
  padding: 20px;
  height: 260px;
  box-sizing: border-box;
  color: white;
  /* text-align: center; */
  margin: 32px 0px;
}

.py-4 .card img {
  width: 100%;
  height: 40vh;
  border-radius: 10px;
}



.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, #a6f565, #7ad3ee);
  /* mix-blend-mode: difference; */
  transition: transform 0.1s ease, background 0.3s ease;
}





/* VAKANSIYA CARD TUZILMASI */

.home-vakansi .box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.home-vakansi .box .card {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.home-vakansi .box .card .img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Rasm balandligini nisbat bilan saqlaydi */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

.home-vakansi .box .card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-vakansi .box .card .info {
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

.home-vakansi .box .card .info h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.home-vakansi .box .card .desc {
  margin-bottom: 10px;
  color: #666;
}

.home-vakansi .box .card .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #222;
}

/* RESPONSIVE QO‘LLAB-QUVVATLASH */

@media (max-width: 992px) {
  .home-vakansi .box .card {
    max-width: 100%;
    margin: 20px;
  }

  .home-vakansi .box .card .info {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .home-vakansi .box .card {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }

  .home-vakansi .box .card .info h1 {
    font-size: 18px;
  }

  .home-vakansi .box .card .desc {
    font-size: 16px;
  }

  .home-vakansi .box .card .price {
    font-size: 16px;
  }
}





