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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #0c1524;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    color: #3b82f6;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #3b82f6;
    box-shadow: 0 2px 20px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: none;
    padding: 6px 14px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.nav-logo .logo-text:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.nav-logo a {
    text-decoration: none;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto Mono', monospace;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    text-shadow: none;
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid #3b82f6;
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #3b82f6;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: matrixPulse 6s ease-in-out infinite, matrixFloat 15s ease-in-out infinite;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite, gridPulse 8s ease-in-out infinite;
}

@keyframes matrixPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes matrixFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(1deg); }
    50% { transform: translate(10px, -5px) rotate(-1deg); }
    75% { transform: translate(-5px, 10px) rotate(0.5deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-name {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: nameGlow 4s ease-in-out infinite;
}

@keyframes nameGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 8px rgba(59, 130, 246, 0.15); }
}

.hero-title {
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: titleFade 2s ease-in-out;
}

@keyframes titleFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 4s steps(40) 1s both;
}

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

.hero-tagline::after {
    content: '|';
    color: #3b82f6;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}


.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    letter-spacing: 1px;
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    border-color: #60a5fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-shield {
    font-size: 15rem;
    color: #3b82f6;
    opacity: 0.7;
    animation: shieldPulse 3s ease-in-out infinite;
    text-shadow: none;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #3b82f6;
    border-bottom: 2px solid #3b82f6;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.3rem;
    color: #3b82f6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}


.stats-showcase {
    margin: 3rem 0;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(20, 20, 20, 0.9) 50%, 
        rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #3b82f6;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-card:hover::before {
    opacity: 0.3;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 3rem;
    color: #3b82f6;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-shadow: none;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
    color: #e2e8f0;
    text-shadow: none;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #3b82f6;
    font-family: 'Orbitron', monospace;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-shadow: none;
    line-height: 1;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
    color: #e2e8f0;
    text-shadow: none;
}

.stat-label {
    font-size: 1.3rem;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    line-height: 1.4;
    font-family: 'Roboto Mono', monospace;
}


.stat-tooltip {
    display: none;
}

.stat-card:hover .stat-label {
    color: #3b82f6;
    text-shadow: none;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.stat-card:hover .stat-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}



@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        transform: scale(1.1);
        text-shadow: none;
    }
}


.stat-card:nth-child(2) .stat-icon,
.stat-card:nth-child(2) .stat-number {
    color: #2563eb;
    text-shadow: none;
}

.stat-card:nth-child(2) .stat-number {
    letter-spacing: -0.08em;
}

.stat-card:nth-child(2):hover .stat-icon,
.stat-card:nth-child(2):hover .stat-number {
    color: #e2e8f0;
    text-shadow: none;
}

.stat-card:nth-child(2):hover .stat-label {
    color: #2563eb;
    text-shadow: none;
}

.stat-card:nth-child(2)::before {
    background: #2563eb;
}

.stat-card:nth-child(2) .stat-glow {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
}

.stat-card:nth-child(2):hover .stat-glow {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.certificates-showcase {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.certificates-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.certificates-showcase:hover::before {
    transform: translateX(100%);
}

.certificates-showcase h4 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.12);
}

.certificates-showcase h4 i {
    font-size: 1.2rem;
    color: #60a5fa;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.certificate-item {
    background: rgba(59, 130, 246, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certificate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-item:hover::before {
    opacity: 1;
}

.certificate-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.certificate-item:hover .cert-icon {
    transform: scale(1.1);
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.cert-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.certificate-item:hover .cert-icon i {
    color: #60a5fa;
    transform: scale(1.1);
}

.cert-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.cert-name {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 0.95rem;
    line-height: 1.3;
}

.cert-issuer {
    font-size: 0.8rem;
    color: #3b82f6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-certs {
    text-align: center;
    margin-top: 1rem;
}

.view-all-certs .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-certs .btn::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 ease;
}

.view-all-certs .btn:hover::before {
    left: 100%;
}

.view-all-certs .btn i {
    margin-right: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 0 15px rgba(59, 130, 246, 0.1),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.image-placeholder:hover::before {
    transform: rotate(225deg);
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.15),
        inset 0 0 20px rgba(59, 130, 246, 0.08);
    border-color: #60a5fa;
}

.image-placeholder i {
    font-size: 8rem;
    color: #3b82f6;
    text-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.image-placeholder:hover i {
    transform: scale(1.1);
    color: #60a5fa;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}


.education {
    padding: 100px 0;
    background: #0c1524;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #334155;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.timeline-date {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.timeline-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #3b82f6;
}


.skills {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.skill-category {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #3b82f6;
}

.cybersecurity-title {
    font-size: 1.5rem !important;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    flex: 1;
    align-content: start;
}

.skill-item {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.skill-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
}

.skill-item span {
    font-weight: 500;
    color: #e2e8f0;
}


.experience {
    padding: 100px 0;
    background: #0c1524;
}

.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.experience-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 4rem;
}

.experience-marker {
    position: absolute;
    left: 21px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

.experience-content {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.experience-content:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.experience-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.experience-content h4 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.experience-date {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1.4;
}

.experience-location {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

.experience-duties {
    list-style: none;
    margin-bottom: 1.5rem;
}

.experience-duties li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-duties li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.experience-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.achievement-tag {
    background: transparent;
    color: #e2e8f0;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.achievement-tag::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
}

.achievement-tag:hover {
    background: transparent;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}


.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

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

.service-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    border: 2px solid #334155;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.service-card:hover {
    transform: translateY(-12px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12);
}

.service-icon {
    font-size: 3.2rem;
    color: #3b82f6;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #60a5fa;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}


.projects {
    padding: 100px 0;
    background: #0c1524;
}

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

.project-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #334155;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

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

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-card:hover .project-placeholder {
    background: linear-gradient(135deg, #334155, #475569);
}

.project-placeholder i {
    font-size: 4.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.project-card:hover .project-placeholder i {
    color: #60a5fa;
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
    opacity: 1;
}

@media (hover: none) {
    .project-overlay {
        opacity: 1;
        background: rgba(59, 130, 246, 0.85);
    }
}

.project-link, .project-github {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover, .project-github:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.project-content {
    padding: 2.5rem 2rem;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.project-content p {
    color: #cbd5e1;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-size: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.achievement-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.achievement-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.achievement-date {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #0c1524;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    color: #3b82f6;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.contact-item i {
    color: #3b82f6;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.contact-form {
    padding: 0;
}

.contact-form h3 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    border-radius: 5px;
    color: #e2e8f0;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

/* Thanks Section */
.thanks {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0c1524 0%, #0f172a 50%, #0c1524 100%);
    text-align: center;
}

.thanks-content {
    width: 100%;
    margin: 0;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(59, 130, 246, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.thanks-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon {
    font-size: 1.75rem;
    color: #60a5fa;
    animation: heartbeat 2s ease-in-out infinite;
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    letter-spacing: 1px;
    font-weight: 700;
}

.thanks-content p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-divider {
    width: 60px;
    height: 3px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

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

/* Footer */
.footer {
    background: #0c1524;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #334155;
}

.footer-content p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu a {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-menu a {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .nav-logo .logo-text {
        font-size: 1.3rem;
        padding: 5px 12px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        padding: 1.5rem 0;
        z-index: 999;
        border-top: 2px solid #3b82f6;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        border-radius: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .progression-chart {
        flex-direction: column;
    }
    
    .progression-arrow {
        transform: rotate(90deg);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-name {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        white-space: normal;
        animation: none;
    }
    
    .hero-tagline::after {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 11px !important;
        right: auto !important;
    }
    
    .experience-timeline::before {
        left: 20px;
    }
    
    .experience-item {
        padding-left: 3rem;
    }
    
    .experience-marker {
        left: 11px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }
    
    .quick-nav-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-nav-card {
        padding: 1.5rem;
    }
    
    .quick-nav-icon {
        font-size: 2.5rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-content {
        padding: 1.5rem 1.25rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .response-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .response-item,
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-name {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .emergency-contact {
        padding: 1.5rem;
    }
    
    .thanks-content {
        padding: 2rem 1.5rem;
    }
    
    .thanks-icon-wrap {
        width: 52px;
        height: 52px;
        margin-bottom: 1.25rem;
    }
    
    .thanks-icon {
        font-size: 1.4rem;
    }
    
    .thanks-content h2 {
        font-size: 1.5rem;
    }
    
    .thanks-content p {
        font-size: 0.95rem;
    }
    
    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .hero-name {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .services-grid,
    .projects-grid,
    .achievements-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
        min-height: auto;
    }
    
    .stat-left {
        gap: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .organizations-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-impact {
        padding: 2rem 1rem;
    }
    
    .leadership-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header Styles */
.page-header {
    padding: 140px 0 80px;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, #0c1524 0%, #0f172a 100%);
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    animation: headerPulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes headerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: none;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 2px;
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

.page-subtitle {
    font-size: 1.4rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto Mono', monospace;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle::before {
    content: '▶';
    color: #3b82f6;
    margin-right: 10px;
    font-size: 1.2rem;
}

.page-subtitle::after {
    content: '◀';
    color: #3b82f6;
    margin-left: 10px;
    font-size: 1.2rem;
}

.page-content {
    padding: 80px 0;
}

/* Quick Navigation Cards */
.quick-nav {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

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

.quick-nav-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.quick-nav-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.quick-nav-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.quick-nav-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.quick-nav-card p {
    color: #cbd5e1;
}

/* About Page Specific Styles */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
}

/* Full-width Let's Connect card */
.about-contact-card {
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-highlights h3,
.about-philosophy h3 {
    color: #3b82f6;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.12);
    position: relative;
    padding-bottom: 0.8rem;
}

.about-highlights h3::after,
.about-philosophy h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.highlight-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 2.5rem 3rem;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.6;
}

.highlight-list li:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(10px);
    border-left: 3px solid #3b82f6;
}

.highlight-list i {
    color: #3b82f6;
    width: 28px;
    font-size: 1.4rem;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.12);
}

.about-philosophy blockquote {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03));
    border-left: 5px solid #3b82f6;
    padding: 2rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #f1f5f9;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.about-philosophy blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.3);
    font-family: serif;
    line-height: 1;
}

.about-philosophy blockquote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    border-left-color: #60a5fa;
}

.about-contact-card {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(20, 20, 20, 0.9) 50%, 
        rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.about-contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #3b82f6;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-contact-card:hover::before {
    opacity: 0.3;
}

.about-contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-contact-card h4 {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: none;
    transition: all 0.4s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-contact-card:hover h4 {
    color: #e2e8f0;
    text-shadow: none;
    transform: scale(1.05);
}

.about-contact-card p {
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    font-family: 'Roboto Mono', monospace;
}

.about-contact-card:hover p {
    color: #3b82f6;
    text-shadow: none;
}

.about-contact-card .btn {
    width: auto;
    padding: 1.2rem 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 10px;
}

.about-contact-card .btn::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 ease;
}

.about-contact-card .btn:hover::before {
    left: 100%;
}

.about-contact-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

/* Education Page Specific Styles */
.timeline-details {
    margin: 1rem 0;
}

.timeline-details h5 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timeline-details ul {
    list-style: none;
    margin-left: 1rem;
}

.timeline-details li {
    color: #94a3b8;
    margin-bottom: 0.3rem;
    position: relative;
}

.timeline-details li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: -1rem;
}

.continuing-education {
    margin-top: 4rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.education-card {
    background: #0f172a;
    padding: 0;
    border-radius: 16px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.education-card .btn {
    margin: 1.5rem auto 2rem;
}

.education-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.education-icon {
    font-size: 2.2rem;
    color: white;
    padding: 2rem 0 1.2rem;
    background: linear-gradient(135deg, #1e3a5f, #1e293b);
}

.education-card h3 {
    margin: 0;
    padding: 1rem 1.5rem 0.6rem;
    font-size: 1.2rem;
}

.education-card p {
    color: #94a3b8;
    line-height: 1.6;
    padding: 0 1.5rem;
    font-size: 0.95rem;
}

.platform-list {
    list-style: none;
    text-align: left;
    margin: 1rem 0 1.5rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.platform-list li {
    color: #cbd5e1;
    padding: 0.7rem 0 0.7rem 1.4rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    font-size: 0.92rem;
}

.platform-list li:last-child {
    border-bottom: none;
}

.platform-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

.platform-list li strong {
    color: #e2e8f0;
}

/* Skills Page Specific Styles */
.skill-level {
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease;
}

.programming-section,
.frameworks-section {
    margin-top: 4rem;
}

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

.programming-item {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.programming-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.programming-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.programming-item h4 {
    margin-bottom: 1rem;
}

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

.framework-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.framework-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.framework-card h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

/* Experience Page Specific Styles */
.role-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Leadership Page Specific Styles */
.leadership {
    background: linear-gradient(135deg, #0c1524 0%, #0f172a 100%);
}

.leadership-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.leadership-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.leadership-impact {
    margin-top: 4rem;
    padding: 4rem 2rem; /* increased to give the section more breathing room */
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 18px;
    border: 1px solid #3b82f6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* wider cards */
    gap: 2.5rem;
}

.impact-card {
    text-align: center;
    padding: 2.5rem; /* larger inner spacing */
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 14px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.impact-number {
    font-size: 3.25rem; /* slightly larger numbers */
    font-weight: 900;
    color: #3b82f6;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.impact-label {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.impact-description {
    color: #94a3b8;
    font-size: 0.9rem;
}

.leadership-skills {
    margin-top: 4rem;
}

.organizations {
    margin-top: 4rem;
}

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

.organization-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.organization-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.org-logo {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.organization-card h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.organization-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.org-role {
    color: #e2e8f0;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.org-period {
    color: #94a3b8;
    font-size: 0.9rem;
}

.leadership-philosophy {
    margin-top: 4rem;
}

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

.philosophy-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.philosophy-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.philosophy-card h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.team-testimonials {
    margin-top: 4rem;
}

.leadership-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 15px;
    border: 1px solid #3b82f6;
    text-align: center;
}

.responsibilities,
.achievements,
.technologies {
    margin-bottom: 1.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.responsibilities h5,
.achievements h5,
.technologies h5 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skills-developed,
.career-progression {
    margin-top: 4rem;
}

.skill-development-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-development-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.skill-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.progression-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.progression-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 15px;
    border: 1px solid #334155;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progression-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.progression-item:hover::before {
    transform: scaleX(1);
}

.progression-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.progression-year {
    font-size: 1.3rem;
    color: #3b82f6;
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', monospace;
}

.progression-role {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.progression-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.4;
}

.progression-arrow {
    font-size: 2.5rem;
    color: #3b82f6;
    text-shadow: none;
    transition: all 0.3s ease;
}

.progression-arrow:hover {
    transform: scale(1.2);
    text-shadow: none;
}

/* Services Page Specific Styles */
.service-pricing {
    margin: 1.5rem 0;
    text-align: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid #3b82f6;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
    display: block;
}

.duration {
    font-size: 0.9rem;
    color: #94a3b8;
}

.service-process {
    margin-top: 4rem;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.why-choose-us,
.industries-served {
    margin-top: 4rem;
}

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

.benefit-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

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

.industry-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 10px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.industry-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
}

.services-cta {
    margin-top: 4rem;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    border: 2px solid #3b82f6;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.services-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #3b82f6;
}

.cta-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.availability-note {
    color: #3b82f6 !important;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem !important;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Projects Page Specific Styles */
.project-features {
    margin: 1rem 0;
}

.project-features h5 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.project-features ul {
    list-style: none;
    margin-left: 1rem;
}

.project-features li {
    color: #94a3b8;
    margin-bottom: 0.3rem;
    position: relative;
}

.project-features li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: -1rem;
}

.project-stats {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.9rem;
}

.project-stats .stat {
    color: #94a3b8;
    background: rgba(59, 130, 246, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.project-stats .stat:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.project-categories,
.open-source {
    margin-top: 4rem;
}

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

.category-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.category-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.project-count {
    display: block;
    margin-top: 1rem;
    color: #3b82f6;
    font-weight: bold;
}

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

.contribution-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.contribution-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.contribution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contribution-header i {
    font-size: 2rem;
    color: #3b82f6;
}

.contribution-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.project-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 15px;
    border: 1px solid #3b82f6;
    text-align: center;
}

/* Achievements Page Specific Styles */
.certifications-section,
.awards-section,
.memberships-section,
.speaking-section,
.continuing-education-section {
    margin-bottom: 4rem;
}

.achievement-details {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.achievement-details span {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.3rem;
}

.achievement-domains {
    margin-top: 1rem;
}

.achievement-domains h5 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.achievement-domains ul {
    list-style: none;
    margin-left: 1rem;
}

.achievement-domains li {
    color: #94a3b8;
    margin-bottom: 0.3rem;
    position: relative;
}

.achievement-domains li::before {
    content: '✓';
    color: #3b82f6;
    position: absolute;
    left: -1rem;
    font-weight: bold;
}

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

.award-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.award-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.award-details {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.award-details span {
    display: inline-block;
    margin-right: 2rem;
    color: #94a3b8;
}

.award-highlights ul {
    list-style: none;
    margin-top: 1rem;
}

.award-highlights li {
    color: #94a3b8;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.award-highlights li::before {
    content: '★';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

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

.membership-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.membership-logo {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.membership-since {
    display: block;
    margin-top: 1rem;
    color: #3b82f6;
    font-weight: bold;
}

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

.speaking-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.speaking-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.speaking-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.speaking-details {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.speaking-details span {
    display: inline-block;
    margin-right: 2rem;
    color: #94a3b8;
}

.education-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.education-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 6rem;
}

.education-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.education-content {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #334155;
}

.education-content h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.achievement-stats {
    margin-top: 4rem;
}

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

.stat-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e2e8f0;
    font-size: 1rem;
}

/* Testimonials Page Specific Styles */
.featured-testimonials {
    margin-bottom: 4rem;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid #3b82f6;
    padding: 3rem;
}

.quote-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.testimonial-rating {
    margin: 1rem 0;
}

.testimonial-rating i {
    color: #3b82f6;
    margin-right: 0.2rem;
}

.company {
    color: #3b82f6;
    font-weight: bold;
}

.testimonial-project {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

.testimonial-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #3b82f6;
}

.client-logos,
.testimonial-stats,
.service-feedback {
    margin-top: 4rem;
}

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

.logo-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 10px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.logo-placeholder {
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.stat-item {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.stat-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.category-feedback {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.category-feedback:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 2rem;
    color: #3b82f6;
}

.category-rating {
    text-align: right;
}

.rating-score {
    color: #3b82f6;
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
}

.rating-stars i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.testimonials-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 15px;
    border: 1px solid #3b82f6;
    text-align: center;
}

/* Contact Page Specific Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.contact-item:last-of-type {
    border-bottom: none;
}

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

.contact-text h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.contact-text span,
.contact-text .contact-email {
    color: #60a5fa;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-email {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.contact-text p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.contact-info .social-links {
    display: block;
    margin-top: 2rem;
}

.social-links h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #334155;
    border-radius: 10px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 140px;
}

.social-link:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.contact-form-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #334155;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid #334155;
    border-radius: 8px;
    color: #e2e8f0;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #334155;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.response-info,
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(51, 65, 85, 0.5);
}

.response-info .section-title,
.faq-section .section-title {
    margin-bottom: 2rem;
}

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

.response-item,
.faq-item {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.response-item:hover,
.faq-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.response-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.response-item h4,
.faq-item h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.emergency-contact {
    margin-top: 4rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.emergency-icon {
    font-size: 3rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.emergency-text h3 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.btn-emergency {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: #0c1524;
    border: none;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.btn-emergency:hover {
    background: linear-gradient(45deg, #fbbf24, #fcd34d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #60a5fa;
}

/* Enhanced About Page Responsive Design */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .stat {
        padding: 2.5rem 2rem;
        min-height: 150px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 6rem;
    }
    
    .about-contact-card {
        padding: 2rem 1.5rem;
        margin: 3rem auto 0;
        max-width: 90%;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-contact-card h4 {
        font-size: 1.4rem;
    }
    
    .about-contact-card p {
        font-size: 1rem;
    }
    
    .about-contact-card .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .highlight-list {
        padding: 1rem;
    }
    
    .highlight-list li {
        padding: 0.6rem;
        gap: 1rem;
    }
    
    .about-philosophy blockquote {
        padding: 1.5rem;
    }
    
    .about-philosophy blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .certificate-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .cert-icon {
        width: 40px;
        height: 40px;
    }
    
    .cert-icon i {
        font-size: 1.2rem;
    }
    
    .cert-name {
        font-size: 0.9rem;
    }
    
    .cert-issuer {
        font-size: 0.75rem;
    }
    
    .certificates-showcase {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .certificates-showcase h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .stat-left {
        gap: 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
        letter-spacing: 0.8px;
    }
    
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 5rem;
    }
    
    .about-contact-card {
        padding: 1.5rem 1rem;
        margin: 2rem auto 0;
        max-width: 95%;
    }
    
    .about-contact-card h4 {
        font-size: 1.2rem;
    }
    
    .about-contact-card p {
        font-size: 0.95rem;
    }
    
    .about-contact-card .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .highlight-list {
        padding: 0.8rem;
    }
    
    .about-philosophy blockquote {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .certificate-item {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .cert-icon {
        width: 35px;
        height: 35px;
    }
    
    .cert-icon i {
        font-size: 1rem;
    }
    
    .cert-name {
        font-size: 0.85rem;
    }
    
    .cert-issuer {
        font-size: 0.7rem;
    }
    
    .certificates-showcase {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .certificates-showcase h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .view-all-certs .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
