:root {

    --primary: #244A8E;
    --secondary: #36B6B0;
    --accent: #3A7BD5;
    --bg: #F5F7FB;
    --text: #0F172A;

}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 24px;
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 120px 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

.btn-main {
    background: white;
    color: var(--primary);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--secondary);
    color: white;
}

.section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.architecture {
    background: var(--text);
    color: white;
}

.arch-box {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cta {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer {
    background: var(--text);
    color: #94a3b8;
    padding: 40px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer i {
    font-size: 18px;
    margin: 0 6px;
}

.footer i:hover {
    color: var(--secondary);
}

.hero-section {

    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, #244A8E, #36B6B0);
    color: white;
    overflow: hidden;

}

.hero-bg {

    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3A7BD5, transparent);
    opacity: 0.5;
    animation: float 8s infinite ease-in-out;

}

@keyframes float {

    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(40px)
    }

    100% {
        transform: translateY(0px)
    }

}

.hero-title {

    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;

}

.highlight {

    color: #F5F7FB;

}

.hero-text {

    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;

}

.hero-buttons .btn {

    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;

}

.hero-image {

    max-width: 100%;
    border-radius: 15px;
    animation: floatImage 6s infinite ease-in-out;

}

@keyframes floatImage {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(0)
    }

}

.software-section {
    padding: 100px 0;
    background: white;
}

.software-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #244A8E;
}

.software-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.software-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.software-features li {
    font-size: 16px;
    margin-bottom: 10px;
}

.software-features i {
    color: #36B6B0;
    margin-right: 8px;
}

.software-image {
    max-width: 100%;
    border-radius: 12px;

    transition: 0.4s;
}

.software-image:hover {
    transform: scale(1.03);
}

.advantages-section {
    background: #F5F7FB;
    padding: 100px 0;
}

.adv-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.adv-card:hover {
    transform: translateY(-6px);
}

.adv-icon {
    font-size: 34px;
    color: #36B6B0;
    margin-bottom: 15px;
}

.advantages-section {

    padding: 110px 0;

    background: linear-gradient(135deg, #244A8E, #3A7BD5);

    position: relative;

    overflow: hidden;

}

.advantages-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background: #36B6B0;

    filter: blur(150px);

    top: -100px;
    left: -100px;

    opacity: 0.5;

}

.advantages-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: #3A7BD5;

    filter: blur(150px);

    bottom: -120px;
    right: -120px;

    opacity: 0.6;

}

.section-subtitle {

    color: #e5e7eb;
    font-size: 18px;

}

.adv-card {

    background: white;

    padding: 35px;

    border-radius: 14px;

    text-align: center;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

    transition: 0.35s;

    height: 100%;

}

.adv-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);

}

.adv-icon {

    font-size: 36px;

    color: #36B6B0;

    margin-bottom: 18px;

}

.stats-section {

    padding: 110px 0;

    background: linear-gradient(135deg, #244A8E, #1E3A8A);

    color: white;

}

.stats-title {

    font-size: 36px;

    font-weight: 700;

    margin-bottom: 10px;

}

.stats-subtitle {

    color: #cbd5e1;

    font-size: 18px;

}

.stat-box {

    padding: 35px;

}

.stat-box h2 {

    font-size: 48px;

    font-weight: 700;

    color: #36B6B0;

}

.stat-box p {

    color: #e2e8f0;

    margin-top: 8px;

}

.dashboard-section {

    padding: 110px 0;
    background: white;

}

.dashboard-title {

    font-size: 36px;
    font-weight: 700;
    color: #244A8E;
    margin-bottom: 20px;

}

.dashboard-text {

    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;

}

.dashboard-features {

    list-style: none;
    padding: 0;

}

.dashboard-features li {

    margin-bottom: 10px;
    font-size: 16px;

}

.dashboard-features i {

    color: #36B6B0;
    margin-right: 8px;

}

.dashboard-img {

    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);

}

.process-section {

    background: #F5F7FB;
    padding: 110px 0;

}

.process-card {

    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;

}

.process-number {

    width: 50px;
    height: 50px;

    background: #36B6B0;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-weight: 700;

    margin: auto;
    margin-bottom: 15px;

    font-size: 20px;

}

.testimonials-section {

    padding: 110px 0;

    background: white;

}

.testimonial-card {

    background: #F5F7FB;

    padding: 40px;

    border-radius: 14px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

}

.testimonial-card p {

    font-size: 18px;

    font-style: italic;

    margin-bottom: 20px;

}

.testimonial-card h6 {

    color: #244A8E;

    margin-bottom: 5px;

}

.testimonial-card span {

    color: #64748b;

    font-size: 14px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon {

    background-color: #36B6B0;

    border-radius: 50%;

    padding: 15px;

}

.faq-section {

    padding: 110px 0;

    background: #F5F7FB;

}

.accordion-button {

    font-weight: 600;

}

.accordion-button:not(.collapsed) {

    background: #36B6B0;
    color: white;

}

.accordion-body {

    color: #64748b;

}

.cta-section {

    padding: 120px 0;

    background: linear-gradient(135deg, #0F172A, #1E293B);

    color: white;

    text-align: center;

}

.cta-title {

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 20px;

}

.cta-text {

    font-size: 18px;

    color: #cbd5e1;

    margin-bottom: 35px;

}

.cta-buttons .btn {

    padding: 14px 30px;

    font-weight: 600;

    border-radius: 30px;

    margin: 5px;

}

.btn-demo {

    background: #36B6B0;

    color: white;

}

.btn-demo:hover {

    background: #2aa39e;

    color: white;

}

.btn-contact {

    border: 2px solid white;

    color: white;

}

.btn-contact:hover {

    background: white;

    color: #0F172A;

}

.pricing-section {

    padding: 110px 0;

    background: #F5F7FB;

}

.pricing-card {

    background: white;

    padding: 40px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);

}

.pricing-title {

    font-weight: 600;

    color: #244A8E;

    margin-bottom: 10px;

}

.pricing-price {

    font-size: 48px;

    font-weight: 700;

    color: #36B6B0;

}

.pricing-sub {

    color: #64748b;

    margin-bottom: 25px;

}

.pricing-features {

    list-style: none;

    padding: 0;

    margin-bottom: 25px;

}

.pricing-features li {

    margin-bottom: 10px;

}

.pricing-features i {

    color: #36B6B0;

    margin-right: 8px;

}

.btn-pricing {

    background: #36B6B0;

    color: white;

    border-radius: 30px;

    padding: 12px 25px;

    font-weight: 600;

}

.btn-pricing:hover {

    background: #2aa39e;

}
.demo-form .form-control{

padding:12px;

border-radius:8px;

border:none;

}

.demo-form .form-control:focus{

box-shadow:0 0 0 2px #36B6B0;

}

.btn-demo{

background:#36B6B0;

color:white;

padding:12px;

border-radius:30px;

font-weight:600;

}

.btn-demo:hover{

background:#2aa39e;

}