﻿:root {
    --primary-color: #0e314c;
    --secondary-color: #ff612f;
    --accent-color: #4fbbff;
    --success-color: #36cc72;
    --warning-color: #ffb700;
    --danger-color: #e63c3c;
    --purple-color: #6865ff;
    --bg-light-color: #f4f6fc;
    --bg-white-color: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #555;
    line-height: 1.7;
    background-color: #f8f9fa;
    padding-top: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--secondary-color);
    }

/* Page Title Area */
.page-title-area {
    background: linear-gradient(135deg, var(--primary-color), #1a4b6e);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.page-title-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.page-title-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

    .page-title-content ul li {
        position: relative;
        margin-right: 20px;
        padding-right: 20px;
    }

        .page-title-content ul li:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: 0;
            top: 0;
            color: rgba(255, 255, 255, 0.5);
        }

        .page-title-content ul li a {
            color: rgba(255, 255, 255, 0.8);
        }

            .page-title-content ul li a:hover {
                color: #fff;
            }

.shape-img1, .shape-img2, .shape-img3 {
    position: absolute;
    z-index: 1;
    opacity: 0.2;
}

.shape-img1 {
    top: 20%;
    right: 10%;
    animation: move1 5s linear infinite;
}

.shape-img2 {
    bottom: 20%;
    left: 10%;
    animation: move2 5s linear infinite;
}

.shape-img3 {
    top: 60%;
    right: 30%;
    animation: move3 5s linear infinite;
}

@keyframes move1 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes move2 {
    0% {
        transform: translateX(0) rotate(0);
    }

    50% {
        transform: translateX(-20px) rotate(180deg);
    }

    100% {
        transform: translateX(0) rotate(360deg);
    }
}

@keyframes move3 {
    0% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

/* Section Styling */
.ptb-100 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-f4f6fc {
    background-color: var(--bg-light-color);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

    .section-title .sub-title {
        display: block;
        color: var(--primary-color);
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
    }

        .section-title .sub-title i {
            margin-right: 5px;
            color: var(--secondary-color);
        }

    .section-title h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    .section-title p {
        max-width: 800px;
        margin: 0 auto;
    }

/* Content Box Styling */
.single-services-box {
    background-color: var(--bg-white-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .single-services-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .single-services-box .icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        font-size: 28px;
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }

    .single-services-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 700;
        color: var(--primary-color);
    }

/* Color Classes */
.bg-4fbbff {
    background-color: #4fbbff !important;
    color: white !important;
}

.bg-ff612f {
    background-color: #ff612f !important;
    color: white !important;
}

.bg-36cc72 {
    background-color: #36cc72 !important;
    color: white !important;
}

.bg-ffb700 {
    background-color: #ffb700 !important;
    color: white !important;
}

.bg-e63c3c {
    background-color: #e63c3c !important;
    color: white !important;
}

.bg-6865ff {
    background-color: #6865ff !important;
    color: white !important;
}

/* Criteria Items */
.criteria-boxes {
    margin-top: 30px;
}

.criteria-item {
    background-color: var(--bg-white-color);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
}

    .criteria-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.criteria-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    background-color: rgba(14, 49, 76, 0.1);
    color: var(--primary-color);
}

.criteria-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Filter Bar Styles */
.filter-bar {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.search-box {
    position: relative;
}

    .search-box input {
        padding-right: 35px;
    }

    .search-box i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
    }

.view-switch button {
    margin-left: 5px;
}

/* Table Styles */
.custom-table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
}

    .custom-table thead th {
        background-color: var(--primary-color);
        color: white;
        font-weight: 600;
        border: none;
    }

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.social-name {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

/* Card View Styles */
.social-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

    .social-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.social-card-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.social-logo {
    width: 40px;
    height: 40px;
}

    .social-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.social-card-body {
    padding: 15px;
}

    .social-card-body h4 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--primary-color);
    }

.metrics {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

    .metrics span {
        font-size: 13px;
        color: #777;
    }

.social-id {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.social-card-footer {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

/* Info Item Styles */
.account-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.info-icon {
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    background-color: rgba(14, 49, 76, 0.1);
    color: var(--primary-color);
}

.info-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-text p {
    margin: 0;
    font-size: 14px;
}

/* Feature Box Styles */
.feature-box {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.feature-highlights {
    margin: 20px 0;
}

.feature-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.highlight-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(14, 49, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    color: var(--primary-color);
}

.highlight-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-image-container {
    position: relative;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-image-container:hover .image-overlay {
    opacity: 1;
}

/* Custom Lists */
.custom-check-list li,
.custom-icon-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.check-icon, .list-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(14, 49, 76, 0.1);
    color: var(--primary-color);
}

.check-text strong,
.list-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.facebook-icon {
    background-color: #1877f2 !important;
    color: white !important;
}

.login-icon {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Security Note */
.security-note {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

.security-icon {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(14, 49, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 30px;
    color: var(--primary-color);
}

.security-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-area {
    margin-top: 50px;
}

.testimonials-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

    .client-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.client-details h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.client-details span {
    color: #777;
    font-size: 14px;
}

.rating {
    color: #ffb700;
    margin-top: 10px;
    font-size: 18px;
}

/* Community Features */
.community-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

    .community-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.community-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(14, 49, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

/* FAQ Styles */
.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    box-shadow: none !important;
    border-radius: var(--border-radius) !important;
}

    .accordion-button:not(.collapsed) {
        color: var(--secondary-color);
        background-color: #fff;
    }

    .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .accordion-button::after {
        background-size: 16px;
        width: 16px;
        height: 16px;
    }

.accordion-body {
    padding: 15px 20px;
    background-color: #f9f9f9;
}

/* CTA Section */
.app-download-inner {
    background: linear-gradient(135deg, var(--primary-color), #1a4b6e);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-download-content .sub-title {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.app-download-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.app-download-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.playstore-btn, .demo-btn {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    margin-right: 15px;
    margin-bottom: 15px;
}

.playstore-btn {
    background: var(--secondary-color);
    color: #fff;
}

.demo-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-box .icon {
    font-size: 30px;
    margin-bottom: 5px;
}

.btn-box span {
    font-size: 14px;
    font-weight: 400;
}

.btn-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.users-count {
    display: flex;
    align-items: center;
}

.users-avatars {
    display: flex;
    margin-right: 15px;
}

    .users-avatars img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid white;
        margin-right: -15px;
    }

.users-count p {
    margin: 0;
    color: white;
}

.users-count span {
    font-weight: 700;
}

.main-image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-note {
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
    color: #777;
    border-top: 1px solid #eee;
    font-size: 14px;
}

/* Helper Classes */
.mb-5 {
    margin-bottom: 3rem;
}

.fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--primary-color);
        transform: translateY(-5px);
    }

/* Media Queries */
@media (max-width: 991px) {
    .page-title-area {
        padding: 40px 0;
    }

    .page-title-content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .app-download-content h2 {
        font-size: 24px;
    }

    .btn-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .playstore-btn, .demo-btn {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .page-title-area {
        padding: 30px 0;
    }

    .page-title-content h1 {
        font-size: 1.7rem;
    }

    .single-services-box {
        padding: 20px;
    }

    .ptb-100 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .security-note {
        flex-direction: column;
        text-align: center;
    }

    .security-icon {
        margin: 0 auto 20px;
    }
}
/* Featured Services Section Styles */
.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-white {
    background-color: var(--bg-white-color);
}

.service-card {
    background-color: var(--bg-white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.service-card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(14, 49, 76, 0.02);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 28px;
    color: white;
}

.service-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-card-body {
    padding: 20px;
}

.service-features {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

    .service-features li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 8px;
        font-size: 15px;
    }

        .service-features li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--success-color);
        }

.price-tag {
    background-color: rgba(14, 49, 76, 0.05);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

    .price-tag span {
        font-size: 14px;
        color: #777;
        margin-right: 5px;
    }

    .price-tag strong {
        font-size: 18px;
        color: var(--secondary-color);
    }

.service-card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

/* Anti-Spam Box Styles */
.anti-spam-box {
    background-color: rgba(54, 204, 114, 0.08);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--success-color);
}

.anti-spam-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: var(--success-color);
    box-shadow: 0 5px 15px rgba(54, 204, 114, 0.2);
}

.anti-spam-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.learn-more-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .learn-more-link i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .learn-more-link:hover i {
        transform: translateX(3px);
    }

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, rgba(14, 49, 76, 0.05), rgba(255, 97, 47, 0.05));
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .cta-content p {
        margin-bottom: 25px;
        font-size: 16px;
    }

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 767px) {
    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .btn {
            margin-right: 0 !important;
            margin-bottom: 10px;
        }
}


