/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #ffae5c; /* main blue */
    --primary-gradient: linear-gradient(
        90deg,
        #ffae5c 0%,
        #f06588 100%
    ); /* button gradient */
    --secondary-color: linear-gradient(90deg, #e39a52 0%, #c25d76 100%);
    --heading-color: #111827; /* header blue */
    --text-color: #374151;
    --bg-light: #fff8ef;
    --bg-white: #fff;
    --bg-dark: #181c23;
    --section-spacing: 5.5rem;
    --section-spacing-mobile: 3rem;
    --card-radius: 1.25rem;
    --card-shadow: 0 4px 8px 0 rgb(193 107 0 / 10%),
        0 2px 8px 0 rgb(193 107 0 / 10%);
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 0.7rem;
}

.section-title h2 .blue {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-title p {
    color: #6b7280;
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.2s;
}

.navbar-logo .logo {
    display: flex;
    align-items: center;
}

.navbar-logo .logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    min-width: 80px;
    transition: max-width 0.2s, width 0.2s;
}

.nav-collapse {
    padding: 0;
    position: relative;
}

.nav-collapse ul {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-collapse li {
    position: relative;
    padding: 0 1.2rem;
}

.nav-collapse a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
    padding: 0.3rem 0.2rem;
}

.nav-collapse a.active,
.nav-collapse a:hover {
    color: var(--primary-color) !important;
}

.mobile-nav-toggle {
    display: none;
}

.navbar-toggler-icon {
    width: 1.3rem;
    height: 1.3rem;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    background: var(--bg-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 3rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
	color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .blue {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero p {
    font-size: 1.18rem;
    color: var(--text-color);
    margin-bottom: 4.2rem;
}

.hero img {
    max-width: 100%;
    filter: drop-shadow(0 8px 32px rgba(0, 112, 243, 0.08));
    border-radius: 20px;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.about .content ul i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
.solutions .card {
    border: 2px solid transparent;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    background: var(--bg-white);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.3s ease;
    margin-bottom: 2rem;
}

.solutions .card:hover {
    box-shadow: 0 14px 8px 0 rgba(229, 127, 0, 0.2);
    transform: translateY(-6px);
    border: 2px solid var(--primary-color);
}

.solutions .card-body {
    padding: 2.2rem 2rem;
}

.solutions .feature-icon {
    width: 4rem;
    height: 4rem;
    background: #fff7ed;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.solutions .card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 15px -3px rgba(229, 127, 0, 0.3);
}

.solutions .card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.7rem;
}

.solutions .card:hover h3 {
    color: var(--primary-color);
}

.solutions p {
    color: #64748b;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    background: var(--bg-white);
}

.features .card {
    border: 2px solid transparent;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    background: var(--bg-white);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.3s ease;
    margin-bottom: 2rem;
}

.features .card:hover {
    box-shadow: 0 14px 8px 0 rgba(229, 127, 0, 0.2);
    transform: translateY(-6px);
    border: 2px solid var(--primary-color);
}

.features .card-body {
    padding: 2.2rem 2rem;
}

.features .feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.features .card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 15px -3px rgba(229, 127, 0, 0.3);
}

.features .feature-icon i,
.features .feature-icon svg {
    font-size: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.7rem;
}

.features .card:hover h3 {
    color: var(--primary-color);
}

.features p {
    color: #64748b;
}

.features .card p {
    margin-bottom: 0;
}

.features .card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.features .card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features .card ul i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.card-feature-icon {
    display: grid;
    grid-template-columns: auto auto;
}

/*--------------------------------------------------------------
# Workflow Section
--------------------------------------------------------------*/
.workflow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.workflow-steps .step {
    border: 2px solid transparent;
    background: var(--bg-white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.3s ease;
}

.workflow-steps .step:hover {
    box-shadow: 0 14px 8px 0 rgba(229, 127, 0, 0.2);
    transform: translateY(-4px);
    border: 2px solid var(--primary-color);
}

.workflow-steps .step-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.workflow-steps .step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 15px -3px rgba(229, 127, 0, 0.3);
}
.workflow-steps .step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.workflow-steps .step:hover h3 {
    color: var(--primary-color);
}

.workflow-steps .step-content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Use Cases Section
--------------------------------------------------------------*/
.usecases {
    background: var(--bg-white);
}

.nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    display: flex;
}

.nav-tabs .nav-link {
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
}

.nav-tabs .nav-link {
    color: #64748b;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    background: var(--bg-white);
    color: var(--primary-color) !important;
}

.tab-content {
    background: var(--bg-white);
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 1.25rem 1.25rem;
    box-shadow: var(--card-shadow);
}

.tab-content .tab-pane {
    padding: 2.5rem;
}

.tab-content .tab-pane h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.tab-content .tab-pane p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.tab-content .tab-pane ul {
    list-style: none;
    padding: 0;
}

.tab-content .tab-pane ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.tab-content .tab-pane ul i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 0.8rem;
}

.tab-content .tab-pane img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    filter: drop-shadow(0 8px 32px rgba(0, 112, 243, 0.08));
}

/*--------------------------------------------------------------
# Sample Section
--------------------------------------------------------------*/
.sample {
    background: var(--bg-white);
}

.sample-image-container {
    overflow-y: hidden;
    box-shadow: var(--card-shadow);
}

.sample-image {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Modal Style
--------------------------------------------------------------*/
.modal-content {
    background-color: rgba(255, 255, 255, 0);
    border: none;
}

.modal-header {
    border-bottom: none;
    position: relative;
}

.btn-close {
    position: fixed;
    background-color: #fff;
    top: 20px;
    right: 56px;
    z-index: 1056;
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits .card {
    border: 2px solid transparent;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    background: var(--bg-white);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.3s ease;
    margin-bottom: 1.5rem;
}

.benefits .card:hover {
    box-shadow: 0 14px 8px 0 rgba(229, 127, 0, 0.2);
    transform: translateY(-6px);
    border: 2px solid var(--primary-color);
}

.benefits .card-body {
    padding: 1.8rem;
    text-align: center;
}

.benefits .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #fff7ed;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.benefits .card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 15px -3px rgba(229, 127, 0, 0.3);
}

.benefits .card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.benefits .card:hover h3 {
    color: var(--primary-color);
}

.benefits .card p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
}

.benefits .call-to-action {
    background: var(--primary-gradient);
    padding: 3rem;
    border-radius: var(--card-radius);
    color: #fff;
    margin-top: 3rem;
}

.benefits .call-to-action h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.benefits .call-to-action p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits .call-to-action .btn {
    background: #fff;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.benefits .call-to-action .btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: var(--bg-white);
}

.contact .section-title h2 {
    font-size: 2.1rem;
}

.contact .email-form {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem;
    margin: 0 auto;
    max-width: 600px;
}

.contact .email-form .form-group {
    margin-bottom: 1.5rem;
}

.contact .email-form input,
.contact .email-form textarea {
    border-radius: 0.5rem;
    border: 1.5px solid #e5e7eb;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
    background: #f7fafd;
    color: var(--heading-color);
}

.contact .email-form input:focus,
.contact .email-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
}

.contact .email-form button {
    width: 100%;
    margin-top: 1.2rem;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer .col-lg-4 {
    padding-bottom: 20px;
}

.footer-header {
    margin-bottom: 1.2rem;
}

.footer h4 {
    font-size: 1.15rem;
    font-weight: 700;
    display: inline;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.7rem;
}

.footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer .copyright {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.98rem;
}

/*--------------------------------------------------------------
# Buttons Style
--------------------------------------------------------------*/
.btn {
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:active {
	border-color : transparent !important;
}

.btn.btn-primary,
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.7rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 112, 243, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn.btn-primary:hover,
.btn-primary:hover {
    background: var(--secondary-color);
}

.btn.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.7rem 2rem;
    transition: background 0.2s, color 0.2s;
}

.btn.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
	text-shadow: none;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 1400px) {
    .nav-tabs {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1199px) {
    .logo img {
        max-width: 220px !important;
    }

    .solutions .card-body {
        text-align: -webkit-center;
    }
}

@media (min-width: 992px) {
    .collapse {
        display: block !important;
    }
}

@media (max-width: 991px) {
    section {
        padding: var(--section-spacing-mobile) 0;
    }
	
    .logo img {
        max-width: 250px !important;
    }
	
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .container .navbar-burger {
        position: absolute;
        right: 0;
        top: -6px;
    }

    .header .navbar-logo {
        position: relative;
        width: 100%;
        text-align: center;
    }

    .nav-collapse ul {
		padding-top: 1rem;
        gap: 1.2rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .tab-content .tab-pane {
        height: auto !important;
    }

    .tabs .tab {
        border-radius: 0.5rem 0.5rem 0.5rem 0.5rem !important;
    }

    .tabs {
        gap: 0.8rem;
    }
}

@media (max-height: 865px) {
    .modal-content img {
        height: 600px !important;
    }

    .modal .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
	
	.hero h2 {
		font-size: 1.5rem;
	}
	
	.hero p {
		font-size: 1rem;
	}

    .section-title h2 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }

    .tabs .tab {
        padding: 0.6rem 1.2rem;
    }

    .nav-collapse ul {
        gap: 0;
    }

    .tabs .tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .tab-content .tab-pane {
        padding: 1.5rem;
        height: auto;
    }

    .tab-content .tab-pane h3 {
        font-size: 1.3rem;
    }

    .tab-content .tab-pane p {
        font-size: 1rem;
    }

    .solutions .d-flex {
        display: block !important;
    }    
	
	.benefits .d-flex {
        display: block !important;
    }

    .benefits .card {
        margin-bottom: 1rem;
    }

    .benefits .card-body {
        padding: 1.5rem;
    }

    .benefits .feature-icon {
        margin: 0 auto 0.8rem auto;
    }

    .benefits .call-to-action {
        padding: 2rem;
        margin-top: 2rem;
    }

    .benefits .call-to-action h2 {
        font-size: 1.5rem;
    }

    .benefits .call-to-action p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .workflow-steps {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .workflow-steps .step {
        gap: 2rem;
        padding: 2rem;
    }

    .workflow-steps .step-icon {
        width: 3.5rem;
        height: 3.5rem;
        min-width: 3.5rem;
        font-size: 1.5rem;
    }

    .workflow-steps .step-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-height: 667px) {
    .modal-content img {
        height: 500px !important;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-width: 210px !important;
    }

    .hero {
        padding: 3.5rem 0 1.5rem;
    }
    .section-title {
        margin-bottom: 1.2rem;
    }
    .card {
        margin-bottom: 1.2rem;
    }

    .nav-collapse {
        width: 100%;
    }

    .nav-collapse ul {
        display: block;
        width: 100%;
        justify-items: start;
    }

    .nav-collapse li {
        text-align: start;
        border-bottom: 1px solid #eee;
        width: 100%;
        padding: 0;
    }

    .modal .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .btn-close {
        right: 32px !important;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.9);
    }
	
    .hero p {
        margin-bottom: 2.2rem;
    }
}

@media (max-width: 370px) {
    .header .navbar-logo {
        display: flex;
        justify-content: space-between;
    }

    .hero .hero-button {
        flex-direction: column;
        width: 60%;
    }
}

@media (max-width: 320px) {
    .logo img {
        max-width: 180px !important;
        height: fit-content !important;
    }
}