
        :root {
            --primary-color: #4361ee;
            --primary-light: rgba(67, 97, 238, 0.1);
            --secondary-color: #f72585;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --success-color: #4cc9f0;
            --gradient-blue: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            --gradient-green: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #3a56e8;
            border-color: #3a56e8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        /* Breadcrumb Area */
        .breadcumb-area {
            background: url('../FeatureHero.jpg') no-repeat center center/cover;
            padding: 180px 0;
            position: relative;
            overflow: hidden;
        }

        .breadcumb-area:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .breadcumb-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .breadcumb-inner {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
        }

        .breadcumb-inner ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            flex-wrap: wrap;
        }

        .breadcumb-inner ul li {
            margin: 0 10px;
            color: #fff;
        }

        .breadcumb-inner ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcumb-inner ul li a:hover {
            color: var(--primary-light);
        }

        .breadcumb-inner ul li i {
            margin-right: 10px;
        }

        .brpt h2 {
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Trust Badge */
        .trust-badge-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 3;
            flex-direction: column;
            align-items: center;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            position: relative;
        }

        .trust-title-text {
            font-size: 14px;
            font-weight: 600;
            color: silver;
            text-align: center;
            line-height: 1.2;
            min-width: 80px;
        }

        .trust-leaf-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf {
            width: 44px;
            height: 44px;
            background-image: url('../badge.webp');
            background-size: contain;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf-left {
            transform: scaleX(-1);
        }

        .trust-subtitle {
            font-size: 14px;
            color: var(--gray-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .trust-subtitle::before,
        .trust-subtitle::after {
            content: "";
            height: 1px;
            width: 50px;
            display: inline-block;
            background: var(--primary-light);
        }

        .trust-subtitle::before {
            background: linear-gradient(to right, var(--primary-light), var(--primary-color));
        }

        .trust-subtitle::after {
            background: linear-gradient(to left, var(--primary-light), var(--primary-color));
        }

        /* Features Header */
        .features-header {
            text-align: center;
            padding: 60px 0 40px;
        }

        .features-header h2 {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .features-header h2:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .features-header p {
            color: var(--gray-color);
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        /* Features Card Section */
        .features-card-section {
            padding: 60px 0;
            position: relative;
        }

        .features-card-section:before {
            content: '';
            position: absolute;
            top: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(248, 249, 250, 0) 70%);
            z-index: 0;
        }

        .feature-card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(20px);
            opacity: 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            height: 90%;
            margin-bottom: 30px;
        }

        .feature-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }

        .feature-card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .feature-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .feature-card:hover .feature-card-img img {
            transform: scale(1.05);
        }

        .feature-card-body {
            padding: 25px;
        }

        .feature-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .feature-card-text {
            color: var(--gray-color);
            margin-bottom: 20px;
        }

        .feature-card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }

        .feature-card-features li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
        }

        .feature-card-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--success-color);
        }

        /* Detailed Features Section */
        .detailed-features-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .detailed-features-item {
            margin-bottom: 60px;
        }

        .detailed-features-img {
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            height: 100%;
        }

        .detailed-features-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .detailed-features-content {
            padding: 30px;
        }

        .detailed-features-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
        }

        .detailed-features-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px 0 0;
            border-radius: 2px;
        }

        .detailed-features-text {
            margin-bottom: 20px;
            color: var(--gray-color);
        }

        .features-benefits {
            margin: 30px 0;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .benefit-content p {
            color: var(--gray-color);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Platform Highlights Section */
        .highlights-section {
            padding: 60px 0;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .highlights-section:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
            z-index: 0;
        }

        .highlights-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .highlights-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .highlights-title p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .highlight-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .highlight-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .highlight-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .highlight-text {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Features Comparison Section */
        .comparison-section {
            padding: 60px 0;
            background: white;
        }

        .comparison-table {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .table thead th {
            background: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 15px;
            text-align: center;
            border: none;
        }

        .table tbody tr:nth-child(even) {
            background-color: rgba(248, 249, 250, 0.5);
        }

        .table tbody td {
            padding: 15px;
            vertical-align: middle;
            border: none;
        }

        .table tbody td:first-child {
            font-weight: 600;
        }

        .table tbody td i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 60px 0;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
            z-index: 0;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.25rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .brpt h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .brpt h2 {
                font-size: 2.5rem;
            }

            .detailed-features-img {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .breadcumb-area {
                padding: 120px 0 60px;
            }

            .brpt h2 {
                font-size: 2rem;
            }

            .feature-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 575.98px) {
            .breadcumb-area {
                padding: 100px 0 40px;
            }

            .brpt h2 {
                font-size: 1.8rem;
            }

            .features-cta-title {
                font-size: 2rem;
            }
        }