:root {
  /* Триадная цветовая схема */
  --primary-color: #3b6eca;
  --primary-dark: #2a56a3;
  --primary-light: #5a88dc;
  
  --secondary-color: #ca3b6e;
  --secondary-dark: #a32a56;
  --secondary-light: #dc5a88;
  
  --tertiary-color: #6eca3b;
  --tertiary-dark: #56a32a;
  --tertiary-light: #88dc5a;
  
  --dark-color: #222222;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  
  /* Текстовые цвета */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  /* Размеры */
  --header-height: 80px;
  --section-padding: 6rem 0;
  --card-border-radius: 10px;
  
  /* Тени */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Основные стили */
body {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--dark-color);
}

/* Общие стили кнопок */
.btn {
  position: relative;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(59, 110, 202, 0.3);
}

.btn-outline-light {
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline-light:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 15px 35px;
  font-size: 15px;
}

/* Секция заголовка */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.title-separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color), var(--tertiary-color));
  margin-bottom: 2rem;
}

/* Общие стили секций */
section {
  padding: var(--section-padding);
  position: relative;
}

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

.bg-white {
  background-color: white;
}

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

/* Стили хедера */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar {
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-color);
}

.nav-link:hover::after, .nav-link:focus::after {
  width: 70%;
}

/* Hero секция */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-content {
  padding: 2rem;
  z-index: 1;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: var(--text-shadow);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: var(--text-shadow);
}

.hero-wave {
  z-index: 0;
  bottom: -1px;
}

/* About секция */
.experience-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(59, 110, 202, 0.3);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(59, 110, 202, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
  background-color: var(--primary-color);
}

.animated-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.feature-card:hover .animated-icon {
  filter: brightness(0) invert(1);
}

/* Mission секция */
.mission-image-container {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.values-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  border-bottom-left-radius: var(--card-border-radius);
  border-bottom-right-radius: var(--card-border-radius);
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}

.progress-bar {
  background: linear-gradient(to right, var(--tertiary-color), var(--primary-color));
  border-radius: 4px;
  position: relative;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--light-gray);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(59, 110, 202, 0.2);
}

.timeline-content {
  padding-bottom: 20px;
}

/* Accolades секция */
.accolade-card {
  border: none;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accolade-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.accolade-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-content h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Clientele секция */
.client-sectors {
  margin-top: 3rem;
}

.sector-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(59, 110, 202, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.sector-icon:hover {
  background-color: var(--primary-color);
}

.sector-icon:hover .animated-icon {
  filter: brightness(0) invert(1);
}

.testimonial-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--hover-shadow);
}

.testimonial-header {
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 3px solid var(--light-gray);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Research секция */
.highlight-item {
  margin-bottom: 2rem;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(59, 110, 202, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  background-color: var(--primary-color);
}

.highlight-item:hover .animated-icon {
  filter: brightness(0) invert(1);
}

/* Resources секция */
.resource-card {
  border: none;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.resource-card .btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.resource-card:hover .btn {
  background-color: var(--primary-color);
  color: white;
}

/* Contact секция */
.contact-info {
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  height: 100%;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h5 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
}

.form-control, .form-select {
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(59, 110, 202, 0.1);
  border-color: var(--primary-color);
}

.form-floating > .form-control, .form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1.5rem 1rem;
}

.form-floating > textarea.form-control {
  height: auto;
}

.form-floating > label {
  padding: 1rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

footer h4, footer h5 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

footer p, footer ul li {
  color: rgba(255, 255, 255, 0.7);
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--text-light);
  text-decoration: none;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-light) !important;
}

hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: 2rem;
}

/* Privacy & Terms pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 5rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
    right: 20px;
  }
  
  .experience-badge .number {
    font-size: 1.5rem;
  }
  
  .experience-badge .text {
    font-size: 0.6rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .experience-badge {
    width: 80px;
    height: 80px;
    right: 15px;
    bottom: -15px;
  }
  
  .experience-badge .number {
    font-size: 1.2rem;
  }
  
  .experience-badge .text {
    font-size: 0.5rem;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-marker {
    left: -30px;
    width: 15px;
    height: 15px;
  }
}

/* Animation styles */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos='fade-up'] {
  transform: translateY(50px);
}

[data-aos='fade-up'].aos-animate {
  transform: translateY(0);
}

[data-aos='fade-right'] {
  transform: translateX(-50px);
}

[data-aos='fade-right'].aos-animate {
  transform: translateX(0);
}

[data-aos='fade-left'] {
  transform: translateX(50px);
}

[data-aos='fade-left'].aos-animate {
  transform: translateX(0);
}

[data-aos='zoom-in'] {
  transform: scale(0.8);
}

[data-aos='zoom-in'].aos-animate {
  transform: scale(1);
}

/* Animated icons */
.animated-icon.financial-advisor {
  background-image: url('image/icon-financial-advisor.jpg');
}

.animated-icon.market-analysis {
  background-image: url('image/icon-market-analysis.jpg');
}

.animated-icon.agribusiness {
  background-image: url('image/icon-agribusiness.jpg');
}

.animated-icon.technology {
  background-image: url('image/icon-technology.jpg');
}

.animated-icon.manufacturing {
  background-image: url('image/icon-manufacturing.jpg');
}

.animated-icon.retail {
  background-image: url('image/icon-retail.jpg');
}

.animated-icon.inflation-analysis {
  background-image: url('image/icon-inflation-analysis.jpg');
}

.animated-icon.forex-trends {
  background-image: url('image/icon-forex-trends.jpg');
}

.animated-icon.sector-analysis {
  background-image: url('image/icon-sector-analysis.jpg');
}

.animated-icon.location {
  background-image: url('image/icon-location.jpg');
}

.animated-icon.phone {
  background-image: url('image/icon-phone.jpg');
}

.animated-icon.email {
  background-image: url('image/icon-email.jpg');
}

.animated-icon.hours {
  background-image: url('image/icon-hours.jpg');
}

/* Morph animation for buttons */
@keyframes morph {
  0% {
    border-radius: 30px;
  }
  50% {
    border-radius: 8px;
  }
  100% {
    border-radius: 30px;
  }
}

.btn:hover {
  animation: morph 3s infinite ease-in-out;
}

/* Morph animation for images */
@keyframes image-morph {
  0% {
    border-radius: 10px;
  }
  50% {
    border-radius: 30px 10px 30px 10px;
  }
  100% {
    border-radius: 10px;
  }
}

.accolade-card:hover .card-image,
.resource-card:hover .card-image {
  animation: image-morph 3s infinite ease-in-out;
}

/* Read more links */
.read-more {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  margin-left: 10px;
}

/* Image containers */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}
.navbar-toggler-icon{
  display: none;
}