
 /**{
    outline: 4px solid green !important;
 }*/
 /* Navbar */
 .navbar-nav .nav-link {
    position: relative;
    text-decoration: none;
    color: #111;
  }
  .navbar-nav .nav-link:hover{
    color: #667714;    
  }
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #a7c620;
    transition: width 0.3s ease;
  }
  
  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 2px;
    background-color: #a7c620;
    transition: width 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link:hover::before {
    width: 100%;
  }
  .btn{
    background-color:#a7c620;
    color:#333;
  }
  .btn:hover{
    background-color: #667714 !important;
    color:white;

  }
  .language-dropdown .nav-link::before,
.language-dropdown .nav-link::after {
  content: none !important;
}

  .language-dropdown .dropdown-menu {
    min-width: 120px;
    font-size: 0.9rem;
  }
  .language-dropdown .dropdown-item:hover{
    background-color: #a7c620 !important;
  }
  .language-dropdown .dropdown-item img {
    vertical-align: middle;
  }
  
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background-color: #f8f9fa;
      padding: 1rem;
      border-radius: 0.25rem;
    }
    .navbar-nav {
      flex-direction: column;
      align-items: center;
    }
    .navbar-nav .nav-item {
      width: 100%;
    }
    .navbar-nav .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
      border-bottom: 1px solid #dee2e6;
      margin: 0;
    }
    .navbar-nav .nav-item:last-child .nav-link {
      border-bottom: none;
    }
    .navbar-nav + .navbar-nav {
      margin-top: 1rem;
    }
    .navbar-toggler {
      border: none;
    }
  .navbar-nav .nav-item .btn {
    display: block;
    width: 100% !important; 
    margin: 0.5rem 0 !important;
    text-align: center;
    box-sizing: border-box;
  }
  .language-dropdown {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .language-dropdown .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
  }

  .language-dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
    border-radius: 0.25rem;
  }

  .language-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
  } 
  }

 /* Header */
 .hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
}

.slider-img {
  width: 1280px;
  height: 720px;
  object-fit: cover; /* или contain — зависит от задачи */
}

/*index-Advantages Section*/
.advantages-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.advantages-img {
  width: 70%;
  height: 80%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.advantages-list {
  right: 5%;
  top: 35%;
  transform: translateY(-50%);
  width: auto;
}

.advantages-row {
  left: 20%;
  top: 60%;
  width: 100%;
}
.advantages-row .card {
  border-radius: 15px;
}
.my-custom-shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .advantages-wrapper {
    height: auto;
    padding: 20px 0;
  }
  
  .advantages-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .advantages-list
{
    position: relative;
    top: 15%;
    transform: none;
    width: 50%;
    margin-bottom: 20px;
  }
  .advantages-row{
    visibility: hidden;
  }
}
/*Hyzmatlar*/
.carousel-wrapper {
    max-width: 100%;
    overflow: hidden;
  }
  
  .carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out; /* Плавная прокрутка */
    will-change: transform;
  }
  
  .service-card {
    flex: 0 0 calc(33.333% - 13.3px);
    background-color: #1B3BC11A;
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    min-height: 300px; /* Сделаем повыше */
  }
  
  .service-card.middle {
    background-color: #1B3BC13A;
    transform: scaleY(1.1);
    z-index: 2;
  }
  @media (max-width: 768px) {
    .carousel {
      gap: 20px;
    }
    .service-card {
      flex: 0 0 100%; /* Одна карточка занимает всю ширину */
      margin: 0 auto;
    }
  }



/*contact*/
  .contact-icon {
    font-size: 1.5rem;
    color: #a7c620;
    margin-right: 10px;
  }
  .contact-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
input,textarea{
  border: 1px solid #a7c620 !important;
}

/*about-us*/
.fixed-height {
  display: -webkit-box;
  -webkit-box-orient: vertical;   
  -webkit-line-clamp: 5;         
  overflow: hidden;              
  text-overflow: ellipsis;       
  position: relative;
}

.read-more-link {
  display: block;
  position: relative;
  bottom: 10px;
  right: 0;
  margin-top: 0.5rem;
  background-color: transparent;
  text-decoration: none;
  color: #0d6efd;
}

.read-more-link:hover {
  text-decoration: underline;
}

.meta-section {
  font-size: 0.9rem;
}

.meta-section a {
  text-decoration: none;
  color: #0d6efd;
}
.meta-section p {
  margin-bottom: 0.2rem; 

}
.meta-section a:hover {
  text-decoration: underline;
}

.section-title {
  text-align: center;
  padding: 2rem 0 1rem;
}

.container-item {
  margin-bottom: 3rem;
}

.container-item img {
  width: 100%;
}

.container-item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container-item .image {
  max-width: 45%;
}

.container-item .text {
  max-width: 50%;
}

.container-item img {
  max-width: 100%;
}

.partner-section img {
  max-height: 80px;
  transition: filter 0.3s ease;
}

.grayscale-hover {
  filter: grayscale(100%);
}

.grayscale-hover:hover {
  filter: grayscale(0%);
}
/*hyzmatlar.html*/
.hizmat-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  transition: 
    transform 0.3s ease, 
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    border 0.3s ease;
  overflow: hidden;
}

.hizmat-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hizmat-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #212529;
}

.hizmat-card-text {
  color: #6c757d;
  flex-grow: 1;
}

.hizmat-card-body .fs-1 {
  font-size: 2.5rem !important;
  margin-bottom: 1rem;
  color: #0d6efd;
}

.hizmat-card:hover {
  transform: translateY(-8px);
  background-color: rgba(13,110,253,0.1);
  border: 2px solid rgba(13,110,253,0.25);
}


@media (max-width: 576px) {
  .hizmat-card-body {
    padding: 1rem;
  }
}


/*Portfolia*/
/*card*/
.custom-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  gap: 30px;
}

.left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  gap: 20px;
}

.left-column .card,
.right-center .card {
  width: 250px; 
}

.right-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .custom-layout {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 1rem;
  }

  .left-column .card,
  .right-center .card {
    width: 100%;
    max-width: 250px;
  }
}
/*COMMENT*/
.comment-text {
  height: 60px;
  line-height: 1.2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: height 0.3s ease;
}
.comment-text.expanded {
  height: auto;
  -webkit-line-clamp: unset;
}


/*contact.html*/

.contact-wrapper {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
}

.form-section {
  padding: 60px;
  flex: 1 1 60%;
  z-index: 1;
}

.form-section h1 {
  font-weight: bold;
}

.form-control:focus {
  box-shadow: none;
}

.info-icons i {
  margin-right: 8px;
}

.map-container {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
  width: 280px;
  height: 300px;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.blue-bar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
  background-color: #667714;
  z-index: 0;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .form-section {
    padding: 30px 20px;
  }

  .form-section form .mb-3 {
    width: 100% !important;
  }

  .btn-custom {
    width: 100%;
    margin-top: 10px;
  }

  .map-container {
    position: static;
    width: 100%;
    height: 250px;
    transform: none;
    margin-top: 20px;
  }

  .blue-bar {
    display: none;
  }

  .d-flex.gap-4.flex-wrap {
    gap: 20px !important;
    justify-content: space-between;
  }

  .d-flex.align-items-start.gap-2 {
    flex: 1 1 100%;
  }
}

/*price*/
.overlay-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 1;
  margin-bottom: -7rem;
}
.overlay-card .card-body {
  padding: 1rem;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius:10px;
}
.price {
  font-size: 1.5rem;
  font-weight: bold;
}
.switch-container {
  position: relative;
  display: inline-block;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0.25rem;
}
.btn-toggle-group {
  display: inline-flex;
  border: 1px solid black;
  border-radius: 50px;
  overflow: hidden;
}

.btn-toggle {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  border: none;
  min-width: 100px;
  transition: background 0.3s, color 0.3s;
}

.btn-left {
  border-right: 1px solid black;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.btn-right {
  border-left: 1px solid black;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.btn-toggle.active {
  background-color: #a7c620;
  color: #fff;
}


.save-text {
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  color: #6f42c1;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.save-arrow {
  position: absolute;
  top: 50%;
  left: 80%;
  width: 120px;
  height: auto;
  transform: translateY(-50%);
}

/*footer*/
  .service-highlight { background-color: #f0f8ff; border: 1px solid #dee2e6; }
  .footer { background-color: #f1f5f9; }
  .footer .social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }



