        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(45deg, #ff6b6b, #ee5a24);
            --border-radius: 20px;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .fixed-top {
            border-bottom: red 4px solid;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .hero-section {
            padding: 110px 0 10px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            background: rgb(242, 75, 85);
            /* Updated background color */
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }
        }

        .content-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            /*max-width: 600px;*/
            margin: 0 auto;
        }

        .module-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
            position: relative;
            overflow: hidden;
            /*margin-bottom: 30px;*/
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #5DA5E4;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .module-card:hover::before {
            transform: scaleX(1);
        }

        .module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .module-icon {
            width: 70px;
            height: 70px;
            background: #5DA5E4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .module-card:hover .module-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .module-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .module-card .tital {
            position: absolute;
            left: 130px;
            top: 60px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 4px 0;
            color: #555;
            position: relative;
            padding-left: 30px;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .dashboard-section {
            background: var(--primary-gradient);
            position: relative;
            padding: 50px 0;
            overflow: hidden;
        }

        .dashboard-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(1deg);
            }
        }

        .dashboard-section .section-title h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
        }

        .section-title p {
            font-size: 1.3rem;
            font-weight: 400;
            /*opacity: 0.9;*/
            margin-bottom: 0;
        }

        .dashboard-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(25px);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.8s;
        }

        .dashboard-card:hover::before {
            left: 100%;
        }

        .dashboard-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: var(--hover-shadow);
        }

        .dashboard-card h5 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .dashboard-card h5 i {
            background: var(--secondary-gradient);
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            font-size: 1.2rem;
        }

        .report-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .report-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            /*background: var(--secondary-gradient);
            transition: width 0.9s ease;*/
        }

        /*.report-item:hover::before {
            width: 100%;
            opacity: 0.0;
        }*/

        .report-item:hover {
            /*background: rgba(255, 255, 255, 0.25);*/
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .report-item h6 {
            font-size: 1.3rem;
            font-weight: 600;
            /*color: #fff;*/
            color: #343232;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .report-item h6::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--secondary-gradient);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(245, 87, 108, 0.5);
        }

        .report-item p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1rem;
            flex-grow: 1;
        }

        .report-item strong {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 10px;
        }

        .report-item small {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .comprehensive-card {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .comprehensive-card h5 {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .comprehensive-item {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid;
            border-image: var(--secondary-gradient) 1;
            transition: var(--transition);
            height: 100%;
        }

        .comprehensive-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }

        .comprehensive-item strong {
            color: #343232;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }

            .dashboard-card {
                padding: 25px;
            }

            .report-item {
                padding: 20px;
            }
        }

        /* Animation Classes */
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stagger-animation {
            animation: staggerIn 0.6s ease-out;
        }

        @keyframes staggerIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .app-features-section .section-title h2 {
            color: white;
            margin-top: 10px;
        }

        .app-features-section .section-title p {
            font-weight: 500;
            color: whitesmoke;
        }

        .app-features-section {
            background-image: url(../img/sfaFeature.webp);
            background-size: cover;
            background-position: center;
            padding: 30px 0;
            position: relative;
        }

        .app-features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #00000087;
            z-index: 0;
        }

        .feature-category {
            background: #ebeaea;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        /* ✅ Make all feature cards equal height across devices */
        .app-features-section .row {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
        }

        .app-features-section .col-lg-4 {
            display: flex;
        }

        .app-features-section .feature-category {
            flex: 1;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            /* keep title on top, content spaced */
            background: #ebeaea;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .feature-category .sub-features-one {
            max-height: 1px;
            width: 100%;
            height: 100%;
        }

        .feature-category.sub-features-ttwo {
            width: 100%;
            height: 100%;
            max-height: 160px;
        }

        .feature-category.sub-features-three {
            height: 100%;
            width: 100%;
            max-height: 190px;
        }

        .feature-category:hover {
            transform: translateY(-10px);
            /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);*/
            box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
        }

        .feature-category h5 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .sub-features {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {

            .app-features-section .row {
                flex-direction: column;
                /* stack cards properly */
            }

            .app-features-section .col-lg-4 {
                width: 100%;
                display: flex;
            }

            .app-features-section .feature-category {
                width: 100%;
                margin-bottom: 15px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .module-card {
                margin-bottom: 30px;
            }

            .reports-grid {
                grid-template-columns: 1fr;
            }

            .feature-category.sub-features-three {
                height: 100%;
                width: 100%;
                max-height: 500px;
            }

            .feature-category {
                margin-bottom: 5px;
            }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* footer {
            background: #2c3e50 !important;
        } */
