/* Header Styles */
/* header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1050;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      } */

header.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f59e0b !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-contact {
  background: white;
  border: 1px solid #e5e7eb;
  color: #333;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #f8f9fa;
  border-color: #f59e0b;
  color: #f59e0b;
}

.megamenu {
  position: absolute;
  top: 80%;
  left: 60%;
  transform: translateX(-50%) translateY(-10px);
  width: 900px;
  max-width: 95vw;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
  pointer-events: auto;
}

.nav-item.dropdown.position-static {
  position: static;
  /* Important for proper positioning */
}

.dropdown:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.megamenu-header {
  /* background: #f8f9fa; */
  /* padding: 20px 24px; */
  /* border-bottom: 1px solid #e5e7eb; */
  border-radius: 16px 16px 0 0;
}

.megamenu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.megamenu-body {
  padding: 24px;
}

.category-section {
  margin-bottom: 32px;
}

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

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.category-icon {
  width: 32px;
  height: 32px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.category-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.featured-list {
  display: block;
  /* or display: initial */
  flex-direction: column;
  /* optional, if display: flex was being inherited */
}

.product-list li {
  margin: 0;
}

.product-list a {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.product-list a:hover {
  color: #d97706;
  text-decoration: none;
}

.featured-sidebar {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.featured-sidebar h5 {
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

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

.featured-list li {
  margin-bottom: 12px;
}

.featured-list li:last-child {
  margin-bottom: 0;
}

.featured-list a {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.featured-list a:hover {
  color: #f59e0b;
  text-decoration: none;
}

/* Hero Section */
/* .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
        position: relative;
        overflow: hidden;
        padding-top: 100px;
      } */

/* .hero-content {
  position: relative;
  z-index: 10;
} */

/* .hero h1 { */
/* font-size: 5rem;
  font-weight: 700; */
/* color: #111827; */
/* margin-bottom: 1rem; */
/* } */

/* .hero h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #f59e0b;
        margin-bottom: 1.5rem;
      }

      .hero p {
        font-size: 1.25rem;
        color: #6b7280;
        margin-bottom: 2rem;
      } */

/* .btn-hero {
  background: #f59e0b;
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
} */

/* .btn-hero:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.hero-image {
  position: relative;
  z-index: 5;
} */

/* .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
} */

/* Responsive */
@media (max-width: 991px) {
  .megamenu {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
    margin-top: 0;
  }

  .dropdown:hover .megamenu {
    transform: none;
  }
  /* 
  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 2rem;
  } */
}

@media (max-width: 768px) {
  .megamenu {
    display: none !important;
  }

  /* .hero {
    padding-top: 80px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  } */
}

/* Animation for background elements */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  background: #3b82f6;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.bg-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  background: #10b981;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 50%;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-toggle::after {
  display: none;
}
/* 
.animation-section {
  padding: 40px 20px;
} */

.left-stack,
.right-sticky {
  flex: 1 1 500px;
  /* allow both to shrink but maintain min width */
  max-width: 600px;
  min-width: 300px;
}

.right-sticky {
  position: sticky;
  top: 80px;
}

/* .hero-img {
      box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    } */

/* Add this to your existing CSS */
body {
  position: relative;
}

/* Vertical lines container */
.vertical-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  display: none;
}

/* Individual lines */
.vertical-line {
  width: 1px;
  height: 100%;
  background-color: rgba(200, 200, 200, 0.3);
  /* Light grey with transparency */
  position: relative;
}

/* Left line */
.vertical-line:first-child {
  margin-left: 15%;
  /* Adjust this value to position the left line */
}

/* Right line */
.vertical-line:last-child {
  margin-right: 15%;
  /* Adjust this value to position the right line */
}

@media (min-width: 1200px) {
}

/* Hide lines on sections where they shouldn't appear */
/* .hero-section
  ~ section:not(.solutions-section):not(.animation-section)
  .vertical-lines {
  display: none;
} */

/* Adjust for mobile */
@media (max-width: 768px) {
  .vertical-lines {
    display: none;
    /* Hide on mobile if desired */
  }
}

.hero .vertical-lines {
  display: none !important;
}

/* For desktop */
/* @media (min-width: 1024px) {
      .quickstart-1 {
        margin-left: 15%;
      }

      .quickstart-2 {
        margin-left: 45%;
        margin-top: -100px;
      }

      .quickstart-3 {
        margin-left: 75%;
        margin-top: -200px;
      }
    } */

/* .about-section {
      min-height: 616px;
      position: relative;
      overflow: hidden;
    } */

/* .right {
      height: 100%;
      overflow-y: hidden;
    } */

/* Add these styles to your existing CSS */

/* Add to your existing CSS */
.customer-text {
  position: relative;
}

.read-more {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--amber-500);
  width: max-content;
  text-decoration: none;
}

.read-more.expanded .arrow-icon {
  transform: rotate(90deg);
}

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

.customer-left {
  /* width: 550px !important; */
}

.text-preview {
  font-size: 1.02rem;
  font-weight: normal;
}

.full-text {
  font-size: 1.02rem;
  font-weight: 300;
  font-family: "HelveticaNeueCyr", sans-serif;
  line-height: 24px;
}

.customer-text {
  font-size: 1.02rem;
  font-weight: 300;
  font-family: "HelveticaNeueCyr", sans-serif;
  line-height: 24px;
}

.gap-30 {
  gap: 3rem;
}

.ps-4-7 {
  padding-left: 2.8rem;
}

/* Solutions Megamenu Styles */
.solutions-megamenu {
  position: absolute;
  top: 80%;
  left: 58%;
  transform: translateX(-50%) translateY(-10px);
  width: 800px;
  max-width: 95vw;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
  pointer-events: auto;
}

.nav-item.dropdown.position-static {
  position: static;
}

.dropdown:hover .megamenu,
.dropdown:hover .solutions-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Solutions Megamenu Content */
.solutions-megamenu-body {
  padding: 0;
  display: flex;
  min-height: 400px;
}

.solutions-sidebar {
  width: 200px;
  background: #f8f9fa;
  border-radius: 16px 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.solutions-tab {
  padding: 16px 20px;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.solutions-tab:first-child {
  border-radius: 16px 0 0 0;
}

.solutions-tab.active {
  background: #f59e0b;
  color: white;
}

.solutions-tab:hover:not(.active) {
  background: #e5e7eb;
  color: #374151;
}

.solutions-content {
  flex: 1;
  padding: 24px;
}

.solutions-content h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.industry-item {
  margin-bottom: 12px;
}

.industry-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.industry-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-item li {
  margin-bottom: 6px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

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

/* Organization content (hidden by default) */
.organization-content {
  display: none;
}

.organization-content.active {
  display: block;
}

.organization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.organization-item {
  margin-bottom: 12px;
}

.organization-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.organization-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.organization-item li {
  margin-bottom: 6px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .megamenu,
  .solutions-megamenu {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
    margin-top: 0;
  }

  .dropdown:hover .megamenu,
  .dropdown:hover .solutions-megamenu {
    transform: none;
  }

  /* .hero h1 {
    font-size: 3rem;
  } */
}

@media (max-width: 768px) {
  .megamenu,
  .solutions-megamenu {
    display: none !important;
  }

  /* .hero {
    padding-top: 80px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  } */

  .solutions-megamenu-body {
    flex-direction: column;
  }

  .solutions-sidebar {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .industry-grid,
  .organization-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Style for clickable industry/organization headings */
.industry-link,
.organization-link {
  text-decoration: none;
  /* Remove underline */
  color: inherit;
  /* Inherit text color from parent */
  display: block;
  /* Ensure full clickable area */
}

.industry-link:hover h4,
.organization-link:hover h4 {
  color: #f59e0b;
  /* Change color on hover (blue) */
  text-decoration: underline;
  /* Optional: Add underline on hover */
}

/* Enable hover-based dropdowns */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* Remove any unwanted gap */
}

/* Smooth transitions */
.dropdown-menu {
  transition: all 0.3s ease;
}

/* Mobile behavior (optional) */
@media (max-width: 991.98px) {
  .nav-item.dropdown .dropdown-menu {
    display: none !important;
    /* Force click on mobile */
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: block !important;
  }
}

/* .solution-card {
      background-color: white;
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
      cursor: pointer;
      height: 100% !important;
      width: 100%;
    } */

@media (min-width: 1280px) and (max-height: 720px) {
  .vertical-line:first-child {
    margin-left: 8%;
  }

  /* .hero {
    padding: 5rem 4rem 5rem;
    min-height: 80vh;
    align-items: center;
  } */

  /* .left-stack {
  } */

  /* .flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    max-width: 1069px;
    margin: 0 auto;
    justify-content: end;
  } */

  /* .quickstart-section {
    padding-block: 8rem;
    max-width: 1240px;
  } */

  /* .quickstart-image {
    display: block;
    padding-left: 108px;
    width: 94%;
  }

  .quickstart-2 {
    bottom: 10rem;
    left: 4rem;
  }

  .quickstart-3 {
    bottom: 17rem;
    left: 4rem;
  }

  .point-imgs img {
    width: 38px;
  } */
}

@media (min-width: 1536px) and (max-height: 864px) {
  /* .customer-section {
    width: 100%;
    max-width: 1470px;
    margin-inline: auto;
    padding: 4rem 1.5rem;
  } */

  /* .quickstart-section {
    padding-block: 8rem;
    max-width: 1240px;
  } */

  /* .customer-section {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding: 4rem 2.5rem;
  } */

  .vertical-line:first-child {
    margin-left: 8%;
  }
}

@media (min-width: 1536px) and (max-height: 864px) {
  .vertical-line:first-child {
    margin-left: 9%;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .vertical-line:first-child {
    margin-left: 12%;
  }

  /* .hero {
    padding-inline: 7rem;
  } */

  /* .quickstart-image {
    display: block;
    padding-left: 34px;
    width: 102%;
  } */
  /* 
  .customer-section {
    width: 100%;
    max-width: 1250px;
    margin-inline: auto;
    padding: 4rem 2.5rem;
    padding-left: 74px;
  } */

  /* .partners-section {
    padding-inline: 12rem;
  } */

  /* .quickstart-3 {
    bottom: 18rem;
    left: 109px;
    position: relative;
  } */

  /* Right line */
  .vertical-line:last-child {
    margin-right: 16%;
    /* Adjust this value to position the right line */
  }

  /* .features {
    padding-inline: 14rem;
  } */

  /* .flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: end;
  } */
}

@media (min-width: 1600px) {
  .vertical-line:first-child {
    margin-left: 16%;
  }

  /* .hero {
    padding-inline: 2rem;
  }

  .features {
    padding-inline: 12rem;
  } */

  /* .flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: end;
  } */

  /* .quickstart-image {
    display: block;
    padding-left: 12px;
    width: 104%;
  } */
}

@media (min-width: 1366px) and (max-height: 768px) {
  .vertical-line:first-child {
    margin-left: 16%;
  }

  /* .hero {
    padding: 5rem 7.5rem 5rem;
    min-height: 80vh;
    align-items: center;
  } */

  /* .left-stack {
  } */

  /* .flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    max-width: 1069px;
    margin: 0 auto;
    justify-content: end;
  } */

  /* .quickstart-section {
    padding-block: 8rem;
    max-width: 1240px;
  }

  .quickstart-image {
    display: block;
    padding-left: 108px;
    width: 94%;
  }

  .quickstart-2 {
    bottom: 10rem;
    left: 78px;
  }

  .point-img img {
    width: 70px;
  }

  .point-imgs img {
    width: 46px;
  } */
}

/* .point-img img {
  width: 70px;
}

.point-imgs img {
  width: 46px;
} */

.btn-contact {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
  display: flex;
  align-items: center;
}

.btn-contact img {
  margin-left: 4px;
  margin-right: 0;
  padding: 0;
  vertical-align: middle;
  width: 1rem;
  height: auto;
}
