@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-primary: #0078D4;

    --text-gray-50: #F9FAFB;
    --text-gray-100: #F3F4F6;
    --text-gray-200: #E5E7EB;
    --text-gray-300: #D1D5DB;
    --text-gray-400: #9CA3AF;
    --text-gray-500: #6B7280;
    --text-gray-600: #4B5563;
    --text-gray-700: #374151;
    --text-gray-800: #1F2937;
    --text-gray-900: #111827;

    --fz-xs: 12px;
    --fz-sm: 14px;
    --fz-md: 16px;
    --fz-lg: 18px;
    --fz-xl: 20px;
    --fz-2xl: 24px;
    --fz-3xl: 32px;
    --fz-4xl: 40px;

    --fw-sm: 400;
    --fw-md: 500;
    --fw-lg: 600;
    --fw-xl: 700;

    --lg-sm: 1.2;
    --lg-md: 1.4;
    --lg-lg: 1.6;

    --br-sm: 4px;
    --br-md: 8px;
    --br-lg: 12px;
    --br-xl: 16px;
    --br-2xl: 20px;
    --br-3xl: 24px;
    --br-4xl: 28px;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 20px;
    --space-2xl: 24px;
    --space-3xl: 28px;
    --space-4xl: 32px;
    --space-5xl: 40px;
    --space-6xl: 48px;
    --space-7xl: 56px;
    --space-8xl: 64px;

    --box-shadow: #83818133 0px 4px 24px 0px;
}

body {
    position: relative;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    color: var(--text-gray-900);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Links */
a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;

}

/* Typography */
/* Buttons */
.button {
    display: inline-flex;
    gap: var(--space-xs);
    font-size: var(--fz-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--br-md);
    border: none;
    cursor: pointer;
}

.button-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    font-size: var(--fz-xs);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    border: solid 1px #CCCCCC;
    font-size: var(--fz-xs);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--br-sm);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-size: var(--fz-xs);
    color: var(--text-gray-500);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--color-primary);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #EA2A2A;
    color: #EA2A2A;
}

.form-group.error input::placeholder,
.form-group.error textarea::placeholder {
    color: #EA2A2A;
}

.form-control-error-text {
    margin-top: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fz-xs);
    font-weight: var(--fw-md);
    color: #EA2A2A;
}

/* Tables */
/* Lists */
/* Images */
.section-container {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-lg);
    line-height: 36px;
    margin-bottom: var(--space-sm);
}



.section-subtitle {
    color: var(--text-gray-500);
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    line-height: 24px;
    margin-bottom: 0;
}

.navbar {
    background-color: #FFFFFF !important;
}

nav .container {
    background-color: #FFFFFF;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--text-gray-200);
    margin-bottom: var(--space-xl);
}

.navbar-brand img {
    height: 28px;
}

.navbar-nav {
    gap: var(--space-lg);
}

.navbar-nav .nav-link {
    color: var(--text-gray-900);
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    padding: var(--space-md) var(--space-lg);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.nav-link.dropdown-toggle i {
    font-size: var(--fz-xs);
}

.nav-item .dropdown-menu {
    font-size: var(--fz-sm);
    box-shadow: var(--box-shadow);
    border-radius: var(--br-md);
    padding: var(--space-sm);
    border: none;
}

.nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--color-primary);
    background-color: #E6F2FC;
    border-radius: var(--br-md);
}

.dropdown-toggle::after {
    display: none;
}

.navbar .btn {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    color: var(--text-gray-900);
}

.navbar .btn-outline-primary {
    border: none;
}

.navbar .btn-outline-primary:hover {
    color: var(--color-primary);
    background-color: #FFFFFF;
}

.navbar .btn-primary {
    background-color: #FFFFFF;
    border-radius: var(--br-xl);
    border-color: var(--text-gray-900);
}

.navbar .btn-primary:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.navbar-toggler {
    color: var(--text-gray-900);
    border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}

.offcanvas-header {
    padding: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.offcanvas-header img {
    height: 28px;
}

.offcanvas-body {
    padding: var(--space-md);
}

.offcanvas-body .navbar-nav {
    gap: var(--space-sm);
}

.offcanvas-auth-actions {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
    position: absolute;
    bottom: var(--space-lg);
    left: 0;
    width: 100%;
}

.offcanvas-auth-actions .btn {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    color: var(--text-gray-900);
}

.offcanvas-auth-actions .btn-outline-primary {
    color: var(--color-primary);
    background-color: #FFFF;
    border-radius: var(--br-3xl);
    border-color: var(--color-primary);
}

.offcanvas-auth-actions .btn-outline-primary:hover {
    color: var(--color-primary);
    background-color: #FFFFFF;
}

.offcanvas-auth-actions .btn-primary {
    color: #FFF;
    background-color: var(--color-primary);
    border-radius: var(--br-3xl);
    border-color: var(--color-primary);
}

.offcanvas-auth-actions .btn-primary:hover {
    color: #FFF;
    border-color: var(--color-primary);
}

.hero-section {
    margin-bottom: var(--space-5xl);
}

.hero-section .col-md-12 {
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--br-2xl);
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    pointer-events: none;
    border-radius: var(--br-2xl);
    z-index: 1;
}

.hero-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    color: var(--text-gray-100);
    padding: 0 80px;
    pointer-events: none;
}

.hero-caption>* {
    pointer-events: auto;
}

.hero-caption h1 {
    font-size: 48px;
    font-weight: var(--fw-xl);
    margin-bottom: var(--space-lg);
    line-height: auto;
}

.hero-caption p {
    font-size: var(--fz-lg);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-4xl);
}

.hero-caption .button {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    border-radius: var(--br-4xl);
    border: none;
    padding: var(--space-md) var(--space-3xl);
}

.hero-caption .button-primary {
    display: inline-flex;
    gap: var(--space-sm);
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.hero-caption .button-primary:hover {
    background-color: var(--text-gray-800);
}

.owl-carousel .owl-nav {
    display: none !important;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.owl-carousel .owl-dot span {
    background: #00000040 !important;
}

.owl-carousel .owl-dot.active span {
    background: #FFFFFF !important;
}

.owl-carousel .owl-item {
    transition: all 0.6s ease-in-out;
}

.owl-carousel .owl-item img {
    transition: all 0.6s ease-in-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}



.owl-carousel .fadeIn {
    animation: fadeIn 0.6s ease-in-out;
}

.owl-carousel .fadeOut {
    animation: fadeOut 0.6s ease-in-out;
}

.licence-section {
    margin-bottom: var(--space-5xl);
}

.licence-col {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    gap: var(--space-6xl);
}

.lisense-item {
    display: flex;
    gap: var(--space-lg);
    align-items: baseline
}

.lisense-item h6 {
    margin-bottom: 0;
}

.lisense-item img {
    object-fit: contain;
    height: 40px;
}

.features-section {
    margin-bottom: var(--space-5xl);
}

.feature-item {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-content {
    text-align: center;
}

.feature-illustration {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: var(--space-2xl);
}

.feature-content h4 {
    font-size: var(--fz-md);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-sm);
    line-height: 22px;
}

.feature-content p {
    color: var(--text-gray-600);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: 0;
}



.solutions-section {
    background-color: #F8F9FA;
    padding: var(--space-4xl) 0;
    margin-bottom: var(--space-5xl);
}

.solution-item {
    gap: var(--space-5xl);
    padding: var(--space-4xl) 0;
}

.solution-item .solution-illustration {
    flex: 1;
    height: 300px;
    border-radius: var(--br-lg);
    object-fit: cover;
}

.solution-content {
    flex: 1;
}

.solution-content h1 {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-lg);
    line-height: 36px;
}

.solution-content p {
    color: var(--text-gray-700);
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-5xl);
}

.solution-content .button-primary {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    border-radius: var(--br-4xl);
    border: none;
    padding: var(--space-md) var(--space-3xl);
}

.developer-gateway-section {
    margin-bottom: var(--space-5xl);
}

.developer-gateway-wrapper {
    background-color: #E6F2FC;
    border-radius: var(--br-xl);
    padding: var(--space-4xl);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 580px;
}

.developer-gateway-wrapper img {
    width: 800px;
    height: auto;
    object-fit: contain;
}

.pricing-section {
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-5xl);
}


.country-switch {
    display: inline-flex;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: var(--space-5xl);
}

.country-switch-item {
    color: var(--text-gray-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fz-xs);
    border-radius: 4px;
}

.country-switch-item.active {
    color: var(--text-gray-900);
    background-color: #E9E9E9;
}

.country-switch-item img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    filter: opacity(50%);
}

.country-switch-item.active img {
    filter: opacity(100%);
}

.pricing-card {
    border: 1px solid var(--text-gray-300);
    border-top: 1px solid var(--text-gray-400);
    border-bottom-left-radius: var(--br-md);
    border-bottom-right-radius: var(--br-md);
    padding: var(--space-2xl);
}

.pricing-card.bank-mno {
    border-top: 6px solid var(--color-primary);
    border-radius: var(--br-2xl);
}

.pricing-card.visa {
    border-top: 6px solid #26AD4A;
    border-radius: var(--br-2xl);
}
.pricing-card.visa:hover{
    border-color: #26AD4A !important;
}

.princing-card-header {
    border-bottom: 2px dotted var(--text-gray-200);
    margin-left: calc(-1 * var(--space-2xl));
    margin-right: calc(-1 * var(--space-2xl));
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.princing-card-header h6 {
    text-transform: uppercase;
    color: var(--text-gray-900);
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-md);
}

.princing-card-header h1 {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-xl);
    color: var(--text-gray-900);
    margin-bottom: var(--space-md);
}

.princing-card-header p {
    color: var(--text-gray-600);
    font-size: var(--fz-xs);
    margin-bottom: 0;

}

.princing-card-body {
    flex: 1;
}

.princing-card-body p {
    color: var(--text-gray-700);
    font-size: var(--fz-md);
    margin-bottom: var(--space-lg);
}

.princing-card-body li {

    margin-bottom: var(--space-lg);
    color: var(--text-gray-700);
    font-size: var(--fz-md);
}

.princing-card-body li i {
    margin-right: var(--space-sm);
}

.pricing-card-link {
    margin-top: auto;
    margin-bottom: 0;
}

.pricing-card-link:hover {
    color: var(--text-gray-800);
}

.join-community-section {
    margin-bottom: var(--space-5xl);
}

.join-community-wrapper {
    display: flex;
    gap: var(--space-6xl);
    background-color: #E6F2FC;
    border-radius: var(--br-xl);
    padding: var(--space-4xl);
}

.join-community-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 var(--space-6xl);
}

.join-community-content h2 {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-lg);
}

.join-community-content p {
    color: var(--text-gray-700);
    font-size: var(--fz-md);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-4xl);
}

.join-community-content .button {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    border-radius: var(--br-4xl);
    border: none;
    padding: var(--space-md) var(--space-3xl);
}

.join-community-illustration {
    flex: 1;
    margin-bottom: -32px;
    margin-right: -32px;
}

.join-community-illustration img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-top-left-radius: var(--br-xl);
    border-bottom-right-radius: var(--br-xl);
}

footer {
    padding-top: var(--space-5xl);
}

.footer-top {
    margin-bottom: var(--space-4xl);
}

.footer-brand img {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: var(--space-2xl);
}

.footer-brand-description {
    color: var(--text-gray-700);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-2xl);
}

.footer-title {
    text-transform: uppercase;
    font-size: var(--fz-xs);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-2xl);
}

.footer-brand .footer-title {
    margin-bottom: var(--space-md);
}

.footer-social-media {
    display: flex;
    gap: var(--space-sm);
}

.footer-social-media span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--text-gray-200);
    font-size: var(--fz-md);
    color: var(--text-gray-900);
}

.footer-social-media span:hover {
    color: var(--color-primary);
}

footer ul li {
    gap: var(--space-sm);
    font-weight: var(--fw-sm);
    font-size: var(--fz-sm);
    margin-bottom: var(--space-lg);
}

footer ul li a {
    color: var(--text-gray-700);
}

footer ul li a:hover {
    color: var(--color-primary);
}

footer ul li:last-child {
    margin-bottom: 0;
}

footer ul li a img {
    margin-left: var(--space-sm);
    width: 10px;
    height: 10px;
    object-fit: contain;
}

footer .licence-col {
    font-size: var(--fz-xs);
    font-weight: var(--fw-md);
    gap: var(--space-6xl);
    margin-bottom: var(--space-7xl);
}

footer .lisense-item {
    display: flex;
    gap: var(--space-lg);
    align-items: baseline
}

footer .lisense-item h6 {
    font-size: var(--fz-sm);
    margin-bottom: 0;
}

footer .lisense-item img {
    object-fit: contain;
    height: 32px;
}

.footer-bottom {
    color: #FFFFFF;
    background-color: var(--text-gray-800);
    padding: var(--space-md) 0;
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    border-top-right-radius: var(--br-2xl);
    border-top-left-radius: var(--br-2xl);
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Contact Off-canvas Styles */
.contact-offcanvas {
    width: 400px !important;
    height: 100vh !important;
    box-shadow: var(--box-shadow);
}

.contact-offcanvas-title-lg {
    font-size: var(--fz-md);
    font-weight: var(--fw-lg);
    color: var(--text-gray-900);
}

.contact-offcanvas-title-md {
    font-size: var(--fz-xs);
    font-weight: var(--fw-md);
    color: var(--text-gray-900);
    margin-bottom: var(--space-xl);
}

.contact-offcanvas .offcanvas-body {
    padding: var(--space-2xl);
}

.contact-offcanvas-header {
    margin-bottom: var(--space-sm);
}

.contact-offcanvas .close-button {
    background-color: transparent !important;
    border: none !important;
    font-size: var(--fz-xl) !important;
    color: var(--text-gray-900) !important;
    padding: 0 !important;
    margin-left: auto !important;
}

.contact-offcanvas-description {
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    color: var(--text-gray-600);
    margin-bottom: var(--space-lg);
}

.offcanvas-send-message-button {
    font-size: var(--fz-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    padding: var(--space-sm) var(--space-3xl);
}

.contact-info {
    margin-bottom: var(--space-4xl);
}

.contact-offcanvas-list {
    margin-bottom: var(--space-2xl);
}

.contact-offcanvas-list li {
    margin-bottom: var(--space-sm);
}

.contact-offcanvas-list li:last-child {
    margin-bottom: 0;
}

.contact-offcanvas-list li img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: var(--space-sm);
}

.contact-offcanvas-list li a {
    color: var(--text-gray-900);
    font-size: var(--fz-xs);
    font-weight: var(--fw-md);
}

.contact-offcanvas-list li a:hover {
    color: var(--color-primary);
}

.contact-offcanvas .social-media {
    display: flex;
    gap: var(--space-md);
}

.contact-offcanvas .social-media span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--text-gray-200);
    font-size: var(--fz-md);
    color: var(--text-gray-900);
}

.contact-offcanvas .social-media span i {
    font-size: var(--fz-xs);
}

.contact-offcanvas .social-media span:hover {
    color: var(--color-primary);
}

.contact-offcanvas-description-link {
    color: var(--text-gray-900);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-offcanvas-description-link:hover {
    color: var(--color-primary);
}

.contact-offcanvas-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    flex: 1;
}

.contact-offcanvas-success-message img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: var(--space-lg);
}

.contact-offcanvas-success-message .contact-offcanvas-title-lg {
    margin-bottom: var(--space-lg);
}

.contact-offcanvas-success-message .button {
    color: var(--color-primary);
    font-weight: var(--fw-md);
    background-color: #FFF;
}

.copy-footer {
    padding: var(--space-lg);
}

.contact-offcanvas-copyright {
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    color: var(--text-gray-600);
    text-align: center;
    margin-top: auto;
}

.back-button {
    padding: 0;
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    background-color: #FFF;
    border: none;
    color: var(--color-primary);
    align-items: center;
    gap: var(--space-md);
    transition: all 0.2s ease;
}

.back-button i {
    font-size: var(--fz-md) !important;
    color: var(--text-gray-900) !important;
    margin-right: var(--space-md);
}

.contact-form-section,
.contact-info-section {
    transition: opacity 0.3s ease;
}

/* Reusable Call-to-Action Section Component */
.cta-section {
    margin-bottom: var(--space-5xl);
    padding: var(--space-4xl) 0;
    background-color: #F8F9FA;
}

.cta-wrapper {
    display: flex;
    gap: var(--space-6xl);
    border-radius: var(--br-xl);
    padding: var(--space-4xl) 0;
}

.cta-content {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.cta-content h2 {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: var(--text-gray-700);
    font-size: var(--fz-md);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-4xl);
}

.cta-content .button {
    align-self: flex-start;
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    border-radius: var(--br-4xl);
    padding: var(--space-md) var(--space-3xl);
}

.cta-illustration {
    flex: 1;
}

.cta-illustration img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--br-xl);
}

.secondary-hero-section {
    background-image: url('../images/alternate-hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

.navbar.alternate-navbar {
    background-color: transparent !important;
}

.alternate-navbar .container {
    background-color: transparent !important;
}

.alternate-navbar .navbar-nav .nav-link {
    color: #FFFFFF;
}

.alternate-navbar .btn {
    color: #FFFFFF;
}

.alternate-navbar .btn-outline-primary:hover {
    color: var(--text-gray-900);
    background-color: transparent;
}

.alternate-navbar .btn-primary {
    background-color: transparent;
    border-radius: var(--br-xl);
    border-color: #FFFFFF;
}

.alternate-navbar .btn-primary:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.alternate-navbar .navbar-toggler {
    color: #FFFFFF;
    border: none
}

.alternate-hero-content {
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4xl);
    min-height: 400px;
}

.alternate-hero-content .button {
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    background-color: #FFFFFF10;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--br-4xl);
}

.alternate-hero-content h1 {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-xl);
    line-height: auto;
}

.alternate-hero-content p {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
}

.business-benefits-section {
    margin-bottom: var(--space-5xl);
}

.business-benefits-section .solution-item img {
    height: 440px;
}

.about-mission-section {
    margin-bottom: var(--space-5xl);
}

.about-mission-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: start;
    gap: var(--space-xl);
    border: solid 1px var(--text-gray-200);
    border-radius: var(--br-lg);
    padding: var(--space-xl)
}

.about-mission-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mission-title {
    font-size: var(--fz-md);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-sm);
    line-height: 22px;
}

.mission-description {
    color: var(--text-gray-500);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: 0;
}

.mission-action {
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    color: var(--color-primary);
    margin-top: auto;
}

.integration-section {
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-5xl);
}

.integration-flex-container {
    display: flex;
    gap: var(--space-6xl);
    align-items: flex-start;
}

.integration-flex-item {
    flex: 1;
}

.integration-overview-title {
    font-size: var(--fz-3xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-lg);
    line-height: 36px;
}

.integration-overview-description {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-4xl);
}

.integration-overview-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.integration-support-item {
    display: flex;
    align-items: start;
    gap: var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--text-gray-200);
    border-radius: var(--br-lg);
    margin-bottom: var(--space-2xl);
}

.integration-support-item:last-child {
    margin-bottom: 0;
}

.integration-support-item:hover {
    background-color: var(--text-gray-100);
}

.integration-support-item-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.integration-support-item-content h3 {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-sm);
    line-height: 22px;
}

.integration-support-item-content p {
    font-size: var(--fz-xs);
    color: var(--text-gray-700);
}

.integration-support .button {
    gap: var(--space-sm);
    border-radius: var(--br-4xl);
    padding: var(--space-md) var(--space-3xl);
}

.developer-stack-section {
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-5xl);
}

.developer-hero-section {
    background-image: url('../images/code-hero-bg.svg');
    margin-bottom: var(--space-5xl);
}

.developer-cta .cta-illustration {
    height: auto;
}

.developer-stack-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.developer-stack-illustration img {
    width: 768px;
    max-width: 100%;
    object-fit: contain;
}

.services-hero-section {
    background-image: url('../images/paperplanes-hero-bg.svg');
    margin-bottom: var(--space-5xl);
}

/* Services */
.services-section {
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-5xl);
}

.service-card {
    position: relative;
    border-radius: var(--br-lg);
    border: 1px solid var(--text-gray-200);
    margin-bottom: var(--space-2xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-illustration {
    filter: brightness(80%);
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: var(--br-lg);
    border-top-right-radius: var(--br-lg);
    transition: all 0.3s ease;
}

.service-card-badge {
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background-color: #FFFFFF50;
    color: #FFFFFF;
    border-radius: var(--br-md);
    border: 1px solid #FFFFFF50;
    padding: var(--space-sm) var(--space-md);
}

.service-card-content {
    padding: var(--space-4xl) var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-title {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-sm);
    line-height: 22px;
}

.service-card-desc {
    color: var(--text-gray-700);
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-xl);
    line-height: 22px;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card-list-icon {
    align-items: center;
    height: 14px;
    object-fit: contain;
    margin-right: var(--space-sm);
}

.service-card-content ul {
    margin-bottom: var(--space-xl);
}

.service-card-content ul li {
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-sm);
}

.service-card-action {
    display: inline-flex;
    align-items: start;
    gap: var(--space-sm);
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    color: var(--color-primary);
    margin-top: auto;
}

.connectors-section {
    margin-bottom: var(--space-5xl);
}

.services-getstarted-illustration img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Pricing */
.pricing-hero-section {
    margin-bottom: var(--space-5xl);
}

.pricing-page-card {
    border-radius: var(--br-lg);
    border-color: var(--text-gray-200);
    margin-bottom: var(--space-2xl);
}


.pricing-card:hover {
    border-color: var(--color-primary);
}

.pricing-card-link.button {
    color: var(--color-primary);
    border: solid 1px var(--text-gray-200);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-link.button:hover {
    color: #FFFFFF;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.pricing-card-dropdown .dropdown-menu {
    width: 100%;
    background-color: #FFFFFF;
    border: none;
    border-radius: var(--br-lg);
    box-shadow: var(--box-shadow);
    padding: var(--space-sm);
    font-weight: var(--fw-sm);
    color: var(--text-gray-700);
}

.pricing-card-dropdown .dropdown-menu li {
    margin-bottom: var(--space-xs);
    font-size: var(--fz-sm);
}

.pricing-card-dropdown .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.pricing-card-dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--color-primary);
    background-color: #E6F2FC;
    border-radius: var(--br-md);
}

.pricing-card-dropdown .dropdown-menu .dropdown-item:hover img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(97%) contrast(101%);
}

.sct-pricing-section {
    margin-bottom: var(--space-5xl);
}

.sct-pricing-illustration {
    position: relative;
}

.sct-pricing-illustration img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: var(--br-lg);
}

.sct-illustration-badge-wrapper {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background-color: #FFFFFF;
    border-radius: var(--br-md);
    padding: var(--space-sm);
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    color: var(--text-gray-700);
}

.sct-pricing-content-item {
    border-left: 3px solid #D1E7F7;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.sct-pricing-content-item:last-child {
    margin-bottom: 0;
}

.sct-pricing-content-item:hover {
    border-left: 3px solid var(--color-primary);
}

.sct-pricing-content-item h3 {
    font-size: var(--fz-xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-md);
}

.sct-pricing-content-item p {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    color: var(--text-gray-500);
    margin-bottom: 0;
}

.sct-illustration-badge-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sct-illustration-badge-content h4 {
    color: var(--color-primary);
    font-size: var(--fz-3xl);
    font-weight: var(--fw-xl);
    margin-bottom: 0;
}

.sct-illustration-badge-content p {
    font-size: var(--fz-xs);
    font-weight: var(--fw-sm);
    margin-bottom: 0;
}

.sct-illustration-badge-content p mark {
    background-color: transparent;
    color: #26AD4A;
    margin: 0;
}

/* Team */
.team-hero-section {
    background-image: url('../images/arch-hero-bg.svg');
    margin-bottom: var(--space-5xl);
}

.team-section {
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-5xl);
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.team-item-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--space-3xl);
}

.team-item-name {
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-md);
}

.team-item-role {
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    color: var(--text-gray-500);
    margin-bottom: var(--space-2xl);
}

.team-item-social-media {
    display: flex;
    gap: var(--space-sm);
}

.team-item-social-media-link {
    background-color: var(--text-gray-200);
    border-radius: 50%;
    padding: var(--space-sm);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    color: var(--text-gray-700);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item-social-media-link:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

/* Show error messages when validation fails */
.form-control-error-text.show {
    display: block;
}

/* Countdown */
.countdown-section {
    height: 100vh;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
}

.countdown-image {
    background-image: url('../images/illustrations/countdown-illustration.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.countdown-content {
    padding: var(--space-4xl);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.countdown-header-item {
    margin-bottom: var(--space-4xl);
}

.countdown-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-8xl);
}

.countdown-body button {
    text-transform: uppercase;
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    border-radius: var(--br-4xl);
    padding: var(--space-md) var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.countdown-body h1 {
    font-size: var(--fz-4xl);
    font-weight: var(--fw-md);
    margin-bottom: var(--space-2xl);
}

.countdown-body p {
    text-align: center;
    font-size: var(--fz-md);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-6xl);
}

.countdown-timer {
    display: flex;
    gap: var(--space-4xl);
}

.countdown-timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8xl);
}

.countdown-timer-item h1 {
    color: var(--color-primary);
    font-size: var(--fz-4xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-sm);
}

.countdown-timer-item p {
    color: var(--text-gray-700);
    text-transform: uppercase;
    font-size: var(--fz-xs);
    font-weight: var(--fw-md);
    margin-bottom: 0;
}

.launch-email-subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.launch-email-subscribe p {
    color: var(--text-gray-700);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-sm);
}

.input-with-button {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.launch-email-subscribe input {
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    border-radius: var(--br-4xl);
    padding: var(--space-md) var(--space-3xl);
    padding-right: 120px;
    width: 100%;
    border: 1px solid var(--text-gray-300);
    outline: none;
}

.launch-email-subscribe input:focus {
    border-color: var(--color-primary);
}

.launch-email-subscribe button {
    text-transform: capitalize;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    border-radius: var(--br-4xl);
    padding: var(--space-sm) var(--space-lg);
    margin: 0;
}

.email-subscribe-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.email-subscribe-success-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: var(--space-sm);
}

.email-subscribe-success-text {
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: 0;
}

.countdown-footer {
    text-align: center;
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    width: 100%;
    margin-top: auto;
    margin-bottom: var(--space-2xl);
    padding: 0 var(--space-8xl);
}

/* Countdown Transitions and Launch Styles */
.website-content-sections {
    transition: opacity 0.5s ease-in-out;
}

.launch-celebration {
    margin-top: 2rem;
    text-align: center;
}

.launch-celebration .button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Legal Pages Styles */
.legal-section {
    color: var(--text-gray-600);
    margin-bottom: var(--space-5xl);
}

.legal-container {
    display: flex;
    flex-direction: row;
    gap: var(--space-4xl);
    align-items: flex-start;
}

.legal-sidebar {
    position: sticky;
    top: var(--space-lg);
    max-height: calc(100vh - var(--space-2xl));
    overflow-y: auto;
    align-self: flex-start;
}

.legal-content {
    flex: 1;
}

.legal-sidebar-list {
    display: flex;
    flex-direction: column;
}

.legal-sidebar-item {
    margin-bottom: var(--space-sm);
}

.legal-sidebar-link {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    color: var(--text-gray-600);
    text-decoration: none;
}

.legal-sidebar-link.active {
    color: var(--color-primary);
}

.legal-sidebar-link:hover {
    color: var(--color-primary);
}

.legal-content .breadcrumb {
    margin-bottom: var(--space-lg);
}

.legal-content ol {
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-lg);
}

.legal-content ol li {
    margin-bottom: var(--space-sm);
}

.legal-content ol li a {
    color: var(--text-gray-600);
    text-decoration: none;
}

.legal-content .breadcrumb-item a:hover {
    color: var(--color-primary);
}

.legal-content .breadcrumb-item.active {
    color: var(--color-primary);
}

.legal-content .breadcrumb-item.active:hover {
    color: var(--color-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: var(--color-text-secondary);
}

.legal-content-title {
    font-size: var(--fz-2xl);
    font-weight: var(--fw-lg);
    margin-bottom: var(--space-lg);
}

.legal-content p {
    font-size: var(--fz-sm);
    font-weight: var(--fw-sm);
    margin-bottom: var(--space-lg);
}

.legal-navigation-modal-list {
    margin: 0;
    padding: 0;
}

.legal-navigation-modal-header {
    padding: var(--space-lg) var(--space-lg) 0 var(--space-lg);
    border-bottom: none;
}

.legal-navigation-modal-body {
    padding: var(--space-lg);
}

.legal-navigation-modal-title {
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    color: var(--text-gray-600);
}

.legal-navigation-modal-close {
    font-size: var(--fz-xs);
    width: 12px;
    height: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    border: none;
    background-color: transparent;
    color: var(--text-gray-600) !important;
}

.legal-navigation-modal-close:hover {
    opacity: 1;
}

.legal-navigation-modal-item {
    margin-bottom: var(--space-xl);
}

.legal-navigation-modal-item:last-child {
    margin-bottom: 0;
}

.legal-navigation-modal-link {
    color: var(--text-gray-900);
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: var(--fz-sm);
    font-weight: var(--fw-md);
    transition: all 0.3s ease;
}

.legal-navigation-modal-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-navigation-modal-link.active {
    color: var(--color-primary);
}

.legal-navigation-modal-link.active:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.legal-navigation-modal-link i {
    margin-right: var(--space-sm);
    font-size: var(--fz-lg);
}

.legal-navigation-modal-content {
    border: none;
    border-radius: var(--br-md);
    box-shadow: var(--box-shadow);
    max-height: 80vh;
    overflow-y: auto;
}

.footer-back-to-top {
	position: absolute;
	right: var(--space-6xl);
	bottom: var(--space-xl);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #000000;
	box-shadow: var(--box-shadow);
	cursor: pointer;
	border: 1px solid var(--text-gray-200);
}

.footer-back-to-top i {
	font-size: var(--fz-md);
}

.footer-back-to-top:hover {
	background-color: var(--text-gray-800);
	color: #FFFFFF;
}