 /* ============================================
           ENHANCED DEVOPS PORTFOLIO WITH ANIMATIONS
           Interactive, Floating Icons, Code Animations
           ============================================ */

 :root {
     --primary: #00ffcc;
     --secondary: #7b2ff7;
     --accent: #ff0080;
     --bg-dark: #0a0e27;
     --bg-card: #12172e;
     --bg-elevated: #1a1f3a;
     --text-primary: #e4e4f0;
     --text-secondary: #8b92b0;
     --border: #1f2544;
     --glow: rgba(0, 255, 204, 0.3);
     --gradient-1: linear-gradient(135deg, #00ffcc 0%, #7b2ff7 100%);
     --gradient-2: linear-gradient(135deg, #ff0080 0%, #7b2ff7 100%);
 }

 /*  */
 #beyond-code-section {
     padding: 6rem 0;
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg, var(--bg-dark) 0%, #0f172a 100%);
 }

 .extra-info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: stretch;
 }

 @media (max-width: 900px) {
     .extra-info-grid {
         grid-template-columns: 1fr;
     }
 }

 /* --- DevOps & Engineering Card --- */
 .devops-card {
     background-color: var(--bg-card);
     padding: 2.5rem;
     border-radius: var(--radius);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
     border: 1px solid rgba(59, 130, 246, 0.2);
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .card-header h3 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
 }

 .card-header h3 svg {
     margin-right: 0.75rem;
     color: var(--accent-light);
     filter: drop-shadow(0 0 8px var(--accent-light));
 }

 .card-subtitle {
     color: var(--text-secondary);
     font-size: 1rem;
     margin-bottom: 1rem;
     font-family: 'JetBrains Mono', monospace;
 }

 .devops-skills {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .skill-category h4 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.1rem;
     color: var(--accent-light);
     margin-bottom: 0.75rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .skill-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
 }

 .skill-tag {
     font-family: 'JetBrains Mono', monospace;
     padding: 0.5rem 1rem;
     border-radius: 6px;
     background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
     color: var(--text-primary);
     border: 1px solid rgba(59, 130, 246, 0.3);
     font-size: 0.85rem;
     transition: all 0.3s ease;
     cursor: default;
     white-space: nowrap;
 }

 .skill-tag:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
     border-color: var(--accent-light);
 }

 .engineering-principles {
     background: rgba(0, 0, 0, 0.2);
     padding: 1.5rem;
     border-radius: 8px;
     border-left: 4px solid var(--accent);
 }

 .engineering-principles h4 {
     font-family: 'Space Grotesk', sans-serif;
     color: var(--text-primary);
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .engineering-principles ul {
     list-style: none;
     padding-left: 0;
 }

 .engineering-principles li {
     color: var(--text-secondary);
     margin-bottom: 0.75rem;
     padding-left: 1.5rem;
     position: relative;
 }

 .engineering-principles li:before {
     content: "▸";
     color: var(--accent);
     position: absolute;
     left: 0;
 }

 /* --- Interactive Map Card --- */
 .location-card {
     background-color: var(--bg-card);
     border-radius: var(--radius);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
     overflow: hidden;
     display: flex;
     flex-direction: column;
 }

 .map-header {
     padding: 2rem 2rem 1rem;
 }

 .map-header h3 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.8rem;
     color: var(--text-primary);
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .map-subtitle {
     color: var(--text-secondary);
     font-size: 0.95rem;
 }

 /* --- Google Map Container Styles --- */
 .map-container {
     flex: 1;
     position: relative;
     min-height: 400px;
     background: #1a1a2e;
     overflow: hidden;
 }

 #google-map {
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 /* Custom Google Maps styling */
 .gm-style {
     font-family: 'JetBrains Mono', monospace !important;
 }

 /* Override Google Maps default controls */
 .gm-style .gm-style-iw {
     background-color: var(--bg-card) !important;
     border: 1px solid rgba(59, 130, 246, 0.3) !important;
     border-radius: 8px !important;
     padding: 1rem !important;
     font-family: 'JetBrains Mono', monospace !important;
     color: var(--text-primary) !important;
 }

 .gm-style .gm-style-iw-c {
     padding: 0 !important;
     max-width: 300px !important;
 }

 .gm-style .gm-style-iw-d {
     padding: 1rem !important;
     overflow: hidden !important;
 }

 .gm-ui-hover-effect {
     filter: invert(1) !important;
 }

 /* Loading indicator */
 .map-loading {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(26, 26, 46, 0.9);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     color: var(--text-primary);
     font-family: 'JetBrains Mono', monospace;
 }

 .loading-spinner {
     width: 50px;
     height: 50px;
     border: 3px solid rgba(59, 130, 246, 0.3);
     border-radius: 50%;
     border-top-color: var(--accent);
     animation: spin 1s linear infinite;
     margin-bottom: 1rem;
 }

 @keyframes spin {
     100% {
         transform: rotate(360deg);
     }
 }

 /* Map overlay updates */
 .map-overlay {
     position: absolute;
     top: 1rem;
     right: 1rem;
     z-index: 1000;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .map-legend {
     background: rgba(0, 0, 0, 0.85);
     padding: 1rem;
     border-radius: 8px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .legend-item {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 0.5rem;
     color: var(--text-primary);
     font-size: 0.85rem;
 }

 .legend-icon {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     display: inline-block;
 }

 /* --- Map Container Styles --- */
 .map-container {
     flex: 1;
     position: relative;
     min-height: 400px;
     background: #1a1a2e;
     overflow: hidden;
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     min-height: 400px;
     display: block;
 }

 /* Map overlay with location badge */
 .map-overlay {
     position: absolute;
     top: 20px;
     left: 20px;
     z-index: 1000;
 }

 .location-badge {
     background: rgba(0, 0, 0, 0.85);
     backdrop-filter: blur(10px);
     border-radius: 12px;
     padding: 1.5rem;
     border: 1px solid rgba(59, 130, 246, 0.3);
     display: flex;
     align-items: center;
     gap: 1rem;
     max-width: 300px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     transition: all 0.3s ease;
 }

 .location-badge:hover {
     transform: translateY(-5px);
     border-color: var(--accent);
     box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
 }

 .badge-icon {
     background: linear-gradient(135deg, #3b82f6, #10b981);
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: white;
 }

 .badge-content h4 {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.2rem;
     color: var(--text-primary);
     margin: 0 0 0.5rem 0;
     font-weight: 600;
 }

 .badge-content p {
     color: var(--text-primary);
     font-size: 1.1rem;
     margin: 0 0 0.25rem 0;
     font-weight: 500;
 }

 .badge-subtitle {
     color: var(--text-secondary) !important;
     font-size: 0.9rem !important;
     font-family: 'JetBrains Mono', monospace;
 }

 /* Map footer updates */
 .map-footer {
     padding: 1.5rem 2rem;
     background: rgba(0, 0, 0, 0.3);
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .location-details {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 1.5rem;
 }

 .detail-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 0.75rem;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .detail-item:hover {
     background: rgba(59, 130, 246, 0.1);
     transform: translateY(-2px);
 }

 .detail-item i {
     color: var(--accent);
     font-size: 1.5rem;
     width: 40px;
     text-align: center;
 }

 .detail-item div {
     display: flex;
     flex-direction: column;
 }

 .detail-label {
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.85rem;
     color: var(--text-secondary);
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .detail-value {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1rem;
     color: var(--text-primary);
     font-weight: 500;
     margin-top: 0.25rem;
 }

 /* Remove the loading indicator styles since we're using iframe */
 .map-loading {
     display: none;
 }

 /* Remove map controls since we want a static map */
 .map-controls {
     display: none;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .location-badge {
         max-width: calc(100% - 40px);
         padding: 1rem;
     }

     .badge-icon {
         width: 50px;
         height: 50px;
         font-size: 1.25rem;
     }

     .badge-content h4 {
         font-size: 1rem;
     }

     .badge-content p {
         font-size: 0.95rem;
     }

     .location-details {
         grid-template-columns: 1fr;
         gap: 1rem;
     }
 }

 .deployment-status {
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .status-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: #10b981;
     box-shadow: 0 0 10px #10b981;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         opacity: 1;
     }

     50% {
         opacity: 0.7;
     }

     100% {
         opacity: 1;
     }
 }

 .deployment-metrics {
     display: flex;
     gap: 2rem;
 }

 .metric {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .metric-value {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--accent-light);
 }

 .metric-label {
     font-size: 0.8rem;
     color: var(--text-secondary);
     margin-top: 0.25rem;
 }

 /* --- Enhanced Diagonal Banner/Ribbon --- */
 .ribbon-container {
     position: absolute;
     bottom: 0;
     left: -10%;
     width: 120%;
     height: 120px;
     transform: rotate(-3deg) translateY(60px);
     transform-origin: bottom left;
     z-index: 5;
     pointer-events: none;
     overflow: hidden;
 }

 .ribbon {
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             #1e40af,
             #3b82f6,
             #06b6d4,
             #10b981,
             #84cc16);
     display: flex;
     align-items: center;
     white-space: nowrap;
     padding: 0 5%;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
     animation: ribbon-scroll 25s linear infinite;
 }

 .ribbon-item {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--bg-dark);
     letter-spacing: 1px;
     margin-right: 3rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .ribbon-item i {
     font-size: 1rem;
     color: var(--bg-dark);
 }

 @keyframes ribbon-scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

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

 a {
     text-decoration: none;
 }

 html {
     scroll-behavior: smooth;
     font-size: 16px;
 }

 body {
     font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
     background: var(--bg-dark);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
     position: relative;
 }

 /* ============================================
           FLOATING DEVOPS ICONS BACKGROUND
           ============================================ */

 .devops-bg {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 0;
     overflow: hidden;
 }

 .floating-icon {
     position: absolute;
     font-size: 3rem;
     opacity: 0.1;
     animation: floatRandom 20s infinite ease-in-out;
 }

 .floating-icon:nth-child(1) {
     top: 10%;
     left: 5%;
     animation-delay: 0s;
     color: #CD6799;
 }

 .floating-icon:nth-child(2) {
     top: 20%;
     right: 10%;
     animation-delay: 2s;
     color: #0db7ed;
 }

 .floating-icon:nth-child(3) {
     top: 50%;
     left: 15%;
     animation-delay: 4s;
     color: #f29111;
 }

 .floating-icon:nth-child(4) {
     bottom: 20%;
     right: 20%;
     animation-delay: 6s;
     color: #326ce5;
 }

 .floating-icon:nth-child(5) {
     bottom: 30%;
     left: 25%;
     animation-delay: 8s;
     color: #e24329;
 }

 .floating-icon:nth-child(6) {
     top: 30%;
     right: 30%;
     animation-delay: 10s;
     color: #00ff00;
 }

 .floating-icon:nth-child(7) {
     bottom: 40%;
     right: 5%;
     animation-delay: 12s;
     color: #ff6c37;
 }

 .floating-icon:nth-child(8) {
     top: 60%;
     left: 40%;
     animation-delay: 14s;
     color: #00d4ff;
 }

 @keyframes floatRandom {

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

     25% {
         transform: translate(30px, -30px) rotate(90deg);
     }

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

     75% {
         transform: translate(20px, 30px) rotate(270deg);
     }
 }

 /* ============================================
           CODE RAIN ANIMATION
           ============================================ */

 .code-rain {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 0;
     overflow: hidden;
     opacity: 0.05;
 }

 .code-line {
     position: absolute;
     color: var(--primary);
     font-family: var(--font-mono);
     font-size: 0.8rem;
     white-space: nowrap;
     animation: rain 15s linear infinite;
 }

 @keyframes rain {
     0% {
         transform: translateY(-100%);
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         transform: translateY(100vh);
         opacity: 0;
     }
 }

 /* ============================================
           HEADER & NAVIGATION
           ============================================ */

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(10, 14, 39, 0.95);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.2rem 5%;
     max-width: 1400px;
     margin: 0 auto;
 }

 .logo {
     font-family: 'JetBrains Mono', monospace;
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--primary);
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s;
 }

 .logo:hover {
     transform: scale(1.05);
     text-shadow: 0 0 20px var(--glow);
 }

 .logo::before {
     content: '>';
     color: var(--accent);
     animation: blink 1.5s infinite;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2.5rem;
 }

 .nav-link {
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.9rem;
     color: var(--text-secondary);
     position: relative;
     padding: 0.5rem 0;
     transition: all 0.3s;
 }

 .nav-link::before {
     content: '//';
     margin-right: 0.3rem;
     color: var(--primary);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gradient-1);
     transition: width 0.3s;
 }

 .nav-link:hover,
 .nav-link.active {
     color: var(--primary);
     text-shadow: 0 0 5px var(--glow);
 }

 .nav-link:hover::before {
     opacity: 1;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 100%;
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 5px;
 }

 .bar {
     width: 25px;
     height: 2px;
     background: var(--primary);
     transition: 0.3s;
 }

 /* ============================================
           HOME SECTION - ANIMATED TERMINAL
           ============================================ */

 #home-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 100px;
     position: relative;
     z-index: 1;
 }

 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 5%;
     position: relative;
     z-index: 1;
 }

 .terminal-window {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 2rem;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
     position: relative;
     animation: slideUp 1s ease-out;
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

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

 .terminal-header {
     display: flex;
     gap: 0.5rem;
     margin-bottom: 2rem;
 }

 .terminal-btn {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     cursor: pointer;
     transition: all 0.3s;
 }

 .terminal-btn:hover {
     transform: scale(1.2);
     box-shadow: 0 0 10px currentColor;
 }

 .terminal-btn:nth-child(1) {
     background: #ff5f56;
     animation: pulse 2s infinite;
 }

 .terminal-btn:nth-child(2) {
     background: #ffbd2e;
     animation: pulse 2s infinite 0.5s;
 }

 .terminal-btn:nth-child(3) {
     background: #27c93f;
     animation: pulse 2s infinite 1s;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }

 .typed-text {
     color: var(--primary);
     position: relative;
     display: inline-block;
 }

 /* Apply the 'blink' keyframes to a pseudo-element acting as the cursor */
 .typed-text::after {
     /* The cursor character, often a pipe or a block */
     content: '|';
     /* The color of the cursor */
     color: var(--accent, #64ffda);
     /* Adjust this to match your terminal text color */

     /* Apply the blinking animation */
     animation: blink 0.7s infinite step-end;
 }

 /* Your existing keyframes */
 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }
 }

 /* Ensure the typed text itself has the same font family for alignment */
 .home-content h1 .typed-text {
     font-family: 'JetBrains Mono', monospace;
     color: var(--accent, #64ffda);
     /* Example terminal accent color */
 }

 .home-content p {
     font-size: 1.1rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
     font-family: 'JetBrains Mono', monospace;
 }

 .home-btns {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .btn {
     padding: 0.9rem 2rem;
     border: 2px solid var(--primary);
     background: transparent;
     color: var(--primary);
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: lowercase;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     transition: all 0.3s;
     border-radius: 4px;
 }

 .btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: var(--primary);
     transition: left 0.3s;
     z-index: -1;
 }

 .btn:hover {
     color: var(--bg-dark);
     box-shadow: 0 0 20px var(--glow);
     transform: translateY(-2px);
 }

 .btn:hover::before {
     left: 0;
 }

 .btn-secondary {
     border-color: var(--accent);
     color: var(--accent);
 }

 .btn-secondary::before {
     background: var(--accent);
 }

 /* ============================================
           SECTION STYLING
           ============================================ */

 section {
     padding: 6rem 5%;
     position: relative;
     z-index: 1;
 }

 .section-title {
     text-align: center;
     margin-bottom: 4rem;
     animation: fadeIn 1s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 .section-title h2 {
     font-family: 'JetBrains Mono', monospace;
     font-size: clamp(2rem, 4vw, 3rem);
     color: var(--text-primary);
     position: relative;
     display: inline-block;
 }

 .section-title h2::before {
     content: '<';
     color: var(--primary);
     margin-right: 0.5rem;
     animation: slideRight 1s ease-out;
 }

 .section-title h2::after {
     content: '/>';
     color: var(--primary);
     margin-left: 0.5rem;
     animation: slideLeft 1s ease-out;
 }

 @keyframes slideRight {
     from {
         transform: translateX(-20px);
         opacity: 0;
     }

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

 @keyframes slideLeft {
     from {
         transform: translateX(20px);
         opacity: 0;
     }

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

 /* ============================================
           ABOUT SECTION
           ============================================ */

 .about-content {
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 3rem;
     align-items: start;
 }

 .about-img {
     position: relative;
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {

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

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

 .about-img img {
     width: 100%;
     border-radius: 8px;
     border: 2px solid var(--primary);
     box-shadow: 0 0 30px var(--glow);
     transition: all 0.3s;
     filter: grayscale(50%);
 }

 .about-img:hover img {
     transform: scale(1.05);
     filter: grayscale(0%);
     box-shadow: 0 0 50px var(--glow);
 }

 .about-text h3 {
     font-family: 'JetBrains Mono', monospace;
     color: var(--primary);
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 .about-text p {
     color: var(--text-secondary);
     margin-bottom: 1.5rem;
     line-height: 1.8;
 }

 .about-info {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1rem;
     margin-top: 2rem;
 }

 .info-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 1rem;
     display: flex;
     align-items: center;
     gap: 1rem;
     transition: all 0.3s;
     cursor: pointer;
 }

 .info-item:hover {
     border-color: var(--primary);
     transform: translateX(10px);
     box-shadow: 0 0 15px var(--glow);
 }

 .info-item i {
     font-size: 1.5rem;
     color: var(--primary);
     animation: spin 3s linear infinite;
 }

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

     to {
         transform: rotate(360deg);
     }
 }

 .info-item:hover i {
     animation: none;
     transform: scale(1.2);
 }

 .info-item strong {
     color: var(--text-primary);
     display: block;
     font-family: 'JetBrains Mono', monospace;
 }

 .info-item p {
     margin: 0;
     color: var(--text-secondary);
     font-size: 0.9rem;
 }

 /* ============================================
           RESUME SECTION
           ============================================ */

 .resume-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 2rem;
 }

 .resume-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-left: 3px solid var(--primary);
     border-radius: 8px;
     padding: 2rem;
     position: relative;
     transition: all 0.3s;
     animation: slideInLeft 0.8s ease-out;
 }

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

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

 .resume-item::before {
     content: '';
     position: absolute;
     left: -8px;
     top: 2rem;
     width: 12px;
     height: 12px;
     background: var(--primary);
     border-radius: 50%;
     box-shadow: 0 0 10px var(--glow);
     animation: ripple 2s infinite;
 }

 @keyframes ripple {
     0% {
         box-shadow: 0 0 0 0 var(--glow), 0 0 10px var(--glow);
     }

     100% {
         box-shadow: 0 0 0 20px rgba(0, 255, 204, 0), 0 0 10px var(--glow);
     }
 }

 .resume-item:hover {
     transform: translateY(-5px) scale(1.02);
     box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
     border-left-color: var(--accent);
 }

 .resume-item h3 {
     font-family: 'JetBrains Mono', monospace;
     color: var(--text-primary);
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }

 .resume-item .date {
     display: inline-block;
     background: var(--secondary);
     color: white;
     padding: 0.3rem 0.8rem;
     border-radius: 4px;
     font-size: 0.8rem;
     font-family: 'JetBrains Mono', monospace;
     margin-bottom: 1rem;
     animation: slideInRight 1s ease-out;
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

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

 /* ============================================
           SERVICES/CREDENTIALS
           ============================================ */

 .services-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .service-item,
 .credential-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 2rem;
     text-align: center;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
     cursor: pointer;
 }

 .service-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--gradient-1);
     transform: scaleX(0);
     transition: transform 0.3s;
 }

 .service-item:hover::before,
 .credential-item:hover::before {
     transform: scaleX(1);
     box-shadow: 0 0 10px var(--glow);
 }

 .service-item:hover,
 .credential-item:hover {
     transform: translateY(-10px) rotate(-1deg);
     border-color: var(--primary);
     box-shadow: 0 15px 40px rgba(0, 255, 204, 0.2);
 }

 .service-item i,
 .credential-item i {
     font-size: 3rem;
     background: var(--gradient-1);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 1rem;
     display: inline-block;
     animation: bounce 2s infinite;
 }

 @keyframes bounce {

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

     50% {
         transform: translateY(-10px);
     }
 }

 .service-item:hover i,
 .credential-item:hover i {
     animation: rotate360 0.5s ease-out;
 }

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

     to {
         transform: rotate(360deg);
     }
 }

 .service-item h3,
 .credential-item h3 {
     font-family: 'JetBrains Mono', monospace;
     color: var(--text-primary);
     margin-bottom: 1rem;
 }

 .credential-links {
     margin-top: 1.5rem;
     display: flex;
     gap: 0.5rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-sm {
     padding: 0.5rem 1rem;
     font-size: 0.8rem;
 }

 /* ============================================
           SKILLS - ANIMATED PROGRESS
           ============================================ */

 .skills-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .skill-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 1.5rem;
     transition: all 0.3s;
 }

 .skill-item:hover {
     box-shadow: 0 0 15px var(--glow);
     border-color: var(--primary);
     transform: scale(1.02);
 }

 .skill-info {
     display: flex;
     justify-content: space-between;
     margin-bottom: 0.8rem;
     font-family: 'JetBrains Mono', monospace;
 }

 .skill-info span:first-child {
     color: var(--text-primary);
     font-weight: 600;
 }

 .skill-info span:last-child {
     color: var(--primary);
     animation: numberCount 3s ease-out;
 }

 @keyframes numberCount {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

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

 .skill-bar {
     height: 8px;
     background: var(--bg-elevated);
     border-radius: 10px;
     overflow: hidden;
     position: relative;
 }

 .skill-progress {
     height: 100%;
     background: var(--gradient-1);
     border-radius: 10px;
     box-shadow: 0 0 10px var(--glow);
     transition: width 2s ease;
     position: relative;
     animation: fillBar 2s ease-out;
 }

 @keyframes fillBar {
     from {
         width: 0 !important;
     }
 }

 .skill-progress::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     animation: shimmer 2s infinite;
 }

 @keyframes shimmer {
     0% {
         transform: translateX(-100%);
     }

     100% {
         transform: translateX(100%);
     }
 }

 /* ============================================
           PROJECTS
           ============================================ */

 .projects-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .project-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     overflow: hidden;
     transition: all 0.3s;
     cursor: pointer;
 }

 .project-item:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 20px 50px rgba(0, 255, 204, 0.15);
     border-color: var(--primary);
 }

 .project-img {
     height: 220px;
     overflow: hidden;
     position: relative;
 }

 .project-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .project-item:hover .project-img img {
     transform: scale(1.15) rotate(2deg);
 }

 .project-content {
     padding: 1.5rem;
 }

 .project-content h3 {
     font-family: 'JetBrains Mono', monospace;
     color: var(--text-primary);
     margin-bottom: 0.8rem;
 }

 .project-content p {
     color: var(--text-secondary);
     margin-bottom: 1.2rem;
     font-size: 0.9rem;
 }

 /* ============================================
           BLOG
           ============================================ */

 .blog-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .blog-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     overflow: hidden;
     transition: all 0.3s;
 }

 .blog-item:hover {
     transform: translateY(-5px);
     border-color: var(--secondary);
     box-shadow: 0 15px 40px rgba(123, 47, 247, 0.2);
 }

 .blog-img {
     height: 200px;
     overflow: hidden;
 }

 .blog-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .blog-item:hover .blog-img img {
     transform: scale(1.1);
 }

 .blog-content {
     padding: 1.5rem;
 }

 .blog-content .date {
     display: inline-block;
     background: var(--secondary);
     color: white;
     padding: 0.3rem 0.8rem;
     border-radius: 4px;
     font-size: 0.75rem;
     font-family: 'JetBrains Mono', monospace;
     margin-bottom: 1rem;
 }

 .blog-content h3 {
     color: var(--text-primary);
     margin-bottom: 1rem;
 }

 /* ============================================
           CONTACT SECTION
           ============================================ */

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 3rem;
 }

 .contact-info h3 {
     font-family: 'JetBrains Mono', monospace;
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .contact-info p {
     color: var(--text-secondary);
     margin-bottom: 2rem;
 }

 .contact-info-item {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 1.5rem;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 1rem;
     transition: all 0.3s;
 }

 .contact-info-item:hover {
     border-color: var(--primary);
     transform: translateX(10px);
 }

 .contact-info-item i {
     font-size: 1.5rem;
     color: var(--primary);
 }

 .contact-info-item h4 {
     color: var(--text-primary);
     font-family: 'JetBrains Mono', monospace;
     margin-bottom: 0.3rem;
 }

 .contact-info-item p {
     margin: 0;
     color: var(--text-secondary);
     font-size: 0.9rem;
 }

 .contact-form {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 2rem;
 }

 .contact-form h3 {
     font-family: 'JetBrains Mono', monospace;
     color: var(--primary);
     margin-bottom: 1.5rem;
 }

 .form-group {
     margin-bottom: 1.5rem;
     position: relative;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 1rem;
     background: var(--bg-elevated);
     border: 1px solid var(--border);
     border-radius: 4px;
     color: var(--text-primary);
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.9rem;
     transition: all 0.3s;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px var(--glow);
     background: var(--bg-card);
 }

 .honeypot {
     position: absolute;
     left: -9999px;
 }

 /* ============================================
           FOOTER
           ============================================ */

 footer {
     background: var(--bg-card);
     border-top: 1px solid var(--border);
     padding: 2rem 5%;
     text-align: center;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .social-links a {
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--bg-elevated);
     border: 1px solid var(--border);
     border-radius: 8px;
     color: var(--primary);
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--primary);
     color: var(--bg-dark);
     box-shadow: 0 0 20px var(--glow);
     transform: translateY(-5px) rotate(360deg);
 }

 .footer-text {
     color: var(--text-secondary);
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.9rem;
 }

 .footer-text a {
     color: var(--primary);
 }

 /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

 @media (max-width: 968px) {
     .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background: rgba(18, 23, 46, 0.98);
         width: 100%;
         text-align: center;
         transition: 0.3s;
         padding: 2rem;
         border-top: 1px solid var(--border);
     }

     .nav-menu.active {
         left: 0;
     }

     .hamburger {
         display: flex;
     }

     .about-content,
     .contact-container {
         grid-template-columns: 1fr;
     }

     .resume-container,
     .skills-container,
     .projects-container {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 480px) {
     .home-btns {
         flex-direction: column;
     }

     .btn {
         width: 100%;
         text-align: center;
     }
 }