
       :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .text-center.float-left {
            float: right;
        }

        /* h5.fw-bold.mb-3 {
            color: black;
        }

        h6.fw-bold.mb-2 {
            color: black;
        } */
        /* Hero Section - Fixed padding to account for navbar */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 120px 0 20px 0; /* Increased top padding to avoid navbar overlap */
            position: relative;
            overflow: hidden;
        }

        .hero::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 1000 1000"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

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

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

        /* Sections with proper spacing */
        .section {
            padding: 30px 0;
        }

        .features {
            background: var(--light-bg);
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.2s ease;
            margin-bottom: 30px;
            border: 2px solid transparent;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--secondary-color);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--secondary-color), var(--success-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Roles Section */
        .roles {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .role-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px 0px 0px 25px;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.2s ease;
            height: 100%;
        }

        .role-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        /* Reports Section */
        .reports {
            background: var(--light-bg);
        }

        .report-item {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--secondary-color);
            transition: all 0.2s ease;
            width: 100%;
            max-width: 630px;
            height: 100%;
            max-height: 150px;
        }

        .report-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        /* Fast animations using Bootstrap classes */
        .animate__animated {
            animation-duration: 0.3s !important;
        }

        .animate__fast {
            animation-duration: 0.2s !important;
        }

        .animate__faster {
            animation-duration: 0.1s !important;
        }

        /* Custom fast animations */
        .floating {
            animation: floating 2s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .pulse-fast {
            animation: pulse-fast 1s infinite;
        }

        @keyframes pulse-fast {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255,255,255,0.2);
            z-index: 9999;
        }
        
        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-color), var(--success-color));
            width: 0%;
            transition: width 0.1s ease;
        }

        /* Notifications section */
        .notifications {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
        }

        .notification-item {
            text-align: center;
            margin-bottom: 20px;
        }

        .notification-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--warning-color);
        }

        /* Module list section */
        .Process {
            background: white;
        }

        .module-item {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid var(--success-color);
            transition: all 0.2s ease;
        }

        .module-item:hover {
            transform: translateX(5px);
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Process details section */
        .process-details {
            background: var(--light-bg);
        }

        .process-detail-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
            width: 100%;
            max-width: 550px;
            height: 100%;
            max-height: 120px;
        }

        .process-detail-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 110px 0 15px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .section {
                /* padding: 60px 0; */
            }
        }
        .floating-action-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--secondary-color), var(--success-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.2s ease;
            z-index: 1000;
        }
        
        .floating-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            background: linear-gradient(45deg, var(--success-color), var(--secondary-color));
        }
        
        .animate__faster {
            animation-duration: 0.2s !important;
        }
        
        .animate__fast {
            animation-duration: 0.3s !important;
        }
        
        .feature-card, .role-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-evenly;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--warning-color);
            color: var(--warning-color);
            transition: all 0.2s ease;
        }
        
        .btn-outline-custom:hover {
            background: var(--warning-color);
            color: white;
        }
        
        @media (max-width: 768px) {
            .floating-action-btn {
                bottom: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .display-5 {
                font-size: 2rem;
                color: black;
            }
            .hero-content{
                padding-top: 10px;
                text-align: center;
            }
            .report-item{
                height: 100%;
                max-height: 200px;
            }
        }