﻿/*:root {
    --primary: #3459e5;
    --success: #2fb380;
    --hover-gradient: linear-gradient(90deg, rgba(52, 89, 230, 0.2), rgba(47, 179, 128, 0.2));
}

section {
    min-height: 100vh;*/ /* full screen height */
    /*display: flex;
    flex-direction: column;
    justify-content: center;*/ /* center content vertically */
    /*scroll-snap-align: start;*/ /* optional smooth snap */
/*}

.full-width-bg {
    width: 100vw;*/ /* full viewport width */
    /*position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;*/ /* pull section to the left edge */
    /*margin-right: -50vw;*/ /* pull section to the right edge */
/*}

#hero.full-width-bg {
    background: linear-gradient(135deg, rgba(52, 89, 230, 0.1), rgba(47, 179, 128, 0.1));
}

#pricing.full-width-bg {
    background: linear-gradient(135deg, rgba(52, 89, 230, 0.1), rgba(47, 179, 128, 0.1));
}*/

/* NAVBAR */
/*.navbar .nav-link {
    color: var(--primary);
    transition: color 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}*/

/*.navbar .nav-link:hover {
        color: var(--success);
        background: linear-gradient( 90deg, rgba(52, 89, 230, 0.1), rgba(47, 179, 128, 0.1)) !important;
    }*/

/*.nav-item ::deep a {
    color: #6c757d;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    transition: background-color 0.2s, color 0.2s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}*/

/* HERO SECTION */
/*#hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 89, 230, 0.1), rgba(47, 179, 128, 0.1));
    overflow: hidden;
}

    #hero > .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        max-width: 1100px;*/ /* keeps content inside */
    /*}

    #hero .hero-content {
        max-width: 700px;
        z-index: 2;
    }

    #hero h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
        font-weight: 900;
        color: var(--primary);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    #hero p {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        color: #444;
        margin-bottom: 0rem;
    }

    #hero .btn-primary {
        background: linear-gradient(90deg, #3459e6, #2fb380);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(52, 89, 230, 0.3);
        transition: all 0.3s ease;
    }

        #hero .btn-primary:hover {
            box-shadow: 0 8px 30px rgba(47, 179, 128, 0.6);
        }*/

    /* Hero image */
    /*#hero img {
        margin-top: 2rem;
        max-width: 700px;
        width: 80%;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        animation: float 6s ease-in-out infinite;
    }

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}*/

/* Desktop layout */
/*@media (min-width: 800px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-image img {
        max-width: 500px;
        width: 45%;
        margin-top: 0;
    }
}*/


/* Floating animation */
/*@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}*/

/* FEATURES SECTION */
/*#features {
    margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center;
}

    #features header {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary);
        position: relative;
        display: inline-block;
    }

        #features header::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            margin: 8px auto 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--primary), var(--success));
        }

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    padding: 1.75rem 1.5rem;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-rows: 72px 56px 1fr;*/ /* icon | title | description */
    /*justify-items: center;*/ /* center horizontally */
    /*align-items: start;*/ /* top-align items inside their rows */
    /*height: 100%;*/ /* fill the grid cell so rows align across cards */
/*}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

.feature-icon {
    height: 72px;
    width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;*/ /* tune as needed */
    /*color: var(--primary);
    margin: 0;*/ /* no extra spacing — vertical slot controls spacing */
/*}

.feature-card h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    text-align: center;*/
    /* clamp to max 2 lines to preserve alignment */
    /*display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-card p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    text-align: center;
    width: 100%;
    max-width: 38ch;*/ /* optional: keep lines readable */
/*}*/

/* Medium screens: 2 cards per row */
/*@media (min-width: 576px) and (max-width: 1400px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}*/

/* Small screens: 1 card per row */
/*@media (max-width: 575px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
}*/

/* PRICING SECTION */
/*#pricing {
    padding: 5rem 1rem;
    background: linear-gradient( 135deg, rgba(52, 89, 230, 0.1), rgba(47, 179, 128, 0.1));
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

    #pricing header {
        font-size: 2.5rem;
        font-weight: 800;
        text-align: center;
        color: var(--primary);
        margin-bottom: 3rem;
        position: relative;
        display: inline-block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

        #pricing header::after {
            content: "";
            height: 4px;
            width: 80px;
            background: linear-gradient(90deg, var(--primary), var(--success));
            display: block;
            margin: 8px auto 0;
            border-radius: 2px;
        }

.pricing-cards {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
    background: white;
    border-radius: 14px;
    border: 2px solid transparent;
    box-shadow: 0 4px 18px rgb(0 0 0 / 0.07);
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .pricing-card:hover {
        box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
        border-color: var(--primary);
    }

    .pricing-card.highlighted {
        border-color: var(--success);
        box-shadow: 0 10px 30px rgba(47, 179, 128, 0.4);
        transform: translateY(-6px);
    }

.pricing-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 750;
    color: var(--primary);
    text-align: center;
    margin: 0 0 1.5rem 0;
}

.pricing-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .pricing-features li {
        font-size: 1rem;
        padding-left: 1.2rem;
        position: relative;
        color: #444;
        margin-bottom: 0.7rem;
    }*/

        /* tick icon */
        /*.pricing-features li::before {
            content: "✓";
            color: var(--success);
            position: absolute;
            left: 0;
            font-weight: 900;
        }*/

/* Buttons */
/*.pricing-card button {
    background: linear-gradient(90deg, #3459e6, #2fb380);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 10px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.5s ease;
    align-self: center;
}

    .pricing-card button:hover {
        background: var(--success);
    }

@media (max-width: 991px) {
    .pricing-cards {
        grid-template-columns: repeat(1, 1fr);*/ /* single column on smaller screens */
    /*}
}*/

/* ABOUT SECTION */
/*#about {
    max-width: 1200px;*/ /* wider container */
    /*margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center;
}

    #about header {
        font-size: 2.75rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: var(--primary);
        display: inline-block;
        position: relative;
    }

        #about header::after {
            content: "";
            display: block;
            width: 70px;
            height: 4px;
            margin: 10px auto 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--primary), var(--success));
        }

    #about .content {
        max-width: 1000px;
        margin: 2rem auto 0;
        font-size: 1.15rem;
        line-height: 1.8;
        color: #444;
        text-align: left;*/ /* better readability for longer text */
    /*}

        #about .content p {
            margin-bottom: 1.5rem;
        }

    #about .highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    #about .highlight {
        background: #fff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        text-align: center;
    }

        #about .highlight h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--primary);
        }

        #about .highlight p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }*/

/* CONTACT SECTION */
/*#contact {
    background: linear-gradient( 135deg, rgba(52, 89, 230, 0.2), rgba(47, 179, 128, 0.2));
    color: var(--primary);
    padding: 4rem 1.5rem 5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    box-shadow: rgba(47, 179, 128, 0.3) 0 10px 25px;
}

    #contact header {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        text-align: center;
    }

    #contact form .form-label {
        color: white;
    }

    #contact form .form-control {
        border-radius: 6px;
        border: none;
        padding: 12px 15px;
    }

        #contact form .form-control:focus {
            box-shadow: 0 0 8px #94d8c4;
            border: none;
        }

    #contact button {
        background: linear-gradient(90deg, #3459e6, #2fb380);
        color: white;
        border: none;
        padding: 12px 25px;
        font-weight: 700;
        border-radius: 50px;
        width: 100%;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
    }

        #contact button:hover {
            background: var(--success);
        }*/

/* FOOTER */
/*footer {
    background: #222;
    color: #bbb;
    padding: 2rem 1rem;
}

    footer a {
        color: #bbb;
        margin-left: 1rem;
    }

        footer a:hover {
            color: white;
            text-decoration: underline;
        }*/

/* ANIMATIONS */
/*.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }*/

/* RESPONSIVE */
/*@media (min-width: 800px) {
    #hero {
        flex-direction: row;
        text-align: left;
        padding-left: 3rem;
        padding-right: 3rem;
        gap: 5rem;
    }

        #hero > .container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
            align-items: center;
        }

        #hero img {
            margin-left: auto;
        }
}*/

/*------------------------ Dropdown ---------------------------*/
/*.dropdown-cursor {
    cursor: pointer !important;
}

.dropdown-menu .dropdown-item:hover {
    background: linear-gradient( 90deg, rgba(52, 89, 230, 0.1), rgba(47, 179, 128, 0.1) );
    color: var(--bs-primary);
}

.bg-mix {
    background: linear-gradient( 90deg, rgba(52, 89, 230, 0.9),*/ /* primary, semi-transparent */
    /*rgba(47, 179, 128, 0.9)*/ /* success, semi-transparent */
    /*);
}

.bg-mix-red {
    background: linear-gradient(90deg, rgba(218, 41, 46, 0.9), rgba(170, 30, 35, 0.9) );
    color: white;
}

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(52, 89, 230, 0.03)" stroke-width="1"/></svg>');
    background-size: cover;
}

.gradient-bg {
    background: linear-gradient( 90deg, rgba(52, 89, 230, 0.05), rgba(47, 179, 128, 0.05));
}

.gradient-hover:hover {
    background: var(--hover-gradient) !important;
}

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

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    text-align: center;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
    }

.contact-section {
    background: var(--gradient);
    color: white;
    padding: 80px 0;
}

footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}*/

/* Animations */
/*.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }*/

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .feature-card, .pricing-card {
        margin-bottom: 20px;
    }
}

.row > [class*="col-"]:has(.custom-card) {
    display: flex;
}

.custom-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;*/ /* stretch to fill column height */
/*}


    .custom-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

        .custom-card:hover .custom-card-header {
            background: linear-gradient( 90deg, rgba(52, 89, 230, 0.9),*/ /* primary, semi-transparent */
            /*rgba(47, 179, 128, 0.9)*/ /* success, semi-transparent */
            /*);
            color: #fff;*/ /* white text */
            /*border-color: rgba(0,0,0,0.1);
        }

.custom-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    min-height: 80px;
    background: linear-gradient( 90deg, rgba(52, 89, 230, 0.2), rgba(47, 179, 128, 0.2));
    color: #6c757d;
    transition: background 0.3s ease, color 0.3s ease;
}

.custom-card-title {
    font-size: 1.3rem;
    font-weight: 550;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.custom-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .custom-card-body .card-text {
        margin-bottom: auto;*/ /* pushes the list down */
        /*text-align: justify;
    }

.custom-card-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-card-close {
    border: none;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.15s ease;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

    .custom-card-close:hover {
        color: #495057;
        background: rgba(0, 0, 0, 0.05);
    }

.custom-card-clickable {
    cursor: pointer;
}

    .custom-card-clickable:hover {
        background: rgba(0, 0, 0, 0.01);
    }

.custom-card-header > h5 {
    margin-bottom: 0;
}*/


