﻿:root {
    --teal: #1a9f9f;
    --indigo: #4f46e5;
    --emerald: #10b981;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
}

/* Body & Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--teal);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    margin: 0 0.5rem;
}

    .nav-link:hover {
        color: var(--teal);
    }

/* Buttons */
.btn-primary {
    background-color: var(--teal);
    border-color: var(--teal);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary {
    color: var(--teal);
    border-color: var(--teal);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

    .btn-outline-primary:hover {
        background-color: var(--teal);
        color: white;
    }

/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);*/
    padding: 2rem 0;
    border-radius: 0 0 2rem 2rem;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-text);
}

/* Product / Feature Cards */
.product-card {
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .product-card.core {
        border-top: 4px solid var(--teal);
    }

    .product-card.care {
        border-top: 4px solid var(--indigo);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.core .feature-icon {
    background-color: rgba(26, 159, 159, 0.1);
    color: var(--teal);
}

.care .feature-icon {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--indigo);
}

/* Pricing Cards */
.pricing-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        border-color: var(--teal);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-body {
    padding: 2rem;
}

.pricing-feature {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

    .pricing-feature i {
        color: var(--emerald);
        margin-right: 0.5rem;
    }

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(26, 159, 159, 0.1);
    color: var(--teal);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

/* Footer */
footer {
    background-color: var(--teal);
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer-logo {
    font-weight: 700;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    color: #f0f0f0;
    max-width: 300px;
}

.footer-title {
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #f0f0f0;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(51, 101, 115, 0.1);
        color: white;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: white;
            color: var(--teal);
            transform: translateY(-3px);
        }

.copyright {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #f0f0f0;
}

/* Logo / Topbar */
#ConPay {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

    #ConPay:hover {
        background-color: var(--teal);
        transform: rotate(15deg);
    }

        #ConPay:hover svg path {
            fill: white;
        }

.logo-img {
    height: 40px;
}

.expandable {
    cursor: pointer;
    color: var(--teal);
    font-weight: 500;
}

/* Carousel Images and Captions (Core & Care) */
.fixed-carousel {
    height: 200px; /* Adjust to fit cards */
    overflow: hidden;
    border-radius: 0.5rem;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
}

.carousel-caption {
    position: absolute;
    top: 50%; /* center vertically */
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    padding: 5px 25px; /* reduce top/bottom padding */
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    text-align: center;
    width: 80%; /* keep 80% width */
    max-width: 600px;
    white-space: normal; /* allow wrapping if needed */
    line-height: 1.2; /* tighter vertical text spacing */
    font-weight: bold;
    height:50px;
}





@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
