/* Anoop Profile */

        /* Option 1: Executive Box with Fairy Corners */
        .heading-box-1 {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 3px solid #dee2e6;
            border-radius: 15px;
            padding: 40px 60px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .heading-box-1 h1 {
            font-family: 'Georgia', serif;
            font-size: 2.8rem;
            color: #2c3e50;
            font-weight: bold;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .fairy-corner {
            position: absolute;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, #e74c3c, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            animation: fairy-pulse-corner 3s ease-in-out infinite;
        }

        .fairy-corner.top-left { top: -20px; left: -20px; animation-delay: 0s; }
        .fairy-corner.top-right { top: -20px; right: -20px; animation-delay: 0.7s; }
        .fairy-corner.bottom-left { bottom: -20px; left: -20px; animation-delay: 1.4s; }
        .fairy-corner.bottom-right { bottom: -20px; right: -20px; animation-delay: 2.1s; }

        @keyframes fairy-pulse-corner {
            0%, 100% { transform: scale(0.8); opacity: 0.7; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        /* Option 2: Corporate Glass Box */
        .heading-box-2 {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(52, 73, 94, 0.2);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 35px rgba(52, 73, 94, 0.1);
        }

        .heading-box-2 h1 {
            font-family: 'Helvetica', sans-serif;
            font-size: 2.6rem;
            color: #34495e;
            font-weight: 300;
            letter-spacing: 3px;
            margin: 0;
            text-transform: uppercase;
        }

        .fairy-accent-line {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #9b59b6, #3498db, #e74c3c);
            border-radius: 2px;
            animation: accent-glow 2s ease-in-out infinite alternate;
        }

        .fairy-accent-line::before,
        .fairy-accent-line::after {
            content: "✦";
            position: absolute;
            top: -8px;
            color: #e74c3c;
            font-size: 1rem;
            animation: fairy-twinkle 2s ease-in-out infinite;
        }

        .fairy-accent-line::before { left: -15px; }
        .fairy-accent-line::after { right: -15px; animation-delay: 1s; }

        @keyframes accent-glow {
            0% { box-shadow: 0 0 5px rgba(155, 89, 182, 0.5); }
            100% { box-shadow: 0 0 20px rgba(155, 89, 182, 0.8); }
        }

        @keyframes fairy-twinkle {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Option 3: Tech Frame Box */
        .heading-box-3 {
            background: #ffffff;
            border: 2px solid #bdc3c7;
            border-radius: 10px;
            padding: 45px 50px;
            text-align: center;
            position: relative;
            box-shadow: inset 0 0 0 8px #ecf0f1, 0 8px 25px rgba(0,0,0,0.08);
        }

        .heading-box-3 h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            font-weight: bold;
            margin: 0;
        }

        .tech-corner {
            position: absolute;
            width: 25px;
            height: 25px;
            border: 3px solid #3498db;
        }

        .tech-corner.top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
        .tech-corner.top-right { top: 15px; right: 15px; border-left: none; border-bottom: none; }
        .tech-corner.bottom-left { bottom: 15px; left: 15px; border-right: none; border-top: none; }
        .tech-corner.bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }

        .fairy-indicator {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #e74c3c;
            border-radius: 50%;
            animation: indicator-pulse 2s ease-in-out infinite;
        }

        .fairy-indicator.top-left { top: 12px; left: 12px; }
        .fairy-indicator.top-right { top: 12px; right: 12px; animation-delay: 0.5s; }
        .fairy-indicator.bottom-left { bottom: 12px; left: 12px; animation-delay: 1s; }
        .fairy-indicator.bottom-right { bottom: 12px; right: 12px; animation-delay: 1.5s; }

        @keyframes indicator-pulse {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        /* Option 4: Minimalist Professional Box */
        .heading-box-4 {
            background: #ffffff;
            border-left: 6px solid #080ea0;
            border-radius: 8px;
            padding: 20px 40px;
            text-align: left;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .heading-box-4 h1 {
            font-family: 'Muli', sans-serif;
            color: #2c3e50;
            font-weight: normal;
            margin: 0;
			    font-size: x-large;
        }

        .fairy-trail {
            position: absolute;
            top: 20px;
            right: 30px;
            display: flex;
            gap: 8px;
        }

        .trail-dot {
            width: 6px;
            height: 6px;
            background: #e74c3c;
            border-radius: 50%;
            animation: trail-flow 3s ease-in-out infinite;
        }

        .trail-dot:nth-child(1) { animation-delay: 0s; }
        .trail-dot:nth-child(2) { animation-delay: 0.3s; }
        .trail-dot:nth-child(3) { animation-delay: 0.6s; }
        .trail-dot:nth-child(4) { animation-delay: 0.9s; }
        .trail-dot:nth-child(5) { animation-delay: 1.2s; }

        @keyframes trail-flow {
            0%, 60%, 100% { opacity: 0.2; transform: scale(0.5); }
            30% { opacity: 1; transform: scale(1.5); }
        }

        /* Option 5: Hexagonal Professional Box */
        .heading-box-5 {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid #dee2e6;
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .heading-box-5 h1 {
            font-family: 'Helvetica', sans-serif;
            font-size: 2.7rem;
            color: #34495e;
            font-weight: 200;
            margin: 0;
            letter-spacing: 2px;
        }

        .hex-pattern {
            position: absolute;
            top: -50px;
            left: -50px;
            width: 100px;
            height: 100px;
            opacity: 0.1;
            animation: hex-rotate 10s linear infinite;
        }

        .hex-pattern::before {
            content: "";
            position: absolute;
            width: 60px;
            height: 34.64px;
            background: #9b59b6;
            top: 32.68px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .fairy-sparkle {
            position: absolute;
            color: #e74c3c;
            font-size: 1.5rem;
            animation: sparkle-dance 4s ease-in-out infinite;
        }

        .fairy-sparkle:nth-child(1) { top: 15%; right: 15%; animation-delay: 0s; }
        .fairy-sparkle:nth-child(2) { bottom: 15%; left: 15%; animation-delay: 2s; }

        @keyframes hex-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes sparkle-dance {
            0%, 100% { opacity: 0.3; transform: rotate(0deg) scale(0.8); }
            50% { opacity: 1; transform: rotate(180deg) scale(1.2); }
        }

        /* Option 6: Diamond Border Box */
        .heading-box-6 {
            background: #ffffff;
            border: 3px solid transparent;
            border-radius: 12px;
            padding: 45px 55px;
            text-align: center;
            position: relative;
            background-clip: padding-box;
        }

        .heading-box-6::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            margin: -3px;
            border-radius: inherit;
            background: linear-gradient(45deg, #3498db, #9b59b6, #e74c3c, #f39c12);
            animation: border-flow 4s linear infinite;
        }

        .heading-box-6 h1 {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            color: #2c3e50;
            font-weight: bold;
            margin: 0;
        }

        .diamond-fairy {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #e74c3c;
            transform: rotate(45deg);
            animation: diamond-float 3s ease-in-out infinite;
        }

        .diamond-fairy::before {
            content: "✨";
            position: absolute;
            top: -15px;
            left: -10px;
            transform: rotate(-45deg);
            font-size: 0.8rem;
        }

        .diamond-fairy.left { left: -10px; top: 50%; transform: translateY(-50%) rotate(45deg); }
        .diamond-fairy.right { right: -10px; top: 50%; transform: translateY(-50%) rotate(45deg); animation-delay: 1.5s; }

        @keyframes border-flow {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        @keyframes diamond-float {
            0%, 100% { transform: translateY(-50%) rotate(45deg) scale(0.8); }
            50% { transform: translateY(-60%) rotate(225deg) scale(1.2); }
        }

        /* Option 7: Split Panel Box */
        .heading-box-7 {
            background: #ffffff;
            border-radius: 15px;
            padding: 0;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            overflow: hidden;
            display: flex;
            align-items: center;
			line-height: 6px;
			
        }

        .panel-left {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 30px;
            flex: 0 0 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 26px;
        }

        .panel-main {
            padding: 40px 50px;
            flex: 1;
        }

        .heading-box-7 h1 {
            font-family: 'Arial', sans-serif;
            font-size: 32px;
            color: #2c3e50;
            font-weight: bold;
            margin: 0;
        }

        .side-fairy {
            color: white;
            font-size: 1.5rem;
            animation: side-glow 2s ease-in-out infinite alternate;
        }

        @keyframes side-glow {
            0% { opacity: 0.6; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        /* Option 8: Layered Professional Box */
        .heading-box-8 {
            background: #ffffff;
            border-radius: 18px;
            padding: 50px 60px;
            text-align: center;
            position: relative;
            box-shadow: 
                0 4px 8px rgba(0,0,0,0.06),
                0 8px 16px rgba(0,0,0,0.08),
                0 16px 32px rgba(0,0,0,0.1);
        }

        .heading-box-8::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid #ecf0f1;
            border-radius: 12px;
            z-index: -1;
        }

        .heading-box-8 h1 {
            font-family: 'Georgia', serif;
            font-size: 2.6rem;
            color: #34495e;
            font-weight: normal;
            margin: 0;
        }

        .layer-fairy {
            position: absolute;
            top: 50%;
            color: #e74c3c;
            font-size: 1.2rem;
            animation: layer-orbit 6s linear infinite;
        }

        .layer-fairy.orbit-1 { left: 20px; animation-delay: 0s; }
        .layer-fairy.orbit-2 { right: 20px; animation-delay: 3s; }

        @keyframes layer-orbit {
            0% { transform: translateY(-50%) rotateY(0deg); opacity: 0.4; }
            50% { opacity: 1; }
            100% { transform: translateY(-50%) rotateY(360deg); opacity: 0.4; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .heading-box-1, .heading-box-2, .heading-box-3, .heading-box-4, 
            .heading-box-5, .heading-box-6, .heading-box-8 {
                padding: 30px 20px;
            }
            
            .heading-box-1 h1, .heading-box-2 h1, .heading-box-3 h1, 
            .heading-box-4 h1, .heading-box-5 h1, .heading-box-6 h1, 
            .heading-box-7 h1, .heading-box-8 h1 {
                font-size: 25px;
            }
            
            .heading-box-7 {
                flex-direction: column;
            }
            
            .panel-left {
                flex: none;
                width: 100%;
                flex-direction: row;
                padding: 20px;
            }
            
            .fairy-corner, .diamond-fairy {
                display: none;
            }
        }
		

 /* AKHIL CSS*/
      .leadership-section {
            padding: 80px 20px;
           
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .section-tagline {
            font-size: 1.3rem;
            color: #5a6c7d;
            max-width: 700px;
            margin: 0 auto;
            font-style: italic;
            position: relative;
        }

        .section-tagline::before,
        .section-tagline::after {
            content: '"';
            font-size: 2rem;
            color: #667eea;
            font-weight: bold;
        }

        .leadership-cards {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .leadership-card {
            background: #ffffff;
            border-radius: 25px;
            padding: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            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.8);
        }

        .leadership-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .leadership-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .card-content {
            padding: 40px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }

        .card-main {
            flex: 1;
        }

        .card-header {
            margin-bottom: 20px;
        }

        .card-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .card-organization {
            font-size: 1.1rem;
            color: #667eea;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-left: 20px;
        }

        .card-organization::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .card-description {
            color: #5a6c7d;
            line-height: 1.8;
            font-size: 1rem;
            text-align: justify;
            margin-bottom: 25px;
        }

        .card-highlight {
            color: #667eea;
            font-weight: 700;
            position: relative;
        }

        .card-highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 1px;
            opacity: 0.6;
        }

        .card-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }

        .leadership-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
        }

        .site-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .site-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .site-button:hover::before {
            left: 0;
        }

        .site-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .site-button i {
            font-size: 0.8rem;
        }

        /* Special styling for cards without buttons */
        .card-action.no-button {
            justify-content: center;
        }

        .card-action.no-button .card-icon {
            background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
            box-shadow: 0 8px 25px rgba(149, 165, 166, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .leadership-section {
                padding: 60px 15px;
            }

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

            .section-tagline {
                font-size: 1.1rem;
            }

            .card-content {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 30px 25px;
                text-align: center;
            }

            .card-title {
                font-size: 1.6rem;
            }

            .card-organization {
                font-size: 1rem;
                padding-left: 0;
            }

            .card-organization::before {
                display: none;
            }

            .card-description {
                text-align: left;
                font-size: 0.95rem;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }

            .card-content {
                padding: 25px 20px;
            }

            .card-title {
                font-size: 1.4rem;
            }

            .card-description {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .site-button {
                padding: 12px 20px;
                font-size: 0.85rem;
            }
        }

        /* Animation for cards appearing */
        .leadership-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .leadership-card:nth-child(1) { animation-delay: 0.1s; }
        .leadership-card:nth-child(2) { animation-delay: 0.2s; }
        .leadership-card:nth-child(3) { animation-delay: 0.3s; }
        .leadership-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
		
		
		   /* LEADERSHIP SECTION */
		
		
		.leadership-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }

        .role-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border: 2px solid #e9ecef;
            border-radius: 15px;
            margin: 30px 0;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .role-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: #007bff;
        }

        .role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, rgba(0,123,255,0.6), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .role-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        /* Different heading styles */
        .role-1 .role-title {
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(102,126,234,0.3);
        }

        .role-2 .role-title {
            color: #e74c3c;
            text-shadow: 2px 2px 4px rgba(231,76,60,0.3);
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 5px;
        }

        .role-3 .role-title {
            background: linear-gradient(45deg, #f093fb, #f5576c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .role-3 .role-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(45deg, #f093fb, #f5576c);
            animation: expand 2s ease-in-out infinite alternate;
        }

        .role-4 .role-title {
            color: #2c3e50;
            font-style: italic;
            border-left: 5px solid #3498db;
            padding-left: 15px;
            background: linear-gradient(90deg, rgba(52,152,219,0.1), transparent);
        }

        @keyframes expand {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        .organization {
            font-size: 1.3rem;
            font-weight: 600;
            color: #495057;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .organization::before {
            content: '🏢';
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .description {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 25px;
            text-align: justify;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .join-button {
            display: inline-block;
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,123,255,0.3);
        }

        .join-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,123,255,0.4);
            background: linear-gradient(45deg, #0056b3, #003d82);
        }

        .join-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .join-button:hover::before {
            left: 100%;
        }

        .role-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            opacity: 0.1;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .role-1 { border-left: 5px solid #667eea; }
        .role-2 { border-left: 5px solid #e74c3c; }
        .role-3 { border-left: 5px solid #f5576c; }
        .role-4 { border-left: 5px solid #3498db; }

        .highlight-box {
            background: linear-gradient(135deg, rgba(0,123,255,0.05), rgba(102,126,234,0.05));
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #007bff;
            animation: slideInLeft 0.6s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stats-badge {
            display: inline-block;
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 5px 5px 5px 0;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @media (max-width: 768px) {
            .leadership-section {
                padding: 15px;
            }
            
            .role-card {
                padding: 20px;
                margin: 20px 0;
            }
            
            .role-title {
                font-size: 1.5rem;
            }
            
            .organization {
                font-size: 1.1rem;
            }
            
            .role-icon {
                font-size: 2rem;
                top: 15px;
                right: 15px;
            }
        }
		
		
		
		.experience-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }

        .experience-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border: 2px solid #e9ecef;
            border-radius: 15px;
            margin: 25px 0;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .experience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, rgba(0,123,255,0.6), transparent);
            animation: shimmer 4s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .experience-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        /* Different heading styles */
        .exp-1 .experience-title {
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(255,107,107,0.3);
        }

        .exp-2 .experience-title {
            color: #8b5cf6;
            border-bottom: 3px solid #8b5cf6;
            padding-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .exp-3 .experience-title {
            background: linear-gradient(45deg, #06d6a0, #118ab2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .exp-3 .experience-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(45deg, #06d6a0, #118ab2);
            animation: expandWidth 2s ease-in-out infinite alternate;
        }

        .exp-4 .experience-title {
            color: #e63946;
            font-style: italic;
            border-left: 6px solid #f77f00;
            padding-left: 15px;
            background: linear-gradient(90deg, rgba(247,127,0,0.1), transparent);
        }

        .exp-5 .experience-title {
            background: linear-gradient(45deg, #7209b7, #f72585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: underline;
            text-decoration-color: #7209b7;
        }

        .exp-6 .experience-title {
            color: #2d6a4f;
            border: 2px solid #2d6a4f;
            padding: 8px 15px;
            border-radius: 10px;
            display: inline-block;
            background: rgba(45,106,79,0.05);
        }

        .exp-7 .experience-title {
            background: linear-gradient(45deg, #ffd60a, #ff8500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            font-weight: 800;
        }

        .exp-7 .experience-title::before {
            content: '★';
            position: absolute;
            left: -25px;
            color: #ffd60a;
            animation: twinkle 2s infinite;
        }

        .exp-8 .experience-title {
            color: #6f42c1;
            border-bottom: 2px dashed #6f42c1;
            padding-bottom: 5px;
            font-variant: small-caps;
        }

        .exp-9 .experience-title {
            background: linear-gradient(45deg, #ff0844, #ffb199);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: skew(-5deg);
            display: inline-block;
        }

        @keyframes expandWidth {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .description {
            font-size: 1rem;
            color: #6c757d;
            text-align: justify;
            animation: fadeInUp 0.8s ease-out;
            line-height: 1.7;
        }

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

        .experience-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2.5rem;
            opacity: 0.15;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-8px) rotate(2deg); }
            75% { transform: translateY(8px) rotate(-2deg); }
        }

        /* Color-coded left borders */
        .exp-1 { border-left: 5px solid #ff6b6b; }
        .exp-2 { border-left: 5px solid #8b5cf6; }
        .exp-3 { border-left: 5px solid #06d6a0; }
        .exp-4 { border-left: 5px solid #f77f00; }
        .exp-5 { border-left: 5px solid #7209b7; }
        .exp-6 { border-left: 5px solid #2d6a4f; }
        .exp-7 { border-left: 5px solid #ffd60a; }
        .exp-8 { border-left: 5px solid #6f42c1; }
        .exp-9 { border-left: 5px solid #ff0844; }

        .highlight-section {
            background: linear-gradient(135deg, rgba(0,123,255,0.05), rgba(102,126,234,0.05));
            border-radius: 10px;
            padding: 18px;
            margin: 15px 0;
            border-left: 4px solid #007bff;
            animation: slideInLeft 0.6s ease-out;
            position: relative;
        }

        .highlight-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid #007bff;
            border-bottom: 15px solid transparent;
            opacity: 0.3;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .category-badge {
            display: inline-block;
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin: 8px 8px 8px 0;
            animation: pulse 3s infinite;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .disaster-badge { background: linear-gradient(45deg, #dc3545, #fd7e14); }
        .tech-badge { background: linear-gradient(45deg, #6f42c1, #e83e8c); }
        .security-badge { background: linear-gradient(45deg, #343a40, #6c757d); }
        .training-badge { background: linear-gradient(45deg, #007bff, #6610f2); }

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

        .experience-card:nth-child(even) {
            background: linear-gradient(145deg, #f8f9fa, #ffffff);
        }

        .experience-card:hover .experience-icon {
            animation-duration: 2s;
            opacity: 0.25;
        }

        @media (max-width: 768px) {
            .experience-section {
                padding: 0px;
            }
            
            .experience-card {
                padding: 20px;
                margin: 20px 0;
            }
            
            .experience-title {
                font-size: 1.4rem;
            }
            
            .experience-icon {
                font-size: 2rem;
                top: 15px;
                right: 15px;
            }

            .exp-9 .experience-title {
                transform: none;
            }
        }