body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    /* Fallback to Arial if Montserrat is unavailable */
}
.mobile-menu {
    position: fixed;
    top: 102px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}
header {
    position: relative;
    top: 0;
    width: 100%;
    background-color: rgb(0, 23, 61);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
}

/* Mobile menu toggle styles */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }

    .nav {
        display: none;
    }

    .language-selector {
        display: none;
    }
}

.logo {
    width: 100px;
    height: auto;
    align-items: center;

}

.logo img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    /* Makes the logo white */

}

.logo span {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 60px;
}

.nav-link {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;

}

.nav-link {
    text-decoration: none;
    /* Remove default underline */
    position: relative;
    /* Required for the pseudo-element */
    color: white;
    /* Ensure the default color is white */
}

.nav-link:hover {
    color: rgb(0, 123, 255);
    /* Change text color on hover */
    text-decoration: none;
    /* Ensure no default underline */
}

.nav-link::after {
    content: '';
    /* Empty content for the line */
    position: absolute;
    bottom: -2px;
    /* Position the line slightly below the text */
    left: 0;
    width: 0;
    height: 2px;
    /* Thickness of the line */
    background-color: rgb(0, 123, 255);
    /* Line color */
    transition: width 0.3s ease;
    /* Smooth animation */
}

.nav-link:hover::after {
    width: 100%;
    /* Expand the line on hover */
}

.nav-link:hover {
    color: rgb(0, 123, 255) !important;
    /* Override Bootstrap hover color */
}

.language-selector {
    position: relative;
}

.language-selector .burger-nav_cont {
    position: relative;
    cursor: pointer;
}

.language-selector .burger-nav_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 8px 16px;
    background: #FFFFFF;
    border-radius: 20px;
    width: 125px;
    height: 36px;
}

.language-selector .burger-nav_link img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.language-selector .burger-nav_link span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: rgba(0, 0, 0, 1);
}

.language-selector .burgerarrov {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 1);
    transition: transform 0.3s ease;
}

.language-selector .burger-nav_submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    z-index: 1000;
    min-width: 125px;
}

.language-selector .burger-nav_submenu a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.language-selector .burger-nav_submenu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-selector .burger-nav_submenu img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.language-selector .activediv .burgerarrov {
    transform: translateY(-50%) rotate(-90deg);
}

.white-logo {
    filter: brightness(0) invert(1);
    /* Makes the logo white */
}
.about-banner {
    position: relative;
    background-image: url('assets/images/img/aboutbanner.png');
    background-size: cover;
    background-position: center;
    height: 572px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: visible;
    animation: fadeIn 1.5s ease forwards;
    z-index: 0;
    /* Ensure banner is behind device images */
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: blur(2px) brightness(0.6);
    /* Stronger blur and darken */
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 572px;
    margin: 0 auto;
    margin-bottom: 48px;
    animation: fadeInUp 1.5s ease forwards;
}


.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: blur(2px) brightness(0.6);
    /* Stronger blur and darken */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 572px;
    margin: 0 auto;
    margin-bottom: 48px;
    animation: fadeInUp 1.5s ease forwards;
}

.main-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.demo {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    width: 200px;
    height: 60px;
    border-radius: 25px;
    background: linear-gradient(90deg, #24CFDD 0%, #2196F3 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 24px 6px #24CFDD, 0 0 48px 12px #2196F3;
    transition: background 0.3s, transform 0.3s ease;
    border: none;
}

.demo:hover {
    background: linear-gradient(90deg, #2196F3 0%, #24CFDD 100%);
    width: 230px;
    transform: scale(1.05);
}

.devices-center {
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    gap: 20px;
    z-index: 10;
    background: transparent;
    margin-top: -120px;
    justify-content: center;
    padding-top: 5rem;
}

/* Add a reset to remove default browser styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Improve header styles */
header {
    position: relative;
    top: 0;
    width: 100%;
    height: 102px;
    background-color: rgb(0, 23, 61);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 1000;
    /* Add padding for better spacing */
}

/* Improve main banner styles */
.main-banner {
    position: relative;
    height: 572px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: visible;
    animation: fadeIn 1.5s ease forwards;
}

/* Banner Slider Styles */
.banner-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}
.banner-slider .slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.banner-slider .slide.active {
  opacity: 1;
  z-index: 2;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(36, 207, 221, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow.left { left: 24px; }
.slider-arrow.right { right: 24px; }
.slider-arrow:hover { background: #2196F3; }

/* Improve device images styles */
.device-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 0 20px;
    /* Add padding for better spacing */
}
.custom-feature-section h2{
    left: 100px;
    position: relative;
}

.device-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align items to the bottom */
    gap: 32px;
    /* Add spacing between items */
}

.device-item {
    position: relative;
    width: 691.4683837890625px;
    height: 427.8460693359375px;
    z-index: 2;
    top: -110px;
    left: -146px;
}

.static-img {
    position: absolute;
    top: 54px;
    left: 105px;
    width: 100%;
    height: 100%;
    z-index: 3;
    max-width: 480.088287px;
    max-height: 252.922058px;
}

.device-item img {
    width: 100%;
    /* Ensure images are responsive */
    height: auto;
    background: none;
    /* Ensure no background color */
    border: none;
    /* Remove any borders */
    box-shadow: none;
    /* Remove shadows */
    user-select: none;
    /* Prevent image selection */
}

.desktop-img {
    max-width: 650px;
    /* Larger size for the laptop */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
}



.device-images::before {
    display: none;
}

.overlap-mobile {
    position: absolute;
    width: 233px;
    height: 349px;
    top: -67px;
    left: 580px;
    z-index: 3;
    /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(36, 207, 221, 0.12); */
    border-radius: 16px;
    /* background: white; */
    /* padding: 8px 0 0 0; */
    object-fit: cover;
}

.mobile-img-first {
    position: absolute;
    width: 233px;
    height: 349px;
    top: -67px;
    left: 373px;
    z-index: 10;
}

.statistics-section {
    background: #f7f8fa;
    padding: 60px 0 80px 0;
}

.statistics-section .lead {
    font-size: 2rem;
    color: #111;
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 0.01em;
}

.statistics-section .lead strong {
    font-weight: 700;
    color: #111;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 32px;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.10);
    width: 385px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    transform: translateY(0);
    padding: 0 24px;
}

.stat-label {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 1);

}

.stat-card:hover {
    box-shadow: 0 16px 32px rgba(36, 207, 221, 0.16), 0 4px 16px rgba(33, 150, 243, 0.12);
    transform: translateY(-4px) scale(1.03);
}

.stat-number {

    font-weight: 700;
    color: #fff;
    -webkit-text-stroke: 2px #2196f3;
    text-stroke: 2px #2196f3;
    text-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
    background: none;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.stat-label {
    font-size: 1rem;
    color: #888;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
}

.custom-feature-section,
.custom-feature-section-second {
    background: #f7fafd;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.custom-feature-section .feature-title,
.custom-feature-section-second .feature-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6c758a;
    margin-bottom: 2.5rem;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    left: 100px;
}

.custom-feature-section .polygon-container,
.custom-feature-section-second .polygon-container {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.custom-feature-section .laptop-img,
.custom-feature-section-second .laptop-img {
    position: relative;
    z-index: 2;
    max-width: 340px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}
.custom-feature-section-second .polygon-bg-front{
      width: 251px;
    height: 251px;
    top: -76px;
    transform: rotate(-180deg);
    position: absolute;
    left: 15px;
}
.custom-feature-section-second .polygon-bg-2 {
    width: 251px;
    height: 251px;
    top: -77px;
    transform: rotate(-180deg);
}
.custom-feature-section.second .polygon-bg-3 {
    width: 251px;
    height: 251px;
    top: -138px;
    transform: rotate(-180deg);
    position: relative;
    z-index: 1;
}
.custom-arrow {
    width: 150px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 50%;
    transition: background 0.2s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: none;
    padding: 0;
}

.custom-arrow-right:hover {
    background: radial-gradient(circle, #24CFDD 0%, #eafafe 70%, transparent 100%) !important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-arrow-left:hover {
    background: radial-gradient(circle, #24CFDD 0%, #eafafe 70%, transparent 100%) !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}



.custom-arrow-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.custom-arrow-left .custom-arrow-icon svg {
    transform: scaleX(-1);
}

.custom-arrow-right .custom-arrow-icon svg {
    transform: scaleX(-1);
}

.carousel-indicators [data-bs-target] {
    background-color: #22304a;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.3;
    margin: 0 6px;
    border: none;
    transition: opacity 0.2s;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: #22304a;
}


/* Slide title (e.g., Convenient Order Management) */
.feature-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left; /* Align text to the start (left) */
    margin-bottom: 46px;
}

/* Description and list */
.feature-content p,
.feature-content ul,
.feature-content ul li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #222;
  text-align: left;
  margin-bottom: 0.7em;
}

.feature-content ul {
  padding-left: 1.2em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-content ul li strong {
  font-weight: 700;
  color: #222;
}

/* Make arrows max left/right in slider area */
.slider-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.custom-arrow.custom-arrow-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.custom-arrow.custom-arrow-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.fancybox-slider {
  width: 100%;
}

/* --- Polygon Layering for Slider --- */
.polygon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.polygon-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
.polygon-bg-front {
    width: 251px;
    height: 251px;
    top: 149px;
    transform: rotate(-180deg);
    position: absolute;
    left: 55px;
}
.polygon-bg-2 {
    width: 251px;
    height: 251px;
    top: 16px;
    transform: rotate(-180deg);
}
.polygon-container .laptop-img {
  position: relative;
  z-index: 2;
}


.flip-x svg {
  transform: scaleX(-1);
}

.fancybox-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.fancybox-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22304a;
  opacity: 0.3;
  transition: opacity 0.2s, background 0.2s;
  cursor: pointer;
}
.fancybox-dot.active {
  opacity: 1;
  background: #22304a;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.feature-content ul {

  display: flex;
  flex-direction: column;
}
.back-office-feature-section {
    background: #f7fafd;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.back-office-feature-section .feature-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6c758a;
    margin-bottom: 2.5rem;
    text-align: left;
    text-transform: uppercase;
}

.back-office-feature-section .polygon-container {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.back-office-feature-section .laptop-img {
    position: relative;
    z-index: 2;
    max-width: 340px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}
.polygon-bg-front-second {
    width: 251px;
    height: 251px;
    top: 16px;
    transform: rotate(-180deg);
    position: absolute;
    left: 5px;
}
.polygon-bg-back {
    width: 251px;
    height: 251px;
    top: 180px;
    transform: rotate(-180deg);
    position: absolute;
    left: 148px;
}

.custom-arrow:focus,
.custom-arrow:active {
    outline: none;
    box-shadow: none;
    border: none;
}
.footer {
    background: #232629;
    color: #fff;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    z-index: 10;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 64px 0 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left-group {
    display: flex;
    align-items: flex-start;
    min-width: 370px;
    margin-right: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    margin-right: 0;
    gap: 24px;
}

.footer-logo img {
   width: 145.1605987548828px;
height: 114.86009216308594px;

    object-fit: contain;
    margin-bottom: 0;
}

.footer-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    max-width: 420px;
    margin: 0 0 0 0;
    padding: 0;
}

.footer-logo span {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    margin-left: 24px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    white-space: nowrap;
}

.footer-center {
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
    margin-right: 80px;
    padding-top: 0;
}

.footer-center h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 24px;
    margin-top: 0;
    color: #fff;
    text-align: left;
    width: 100%;
    border: none;
    padding: 0;
}

.footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.footer-contact-item {
    margin-bottom: 18px;
    border-bottom: 1px solid #444;
    padding-bottom: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    max-width: 249px;
    font-size: 16px;
    color: #fff;
}

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

.footer-contact-item span,
.footer-contact-item a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #24CFDD;
    text-decoration: underline;
}

.footer-right {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
}

.footer-right h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 24px;
    margin-top: 0;
    color: #fff;
    text-align: left;
    width: 100%;
    border: none;
    padding: 0;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-top: 0;
    justify-content: flex-start;
    width: 100%;
}

.footer-socials img {
    width: 44px;
    height: 44px;
    vertical-align: middle;
    margin-top: 0;
    background: none;
    border-radius: 50%;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    color: #bdbdbd;
    font-size: 13px;
    padding: 32px 0 18px 0;
    border-top: none;
    margin-top: 0;
    letter-spacing: 0.02em;
    background: #232629;
    width: 100%;
}

/* --- About Section Hexagon Background --- */
.about-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}



.about-section .container {
  position: relative;
  z-index: 1;
}

/* --- About Section Heading --- */
.about-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(0, 23, 60, 0.5); /* #00173C80 */
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

/* --- About Section Paragraphs --- */
.about-section p {
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0%;
  margin-bottom: 1.1rem;
  text-align: left;
}

/* --- Laptop Image --- */
.about-section img[alt="Syrve Laptop Screenshot"] {
  width: 673.1707153320312px;
  height: 100%;
  max-width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --- Phone Image --- */
.about-phone-custom {
  width: 350px;
  height: 205px;
  max-width: 100%;
  transform: rotate(-14.67deg);
  position: relative;
  right: -30px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* --- Phone image overlapping footer --- */
.about-phone-footer-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 2;
}
.about-phone-footer-img {
  position: absolute;
  left: 80%;
  transform: translateX(-56%) rotate(-14.67deg);
  width: 100%;
  height: auto;
  bottom: -120px;
  z-index: 3;
  max-width: 600px;
}

/* --- About Section Polygon Background Images --- */
.about-section .position-relative {
  min-height: 420px;
}
.about-section img[alt="polygon"] {
    pointer-events: none;
    user-select: none;
    position: absolute;
    z-index: q;
    width: 100%;
    height: 100%;
    /* top: -60px; */
    transform: rotate(0deg);
    margin: 0 auto;
    display: block;
}
.about-section .polygon-bg-1 {
    width: 321px;
    height: 321px;
    top: 6%;
    left: 5%;
    z-index: 1;
    opacity: 0.7;
    transform: rotate(-180deg);
}
.about-section .polygon-bg-2 {
    width: 280px;
    height: 280px;
    top: 18%;
    left: 55%;
    z-index: 2;
    opacity: 0.6;
    transform: rotate(-180deg);
}
.about-section .polygon-bg-3 {
    width: 260px;
    height: 260px;
    top: 38%;
    left: 30%;
    z-index: 3;
    opacity: 0.5;
    transform: rotate(-180deg);
}
.about-section .polygon-bg-4 {
    width: 200px;
    height: 200px;
    top: 55%;
    left: 10%;
    z-index: 2;
    opacity: 0.4;
    transform: rotate(-180deg);
}
.about-section .polygon-bg-5 {
    width: 180px;
    height: 180px;
    top: 65%;
    left: 60%;
    z-index: 1;
    opacity: 0.3;
    transform: rotate(-180deg);
}
.about-section img[alt="Syrve Laptop Screenshot"] {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
  display: block;
}

.about-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #6C758A;
  letter-spacing: 0.5px;
  text-align: left;
  margin-bottom: 24px;
}

/* --- Services/Pricing Section Styles --- */
.pricing-section {
  background: #fff;
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.pricing-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #6c758a;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.pricing-section p {
  max-width: 700px;
  margin: 0 auto 48px auto;
  font-size: 20px;
  color: #6c758a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.pricing-row {
  gap: 32px;
  display: flex;
  justify-content: center;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
  width: 385px;
  height: 252px;
  padding: 20px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}
.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
}
.pricing-price span {
  font-size: 36px;
}
.pricing-vat {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}
.pricing-card .btn-info {
  border-radius: 20px;
  width: 100px;
  font-weight: 600;
}
.pricing-section .polygon-left {
  position: absolute;
  left: 0;
  top: 40px;
  width: 180px;
  opacity: 0.12;
  z-index: 0;
}
.pricing-section .polygon-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  opacity: 0.12;
  z-index: 0;
}
@media (max-width: 991px) {
  .about-section h2 { font-size: 36px; }
  .about-section p { font-size: 18px; }
  .about-section img[alt="polygon"] { width: 180px !important; }
  .about-section img[alt="Syrve Laptop Screenshot"] { max-width: 90vw; }
  .pricing-section h2 { font-size: 36px; }
  .pricing-section p { font-size: 18px; }
  .pricing-row { flex-direction: column; gap: 0; }
  .pricing-card { min-width: unset; width: 100%; }
}

/* Discount Licenses Section */
.discount-licenses-section {
  width: 100%;
  background: #fff;
  padding: 32px 0 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.discount-licenses-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.discount-licenses-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #0a1e44;
  margin-bottom: 18px;
}
.discount-licenses-vat {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0a1e44;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .discount-licenses-title { font-size: 28px; }
  .discount-licenses-vat { font-size: 16px; }
}

/* Contact Section Styles */
.contact-section {
    background: #f7fafd;
    min-height: 80vh;
    padding: 60px 0 40px 0;
    position: relative;
}
.contact-section h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: #6c758a;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.contact-info-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
    padding: 32px 28px;
    min-width: 260px;
    max-width: 320px;
    margin-bottom: 24px;
}
.contact-info-box .contact-label {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}
.contact-info-box .contact-value {
    font-size: 17px;
    margin-bottom: 18px;
}
.contact-info-box a {
    color: #2196f3;
    text-decoration: none;
}
.contact-map-box {
    width: 791px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
    min-width: 320px;
}
.contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 30px;
}
.contact-demo-btn {
    width: 260px;
    height: 60px;
    font-size: 20px;
    display: inline-block;
    margin-top: 40px;
}
@media (max-width: 1200px) {
    .contact-map-box {
        width: 100%;
        height: 320px;
    }
    .contact-row {
        flex-direction: column;
        gap: 32px;
    }
}

/* --- Integrations Section --- */
.integrations-section {
  background: #f7f8fa;
  padding: 60px 0 40px 0;
}
.integrations-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: #6c758a;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
.integrations-section p {
  max-width: 700px;
  margin: 0 auto 2.5em auto;
  font-size: 18px;
  color: #6c758a;
  font-family: 'Montserrat', Arial, sans-serif;
}
.integration-logos-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
  padding: 40px 24px 32px 24px;
  display: inline-block;
  min-width: 80%;
  max-width: 1193px;
  margin-bottom: 36px;
}
.integration-logos-box .row {
  gap: 0;
}
.integration-logos-box .col-4 {
  margin-bottom: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.integration-logos-box img {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}
.integration-logos-box img[alt="TBC Bank"] {
  max-width: 110px;
  max-height: 36px;
}
.integration-logos-box img[alt="Wolt"] {
  max-width: 110px;
}
.integration-logos-box img[alt="Glovo"] {
  max-width: 90px;
}
.integration-logos-box img[alt="Bolt"] {
  max-width: 90px;
}
.integration-logos-box img[alt="Tipse"] {
  max-width: 90px;
}
.integration-logos-box img[alt="Uds"] {
  max-width: 90px;
}
.integration-logos-box img[alt="GetOrder"] {
  max-width: 110px;
  max-height: 32px;
}
.integrations-section .demo {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 0;
  width: 220px;
  height: 56px;
  border-radius: 25px;
  background: linear-gradient(90deg, #24CFDD 0%, #2196F3 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 24px 6px #24CFDD, 0 0 48px 12px #2196F3;
  transition: background 0.3s, transform 0.3s ease;
  border: none;
}
.integrations-section .demo:hover {
  background: linear-gradient(90deg, #2196F3 0%, #24CFDD 100%);
  width: 230px;
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .integrations-section h1 {
    font-size: 48px;
  }
  .integration-logos-box {
    min-width: 100%;
    padding: 24px 4px 16px 4px;
  }
  .integration-logos-box .col-4 {
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .integrations-section h1 {
    font-size: 32px;
  }
  .integration-logos-box {
    padding: 12px 0 8px 0;
  }
}

/* --- Pricing Features Comparison Table --- */
.pricing-features-row {
  margin-top: 40px;
}
.pricing-features-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.06);
  padding: 28px 18px 18px 18px;
  min-height: 100%;
  transition: box-shadow 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.pricing-features-card-active {
  border: 2px solid #24CFDD;
  box-shadow: 0 8px 32px 0 rgba(36, 207, 221, 0.10);
}
.pricing-features-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #22304a;
  margin-bottom: 18px;
  text-align: center;
}
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #22304a;
}
.pricing-features-list li {
  margin-bottom: 10px;
  text-align: left;
  line-height: 1.5;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-features-list b {
  font-weight: 600;
  color: #22304a;
}
@media (max-width: 991px) {
  .pricing-features-title {
    font-size: 18px;
  }
  .pricing-features-card {
    padding: 18px 8px 8px 8px;
  }
}
@media (max-width: 600px) {
  .pricing-features-title {
    font-size: 16px;
  }
  .pricing-features-card {
    padding: 10px 19px 16px 41px;
  }
  .pricing-features-list {
    font-size: 13px;
  }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 1.75rem auto;
    pointer-events: none;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.18), 0 2px 8px rgba(36, 207, 221, 0.12);
    outline: 0;
    animation: modalFadeIn 0.4s;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-title {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #22304a;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e9ecef;
    gap: 0.5rem;
}

.modal .form-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #22304a;
    margin-bottom: 0.5rem;
}

.modal .form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #22304a;
    background-color: #f7fafd;
    background-clip: padding-box;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.modal .form-control:focus {
    color: #22304a;
    background-color: #fff;
    border-color: #2196f3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.15);
}

.modal .btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.modal .btn-primary {
    background: linear-gradient(90deg, #24CFDD 0%, #2196F3 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
}

.modal .btn-primary:hover {
    background: linear-gradient(90deg, #2196F3 0%, #24CFDD 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.modal .btn-secondary {
    background-color: #f7fafd;
    color: #22304a;
    border: 1px solid #e0e0e0;
}

.modal .btn-secondary:hover {
    background-color: #e9ecef;
    color: #22304a;
}

.modal .alert {
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
}

.modal .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.modal .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.modal .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background: transparent;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.modal .btn-close:hover {
    opacity: 0.75;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 1rem);
    }

    .modal-header {
        padding: 1rem 1rem 0.75rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 0.75rem 1rem 1rem;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 14px;
    }

    .modal .btn {
        padding: 0.625rem 1.25rem;
        font-size: 14px;
    }
}



