html, body {
  font-family: Montserrat, sans-serif;
  background: #fafbfc;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Toast Notification Styles */
.toast-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  min-width: 300px;
  max-width: 400px;
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: Montserrat, sans-serif;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}



#toast-notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.toast-description {
  color: #666;
  font-size: 13px;
}

/* Loading spinner */
.toast-loading .toast-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-notification {
    bottom: 15px;
    left: 15px;
    right: 15px;
    min-width: auto;
    max-width: none;
  }
}

/* Phone Input with Country Flags */
.phone-input-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-select {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  min-width: 120px;
  font-family: Montserrat, sans-serif;
  transition: all 0.3s ease;
  background-image: none;
}

.country-select option {
  background: transparent;
  color: #333;
  padding: 8px 12px;
  font-size: 16px;
}

.country-select:focus {
  outline: none;
  border-color: #0094ff;
  box-shadow: 0 0 0 3px rgba(0, 148, 255, 0.1);
}

.phone-input {
  flex: 1;
}

/* Contact Buttons Styles */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.contact-row {
  display: flex;
  gap: 12px;
}

.contact-row-multiple {
  display: flex;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #2c2c2c;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 20px;
}

.contact-btn-full {
  flex: 0 0 auto;
  width: auto;
}

.contact-btn-quarter {
  flex: 1;
  justify-content: center;
}

.contact-btn:hover {
  background: #3a3a3a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

.contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 1200px) {
  .contact-row-multiple {
    flex-wrap: wrap;
  }
  
  .contact-btn-quarter {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 5px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
}
.header::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(32, 33, 46, 0.2); 
  z-index: 2;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #333;
  text-decoration: none;
  display: block;
  line-height: 1;
  transition: color 0.3s ease;
}

.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover {
  color: #0094ff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 10px;
}
.lang {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lang:hover {
  color: #0094ff;
}
.contact-btn {
  background: #0094ff;
  color: #fff;
  border: none;
  padding: 0 37px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  text-decoration: none;
}
.contact-btn:hover {
  background: #007ad6;
}
.contact-btn-mobile {
  display: none;
  margin-left: 12px;
}
@media (max-width: 1023px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 1100;
  }
  .nav, .header-actions {
    display: none !important;
  }
  .burger {
    display: flex !important;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .solutions-grid > .solution-card {
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
  }
  .solutions-grid > .solution-card:nth-child(2n) {
    border-right: none;
  }
  .solutions-grid > .solution-card:nth-child(-n+2) {
    border-top: none;
  }
  .contact-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
  }
  .header-mobile-actions {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
  }
  .contact-btn-mobile {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    display: none;
  }
}
.main-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  text-align: center;
  padding-top: 80px;
}
.main-title {
  font-family: Montserrat, sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.1;
}
.main-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #222;
  margin-bottom: 32px;
  max-width: 600px;
}
.main-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.main-btn {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;

  padding: 13px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-btn-blue {
  background: #0094ff;
  color: #fff;
}
.main-btn-blue:hover {
  background: #007ad6;
}
.main-btn-white {
  background: #fff;
  color: #222;
  border: 1px solid #e0e0e0;
}
.main-btn-white:hover {
  background: #f0f0f0;
}
@media (max-width: 700px) {
  .main-section {
    padding: 104px 8px 24px 8px;
  }
  .main-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .main-section {
    min-height: 70vh;
    padding: 60px 4px 0 4px;
  }
}

.ticker {
  width: 100%;
  overflow: hidden;
  background: #000;
  position: relative;
  height: 40px;
  align-content: center;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 20s linear infinite;
}
.ticker-text {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-right: 40px; /* Отступ между повторениями */
}
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.ticker-item {
  display: inline-block;
}

/*  6 section solutions */

.solutions-title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  margin: 0 auto;
}
.solution-card {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 19.03rem;
  text-align: center;
  border-bottom: none;
  border-top: none;
  border-right: none;
  border-left: none;
  background: #fafbfc;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1);
}
/* Вертикальные бордеры между колонками */
.solution-card:not(:nth-child(3n)) {
  border-right: 1px solid #e0e0e0;
}
/* Горизонтальные бордеры между рядами */
.solution-card:nth-child(n+4) {
  border-top: 1px solid #e0e0e0;
}
.solution-card:hover {
  background: #f5f8fcea;
}
.solution-title {
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 23.4px;
}

.solution-title a,
.solution-title a:link,
.solution-title a:visited,
.solution-title a:hover,
.solution-title a:active,
.solution-title a:focus {
  color: #222 !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

/* Дополнительные стили для решения проблемы с голубыми ссылками */
.solution-card a,
.solution-card a:link,
.solution-card a:visited,
.solution-card a:hover,
.solution-card a:active,
.solution-card a:focus {
  color: #222 !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.solution-desc {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 400;
}
.solution-btn {
  margin-top: 30px;
  background: #0094ff;
  color: #fff;
  border: none;

  padding: 10px 22px;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.solution-btn:hover {
  background: #007ad6;
}

.solution-btn-fade {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;

  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.solution-card:hover .solution-btn-fade {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Показываем кнопки постоянно на мобильных устройствах */
@media (max-width: 1024px) {
  .solution-btn-fade {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }
}

/* WHY US section */
.why-section {
  background: #fafbfc;
  padding: 60px 0 0 0;
}
.why-title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 60px;
  letter-spacing: 1px;
}
.why-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.why-item {
  flex: 1 1 0;
  background: transparent;
  text-align: center;
  padding: 0 18px;
  position: relative;
  min-width: 180px;
}
.why-main {
  color: #0094ff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}
.why-desc {
  color: #222;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.why-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
  height: 32px;
  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
  background: transparent;
  z-index: 1;
}
@media (max-width: 900px) {
  .why-list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }


}
@media (max-width: 900px) {
  .why-item {
    padding: 40px 0;
    min-width: 0;
  }
  .why-item:not(:last-child)::after {
  
    width: 30px;
    height: 30px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .why-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 87%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
    width: 32px;
    height: 32px; 
    border-right: 2px solid #bdbdbd;
    border-bottom: 2px solid #bdbdbd;
  }
}

/* PROJECTS section */
.projects-section {
  background: #fafbfc;
  padding: 60px 0 0 0;
}
.projects-title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 100%;
  padding: 0 50px 0 50px;
  margin: 0 auto 30px auto;
}
.project-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: box-shadow 0.2s;
}
.project-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.project-img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  background: #222;
}
.project-content {
  padding: 18px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}
.project-title {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.project-desc {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 400;
  margin-bottom: 30px;
}
.project-link {
  color: #0094ff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}
.project-link:hover {
  color: #007ad6;
  text-decoration: underline;
}
.projects-btn {
  display: block;
  margin: 0 auto;
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 13px 38px;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.projects-btn:hover {
  background: #007ad6;
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

}
@media (max-width: 600px) {
  .projects-title {
    font-size: 24px;
    padding: 0 30px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .project-img {
    height: 140px;
  }
  .projects-section {
    padding: 32px 0 24px 0;
  }
}



@media (max-width: 1023px) and (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .solution-card {
    min-width: 0;
  }
}

/* REVIEWS section */
.reviews-section {
  padding: 60px 0 0 0;
}
.reviews-title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 100%;
  padding: 0 50px 60px 50px;
  margin: 0 auto;
}
.reviews-grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  padding: 0 50px 60px 50px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.review-text {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 400;
  margin-bottom: 20px;
  flex: 1 1 0;
}
.review-person {
  display: flex;
  gap: 20px;
}
.review-avatar {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}
.review-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-name {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}
.review-role {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .reviews-grids {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .reviews-grids {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .reviews-title {
    font-size: 22px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .reviews-grids {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .review-card {
    padding: 12px 8px 10px 8px;
    min-height: 120px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .reviews-grids {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

/* CONTACT section */
.contact-section {
  display: flex;
  padding: 48px 100px 48px 100px;
  border-top: 1px solid #e0e0e0;

  max-width: 100%;
  margin: 0 auto 0 auto;
}
@media (max-width: 1440px) {
  .contact-section {
    padding: 50px 20px 50px 20px;
}

}

.contact-form-block {
  flex: 1 1 0;
  padding: 0 0 0 60px;
  border-left: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-title {
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;

}
.contact-label {
  font-size: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-bottom: 0;

}
.contact-input {
  width: 100%;
  margin-top: 4px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #CFCFD2;
  border-radius: 0;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  resize: none;
  box-sizing: border-box;
  transition: border 0.2s;
  background: transparent;
}
.contact-input:focus {
  border-bottom: 2px solid #0094ff;
  outline: none;
}
.contact-file {
  cursor: pointer;
  color: #222;
  font-weight: 500;
  background: #FBFBFB;
  border-radius: 7px;
  border: 1px solid #CFCFD2;
  padding: 8px 12px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}
.contact-label.contact-file{
  font-size: 20px;
  font-weight: 700;
}
.contact-file-desc {
  font-size: 16px;
  color: #666666;
  margin-bottom: 0;
  margin-top: -8px;
  margin-left: 2px;
}
.contact-btn-submit {
  background: #0094ff;
  color: #fff;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  
}
.contact-btn-submit:hover {
  background: #007ad6;
}
.contact-info-block {
  flex: 1 1 0;
  padding: 0 60px 0 0;
  display: flex;
  flex-direction: column;

}
.contact-info-title {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
}
.contact-info-desc {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  color: #222;
  font-weight: 400;
}
.contact-list {
  margin: 18px 0 0 0;
  padding: 0 0 0 18px;
  list-style: none;
}
.contact-list li {
  position: relative;
  font-size: 15px;
  color: #0094ff;
  font-weight: 700;
  margin-bottom: 7px;
  padding-left: 22px;
}
.contact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0094ff;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 32px 0 32px 0;
    max-width: 100%;
  }
  .contact-form-block, .contact-info-block {
    padding: 0;
    border: none;
  }
  .contact-form-block {
    margin-bottom: 32px;
  }
  .contact-form {
    max-width: 100%;
  }
}

/* FOOTER section */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fafbfc;
  border-top: 1px solid #e0e0e0;
  padding: 30px 50px 20px 50px;
  max-width: 100%;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: #888;
  gap: 32px;
}
.footer-col {
  flex: 1 1 0;
  min-width: 160px;
}
.footer-col-right {
  text-align: right;
}
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.footer-underline {
  display: block;
  width: 38px;
  height: 3px;
  background: #0094ff;
  border-radius: 2px;
  margin-top: 6px;
}
.footer-col-right .footer-underline {
  margin-left: auto;
  margin-right: 0;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: #000000;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #0094ff;
}
.footer-socials {
  margin-bottom: 10px;
}
.footer-social {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  transition: all 0.2s;
  text-decoration: none;
  background-color: #555;
  padding: 10px 10px;
  display: inline-block;
  width: 20px;
  text-align: center;
}
.footer-social:last-child {
  margin-right: 0;
}
.footer-social:hover {
  color: #fff;
  background-color: #666;
}
.footer-copy {
  font-size: 14px;
  color: #bbb;
  margin-top: 8px;
  text-align: right;
}
@media (max-width: 1023px) {

  .contact-section {
    flex-direction: column;
    padding: 0 32px 0 32px;
  }
  .contact-info-block {
    order: 1;
    margin-bottom: 32px;
  }
  .contact-form-block {
    order: 2;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 32px;
  }

  .contact-form-block{
    padding-right: 0;
  }
  .contact-info-block{
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    padding: 24px 8px 16px 8px;
  }
  .footer-col,
  .footer-col-right {
    text-align: center;
    min-width: 0;
  }
  .footer-col-right {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
    display: flex;
    gap: 0;
    margin-bottom: 10px;
  }
  .footer-copy {
    text-align: center;
    margin-top: 8px;
  }

}

/* Burger styles */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.burger span {
  display: block;
  width: 35px;
  height: 3px;
  margin: 4px 0;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: #000;
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: #000;
}

/* Burger cross styles */
.burger-cross {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.burger.active .burger-cross {
  opacity: 1;
  transform: rotate(180deg);
}

/* Mobile nav styles */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 80px);
  background: #fff;
  z-index: 999;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-nav a {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
  text-align: center;
}
.mobile-nav a:hover {
  color: #007ad6;
}
.mobile-lang {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-lang:hover {
  color: #007ad6;
}
.mobile-nav.active {
  display: flex;
}

@media (max-width: 700px) {
  .burger {
    display: flex;
  }
  .nav, .header-actions {
    display: none !important;
  }
  
  .mobile-nav a {
    font-size: 28px;
  }
  
  .mobile-lang {
    font-size: 28px;
  }
}




@media (max-width: 767px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
  .solution-card {
    border-bottom: none !important;
    border-right: 1px solid #e0e0e0 !important;
    border-top: none !important;
    padding: 25px 15px;
  }
  .solution-card:nth-child(2n) {
    border-right: none !important;
  }
  .solution-card:nth-child(n+3) {
    border-top: 1px solid #e0e0e0 !important;

  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
  }
  .solution-card {
    border-bottom: 1px solid #e0e0e0 !important;
    border-right: none !important;
    border-top: none !important;
  }
  .solution-card:last-child {
    border-bottom: none !important;
  }
} 


@media (max-width: 767px) {
  .footer-underline {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block;
  }
  .footer-col-right .footer-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* NEW FOOTER STYLES */
.new-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 40px;
  position: relative;
  font-family: Montserrat, sans-serif;
}

/* Верхня секція з контактами */
.footer-top-section {
  margin-bottom: 60px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-contact-item {
  text-align: left;
}

.footer-contact-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-contact-value {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
}

.footer-contact-link {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-contact-link:hover {
  color: #0094ff;
  text-decoration: none;
}

/* Середня секція з розсилкою та соцмережами */
.footer-middle-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;



  gap: 40px;
}


.footer-newsletter-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-email-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  flex: 1;

}

.footer-email-input::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.footer-newsletter-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-newsletter-btn:hover {
  transform: translateX(4px);
}

.footer-social-container {
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer-social-section {
  flex: 0.45;
}

.footer-social-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-social-links {
  display: flex;
  align-items: center;

  gap: 8px;
}

.footer-social-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #0094ff;
}

.footer-social-separator {
  color: #ffffff;
  font-size: 16px;
}

/* Секція навігації */
.footer-navigation-section {
  margin-bottom: 40px;
  padding: 40px 20px 0 20px;
  border-top: 1px solid #333333;
}

.footer-navigation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-nav-item {
  text-align: center;
}

.footer-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: block;
  padding: 8px 0;
  text-align: left;
}

.footer-nav-link:hover {
  color: #0094ff;
  text-decoration: none;
}

/* Нижня секція з логотипом та правовою інформацією */
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-main {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.footer-logo-sub {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.7;
  line-height: 1.2;
}

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #0094ff;
}

.footer-scroll-up {
  display: flex;
  align-items: center;
}

.footer-scroll-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.footer-scroll-btn:hover {
  transform: translateY(-2px);
}

.footer-arrow-icon {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
  transition: transform 0.2s ease;
}

.footer-scroll-btn:hover .footer-arrow-icon {
  transform: translateY(-2px);
}

/* Кнопка дзвінка */
.footer-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}


/* Адаптивні стилі для нового футера */
@media (max-width: 1024px) {
  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-middle-section {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-social-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-social-section {
    text-align: left;
  }
  
  .footer-social-links {
    justify-content: flex-start;
  }
  
  .footer-navigation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .new-footer {
    padding: 40px 0 30px;
  }
  
  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-top-section {
    margin-bottom: 40px;
  }
  
  .footer-middle-section {
    margin-bottom: 40px;
  }
  
  .footer-navigation-section {
    margin-bottom: 40px;
    padding-top: 30px;
  }
  
  .footer-navigation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-legal {

    align-items: flex-start;
    gap: 12px;
  }
  
  .footer-scroll-up {
    align-self: flex-end;
  }
  
  .footer-call-btn {
    bottom: 15px;
    right: 15px;
  }
  

}

@media (max-width: 1023px) {

  .projects-title{
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .projects-title{
    padding: 0 30px;
  }

  .main-title{
    font-size: 28px;
    margin: 0 20px 20px 20px;
  }
  .main-subtitle {
    font-size: 20px;
    margin: 0 20px 20px 20px;
  }
}

#main-bg {
  position: relative;
  overflow: hidden;
}
#main-bg > * {
  position: relative;
  z-index: 2;
}
#main-bg canvas {
  position: absolute !important;
  top: 0; left: 0; width: 100% !important; height: 100% !important;
  z-index: 1;
}

/* VACANCY PAGE */
.vacancy-main {
  background: #fafbfc;
  padding: 120px 0 60px 0;
  min-height: 60vh;
}
.breadcrumbs {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: #656565;
  margin: 0 0 18px 42px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #0094ff;
}
.breadcrumbs-sep {
  color: #727272;
  font-size: 14px;
  margin: 0 4px;
}
.vacancy-title {
  font-size: 58px;
  font-weight: 900;
  margin: 0 0 36px 42px;
  letter-spacing: 1px;
  color: #1D1B1B;
  line-height: 1em;
}
.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 42px;
}
.vacancy-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(32,33,46,0.12);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,148,255,0.07), 0 1.5px 6px 0 rgba(32,33,46,0.04);
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: box-shadow 0.3s, transform 0.25s;
  animation: vacancy-fade-in 0.7s cubic-bezier(.4,1.4,.6,1) both;
}

.vacancy-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,148,255,0.18), 0 2px 8px 0 rgba(32,33,46,0.08);
  transform: translateY(-6px) scale(1.025);
}
.vacancy-card:hover::before {
  width: 12px;
}
.vacancy-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0094FF;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #e6f7ff;
}
.vacancy-card-desc {
  font-size: 15px;
  color: #1D1B1B;
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.7;
}
.vacancy-card-btn {
  align-self: flex-start;
  background: linear-gradient(90deg, #0094FF 0%, #00E0FF 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 48px;
  min-width: 156px;
  padding: 0 36px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5%;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,148,255,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.vacancy-card-btn:hover {
  background: linear-gradient(90deg, #00E0FF 0%, #0094FF 100%);
  box-shadow: 0 4px 16px 0 rgba(0,148,255,0.22);
  transform: scale(1.04);
}
@keyframes vacancy-fade-in {
  0% { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}



@media (max-width: 1279px) {
  .vacancy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .vacancy-card {
    border-radius: 12px;
    padding: 24px 16px 18px 16px;
  }
}
@media (max-width: 767px) {
  .vacancy-title{
    font-size: 36px;
  }
  .vacancy-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}
@media (max-width: 700px) {
  .vacancy-card {
    border-radius: 8px;
    padding: 14px 6px 10px 6px;
  }
  .vacancy-card-title {
    font-size: 16px;
  }
  .vacancy-card-desc {
    font-size: 13px;
  }
  .vacancy-card-btn {
    font-size: 13px;
    min-width: 110px;
    height: 38px;
    padding: 0 14px;
    border-radius: 6px;
  }
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  .header-mobile-actions {
    display: flex;
    padding-right: 10px;
  }
}
@media (max-width: 1023px){
  .mobile-nav {
    top: 60px;
    height: calc(100vh - 60px);
  }
  }
@media (max-width: 767px) {
  .logo-text{
    font-size: 20px;
  }

  .contact-btn-mobile{
    padding: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    display: none;
  }

  
  
  .mobile-nav {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .burger span{
    width: 30px;
    border-radius: 0;
  }
  
  .burger-cross {
    width: 20px;
    height: 20px;
  }
  
  .mobile-nav a {
    font-size: 24px;
  }
  
  .mobile-lang {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .logo-text{
    font-size: 18px;
  }
  .contact-btn-mobile{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    display: none;
  }
  .header-mobile-actions{
    gap: 5px;
  }
  .contact-btn-mobile{
    margin-left: 0;
  }
}

.contact-btn,
.contact-btn-mobile {
  text-decoration: none;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg-image {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 60%;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-image img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 24px 24px;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 80vh;
  justify-content: space-between;
  padding: 20px 40px 20px 40px;
}
.hero-content {
  max-width: 600px;
  margin: 0;
  text-align: left;
  align-items: flex-start;
  z-index: 2;
}
.hero-title {
  font-family: Montserrat, sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 18px 0;
  letter-spacing: -2px;
}
.hero-title span {
  font-weight: 400;
  font-size: 48px;
  display: block;
}
.hero-desc {
  font-size: 18px;
  color: #444;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 18px;
}
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  height: 56px; /* фиксированная высота для идеального центрирования */
  box-sizing: border-box;
}
.hero-btn-primary {
  background: #0094ff;
  color: #fff;
  border: none;
}
.hero-btn-primary:hover {
  background: #333;
}
.hero-btn-secondary {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}
.hero-btn-secondary:hover {
  background: #111;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-title { font-size: 36px; }
  .hero-title span { font-size: 28px; }
  .hero-content { padding-top: 20px; padding-bottom: 20px; }
  .hero-bg-image { height: 40%; }
}
@media (max-width: 900px) {
  .hero-container {
    padding-left: 4vw;
    padding-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .hero-container {
    padding-left: 2vw;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-content {
    max-width: 98vw;
  }
}

.hero-animation {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  height: 55%;
  z-index: 1;
  pointer-events: none;
}

.hero-animation::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 60px;
  background: linear-gradient(to bottom, #fff 70%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.liquid-sphere {
  position: relative;
  left: 0;
  top: 0;
  width: 640px ;
  height: 640px;
  margin-left: 60px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.liquid-sphere.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (max-width: 1100px) {
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 4vw;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .liquid-sphere {
    margin-left: 0;
    margin-top: 40px;
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 600px) {
  .hero-container {
    padding-left: 2vw;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-content {
    max-width: 98vw;
  }
  .liquid-sphere {
    width: 98vw;
    height: 98vw;
    min-width: 180px;
    min-height: 180px;
    margin-top: 24px;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* Секция с анимированным текстом */
.text-scroll-section {
  position: relative;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.text-scroll-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: containerFloat 6s ease-in-out infinite;
}

@keyframes containerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.text-scroll-content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}



.text-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.indicator-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.indicator-dot.active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.3);
}

.indicator-dot.active::before {
  width: 100%;
  height: 100%;
}

.indicator-dot:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.5);
}

/* Анимация при скролле */
.text-scroll-section.scrolling {
  overflow: hidden;
}

.text-scroll-section.scrolling .text-scroll-content {
  transition: none;
}

/* Дополнительные улучшения */
.text-scroll-section {
  position: relative;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
}

.text-scroll-content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Улучшенные анимации для текста */
.text-scroll-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 8vw;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity, filter;
  pointer-events: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.text-scroll-item.text-main {
  font-size: 12vw;
  font-weight: 900;
  opacity: 1;
  filter: blur(0);
  z-index: 10;
  transform: translate(-50%, -50%) scale(1) rotateX(0deg);
}

.text-scroll-item.text-blur-top {
  font-size: 6vw;
  opacity: 0.4;
  filter: blur(6px);
  transform: translate(-50%, -50%) translateY(-60px) scale(0.8) rotateX(-15deg);
  z-index: 5;
}

.text-scroll-item.text-blur-bottom {
  font-size: 6vw;
  opacity: 0.4;
  filter: blur(6px);
  transform: translate(-50%, -50%) translateY(60px) scale(0.8) rotateX(15deg);
  z-index: 5;
}

/* Эффект при наведении на индикаторы */
.indicator-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* Дополнительные эффекты */
.text-scroll-item {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  filter: brightness(0.8);
}

.text-scroll-item.text-main {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  filter: brightness(1.2);
}

/* Промежуточные состояния для плавности */
.text-scroll-item.transitioning {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Эффект параллакса для фона */
.text-scroll-section {
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Индикация возможности продолжить скролл */
.text-scroll-section.can-scroll-down::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  border-left: none;
  transform: translateX(-50%) rotate(45deg);
  animation: bounce 2s infinite;
  opacity: 0;
  animation: fadeInBounce 0.8s ease-out forwards, bounce 2s infinite 0.8s;
}

.text-scroll-section.can-scroll-up::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
  animation: bounce 2s infinite reverse;
  opacity: 0;
  animation: fadeInBounce 0.8s ease-out forwards, bounce 2s infinite reverse 0.8s;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(45deg) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(45deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
  }
}

/* Плавное появление секции */
.text-scroll-section {
  opacity: 0;
  animation: fadeInSection 1.5s ease-out forwards;
}

@keyframes fadeInSection {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Дополнительные элементы */
.text-scroll-number {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  font-family: Montserrat, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  z-index: 15;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% {
    opacity: 0.8;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
}

@media (max-width: 768px) {
  .text-scroll-number {
    font-size: 4vw;
    left: 15%;
  }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
  .text-scroll-item.text-main {
    font-size: 16vw;
  }
  
  .text-scroll-item.text-blur-top,
  .text-scroll-item.text-blur-bottom {
    font-size: 10vw;
  }
  
  .text-scroll-indicator {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .text-scroll-item.text-main {
    font-size: 18vw;
  }
  
  .text-scroll-item.text-blur-top,
  .text-scroll-item.text-blur-bottom {
    font-size: 12vw;
  }
}

/* Projects Page Styles */
.projects-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.projects-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.projects-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.projects-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.projects-hero-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.projects-hero-title .title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.projects-hero-title .highlight {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-hero-desc {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.projects-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.8s;
}

.stat-item:nth-child(3) {
  animation-delay: 1s;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff6b6b;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Filter Section */
.projects-filter-section {
  padding: 120px 0 50px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.filter-container {
  align-items: center;
}

.filter-tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.filter-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  background: #000000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 16px;
  min-height: 45px;
  padding: 10px 15px;
  position: relative;
}

.filter-tab .arrow-icon {

  transition: all 0.3s ease;
  color: #ffffff;
  transform: rotate(0deg);
}

.filter-tab:hover .arrow-icon {
  color: #000000;
}


.filter-tab:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: none;
}
.filter-tab:hover .tab-text {
  color: #000000;
}

.filter-tab.active:hover .tab-text {
  color: #ffffff;
}

.filter-tab.active {
  background-color: #0094ff;
  border-color: #0094ff;
  color: #ffffff;
}

.filter-tab.active .arrow-icon {
  transform: rotate(180deg);
  color: #ffffff !important;
}

/* Стили для кнопок с активными фильтрами */
.filter-tab.has-active-filters {
  background-color: #e3f2fd;
  border-color: #0094ff;
  color: #0094ff;
  position: relative;
}

.filter-tab.has-active-filters::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background-color: #0094ff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Dropdown стили */
.filter-tab-wrapper {
  position: relative;
  display: inline-block;
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #b6c9db;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.filter-tab-wrapper.active .filter-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 400;
}

.dropdown-item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #0094ff;
  padding-left: 20px;
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-text {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: #fff;
}

.search-input {
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  outline: none;
  transition: border-color 0.3s ease;
  min-width: 250px;
}

.search-input:focus {
  border-color: #0094ff;
}

.search-btn {
  padding: 0.75rem;
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #007ad6;
  transform: scale(1.1);
}

/* Projects Grid */
.projects-grid-section {
  padding: 4rem 0;
}

.projects-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-card-inner {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.project-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-placeholder {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card-inner:hover .project-overlay {
  opacity: 1;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  font-size: 0.8rem;
  color: #fff;
}

.project-link-btn {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background: #0094ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-link-btn:hover {
  background: #007ad6;
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #e3f2fd;
  color: #0094ff;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
}

.project-desc {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-metrics {
  display: flex;
  gap: 1rem;
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0094ff;
}

.metric-label {
  font-size: 0.8rem;
  color: #999;
}

/* Load More Button */
.load-more-container {
  text-align: center;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #0094ff;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.load-more-btn:hover {
  background: #007ad6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 148, 255, 0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.load-more-btn:hover .btn-icon {
  transform: translateY(2px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #0094ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.author-name {
  font-weight: 600;
  color: #333;
}

.author-position {
  font-size: 0.9rem;
  color: #999;
}

/* CTA Section */
.projects-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
  margin-top: 100px;
}


.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: #fff;
  color: #667eea;
}

.cta-btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn-secondary:hover {
  background: #fff;
  color: #0094ff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projects-hero-title {
    font-size: 3rem;
  }
  
  .projects-hero-stats {
    gap: 2rem;
  }
  
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .projects-hero-title {
    font-size: 2.5rem;
  }
  
  .projects-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .filter-tabs {
    padding-bottom: 0.5rem;
    gap: 1rem;
  }
  
  .filter-tab {
    white-space: nowrap;

    font-size: 14px;
  }
  
  .filter-dropdown {
    min-width: 180px;
  }
  
  .dropdown-item {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .projects-grids {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .projects-hero-title {
    font-size: 2rem;
  }
  
  .projects-hero-desc {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .project-card-inner {
    margin: 0 1rem;
  }
  
  .testimonial-card {
    margin: 0 1rem;
  }
}

/* Animation for filtered items */
.project-card.filtered {
  display: none;
}

.project-card.show {
  display: block;
  animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Active navigation link */
.nav a.active,
.mobile-nav a.active {
  color: #0094ff;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for stats */
.stat-number.loading {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Map Section Styles */
.map-section {
  width: 100%;
  margin: 60px 0;
  background: #fff;
}

.map-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .map-section {
    margin: 40px 0;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 250px;
  }
}

/* Team Page Styles */
.team-hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.team-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.team-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.team-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #667eea, #764ba2);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #667eea, #764ba2);
  background-size: 300% 300%;
  animation: gradientShift 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-hero-title:hover .gradient-text::after {
  opacity: 1;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.team-hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.team-hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number::after {
  transform: scaleX(1);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-hero-visual {
  position: relative;
  height: 400px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-card:hover::before {
  opacity: 1;
}

.floating-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
}

.floating-card:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 3s;
}

.floating-card:nth-child(4) {
  top: 40%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-text {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 8px;
  animation: scrollBounce 2s infinite;
  position: relative;
  cursor: pointer;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.scroll-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Members Section */
.team-members-section {
  padding: 120px 0;
  background: #fff;
}

/* New Team Cards Style */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.team-member-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
}

.team-member-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo-container {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  overflow: hidden;
}

.member-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .photo-placeholder::before {
  opacity: 1;
}

.avatar-initial {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-member-card:hover .member-overlay {
  opacity: 1;
}

.member-socials {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.team-member-card:hover .member-socials {
  transform: translateY(0);
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 1;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover i {
  transform: scale(1.2);
}

.member-info {
  padding: 25px 20px;
  text-align: center;
  background: #fff;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.team-member-card:hover .member-name {
  color: #667eea;
}

.member-position {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Floating elements animation */
.team-member-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.team-member-card:hover::after {
  left: 100%;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  position: relative;
  overflow: hidden;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.section-header:hover .section-title::after {
  transform: scaleX(1);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.team-member::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.team-member:hover::after {
  left: 100%;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
  position: relative;
  margin-bottom: 25px;
}

.photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .photo-placeholder::before {
  opacity: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-initial {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.member-socials {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-member:hover .member-socials {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #667eea;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 1;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-link:hover i {
  color: #fff;
  transform: scale(1.2);
}

.social-link:hover {
  background: #667eea;
  color: #fff;
  transform: scale(1.1);
}

.member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 5px 0;
}

.member-position {
  font-size: 0.9rem;
  color: #667eea;
  font-weight: 500;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-desc {
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-size: 0.95rem;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: #f0f0f0;
  color: #555;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
  transition: left 0.3s ease;
}

.skill-tag:hover::before {
  left: 100%;
}

.skill-tag:hover {
  background: #667eea;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Values Section */
.team-values-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.value-card:hover::before {
  opacity: 0.05;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  overflow: hidden;
}

.value-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon::before {
  width: 100%;
  height: 100%;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
}

.value-desc {
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}



/* Team CTA Section */
.team-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.cta-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn-primary {
  background: #fff;
  color: #667eea;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .team-hero-title {
    font-size: 3rem;
  }
  
  .team-hero-stats {
    justify-content: center;
  }
  

  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .member-photo-container {
    height: 280px;
  }
  
  .photo-placeholder {
    width: 110px;
    height: 110px;
  }
  
  .avatar-initial {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .team-hero-title {
    font-size: 2.5rem;
  }
  
  .team-hero-desc {
    font-size: 1rem;
  }
  
  .team-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .member-photo-container {
    height: 250px;
  }
  
  .photo-placeholder {
    width: 100px;
    height: 100px;
  }
  
  .avatar-initial {
    font-size: 2rem;
  }
  
  .member-info {
    padding: 20px 15px;
  }
  
  .member-name {
    font-size: 1.2rem;
  }
  
  .member-position {
    font-size: 0.85rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .team-hero-title {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .member-photo-container {
    height: 220px;
  }
  
  .photo-placeholder {
    width: 90px;
    height: 90px;
  }
  
  .avatar-initial {
    font-size: 1.8rem;
  }
  
  .member-info {
    padding: 18px 12px;
  }
  
  .member-name {
    font-size: 1.1rem;
  }
  
  .member-position {
    font-size: 0.8rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    padding: 15px;
  }
  
  .card-icon {
    font-size: 1.5rem;
  }
  
  .card-text {
    font-size: 0.8rem;
  }
  
  .team-member {
    padding: 20px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
}

/* Animation classes */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation */
.stat-number {
  transition: all 0.3s ease;
}

.stat-number.animate {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Team Section Styles */
.team-section {
  background: #000000;
  padding: 80px 0;

  display: flex;
  align-items: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-content {
  width: 100%;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-title {
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-member-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member-item:last-child {
  border-bottom: none;
}

.team-member-item:hover,
.team-member-item.active {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.member-role {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  text-transform: lowercase;
}

.member-name {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.team-member-item:hover .member-name,
.team-member-item.active .member-name {
  color: #ffffff;
}

.team-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  height: 400px;
}

.member-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  opacity: 1;
}

.member-photo:hover .member-img {
  transform: scale(1.05);
}

.member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: #12121296;  
  border-radius: 8px;
  color: #ffffff;
}

.member-full-name {
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link:hover {
  background: #0094ff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }
  
  .team-images {
    height: 350px;
  }
}

@media (max-width: 1024px) {
  .team-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-images {
    height: 300px;
    grid-template-columns: 1fr 1fr;
  }
  
  .member-info {
    padding: 25px;
  }
  
  .member-full-name {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .detail-value {
    font-size: 16px;
  }
  
  .team-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  
  .team-title {
    font-size: 24px;
  }
  
  .team-images {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }
  
  .member-photo {
    height: 250px;
  }
  
  .member-info {
    padding: 20px;
  }
  
  .member-full-name {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .detail-value {
    font-size: 14px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .member-name {
    font-size: 16px;
  }
  
  .member-role {
    font-size: 12px;
  }
  
  .team-member-item {
    padding: 15px 0;
  }
  
  .team-member-item:hover,
  .team-member-item.active {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .team-title {
    font-size: 20px;
  }
  
  .member-photo {
    height: 200px;
  }
  
  .member-info {
    padding: 15px;
  }
  
  .member-full-name {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .detail-value {
    font-size: 12px;
  }
  
  .detail-label {
    font-size: 12px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  
  .member-name {
    font-size: 14px;
  }
  
  .member-role {
    font-size: 11px;
  }
  
  .team-member-item {
    padding: 12px 0;
  }
  
  .team-member-item:hover,
  .team-member-item.active {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
  }
}

.projects-grid-max{
  max-width: 100%;

}

.filter-tab-container{
  max-width: 100%;
}

/* Active Filters Styles */
.active-filters-container {
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
}

.active-filters-title {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  text-align: center;
}

.active-filters-list {
  display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  background: #0094ff;
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  transition: all 0.2s ease;
}

.active-filter-chip:hover {
  background: #007acc;
  transform: translateY(-1px);
}

.filter-chip-text {
  white-space: nowrap;
}

.filter-chip-remove {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.filter-chip-remove:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Active dropdown items */
.dropdown-item.active {
  background: #0094ff;
  color: white;
  font-weight: 500;
}

.dropdown-item.active:hover {
  background: #007acc;
  color: white;
  padding-left: 16px;
}

/* Mobile responsive for active filters */
@media (max-width: 768px) {
  .active-filters-container {
    margin-top: 15px;
    padding: 12px 0;
  }
  
  .active-filters-title {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .active-filter-chip {
    padding: 5px 10px;
    font-size: 12px;
    gap: 6px;
  }
  
  .filter-chip-remove {
    width: 16px;
    height: 16px;
    font-size: 14px;
  }
}

/* Team Section Styles */
.team-section {
  padding: 120px 0 60px 0;
  background: #f8f9fa;

  display: block;
}

.projects-filter-section .team-title{
  
  margin-bottom: 50px;
}
.team-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #232222;
  margin-bottom: 80px;
  text-transform: uppercase;

}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {

  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;

}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.team-photo {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  background: transparent;
  padding: 20px;
  text-align: center;
}

.team-name {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #1d1b1b;
  margin: 0 0 10px 0;
  text-align: center;
}

.team-position {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;

  line-height: 1;
  color: #1d1b1b;
  margin: 0;
  text-align: center;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
  .team-section {
    padding: 80px 0 60px 0;
  }
  
  .team-title {
    font-size: 48px;
    margin-bottom: 60px;
    padding: 0 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .team-photo {
    height: 300px;
  }
  
  .team-name {
    font-size: 18px;
  }
  
  .team-position {
    font-size: 18px;
  }
  
  .team-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .team-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .team-name {
    font-size: 18px;
  }
  
  .team-position {
    font-size: 18px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side - Services Introduction */
.services-intro {
  padding-right: 40px;
}

.services-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.services-desc {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

/* Right Side - Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-light {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  color: #000000;
}

.service-card-dark {
  background: #2c3e50;
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex-grow: 1;
}

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.service-card-dark .service-card-title {
  color: #50c878;
}

.service-subtitle {
  font-size: 14px;
  color: #666666;
  margin: 0 0 20px 0;
  font-weight: 500;
}

.service-card-dark .service-subtitle {
  color: #bdc3c7;
}

.service-goal {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 25px 0;
  color: #333333;
}

.service-card-dark .service-goal {
  color: #ffffff;
}

.service-price {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.service-card-dark .service-price {
  color: #ffffff;
}

.service-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #ffffff;
}

.service-card-dark .service-arrow {
  border-color: #ffffff;
  background: transparent;
}

.service-arrow i {
  font-size: 14px;
  color: #000000;
  transform: rotate(-45deg);
}

.service-card-dark .service-arrow i {
  color: #ffffff;
}

.service-card:hover .service-arrow {
  transform: translate(5px, -5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-layout {
    gap: 60px;
  }
  
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    padding: 25px;
  }
}

@media (max-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .services-intro {
    padding-right: 0;
    text-align: center;
  }
  
  .services-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
    min-height: 250px;
  }
  
  .service-card-title {
    font-size: 20px;
  }
  
  .services-title {
    font-size: 28px;
  }
  
  .services-desc {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card-title {
    font-size: 18px;
  }
  
  .service-goal {
    font-size: 14px;
  }
  
  .service-price {
    font-size: 16px;
  }
  
  .service-arrow {
    width: 35px;
    height: 35px;
  }
  
  .service-arrow i {
    font-size: 12px;
  }
}

/* Services Analysis Section Styles */
.services-analysis-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Services */
.services-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  padding: 40px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.service-card-primary {
  background: #2c3e50;
  color: white;
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.3);
}

.service-card-secondary {
  background: #ecf0f1;
  color: #2c3e50;
  border: 2px solid #bdc3c7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.8;
}

.service-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-desc {
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Right Side - Profile and Analysis */
.services-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ecf0f1;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.profile-avatar i {
  font-size: 32px;
  color: white;
}

.profile-name {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.profile-role {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

.profile-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.detail-group {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #3498db;
}

.detail-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  padding: 8px 0;
  color: #34495e;
  position: relative;
  padding-left: 20px;
}

.detail-list li::before {
  content: '•';
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Analysis Card */
.analysis-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.analysis-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 25px 0;
}

.analysis-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.analysis-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.analysis-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.analysis-icon i {
  font-size: 20px;
  color: white;
}

.analysis-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.analysis-content p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
  line-height: 1.4;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 8px 0;
  color: #34495e;
  font-size: 14px;
  position: relative;
  padding-left: 15px;
}

.info-list li::before {
  content: '→';
  color: #3498db;
  position: absolute;
  left: 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #34495e;
  font-size: 14px;
}

.contact-info i {
  color: #3498db;
  width: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-layout {
    gap: 40px;
  }
  
  .service-card {
    padding: 30px;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-analysis-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .services-analysis-section {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 25px;
    min-height: 250px;
  }
  
  .service-number {
    font-size: 36px;
  }
  
  .service-title {
    font-size: 24px;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .analysis-item {
    flex-direction: column;
    text-align: center;
  }
  
  .analysis-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 20px;
  }
  
  .service-number {
    font-size: 32px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .profile-card,
  .analysis-card,
  .info-card {
    padding: 20px;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* Advantages Section */
.advantages-section {
  padding: 120px 0;
  background: #ffffff;
}

.advantages-layout {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
}

.advantages-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 80px;
}

.advantages-header {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
}

.advantages-title {
  font-size: 72px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-family: Montserrat, sans-serif;
}

.advantages-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  border-bottom: 1px solid #e0e0e0;
  background: #ffffff;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item-highlighted {
  background: #f5f5dc;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  font-family: Montserrat, sans-serif;
}

.stat-desc {
  font-size: 16px;
  color: #000000;
  text-align: right;
  max-width: 200px;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .advantages-layout {
    flex-direction: column;
    gap: 60px;
  }
  
  .advantages-left {
    padding-right: 0;
    text-align: center;
  }
  
  .advantages-title {
    font-size: 60px;
  }
  
  .stat-item {
    padding: 30px 40px;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 80px 0;
  }
  
  .advantages-title {
    font-size: 48px;
  }
  
  .stat-item {
    padding: 25px 30px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-desc {
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .advantages-title {
    font-size: 36px;
  }
  
  .stat-item {
    padding: 20px 25px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-desc {
    font-size: 14px;
  }
}

/* Statistics Section */
.statistics-section {
  padding: 120px 0;
  background: #ffffff;
}

.statistics-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
}

.stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.stat-number-large {
  font-size: 72px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
}

.stat-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-line {
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: #e0e0e0;
  margin: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .statistics-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .stat-divider {
    width: 80px;
    height: 1px;
    margin: 20px 0;
  }
  
  .stat-block {
    padding: 0 20px;
  }
  
  .stat-number-large {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .statistics-section {
    padding: 80px 0;
  }
  
  .stat-number-large {
    font-size: 48px;
  }
  
  .stat-line {
    font-size: 14px;
  }
}

/* Interior Section */
.interior-section {
  position: relative;
  background: #1a1a1a;
}

.interior-header {
  background: #1a1a1a;
  padding: 60px 0 40px;
  display: flex;
  justify-content: flex-end;
}

.interior-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  margin-right: 80px;
}

.interior-content {
  position: relative;
  background: #ffffff;
  padding: 0;
}

.interior-image-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.interior-image {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.interior-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/jackson-seaweed-snacks.jpg') center/cover;
  opacity: 0.8;
}

.interior-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 60px;
  z-index: 2;
}

.interior-text {
  max-width: 400px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.interior-quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  color: #ffffff;
}

.read-more-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Montserrat, sans-serif;
}

.read-more-btn:hover {
  background: #ffffff;
  color: #000000;
}

.navigation-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.navigation-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.navigation-dots .dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.navigation-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .interior-title {
    font-size: 42px;
    margin-right: 60px;
  }
  
  .interior-image {
    height: 500px;
  }
  
  .interior-overlay {
    padding: 40px;
  }
  
  .interior-text {
    max-width: 350px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .interior-header {
    padding: 40px 0 30px;
  }
  
  .interior-title {
    font-size: 36px;
    margin-right: 40px;
  }
  
  .interior-image {
    height: 400px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 90%);
  }
  
  .interior-overlay {
    padding: 30px;
  }
  
  .interior-text {
    max-width: 100%;
    padding: 25px;
  }
  
  .interior-quote {
    font-size: 16px;
  }
  
  .navigation-dots {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .interior-title {
    font-size: 28px;
    margin-right: 20px;
  }
  
  .interior-image {
    height: 350px;
  }
  
  .interior-overlay {
    padding: 20px;
  }
  
  .interior-text {
    padding: 20px;
  }
  
  .interior-quote {
    font-size: 14px;
  }
  
  .read-more-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .navigation-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .navigation-dots .dot {
    width: 10px;
    height: 10px;
  }
}

/* Circular CTA Section */
.circular-cta-section {
  position: relative;
  width: 100%;
}

/* Верхня частина з білим фоном */
.circular-section {
  background: #ffffff;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-text-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circular-text span {
  position: absolute;
  left: 50%;
  top: 0;
  transform-origin: 0 150px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Пентагональна форма - 5 сторін */
.circular-text span:nth-child(1) { transform: rotate(0deg); }
.circular-text span:nth-child(2) { transform: rotate(36deg); }
.circular-text span:nth-child(3) { transform: rotate(72deg); }
.circular-text span:nth-child(4) { transform: rotate(108deg); }
.circular-text span:nth-child(5) { transform: rotate(144deg); }
.circular-text span:nth-child(6) { transform: rotate(180deg); }
.circular-text span:nth-child(7) { transform: rotate(216deg); }
.circular-text span:nth-child(8) { transform: rotate(252deg); }
.circular-text span:nth-child(9) { transform: rotate(288deg); }
.circular-text span:nth-child(10) { transform: rotate(324deg); }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circular-center {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ua-text {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Основна частина з чорним фоном */
.cta-main-section {
  background: #000000;
  padding: 80px 20px;
  border-radius: 40px 40px 0 0;

  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.cta-title .highlight {
  font-style: italic;
  font-weight: 800;
  color: rgb(0, 148, 255);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.cta-description {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background:  rgb(0, 148, 255);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(14, 178, 228, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(204, 197, 194, 0.4);
  background: #04c5d3e0;
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-button .arrow {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .circular-text-container {
    width: 250px;
    height: 250px;
  }
  
  .circular-text span {
    font-size: 10px;
    transform-origin: 0 125px;
  }
  
  .circular-center {
    width: 50px;
    height: 50px;
  }
  
  .ua-text {
    font-size: 14px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .circular-text-container {
    width: 200px;
    height: 200px;
  }
  
  .circular-text span {
    font-size: 8px;
    transform-origin: 0 100px;
  }
  
  .circular-center {
    width: 40px;
    height: 40px;
  }
  
  .ua-text {
    font-size: 12px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-description {
    font-size: 14px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Main Black Headline About Section */
.main-black-headline-about {
  background-color: #232222;
  padding: 35px 0;
  text-align: center;
  width: 100%;
}

.main-black-headline-about-title h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.tech-highlight {
  color: #0094FF;
}

/* Responsive styles for the headline */
@media (max-width: 1200px) {
  .main-black-headline-about-title h2 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .main-black-headline-about-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}


/* About Us Section Styles */

.about-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1920px;
  margin: 0 auto;
  border: 1px solid rgba(32, 33, 46, 0.2);
}

.about-us-grid > .card-about-us {
  border-right: 1px solid rgba(32, 33, 46, 0.2);
  border-bottom: 1px solid rgba(32, 33, 46, 0.2);
}

.about-us-grid > .card-about-us:nth-child(2n) {
  border-right: 1px solid rgba(32, 33, 46, 0.2);
}

.about-us-grid > .card-about-us:nth-child(-n+2) {
  border-top: 1px solid rgba(32, 33, 46, 0.2);
}

.card-about-us {
  text-align: center;
  background: #FFFFFF;
  position: relative;
  transition: all 0.3s ease;
  height: 19.03rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(32, 33, 46, 0.2);
  border-bottom: 1px solid rgba(32, 33, 46, 0.2);
}

.card-about-us:not(:nth-child(3n)) {
  border-right: 1px solid rgba(32, 33, 46, 0.2);
}

.card-about-us:nth-child(3n) {
  border-right: none;
}

.card-about-us:nth-child(n+4) {
  border-top: 1px solid rgba(32, 33, 46, 0.2);
}

.card-about-us:nth-child(n+5) {
  border-bottom: none;
}

.card-about-us:hover {
  background: #F8F9FA;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-about-us-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  color: #1D1B1B;
  margin-bottom: 23.4px;
  text-align: center;
  text-transform: uppercase;
}

.card-about-us-desc {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
  color: #1D1B1B;
  text-align: center;

}

.card-about-us-btn {
  background: #0094FF;
  color: #FFFFFF;
  border: none;
  border-radius: 7px;
  padding: 14px 31px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-about-us-btn:hover {
  background: #007AD6;
  transform: translateY(-2px);
}

.card-about-us-btn-fade {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: all 0.3s ease;
}

.card-about-us:hover .card-about-us-btn-fade {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive styles for about-us section */
@media (max-width: 1023px) {
  .about-us-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  
  .about-us-grid > .card-about-us {
    border-right: 1px solid rgba(32, 33, 46, 0.2);
    border-top: 1px solid rgba(32, 33, 46, 0.2);
  }
  
  .about-us-grid > .card-about-us:nth-child(2n) {
    border-right: none;
  }
  
  .about-us-grid > .card-about-us:nth-child(-n+2) {
    border-top: none;
  }
  
  .about-us-grid > .card-about-us:nth-child(n+5) {
    border-bottom: none;
  }
  

  .card-about-us-title {
    font-size: 20px;

  }
  
  .card-about-us-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about-us-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  
  .about-us-grid > .card-about-us {
    border-right: 1px solid rgba(32, 33, 46, 0.2);
    border-bottom: none;
  }
  
  .about-us-grid > .card-about-us:nth-child(2n) {
    border-right: none;
  }
  
  .about-us-grid > .card-about-us:nth-child(n+3) {
    border-top: 1px solid rgba(32, 33, 46, 0.2);
  }
  
  .card-about-us {
    padding: 25px 15px;
    min-height: 200px;
  }
  
  .card-about-us-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .card-about-us-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-us-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  
  .about-us-grid > .card-about-us {
    border-right: none;
    border-bottom: 1px solid rgba(32, 33, 46, 0.2);
    border-top: none;
  }
  
  .about-us-grid > .card-about-us:last-child {
    border-bottom: none;
  }
  
  .card-about-us {
    padding: 20px 15px;
    min-height: 180px;
  }
  
  .card-about-us-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .card-about-us-desc {
    font-size: 13px;
  }
}

/* Projects Slider Section */
.projects-slider-section {
  background: #fafbfc;
  padding: 0;
  position: relative;
}

.projects-slider-container {

  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.projects-slider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
  overflow: hidden;
}

/* Статичні рядки без анімації */
.projects-slider-row {
  display: contents;
}





.project-slider-card {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
}

.project-slider-card:hover {
  transform: scale(1.02);
  opacity: 0.95;
  text-decoration: none;
}

.project-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.project-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  transform: scale(1.1);
  transform-origin: center center;
}

.project-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}


.project-video-container iframe[src*="youtube.com"] {
  filter: contrast(1.1) brightness(1.1);
  transform: scale(1.15);
  transform-origin: center center;
}

.project-video-container iframe[src*="vimeo.com"] {
  transform: scale(1.12);
  transform-origin: center center;
}

.project-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-slider-section .project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.projects-slider-section .project-slider-card:hover .project-image {
  transform: scale(1.02);
}

.project-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.project-link:hover {
  text-decoration: none;
  color: inherit;
}


.project-video-container iframe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}

.project-slider-card:nth-child(3n) {
  border-right: none;
}


.project-slider-content {
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(32, 33, 46, 0.1);
  position: relative;
  z-index: 2;
}

.project-slider-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1em;
  color: #1D1B1B;
  margin-bottom: 10px;
  text-align: center;
}

.project-slider-desc {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  color: #1D1B1B;
  text-align: center;
}

.projects-slider-footer {

  padding: 62px 0;
  text-align: center;
}

.projects-slider-footer-content h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1.36;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;

}

.projects-slider-btn {
  background: #232222;
  border: none;

  cursor: pointer;
  padding: 10px 37px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  
}

.projects-slider-btn:hover {
  background: #0094FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 148, 255, 0.3);
}


.projects-slider-btn h2,
.projects-slider-btn-text {
  color: #FFFFFF !important;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}


@media (max-width: 1200px) {

  
  .project-slider-card:nth-child(3n) {
    border-right: none;
  }
  

  

}

@media (max-width: 1023px) {
  .projects-slider-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .projects-slider-row {
    display: contents;
  }
  
  .project-slider-card {
    width: 100%; 
    border-right: none !important;
    margin-bottom: 0;
    min-height: 320px;
  }
  
  .project-video-container {
    aspect-ratio: 16/9;
  }
  
  .project-video-container iframe[src*="youtube.com"] {
    transform: scale(1.12);
  }
  
  .project-video-container iframe[src*="vimeo.com"] {
    transform: scale(1.1);
  }
}

@media (max-width: 900px) {
  .projects-slider-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .projects-slider-row {
    display: contents;
  }
  
  .project-slider-card {
    width: 100%;
    border-right: none !important;
    margin-bottom: 0;
    min-height: 280px;
  }
  
  .project-video-container {
    aspect-ratio: 16/9;
  }
  
  .project-video-container iframe[src*="youtube.com"] {
    transform: scale(1.1);
  }
  
  .project-video-container iframe[src*="vimeo.com"] {
    transform: scale(1.08);
  }
  
  .project-slider-content {
    padding: 30px 15px;
  }
  
  .project-slider-title {
    font-size: 20px;
  }
  
  .project-slider-desc {
    font-size: 20px;
  }
  

  
  .projects-slider-btn {
    padding: 15px 30px;
  }
  

}

@media (max-width: 600px) {
  .projects-slider-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .projects-slider-row {
    display: contents;
  }
  
  .project-slider-card {
    width: 100%; 
    border-right: none !important;
    margin-bottom: 0;
    min-height: 200px;
  }
  
  .project-video-container {
    aspect-ratio: 16/9;
  }
  
  .project-video-container iframe[src*="youtube.com"] {
    transform: scale(1.08);
  }
  
  .project-video-container iframe[src*="vimeo.com"] {
    transform: scale(1.06);
  }
  
  .project-slider-content {
    padding: 15px 10px;
  }
  
  .project-slider-title {
    font-size: 16px;
  }
  
  .project-slider-desc {
    font-size: 12px;
  }
  

  
  .projects-slider-btn {
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .projects-slider-container {
    padding: 0 10px;
  }
  
  .projects-slider-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .projects-slider-row {
    display: contents;
  }
  
  .project-slider-card {
    width: 100%; 
    border-right: none !important;
    margin-bottom: 0;
    min-height: 180px;
  }
  
  .project-video-container {
    aspect-ratio: 16/9;
  }
  
  .project-video-container iframe[src*="youtube.com"] {
    transform: scale(1.06);
  }
  
  .project-video-container iframe[src*="vimeo.com"] {
    transform: scale(1.04);
  }
  
  .project-slider-content {
    padding: 12px 8px;
  }
  
  .project-slider-title {
    font-size: 14px;
  }
  
  .project-slider-desc {
    font-size: 11px;
  }
}


.cooperation-section {
  background: #fafbfc;
  padding: 0;
  position: relative;
}

.cooperation-header {
  background: #232222;
  padding: 35px 0;
  text-align: center;
  width: 100%;
}

.cooperation-header h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;

  font-size: 32px;
  line-height: 1.36;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  max-width: 1920px;
  margin: 0 auto;
  border: 1px solid rgba(32, 33, 46, 0.2);
}

.cooperation-grid-socials {
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
}

.cooperation-item {
  position: relative;
  min-height: 251px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(32, 33, 46, 0.2);
  border-bottom: 1px solid rgba(32, 33, 46, 0.2);
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.cooperation-item:nth-child(3n) {
  border-right: none;
}

.cooperation-item:nth-child(n+13) {
  border-bottom: none;
}


/* Partner Items */
.partner-item {
  text-align: center;
  background: radial-gradient(circle at center, transparent 0%, transparent 50%, #232222 50%, #232222 100%);
  background-size: 0% 0%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 1.2s ease-in-out;
}

.partner-item:hover {
  background-color: #dc3545 !important; 
  color: #ffffff;
}

.partner-item:hover .partner-name {
  color: #ffffff;
}

.partner-item:hover .logo-shield,
.partner-item:hover .partner-logo img {
  filter: brightness(0) invert(1); 
}


.partner-item-blue:hover {
  background-color: #007bff !important; 
  color: #ffffff;
}

.partner-item-blue:hover .partner-name {
  color: #ffffff;
}

.partner-item-blue:hover .logo-shield,
.partner-item-blue:hover .partner-logo img {
  filter: brightness(0) invert(1); 
}


.partner-item-purple:hover {
  background-color: #004493 !important; 
  color: #ffffff;
}

.partner-item-purple:hover .partner-name {
  color: #ffffff;
}

.partner-item-purple:hover .logo-shield,
.partner-item-purple:hover .partner-logo img {
  filter: brightness(0.9) invert(10);
}



.partner-item-gold:hover {
  background-color: #ffc107 !important; 
  color: #000000;
}

.partner-item-gold:hover .partner-name {
  color: #000000;
}

.partner-item-gold:hover .logo-shield,
.partner-item-gold:hover .partner-logo img {
  filter: brightness(0) invert(0);
}


.partner-item-military:hover {
  background-color: #2d5016 !important; 
  color: #ffffff;
}

.partner-item-military:hover .partner-name {
  color: #ffffff;
}

.partner-item-military:hover .logo-shield,
.partner-item-military:hover .partner-logo img {
  filter: none;
}

/* Specific hover effect for Radisson Blu SVG - only text elements */
.partner-item-purple:hover .logo-shield[alt="Радісон Блу"] path[fill="white"],
.partner-item-purple:hover .logo-shield[alt="Радісон Блу"] path[fill="#0E1011"] {
  fill: #0094ff !important;
}



.partner-logo {
  width: 175px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



.logo-shield {
  font-size: 48px;
  color: #333;
  transition: all 0.3s ease;
  filter: none; 
}

.logo-tryzub {
  font-size: 48px;
  color: #333;
  transition: color 0.3s ease;
}

.logo-diya {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #333;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.logo-google {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.logo-ebrd {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}


.partner-name {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  color: #1D1B1B;
  text-align: center;
  max-width: 300px;
}

/* Stats Items */
.stats-item {
  text-align: center;
}

.stats-item:hover {
  background-color: #232222 !important;
  color: #ffffff;
}

.stats-item:hover .partner-name {
  color: #ffffff;
}

.stats-number {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 0.67em;
  color: #0094FF;
  margin-bottom: 10px;
  text-align: center;
}

.stats-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 0.67em;
  color: #0094FF;
  margin-bottom: 15px;
  text-align: center;
}

.stats-desc {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1em;
  color: #1D1B1B;
  text-align: center;
  max-width: 400px;
}






.cooperation-btn {
  background: #232222;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  padding: 20px 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cooperation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #2a2a2a;
}

.cooperation-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cooperation-btn h2 {
  color: #FFFFFF !important;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}


@media (max-width: 1200px) {
  .cooperation-header h2 {
    font-size: 60px;
  }
  
  .cooperation-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
  
  .cooperation-item:nth-child(2n) {
    border-right: none;
  }
  
  .cooperation-item:nth-child(n+15) {
    border-bottom: none;
  }
  
  .partner-name,
  .stats-desc {
    font-size: 20px;
  }
  
  .stats-number,
  .stats-title {
    font-size: 32px;
  }
  

  
  .cooperation-btn h2 {
    font-size: 20px;
  }
}
@media (max-width: 1201px){
  .cooperation-item:nth-child(3n) {
    border-right: 1px solid rgba(32, 33, 46, 0.2);
  }
  .contact-form-block{
    padding: 0 0 0 40px;
  }
  .contact-info-block{
    padding: 0 40px 0 0;
  }
}
@media (max-width: 1023px) {
  .cooperation-header h2 {
    font-size: 50px;
  }
  
  .cooperation-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
  
  
  .cooperation-item:nth-child(2n) {
    border-right: none;
  }
  
  .cooperation-item:nth-child(n+15) {
    border-bottom: none;
  }
  
  .partner-name,
  .stats-desc {
    font-size: 18px;
  }
  
  .stats-number,
  .stats-title {
    font-size: 28px;
  }
  
  .cooperation-btn h2 {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .cooperation-header h2 {
    font-size: 40px;
  }
  
  .cooperation-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  
  .cooperation-item {
    border-right: 1px solid rgba(32, 33, 46, 0.2) !important;
    border-bottom: none !important;
    min-height: 200px;
    padding: 25px 15px;
  }
  
  .cooperation-item:nth-child(2n) {
    border-right: none !important;
  }
  
  .cooperation-item:nth-child(n+3) {
    border-top: 1px solid rgba(32, 33, 46, 0.2);
  }
  
  .partner-logo {

    margin-bottom: 12px;
  }
  
  .logo-placeholder {
    font-size: 16px;
  }
  
  .partner-name,
  .stats-desc {
    font-size: 14px;
  }
  
  .stats-number,
  .stats-title {
    font-size: 20px;
  }
  .contact-info-title{
    margin-top: 40px;
  }
  .projects-slider-footer{
    padding: 40px 0;
  }
  
  .cooperation-btn {
    padding: 15px 30px;
  }
  
  .cooperation-btn h2 {
    font-size: 18px;
  }
}
@media (max-width: 600px){
.cooperation-header h2 {
  font-size: 28px;
  line-height: 1.2;
}
}
@media (max-width: 600px) {

  
  .cooperation-item {
    min-height: 258px;
    padding: 25px 10px;
  }
  

  
  .logo-placeholder {
    font-size: 16px;
  }
  
  .partner-name,
  .stats-desc {
    font-size: 16px;
  }
  
  .stats-number,
  .stats-title {
    font-size: 24px;
  }
  
  
  .cooperation-btn {
    padding: 12px 25px;
  }
  
  .cooperation-btn h2 {
    font-size: 16px;
  }


}

@media (max-width: 480px) {
  .cooperation-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }
  
  .cooperation-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(32, 33, 46, 0.2) !important;
    border-top: none !important;
    min-height: 180px;
    padding: 20px 15px;
  }
  
  .cooperation-item:last-child {
    border-bottom: none !important;
  }
  

  
  .logo-placeholder {
    font-size: 14px;
  }
  
  .partner-name,
  .stats-desc {
    font-size: 13px;
  }
  
  .stats-number,
  .stats-title {
    font-size: 18px;
  }
}


.media-gallery-section {
  width: 100%;
  background: #F8F9FA;
  padding: 0;
}

.media-gallery-container {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.video-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.computer-image {
  width: 100%;
  height: auto;
  border-radius: 21px;
  object-fit: cover;
}


.photos-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  align-items: stretch;
}

.photo-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vertical-photo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .video-item {
    padding: 40px 0;
  }
  
  .computer-image {
    border-radius: 14px;
  }
  
  .photos-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .vertical-photo {
    height: 60vh;
    border-radius: 0;
  }
  .footer-contact-title{
    font-size: 20px;
  }
  .footer-contact-value{
    font-size: 16px;
  }
  .footer-newsletter-title{
    font-size: 20px;
  }
  .footer-social-title{
    font-size: 20px;
  }
  .footer-legal-link{
    font-size: 14px;
  }
  .footer-scroll-btn{
    font-size: 14px;
  }
  
  .footer-nav-link{
    font-size: 16px;
  }
}


.main-black-headline-about.white-headline {
  background-color: transparent;
}

.main-black-headline-about-title.black-headline-title h2{
  color: #000;
}


.solutions-section .solutions-grid .solution-card .solution-title a {
  color: #222 !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.solutions-section .solutions-grid .solution-card .solution-title a:link,
.solutions-section .solutions-grid .solution-card .solution-title a:visited,
.solutions-section .solutions-grid .solution-card .solution-title a:hover,
.solutions-section .solutions-grid .solution-card .solution-title a:active,
.solutions-section .solutions-grid .solution-card .solution-title a:focus {
  color: #222 !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}


.socials-grid{
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
}

.white-main-title{
  background-color: transparent !important;
}
.white-main-title h2{
  color: #232222;
}


.main-btn-white:hover{
  background-color: #222;
  color: #fff;
}

@media (max-width: 1023px) {
  .contact-info-block{
    padding: 0 0 0 0;
  }
  .contact-form-block{
    padding: 0 0 0 0;
  }
  .contact-form-block{
    border-left: none;
    border-bottom: none;
    border-top: 1px solid #e0e0e0;
  }
}

@media (max-width: 900px) {
  .contact-section {

    padding: 0 10px 0 10px;
}
}

@media (max-width: 1023px) {
  .solution-title{
    font-size: 20px;
  }
  .solution-desc{
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .main-black-headline-about-title h2 {
    font-size: 24px;
  }
  .cooperation-header h2{
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-info-title {
    font-size: 18px;
  }

  .contact-form-title{
    font-size: 24px;
  }
}


/* EVENTS PAGE STYLES */
.events-container {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
}

.events-logo {
  margin-bottom: 8px;
}

.events-logo-circle {
  width: 80px;
  height: 80px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.events-logo-image {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.events-company-name {
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0;
  letter-spacing: -0.5px;
}

.events-tagline {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

.events-links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.events-link-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  box-sizing: border-box;
  background: #fff;
  color: #222;
  border: 1px solid #e0e0e0;
}

.events-link-item:hover {
  background-color: #222;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.events-link-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: #666666;
  flex-shrink: 0;
}

.events-icon-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.events-link-text {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-link-item:hover .events-link-text {
  color: #ffffff;
}

.events-link-item:hover .events-link-icon {
  color: #ffffff;
}

/* QUIZ STYLES */
.events-quiz-container {
  width: 100%;
}

.events-quiz-step {
  animation: fadeIn 0.5s ease-in-out;
}

.events-quiz-question {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px;
  text-align: center;
}

.events-quiz-result {
  text-align: center;

}

.events-quiz-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0px;
  margin-top: 0px;
}

.events-gift-form {
  max-width: 500px;
  padding: 30px;
}

.events-gift-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.events-gift-form .contact-label {
  display: block;
  width: 100%;
}

.events-gift-form .contact-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #caced1;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background-color: #ffffff;
}

.events-gift-form .contact-input:focus {
  outline: none;
  border-color: #007bff;
}

.events-gift-form .contact-input::placeholder {
  color: #474A50;
}


.events-gift-form .contact-btn-submit {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.events-gift-form .contact-btn-submit:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
  .events-gift-form {
    padding: 20px;
  }
  
  .events-gift-form .contact-input {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .events-gift-form .contact-btn-submit {
    padding: 12px 25px;
    font-size: 14px;
  }
}

.events-quiz-success p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 20px;
}

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

.events-instruction {
  font-size: 14px;
  color: #000000;
  margin: 8px 0;
  max-width: 320px;
  line-height: 1.5;
  font-style: italic;
}

.events-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #4a9eff 0%, #0066cc 100%);

  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);

  box-sizing: border-box;
}

.events-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #5ba8ff 0%, #0052a3 100%);
}

.events-cta-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

/* EVENTS RESPONSIVE STYLES */
@media (max-width: 480px) {
  .events-container {
      max-width: 100%;
      gap: 20px;
      margin: 20px auto;
      padding: 16px;
  }
  
  .events-logo-circle {
      width: 70px;
      height: 70px;
  }
  
  .events-logo-image {
      width: 100%;
      height: 100%;
  }
  
  .events-company-name {
      font-size: 24px;
  }
  
  .events-tagline {
      font-size: 15px;
  }
  
  .events-link-item {
      padding: 14px 16px;
  }
  
  .events-link-text {
      font-size: 14px;
  }
  
  .events-instruction {
      font-size: 13px;
  }
  
  .events-cta-button {
      padding: 16px 20px;
  }
  
  .events-cta-text {
      font-size: 14px;
  }
}

@media (max-width: 360px) {
  .events-container {
      gap: 18px;
  }
  
  .events-logo-circle {
      width: 65px;
      height: 65px;
  }
  
  .events-logo-image {
      width: 100%;
      height: 100%;
  }
  
  .events-company-name {
      font-size: 22px;
  }
  
  .events-tagline {
      font-size: 14px;
  }
  
  .events-link-item {
      padding: 12px 14px;
  }

  
  .events-instruction {
      font-size: 12px;
  }
}

@media (min-width: 768px) {
  .events-container {
      max-width: 450px;
  }
  
  .events-logo-circle {
      width: 90px;
      height: 90px;
  }
  
  .events-logo-image {
      width: 100%;
      height: 100%;
  }
  
  .events-company-name {
      font-size: 32px;
  }
  
  .events-tagline {
      font-size: 18px;
  }
  
  .events-link-item {
      padding: 18px 24px;
  }
  
  .events-link-text {
      font-size: 17px;
  }
  
  .events-instruction {
      font-size: 15px;
  }
  
  .events-cta-button {
      padding: 20px 28px;
  }
  
  .events-cta-text {
      font-size: 19px;
  }
}

@media (min-width: 1024px) {
  .events-container {
      max-width: 545px;
  }
  
  .events-logo-circle {
      width: 100px;
      height: 100px;
  }
  
  .events-logo-image {
      width: 100%;
      height: 100%;
  }
  
  .events-company-name {
    font-size: 48px;
    font-weight: 900;
  }
  
  .events-tagline {
      font-size: 20px;
  }
  
  .events-link-item {
      padding: 20px 28px;
  }
  
  .events-link-text {
      font-size: 18px;
  }
  
  .events-instruction {
      font-size: 16px;
  }
  
  .events-cta-button {
      padding: 22px 32px;
  }
  
  .events-cta-text {
      font-size: 20px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .events-logo-circle {
      border: 0.5px solid rgba(45, 90, 39, 0.1);
  }
  
  .events-link-item {
      border: 0.5px solid rgba(0, 0, 0, 0.05);
  }
}

.btn-black{
  background: #232222;
}


@media screen and (max-width: 479px) {
  .solution-card {
      height: auto;
      padding: 1.83rem 0 ;
  }
}

@media screen and (max-width: 479px) {
  .card-about-us {
      height: auto;
      padding: 1.83rem 0;
  }
}

@media screen and (max-width: 768px) {
  .main-black-headline-about {
    padding: 10px 0;
  }
}

/* Tech Stack Section */
.tech-stack-section {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.tech-stack-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.tech-stack-title {
  font-size: 36px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  color: #20212e;
  min-width: 180px;
  flex-shrink: 0;
  margin-bottom: 40px;
}

.tech-category {
  margin-bottom: 20px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 520px 1fr;

  align-items: center;
  
}

.tech-category:first-child {
  margin-top: 0;
}

.tech-category:last-child {
  margin-bottom: 0;
}

/* Full width bottom line div */
.full-width-line {
  width: 100vw;
  height: 1px;
  background-color: #e0e0e0;
  margin-left: calc(-50.4vw + 50%);
}

.tech-category-title {
  font-size: 36px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  color: #20212e;
  text-align: left;
  margin: 0;
}

.tech-stack-grid {
  display: flex;
  gap: 79px;
  flex-wrap: wrap;
  align-items: center;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.tech-item{
  flex-basis: 12.5%;
}


.tech-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.tech-icon svg,
.tech-icon img {
  width: 50px;
  height: 50px;
}


.tech-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-align: center;
  transition: color 0.3s ease;
}



@media (max-width: 1024px) {
  .tech-stack-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .tech-category {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .tech-category-title {
    min-width: auto;
    text-align: center;
  }
  
  .tech-stack-title {
    min-width: auto;
  }
  
  .tech-stack-grid {
    justify-content: center;
   
  }
}

@media (max-width: 768px) {
  .tech-stack-section {
    padding: 40px 0;
  }
  
  .tech-stack-container {
    padding: 0 15px;
    gap: 25px;
  }
  
  .tech-stack-title {
    font-size: 20px;
  }
  

  
 

  
  .tech-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {



  
  .tech-label {
    font-size: 11px;
  }
}

/* intl-tel-input Custom Styles */
.iti {
  width: 100%;
  position: relative;
}

.iti__country-list {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

/* Search input styles */
.iti__search-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  color: #333;
  background: #f8f9fa;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.iti__search-input:focus {
  background: #fff;
  border-bottom-color: #0094ff;
  box-shadow: 0 2px 4px rgba(0, 148, 255, 0.1);
}

.iti__search-input::placeholder {
  color: #999;
  font-style: italic;
}

.iti__search-input:focus::placeholder {
  color: #ccc;
}

/* No results message */
.iti__no-results {
  padding: 16px;
  text-align: center;
  color: #666;
  font-style: italic;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

/* Search icon (if present) */
.iti__search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

/* Highlight search results */
.iti__country.iti__highlight {
  background-color: #0094ff;

}

  

.iti__country {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iti__country:hover {
  background-color: #f5f5f5;
}

.iti__country.iti__highlight {
  background-color: #0094ff;

}

.iti__flag {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  flex-shrink: 0;
}

.iti__country-name {
  flex: 1;
  margin-left: 8px;
}

.iti__dial-code {
  font-weight: bold;
  color: #666;
  margin-left: auto;
}

.iti__selected-flag {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  min-width: 60px;
}

/* Hide dial code from selected flag */
.iti__selected-dial-code {
  display: none;
}

.iti__selected-flag:hover {
  border-color: #0094ff;
}

.iti__selected-flag:focus {
  outline: none;
  border-color: #0094ff;
  box-shadow: 0 0 0 3px rgba(0, 148, 255, 0.1);
}

.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #666;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #666;
}

.iti__input {
  border: 1px solid #e0e0e0;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  font-family: Montserrat, sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Dial code display in input field */
.iti__input::before {
  content: attr(data-dial-code);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
  z-index: 1;
}

.iti__input[data-dial-code] {
  padding-left: 60px;
}

.iti__input:focus {
  outline: none;
  border-color: #0094ff;
  box-shadow: 0 0 0 3px rgba(0, 148, 255, 0.1);
}

.iti__input::placeholder {
  color: #999;
  font-family: Montserrat, sans-serif;
}

/* Dark mode support for intl-tel-input */
@media (prefers-color-scheme: dark) {
  .iti__country-list {
    background: #fff;
    border-color: #e0e0e0;
  }
  
  .iti__country {
    color: #333;
  }
  
  .iti__country:hover {
    background-color: #f5f5f5;
  }
  
  .iti__search-input {
    background: #f8f9fa;
    color: #333;
    border-bottom-color: #e0e0e0;
  }
  
  .iti__search-input:focus {
    background: #fff;
    border-bottom-color: #0094ff;
  }
  
  .iti__search-input::placeholder {
    color: #999;
  }
  
  .iti__no-results {
    background: #f8f9fa;
    color: #666;
    border-top-color: #e0e0e0;
  }
  
  .iti__selected-flag {
    background: #2c2c2c;
    border-color: #5b5b5b;
  }
  
  .iti__input {
    background: #2c2c2c;
    border-color: #5b5b5b;
    color: #fff;
  }
  
  .iti__input::placeholder {
    color: #8d96a0;
  }
  
  .iti__arrow {
    border-top-color: #aaaaaa;
  }
  
  .iti__arrow--up {
    border-bottom-color: #aaaaaa;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .iti__selected-flag {
    min-width: 50px;
    padding: 10px 12px;
  }
  
  .iti__input {
    padding: 10px 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .iti__country-list {
    max-height: 150px;
  }
  
  .iti__search-input {
    padding: 10px 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .iti__country {
    padding: 10px 12px;
  }
  
  .iti__no-results {
    padding: 12px;
    font-size: 14px;
  }
}

/* NEW CONTACT FORM STYLES */
.new-contact-section {
  display: flex;
  padding: 60px 100px;
  border-top: 1px solid #e0e0e0;
  max-width: 100%;
  margin: 0 auto;
  background: #f8f9fa;
  gap: 80px;
  position: relative;
}

.new-contact-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: #e0e0e0;
  transform: translateX(-50%);
}

.new-contact-form-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.new-contact-info-title {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.new-contact-form-title {
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  text-transform: uppercase;
  line-height: 1.2;
}

.new-contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.new-contact-label {
  display: block;
  margin-bottom: 0;
  position: relative;
}

.new-contact-input {
  width: 100%;
  padding: 0 0 12px 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  background: transparent;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  color: #222;
}

.new-contact-input:focus {
  outline: none;
  border-bottom-color: #007ad6;
}

.new-contact-input::placeholder {
  color: #999;
  font-weight: 400;
}

.new-contact-textarea {
  resize: vertical;
  min-height: 80px;
  border-bottom: 1px solid #e0e0e0;
}

.new-phone-input-wrapper {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  align-items: center;
  padding-bottom: 12px;
}

.new-phone-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding-right: 16px;
  border-right: 1px solid #e0e0e0;
  margin-right: 16px;
  user-select: none;
}

.new-phone-flag {
  font-size: 16px;
  line-height: 1;
}

.new-phone-code {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.new-phone-arrow {
  margin-left: 4px;
}

/* Hide original intl-tel-input dropdown */
.iti {
  width: 100%;
}

.iti__selected-flag {
  display: none !important;
}

.iti__country-list {
  z-index: 1000;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.iti__country {
  padding: 8px 12px;
  font-size: 14px;
}

.iti__country:hover {
  background-color: #f5f5f5;
}

.iti__country.iti__highlight {
  background-color: #007ad6;
}

.new-phone-input {
  border: none;
  flex: 1;
  padding: 0;
  background: transparent;
}

.new-phone-input:focus {
  border: none;
  outline: none;
}

.new-contact-btn-submit {
  background: #007ad6;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.new-contact-btn-submit:hover {
  background: #005fa3;
}

.new-contact-info-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-left: 40px;
}

.new-ceo-card {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.new-ceo-image {
  width: 120px;
  height: 120px;
  border-radius: 0;
  overflow: hidden;
  background: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.new-ceo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-ceo-info {
  flex: 1;
}

.new-ceo-name {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.new-ceo-position {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.new-contact-actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.new-contact-action-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.new-contact-action-title {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

.new-contact-action-btn {
  display: inline-block;
  padding: 16px 24px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  text-align: left;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e0e0e0;
}

.new-contact-action-btn:hover {
  background: rgb(0 0 0);
  color: white;
  text-decoration: none;
}


.new-contact-desc-title {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.new-contact-desc-text {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Responsive styles for new contact form */
@media (max-width: 1440px) {
  .new-contact-section {
    padding: 50px 40px;
    gap: 60px;
  }
  
  .new-contact-form-block {
    padding-right: 30px;
  }
  
  .new-contact-info-block {
    padding-left: 30px;
  }
}

@media (max-width: 1023px) {
  .new-contact-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 50px;
  }
  
  .new-contact-section::before {
    display: none;
  }
  
  .new-contact-form-block {
    padding-right: 0;
    order: 2;
  }
  
  .new-contact-info-block {
    padding-left: 0;
    order: 1;
  }
  
  .new-contact-form-title {
    font-size: 32px;
  }
  
  .new-ceo-card {
    justify-content: center;
  }
  
  .new-ceo-name {
    font-size: 18px;
  }
  
  .new-ceo-position {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .new-contact-section {
    padding: 32px 16px;
    gap: 40px;
  }
  
  .new-contact-form-block {
    order: 2;
  }
  
  .new-contact-info-block {
    order: 1;
  }
  
  .new-contact-form-title {
    font-size: 28px;
  }
  
  .new-contact-form {
    gap: 24px;
  }
  
  .new-contact-input {
    font-size: 16px;
  }
  
  .new-phone-dropdown {
    padding-right: 12px;
    margin-right: 12px;
  }
  
  .new-ceo-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .new-ceo-image {
    width: 80px;
    height: 80px;
  }
  
  .new-contact-actions {
    gap: 20px;
  }
  
  .new-contact-action-group {
    gap: 10px;
  }
  
  .new-contact-desc-title {
    font-size: 14px;
  }
  
  .new-contact-desc-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .new-contact-section {
    padding: 24px 12px;
    gap: 32px;
  }
  
  .new-contact-form-block {
    order: 2;
  }
  
  .new-contact-info-block {
    order: 1;
  }
  
  .new-contact-form-title {
    font-size: 24px;
  }
  
  .new-contact-info-title {
    font-size: 12px;
  }
  
  .new-ceo-name {
    font-size: 16px;
  }
  
  .new-ceo-position {
    font-size: 12px;
  }
  
  .new-contact-action-title {
    font-size: 14px;
  }
  
  .new-contact-action-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}


.new-contact-description{
  border-top: 1px solid #e0e0e0;
  padding-top: 45px;
}

@media (max-width: 1660px) {
  .tech-stack-container{
    max-width: 1400px;
  }
  .tech-category{
    grid-template-columns: 320px 1fr;
  }

}


@media (max-width: 1450px) {
  .tech-stack-container{
    max-width: 1200px;
  }
  .tech-category{
    grid-template-columns: 320px 1fr;
  }
  .tech-stack-grid{
    gap: 60px;  
  }
}

@media (max-width: 1250px) {
  .tech-stack-container{
    max-width: 1000px;
  }
  .tech-category{
    grid-template-columns: 230px 1fr;
  }
  .tech-category-title{
    font-size: 28px;
  }
}

@media (max-width: 1050px) {
  .tech-stack-container{
    max-width: 100%;
  }
  .tech-category{
    grid-template-columns: 230px 1fr;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Add this to align content to the left */
    text-align: left; /* Add this to align text to the left */
  }
  .tech-category-title{
    font-size: 28px;

  }
}



@media (max-width: 1166px) {
  .footer-middle-section{
    flex-direction: column;
  }
}
@media (max-width: 1790px){
.full-width-line {
  margin-left: calc(-50.5vw + 50%);
}
}

@media (max-width: 1450px){
  .full-width-line {
    margin-left: calc(-50.6vw + 50%);
  }
  }


  @media (max-width: 1250px){
    .full-width-line {
      margin-left: calc(-50.7vw + 50%);
    }
    .tech-stack-grid{
      gap:44px;
    }
  }

  @media (max-width: 1050px){

    .tech-stack-grid{
      gap:84px;
    }
  }


    
  @media (max-width: 1000px){
    .full-width-line {
      margin-left: calc(-50.8vw + 50%);
    }
    }

    @media (max-width: 1000px){
      .full-width-line {
        margin-left: calc(-51.5vw + 50%);
      }
      }

       

      
  @media (max-width: 1214px){
    .new-contact-actions {
      flex-direction: column;
    }
    }
    

.footer-newsletter{
  width: 100%;
}

.technologies-item-items-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  gap: 30px 0
}


@media(min-width: 768px) {
  .technologies-item-items-list {
      margin-left:-24px;
      margin-top: 20px;
      gap: 0
  }
}

@media(min-width: 1025px) {
  .technologies-item-items-list {
      margin-top:0;
      margin-left: 0;
      padding-left: 0;
  }
}



.technologies-item-items-item {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center
}

.technologies-item-items-item figure {
  width: 50px;
  height: 50px;
  line-height: 0
}

.technologies-item-items-item figure svg,.technologies-item-items-item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

@media(min-width: 768px) {
  .technologies-item-items-item {
      flex-basis:14.2857142857%;
      padding: 15px 0
  }
}

@media(min-width: 1025px) {
  .technologies-item-items-item {
      flex-basis:12.5%
  }
}

.ul{
  padding-inline-start: 0px;
}

.technologies-item-items-item figure{
  width: 50px;
  height: 50px;
  line-height: 0;
}

.technologies-item-items-item-title {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}


figure, li, ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
}

.technologies .cf-title {
  font-size: 20px;
  line-height: 18px;
  position: relative;
  display: inline-block;
  padding-right: 30px
}

@media(min-width: 768px) {
  .technologies .cf-title {
      font-size:32px;
      line-height: 143.75%;
      letter-spacing: .64px
  }
}

/* Privacy Policy Styles */
.privacy-policy-section {
  padding: 120px 0 80px 0;
  background: #ffffff;
}

.privacy-policy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy-title {
  font-size: 48px;
  font-weight: 700;
  color: #20212e;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.2;
}

.privacy-policy-content {
  background: transparent;
  border-radius: 12px;
  padding: 60px;
  line-height: 1.8;
}

.privacy-policy-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #20212e;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #0094ff;
}

.privacy-policy-content h2:first-child {
  margin-top: 0;
}

.privacy-policy-content p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 20px;
  text-align: justify;
}

.privacy-policy-content ul {
  margin: 20px 0;
  padding-left: 30px;

}

.privacy-policy-content li {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 10px;
  line-height: 1.6;
  list-style-type: disc;
}

.privacy-policy-content strong {
  color: #20212e;
  font-weight: 600;
}

.privacy-policy-content a {
  color: #0094ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
  color: #007ad6;
  text-decoration: underline;
}

/* Specific styles for privacy policy page */
.privacy-policy-section .team-title {
  margin-bottom: 0;
}



@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 100px 0 60px 0;
  }
  
  .privacy-policy-container {
    padding: 0 15px;
  }
  
  .privacy-policy-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .privacy-policy-content {
    padding: 40px 30px;
  }
  
  .privacy-policy-content h2 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }
  
  .privacy-policy-content p,
  .privacy-policy-content li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-policy-title {
    font-size: 28px;
  }
  
  .privacy-policy-content {
    padding: 30px 20px;
  }
  
  .privacy-policy-content h2 {
    font-size: 18px;
  }
  
  .privacy-policy-content p,
  .privacy-policy-content li {
    font-size: 14px;
  }
}


related-services+section:not(.dark) {
  border-top: 0 !important
}

.related-services>.container:not(.section-header .container) {
  padding: 0 !important
}

@media(max-width: 767px) {
  .related-services-link {
      display:none
  }
}

.related-services-item-container {
  text-decoration: none
}

.related-services-mobile-link {
  display: flex;
  justify-content: center;
  padding: 20px 0
}

@media(min-width: 768px) {
  .related-services-mobile-link {
      display:none
  }
}

@media(min-width: 768px) {
  .related-services-list {
      border-bottom:1px solid #0c081e
  }
}

.related-services-list .swiper-button-next {
  display: none
}

@media(min-width: 768px) {
  .related-services-list .swiper-button-next {
      display:flex;
      position: absolute;
      z-index: 10;
      top: 184px;
      right: 24px
  }
}

@media(min-width: 1025px) {
  .related-services-list .swiper-button-next {
      right:35px
  }
}

@media(min-width: 1370px) {
  .related-services-list .swiper-button-next {
      right:91px
  }
}

.related-services-list .swiper-button-prev {
  display: none
}

@media(min-width: 768px) {
  .related-services-list .swiper-button-prev {
      display:flex;
      position: absolute;
      z-index: 10;
      top: 184px;
      left: 24px
  }
}

@media(min-width: 1025px) {
  .related-services-list .swiper-button-prev {
      left:35px
  }
}

@media(min-width: 1370px) {
  .related-services-list .swiper-button-prev {
      left:91px
  }
}

@media(min-width: 768px) {
  .related-services-list-mobile {
      display:none
  }
}

.related-services-item-title {
  color: #0c081e;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding-top: 18px;
  padding-bottom: 19px;
  text-decoration: none;
  border-top: 1px solid #0c081e;
  transition: all .25s ease-in-out;
  border-bottom: 1px solid #0c081e
}

@media(min-width: 768px) {
  .related-services-item-title {
      border-top:0;
      border-bottom: 0;
      font-size: 24px;
      line-height: 30px;
      padding-top: 23px;
      padding-bottom: 23px
  }
}

@media(min-width: 768px) {
  .related-services .swiper-slide {
      width:480px;
      height: auto
  }

  .related-services .swiper-slide:not(:nth-last-of-type(1)) {
      border-right: 1px solid #0c081e
  }
}

@media(hover: hover)and (pointer: fine) {
  .related-services .swiper-slide:hover .related-services-item-link {
      opacity:1
  }

  .related-services .swiper-slide:hover .related-services-item-title {
      background-color: #fed936
  }

  .related-services .swiper-slide:hover .related-services-item-image:not(.with-video) figure img:first-child {
      opacity: 0
  }

  .related-services .swiper-slide:hover .related-services-item-image:not(.with-video) figure img:last-child {
      opacity: 1
  }
}

.related-services-item-image {
  position: relative;
  border-bottom: 1px solid #0c081e
}

.related-services-item-image figure {
  aspect-ratio: 375/327;
  line-height: 0
}

@media(min-width: 768px) {
  .related-services-item-image figure {
      aspect-ratio:479/418;
      max-height: 418px
  }
}

.related-services-item-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity .25s ease-in-out
}

.related-services-item-image figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity .25s ease-in-out;
  opacity: 0
}

.related-services-item-image:not(.with-video) figure img:last-child {
  opacity: 0
}

.related-services-item-link {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity .25s ease-in-out
}

@media(min-width: 1025px) {
  .related-services-item-link {
      opacity:0
  }
}

.dark .related-services-item-title {
  color: #f9f9f9;
  border-color: #f9f9f9
}

@media(min-width: 768px) {
  .dark .related-services-list {
      border-color:#f9f9f9
  }
}

.dark.related-services .swiper-slide {
  border-color: #f9f9f9
}

@media(hover: hover)and (pointer: fine) {
  .dark.related-services .swiper-slide:hover .related-services-item-title {
      color:#0c081e
  }
}

.technologies.dark .technologies-item:not(:last-child)::before,.technologies.dark .technologies-item:not(:last-child)::after {
  background-color: #f9f9f9
}

.technologies .cf-title {
  font-size: 20px;
  line-height: 18px;
  position: relative;
  display: inline-block;
  padding-right: 30px
}

@media(min-width: 768px) {
  .technologies .cf-title {
      font-size:20px;
      font-weight: 700;
      line-height: 143.75%;
      letter-spacing: .64px
  }
}

.technologies-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px
}

@media(min-width: 430px) {
  .technologies-list {
      margin:0 -20px
  }
}

@media(min-width: 768px) {
  .technologies-list {
      margin:0
  }
}

.technologies-item {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  padding: 20px 0
}

@media(min-width: 768px) {
  .technologies-item {
      padding:18px 0
  }
}

@media(min-width: 1025px) {
  .technologies-item {
      flex-wrap:nowrap
  }
}

.technologies-item:not(:last-child) {
  position: relative;
}

.technologies-item:not(:last-child)::before {
  content: "";
  background-color: #0c081e;
  position: absolute;
  height: 1px;
  width: 100vw;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: #e0e0e0;
  margin-left: calc(-50.4vw + 50%);
}

@media(max-width: 1790px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-50.5vw + 50%);
  }
}

@media(max-width: 1450px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-50.6vw + 50%);
  }
}

@media(max-width: 1250px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-50.7vw + 50%);
  }
}



@media(max-width: 1050px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-50.8vw + 50%);
  }
}
@media(max-width: 900px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-50.9vw + 50%);
  }
}
@media(max-width: 800px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-51vw + 50%);
  }
}
@media(max-width: 700px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-51.1vw + 50%);
  }
}

@media(max-width: 650px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-51.3vw + 50%);
  }
}
@media(max-width: 600px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-51.4vw + 50%);
  }
}

@media(max-width: 550px){
  .technologies-item:not(:last-child)::before{
    margin-left: calc(-51.6vw + 50%);
  }
}


.technologies-item:not(:last-child)::after {
  content: "";
  background-color: #0c081e;
  position: absolute;
  height: 1px;
  width: 100vw;
  right: 100%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: #e0e0e0;
  margin-left: calc(-50.4vw + 50%);
}

.technologies-item-title {
  padding: 0 12px
}

@media(min-width: 430px) {
  .technologies-item-title {
      padding:0 20px
  }
}

@media(min-width: 768px) {
  .technologies-item-title {
      padding:0
  }
}

@media(min-width: 1025px) {
  .technologies-item-title {
      min-width:417px
  }
}

.technologies-item-items-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  gap: 30px 0;
}

@media(min-width: 768px) {
  .technologies-item-items-list {
      margin-left:-24px;
      margin-top: 20px;
      gap: 0
  }
}

@media(min-width: 1025px) {
  .technologies-item-items-list {
      margin-top:0;
      margin-left: 0
  }
}

.technologies-item-items-item {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.technologies-item-items-item figure {
  width: 50px;
  height: 50px;
  line-height: 0;
}

.technologies-item-items-item figure svg,.technologies-item-items-item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media(min-width: 768px) {
  .technologies-item-items-item {
      flex-basis:14.2857142857%;
      padding: 15px 0;
  }
}

@media(min-width: 1025px) {
  .technologies-item-items-item {
      flex-basis:12.5%;
  }
}

.technologies-item-items-item-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}

.archive-hero-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media(min-width: 768px) {
  .archive-hero-section {
      padding-top:40px;
      padding-bottom: 64px;
  }
}

@media(min-width: 1025px) {
  .archive-hero-section {
      padding-top:48px;
      padding-bottom: 48px;
      min-height: 356px;
  }
}

.archive-hero-section .hero-section--badge {
  top: 0px;
  right: 0;
  opacity: 0;
}

@media(min-width: 1025px) {
  .archive-hero-section .hero-section--badge {
      opacity:1;
  }
}

.archive-hero-section-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media(min-width: 768px) {
  .archive-hero-section-container {
      gap:20px;
  }
}

@media(min-width: 1025px) {
  .archive-hero-section-container {
      padding-right:125px;
  }
}

@media(min-width: 768px) {
  .archive-hero-section-text {
      max-width:754px;  
  }

  .archive-hero-section-text.w-medium {
      max-width: 870px;
  }

  .archive-hero-section-text.w-large {
      max-width: 1047px;
  }
}

.archive-hero-section-text p {
  font-size: 16px;
  line-height: 20px;
}

@media(min-width: 768px) {
  .archive-hero-section-text p {
      font-size:20px;
      line-height: 24px;
  }
}

@media(min-width: 1025px) {
  .archive-hero-section-text p {
      font-size:24px;
      line-height: 30px;
  }
}

.featured-projects-section {
  overflow: hidden;
}

.featured-projects-section:not(.dark)+section:not(.dark) {
  border-top: 0 !important;
}

.featured-projects-section.dark+section.dark {
  border-top: 0 !important;
}

.featured-projects-section .swiper-slide {
  height: auto;
  position: relative;
}

@media(min-width: 768px) {
  .featured-projects-section .swiper-slide {
      width:443px;
  }
}

@media(min-width: 1370px) {
  .featured-projects-section .swiper-slide {
      width:593px;
  }
}

.featured-projects-section .swiper-slide:nth-last-of-type(1) .featured-projects-section--slider--item--info::after {
  content: none;
}

.featured-projects-section .swiper-slide:nth-child(n+4) {
  display: none;
}

@media(min-width: 768px) {
  .featured-projects-section .swiper-slide:nth-child(n+4) {
      display:block;
  }
}

.featured-projects-section--slider {
  position: relative;
  border-bottom: 1px solid #0c081e;
}

.featured-projects-section--slider--item {
  position: relative;
  height: 100%;
}

.featured-projects-section--slider--item a {
  height: 100%;
  color: inherit;
  display: block;
  text-decoration: none;
  background-color: #f9f9f9;
  transition: background-color .25s ease-in-out;
  position: relative;
}

.featured-projects-section--slider--item a .badges {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  right: 12px;
  transition: opacity .25s ease-in-out,visibility .25s ease-in-out;
}

@media(min-width: 430px) {
  .featured-projects-section--slider--item a .badges {
      left:20px;
      right: 20px;
  }
}

@media(min-width: 768px) {
  .featured-projects-section--slider--item a .badges {
      left:24px;
      right: 24px;
      top: 22px;
  }
}

@media(min-width: 1025px) {
  .featured-projects-section--slider--item a .badges {
      left:35px;
      right: 35px;
      top: 20px;
  }
}

@media(min-width: 1370px) {
  .featured-projects-section--slider--item a .badges {
      left:60px;
      right: 60px;
  }
}

.featured-projects-section--slider--item a .badges--list {
  display: flex;
  flex-wrap: wrap;
}

.featured-projects-section--slider--item a .badges--list>li {
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #0c081e;
  background: #f9f9f9;
  height: 44px;
  padding: 5px 11px;
  gap: 10px;
}

@media(min-width: 1280px) {
  .featured-projects-section--slider--item a .badges--list>li {
      padding:5px 14px;
  }
}

.featured-projects-section--slider--item a .badges--list>li div {
  width: 24px;
  height: 24px;
  line-height: 0;
}

.featured-projects-section--slider--item a .badges--list>li div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-projects-section--slider--item a .badges--list>li p {
  font-size: 14px;
  line-height: 128.571%;
  font-weight: 500;
  color: #0c081e;
}

@media(min-width: 1280px) {
  .featured-projects-section--slider--item a .badges--list>li p {
      font-size:16px;
      line-height: 125%;
  }
}

@media(hover: hover)and (pointer: fine) {
  .featured-projects-section--slider--item a:hover {
      background-color:#fed936;
      color: #0c081e;
  }

  .featured-projects-section--slider--item a:hover .badges {
      opacity: 0;
      visibility: hidden;
  }
}

.featured-projects-section--slider--item .preview {
  aspect-ratio: 593/518;
  position: relative;
}

.featured-projects-section--slider--item .preview img {
  z-index: 2;
  transition: opacity .25s ease-in-out;
}

.featured-projects-section--slider--item .preview img:nth-child(1) {
  z-index: 2;
}

.featured-projects-section--slider--item .preview img:nth-child(2) {
  z-index: 1;
}

.featured-projects-section--slider--item .preview video {
  z-index: 1;
  transition: opacity .25s ease-in-out;
  opacity: 0;
}

.featured-projects-section--slider--item .preview img,.featured-projects-section--slider--item .preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured-projects-section--slider--item--info {
  border-top: 1px solid #0c081e;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

@media(min-width: 430px) {
  .featured-projects-section--slider--item--info {
      padding:15px 20px;
  }
}

@media(min-width: 768px) {
  .featured-projects-section--slider--item--info {
      padding:20px 24px;
  }
}

@media(min-width: 1025px) {
  .featured-projects-section--slider--item--info {
      padding:20px 35px;
  }
}

@media(min-width: 1370px) {
  .featured-projects-section--slider--item--info {
      padding:20px 60px;
  }
}

.featured-projects-section--slider--item--info::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: 1px solid #0c081e;
  z-index: 5;
}

@media(min-width: 768px) {
  .featured-projects-section--slider--item--info::after {
      content:"";
  }
}

.featured-projects-section--slider--item--info .name {
  text-decoration: none;
}

@media(hover: hover)and (pointer: fine) {
  .featured-projects-section--slider--item--info .name:hover {
      text-decoration:underline;
  }
}

.featured-projects-section--slider--item--info .txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.featured-projects-section--slider--item--info .name,.featured-projects-section--slider--item--info .txt {
  transition: all .25s ease-in-out;
}

.featured-projects-section--slider--item--tags {
  width: 100%;
  padding-top: 10px;
  margin-top: auto; 
}

@media(min-width: 768px) {
  .featured-projects-section--slider--item--tags {
      padding-top:15px;
  }
}

.featured-projects-section--slider--item--tags--wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 10px;
}

.featured-projects-section--slider--item--tags--col-tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.featured-projects-section--slider--item--tags--col--btn {
  margin-left: auto;
  display: none;
}

@media(min-width: 1025px) {
  .featured-projects-section--slider--item--tags--col--btn {
      display:block;
  }
}

.featured-projects-section--slider .swiper-button-prev,.featured-projects-section--slider .swiper-button-next {
  position: absolute;
  top: var(--offset-top);
  z-index: 6;
  display: none;
  opacity: 0;
  transform: translateY(-50%);
}

@media(min-width: 768px) {
  .featured-projects-section--slider .swiper-button-prev,.featured-projects-section--slider .swiper-button-next {
      display:flex;
  }
}

.featured-projects-section--slider .swiper-button-prev {
  left: 12px;
}

@media(min-width: 490px) {
  .featured-projects-section--slider .swiper-button-prev {
      left:20px;
  }
}

@media(min-width: 768px) {
  .featured-projects-section--slider .swiper-button-prev {
      left:24px;
  }
}

@media(min-width: 1025px) {
  .featured-projects-section--slider .swiper-button-prev {
      left:35px;
  }
}

@media(min-width: 1370px) {
  .featured-projects-section--slider .swiper-button-prev {
      left:60px;
  }
}

.featured-projects-section--slider .swiper-button-next {
  right: 12px;
}

@media(min-width: 490px) {
  .featured-projects-section--slider .swiper-button-next {
      right:20px;
  }
}

@media(min-width: 768px) {
  .featured-projects-section--slider .swiper-button-next {
      right:24px;
  }
}

@media(min-width: 1025px) {
  .featured-projects-section--slider .swiper-button-next {
      right:35px;
  }
}

@media(min-width: 1370px) {
  .featured-projects-section--slider .swiper-button-next {
      right:60px;
  }
}

.featured-projects-section--btn {
  display: block;
  padding: 20px 0;
}

@media(min-width: 768px) {
  .featured-projects-section--btn {
      display:none;
  }
}

.dark .featured-projects-section .btn.btn-dark .btn-text {
  background-color: #f9f9f9;
  color: #0c081e;
  border-color: #0c081e;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-down-items span {
  border-color: #f9f9f9;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-left-items>span {
  border-color: #f9f9f9;
  background-color: #0c081e;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-left-items svg path[fill],.dark .featured-projects-section .btn.btn-dark .btn-drop-left-items svg rect[fill] {
  fill: #f9f9f9;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-left-items svg path[stroke],.dark .featured-projects-section .btn.btn-dark .btn-drop-left-items svg rect[stroke] {
  stroke: #f9f9f9;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-right-items>span {
  border-color: #f9f9f9;
  background-color: #0c081e;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-right-items svg path[fill],.dark .featured-projects-section .btn.btn-dark .btn-drop-right-items svg rect[fill] {
  fill: #f9f9f9;
}

.dark .featured-projects-section .btn.btn-dark .btn-drop-right-items svg path[stroke],.dark .featured-projects-section .btn.btn-dark .btn-drop-right-items svg rect[stroke] {
  stroke: #f9f9f9;
}

@media(hover: hover)and (pointer: fine) {
  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-text,.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-text {
      background-color:#fed936;
      color: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-down-items span,.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-down-items span {
      border-color: #fed936;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-left-items>span,.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-left-items>span {
      border-color: #0c081e;
      background-color: #fed936;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-left-items svg path[fill],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-left-items svg rect[fill],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-left-items svg path[fill],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-left-items svg rect[fill] {
      fill: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-left-items svg path[stroke],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-left-items svg rect[stroke],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-left-items svg path[stroke],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-left-items svg rect[stroke] {
      stroke: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-right-items>span,.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-right-items>span {
      border-color: #0c081e;
      background-color: #fed936;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-right-items svg path[fill],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-right-items svg rect[fill],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-right-items svg path[fill],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-right-items svg rect[fill] {
      fill: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-right-items svg path[stroke],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover):hover .btn-drop-right-items svg rect[stroke],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-right-items svg path[stroke],.dark .featured-projects-section .btn.btn-dark:not(.btn-hover-discoloured,.btn-close,.different-hover).hover .btn-drop-right-items svg rect[stroke] {
      stroke: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark.different-hover .btn-text:hover {
      background-color: #fed936;
      color: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark.different-hover .btn-drop-right-items:hover>span {
      border-color: #0c081e;
      background-color: #fed936;  
  }

  .dark .featured-projects-section .btn.btn-dark.different-hover .btn-drop-right-items:hover svg path[fill],.dark .featured-projects-section .btn.btn-dark.different-hover .btn-drop-right-items:hover svg rect[fill] {
      fill: #0c081e;
  }

  .dark .featured-projects-section .btn.btn-dark.different-hover .btn-drop-right-items:hover svg path[stroke],.dark .featured-projects-section .btn.btn-dark.different-hover .btn-drop-right-items:hover svg rect[stroke] {
      stroke: #0c081e;
  }
}

.dark .featured-projects-section--slider {
  border-color: #f9f9f9;
  background-color: #0c081e;
}

.dark .featured-projects-section--slider--item a {
  background-color: #0c081e;
}

@media(hover: hover)and (pointer: fine) {
  .dark .featured-projects-section--slider--item a:hover {
      background-color:#fed936;
      color: #0c081e;
  }

  .dark .featured-projects-section--slider--item a:hover .featured-projects-section--slider--item--tags--col--btn .btn-text {
      background-color: #0c081e;
      color: #f9f9f9;
  }

  .dark .featured-projects-section--slider--item a:hover .featured-projects-section--slider--item--tags--col--btn .btn-drop-down-items span {
      border-color: #0c081e;
  }
}

.dark .featured-projects-section--slider--item--info {
  border-color: #f9f9f9;
}

.dark .featured-projects-section--slider--item--info::after {
  border-color: #f9f9f9;
}

.faq {
  background: #f8f9fa;
}

.faq.dark .faq-item::before,.faq.dark .faq-item::after {
  background-color: #f9f9f9;  
}


.technologies-container{
  max-width: 1600px;
}


@media(max-width: 1650px){
.technologies-container{
  max-width: 1400px;
}
}


.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item-question-title {
  font-size: 16px;
  line-height: 20px;
}

@media(min-width: 768px) {
  .faq-item-question-title {
      font-size:20px;
      line-height: 24px;
  }
}

@media(min-width: 1025px) {
  .faq-item-question-title {
      font-size:20px;
      line-height: 30px;
      font-family: Montserrat, sans-serif;
      font-weight: 700;
  }
}

.faq-item:not(:last-child) {
  position: relative;
}

.faq-item:not(:last-child)::after {
  content: "";
  background-color: #0c081e;
  position: absolute;
  height: 1px;
  width: 100vw;
  left: calc(-50vw + 50%);
  bottom: 0;
}

.faq-item.active .faq-item-question-arrow {
  transform: rotate(180deg);
  background-color: #007bff;
  border-color: #007bff;
}

.faq-item.active .faq-item-question-arrow svg path {
  stroke: #ffffff;
}

.faq-item-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 50px;
  min-height: 70px;
}

.faq-item-question-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border: 1px solid #0c081e;
  transition: all .25s ease-in-out;
  width: 30px;
  height: 30px;
}

@media(min-width: 768px) {
  .faq-item-question-arrow {
      width:44px;
      height: 44px;
  }
}

@media(hover: hover)and (pointer: fine) {
  .faq-item-question:hover {
      cursor:pointer;
  }

  .faq-item-question:hover .faq-item-question-arrow {
      background-color: #0094ff;
  }
}

.faq-item-answer {
  max-width: 706px;
  padding: 0 24px 24px 24px;
  margin-top: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  max-height: 0;
}

.faq-item.active .faq-item-answer {
  display: block;
  opacity: 1;
  max-height: 500px;
  padding: 0 24px 24px 24px;
}



@media(min-width: 1025px) {
  .faq-item-answer {
      padding-right:60px;
      max-width: 1064px;
      margin-top: -15px;
      padding-bottom: 40px;
  }
}

.faq-item-answer ul,.faq-item-answer ol {
  padding-left: 15px;
}

.faq-item-answer ul li {
  list-style: disc;
}

.faq-item-answer ol li {
  list-style: decimal;
}

.faq-item-answer>* {
  font-size: 14px;
  line-height: 17px;
}

@media(min-width: 768px) {
  .faq-item-answer>* {
      font-size:18px;
      line-height: 30px;
      font-family: Montserrat, sans-serif;
      font-weight: 400;
  }
}

.seo {
  padding: 20px 0;
}

@media(min-width: 768px) {
  .seo {
      padding:35px 0;
  }
}

@media(min-width: 1025px) {
  .seo {
      padding:64px 0;
  }
}

.seo-preview-container {
  position: relative;
}

@media(min-width: 768px) {
  .seo-preview-container {
      padding-right:60px;
  }
}

.seo-preview-title {
  max-width: 1130px;
}

@media(max-width: 767px) {
  .seo-preview-title {
      padding-right:41px;
  }
}

/* Events page styles */
.events-language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.events-language-switcher .lang {
  background: #000000;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 50px;
  text-align: center;
}

.events-language-switcher .lang:hover {
  background: rgba(0, 148, 255, 0.9);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 148, 255, 0.3);
}

@media (max-width: 768px) {
  .events-language-switcher {
    top: 15px;
    right: 15px;
  }
  
  .events-language-switcher .lang {
    padding: 8px 18px;
    font-size: 12px;
    min-width: 45px;
  }
}

/* Стили ТОЛЬКО для страницы events - используем data-атрибут по URL */
body[data-page="events"] .main-section {
  min-height: 100vh !important;
  padding: 0 !important;
  background: transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

body[data-page="events"] .main-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  z-index: -1;
}

@media (max-width: 768px) {
  body[data-page="events"] .main-section {
    min-height: 100vh !important;
    padding: 0 !important;
  }
}