

       

   

        .profile-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: slideInUp 1s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header {
            background: linear-gradient(135deg, #0e134a, #3498db);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.3);
            margin: 0 auto 30px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
            animation: profileEntry 1.5s ease-out;
            backdrop-filter: blur(5px);
        }

        @keyframes profileEntry {
            0% {
                opacity: 0;
                transform: scale(0.3) rotate(-180deg);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1) rotate(-90deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 2px,
                rgba(255,255,255,0.03) 2px,
                rgba(255,255,255,0.03) 4px
            );
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
			color: #ffffff;
        }

        .social-links {
            position: relative;
            z-index: 2;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-block;
            margin: 0 15px;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .content {
            padding: 40px;
        }

        .section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section:nth-child(1) { animation-delay: 0.2s; }
        .section:nth-child(2) { animation-delay: 0.4s; }
        .section:nth-child(3) { animation-delay: 0.6s; }
        .section:nth-child(4) { animation-delay: 0.8s; }

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

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;

        }

        .section-title.professional-experience {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            animation: slideInFromLeft 1s ease-out;
        }

        .section-title.leadership-roles {
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            animation: bounceIn 1.2s ease-out;
        }

        .section-title.innovation-background {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            color: white;
            animation: rotateIn 1.5s ease-out;
        }

        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-100px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes rotateIn {
            0% {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }
            100% {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

        .section-title.professional-experience:hover {
            background: linear-gradient(135deg, #764ba2, #667eea);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }

        .section-title.leadership-roles:hover {
            background: linear-gradient(135deg, #f5576c, #f093fb);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(245, 87, 108, 0.3);
        }

        .section-title.innovation-background:hover {
            background: linear-gradient(135deg, #00f2fe, #4facfe);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            border-left: 5px solid #3498db;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .role-card {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid #3498db;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
            transition: left 0.5s ease;
        }

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

        .role-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .role-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
			text-transform: uppercase;
        }

        .role-subtitle {
            font-size: 1.2rem;
            color: #3498db;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .role-description {
            color: #1d1c1c;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .role-link {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .role-link:hover {
            background: linear-gradient(135deg, #2980b9, #1f639a);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
        }

        /* Enhanced Innovation Cards */
        .innovation-item {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: blur(20px);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .innovation-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px 20px 0 0;
        }

        .innovation-item::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--primary-color)10 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .innovation-item:hover::after {
            opacity: 0.03;
        }

        .innovation-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .innovation-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }

        .innovation-item:hover .innovation-icon::before {
            transform: rotate(45deg) translate(100%, 100%);
        }

        .innovation-content {
            flex: 1;
        }

        .innovation-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
			text-transform: uppercase;
        }

        .innovation-description {
            color: #0e0e0e;
            line-height: 1.7;
            
        }

        .innovation-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .innovation-item:hover .innovation-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        /* Color themes for different categories */
        .innovation-item.employment {
            --primary-color: #27ae60;
            --secondary-color: #2ecc71;
        }

        .innovation-item.forensic {
            --primary-color: #8e44ad;
            --secondary-color: #9b59b6;
        }

        .innovation-item.regulatory {
            --primary-color: #f39c12;
            --secondary-color: #e67e22;
        }

        .innovation-item.defense {
            --primary-color: #c0392b;
            --secondary-color: #e74c3c;
        }

        .innovation-item.disaster {
            --primary-color: #3498db;
            --secondary-color: #2980b9;
        }

        .innovation-item.rescue {
            --primary-color: #16a085;
            --secondary-color: #1abc9c;
        }

        .innovation-item.health {
            --primary-color: #e67e22;
            --secondary-color: #d35400;
        }

        .innovation-item.security {
            --primary-color: #34495e;
            --secondary-color: #2c3e50;
        }

        .innovation-item.environment {
            --primary-color: #2ecc71;
            --secondary-color: #27ae60;
        }

        .innovation-item.agriculture {
            --primary-color: #f1c40f;
            --secondary-color: #f39c12;
        }

        .innovation-item.education {
            --primary-color: #9b59b6;
            --secondary-color: #8e44ad;
        }

        .highlight {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            padding: 2px 8px;
            border-radius: 5px;
            font-weight: 600;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .content {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .role-card, .innovation-item {
                padding: 20px;
            }

            .innovation-item {
                flex-direction: column;
                text-align: center;
            }

            .innovation-icon {
                align-self: center;
            }
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.2);
            z-index: 1000;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12);
            width: 0%;
            transition: width 0.1s ease;
        }