/* 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: 1px;
			
        }

        .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;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            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 */
		
		
		.professional-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 3px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin: 2rem 0;
        }

        .achievement-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 0.8s ease forwards;
            position: relative;
        }

        .achievement-card:nth-child(even) {
            animation-delay: 0.2s;
        }

        .achievement-card:nth-child(odd) {
            animation-delay: 0.4s;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            background-size: 300% 100%;
            animation: gradientShift 4s ease infinite;
        }

        .achievement-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            padding: 2.5rem 2rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .card-header::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.6s;
        }

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

        .achievement-title {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
            position: relative;
        }

        .achievement-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .achievement-card:hover .achievement-title::after {
            width: 100px;
        }

        .card-content {
            padding: 0 2rem 2.5rem;
        }

        .achievement-description {
            font-size: 1.1rem;
            color: #555;
            text-align: justify;
            text-indent: 1.5em;
            position: relative;
            z-index: 1;
        }

        .highlight {
            background: linear-gradient(120deg, rgba(255, 107, 107, 0.15) 0%, rgba(78, 205, 196, 0.15) 100%);
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
            color: #2c3e50;
            position: relative;
            transition: all 0.3s ease;
        }

        .highlight:hover {
            background: linear-gradient(120deg, rgba(255, 107, 107, 0.25) 0%, rgba(78, 205, 196, 0.25) 100%);
            transform: scale(1.05);
        }

        .icon-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .achievement-card:hover .icon-overlay {
            opacity: 1;
            transform: scale(1.1) rotate(10deg);
        }

        /* Category-specific styling */
        .category-military .icon-overlay::before { content: '🛡️'; }
        .category-disaster .icon-overlay::before { content: '🚁'; }
        .category-innovation .icon-overlay::before { content: '🚀'; }
        .category-current .icon-overlay::before { content: '⚡'; }

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

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @media (max-width: 768px) {
            .professional-section {
                padding: 1.5rem 0.5rem;
            }

            .achievements-grid {
                gap: 2rem;
            }

            .card-header {
                padding: 2rem 1.5rem 1rem;
            }

            .card-content {
                padding: 0 1.5rem 2rem;
            }

            .achievement-description {
                font-size: 1rem;
                text-indent: 1em;
            }

            .icon-overlay {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                letter-spacing: 1px;
            }

            .card-header {
                padding: 1.5rem 1rem 0.5rem;
            }

            .card-content {
                padding: 0 1rem 1.5rem;
            }

            .achievement-description {
                font-size: 0.95rem;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Enhanced focus accessibility */
        .achievement-card:focus-within {
            outline: 3px solid rgba(102, 126, 234, 0.5);
            outline-offset: 2px;
        }