/* Matrix-Style Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    line-height: 1.6;
    color: #00ff00;
    background: #0d1117;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.03) 2px,
        rgba(0, 255, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: -1;
}

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

/* Matrix Animation */
@keyframes matrixRain {
    0% { transform: translateY(-100vh); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

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

.matrix-char {
    position: absolute;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    animation: matrixRain 3s linear infinite;
    opacity: 0.3;
}

/* Terminal Glitch Effect */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch 0.3s;
    color: #ff0000;
    opacity: 0.7;
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch 0.3s reverse;
    color: #0000ff;
    opacity: 0.7;
    z-index: -2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #00ff00;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

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

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    letter-spacing: 2px;
}

.nav-logo h2::before {
    content: '> ';
    color: #00ff00;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #00ff00;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '[ ';
}

.nav-link::after {
    content: ' ]';
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 5px #00ff00;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #00ff00;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px #00ff00;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(45deg, #00ff00, #00ff88, #88ff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.7);
}

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

.hero-description {
    font-size: 1.25rem;
    color: #8cc8ff;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'Fira Code', monospace;
}

.hero-description::before {
    content: '// ';
    color: #00ff00;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff00, #008800);
    color: #000000;
    border: 1px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc00, #00aa00);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
}

.btn-secondary:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transform: translateY(-2px);
}

/* Terminal-style visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #161b22;
    border: 2px solid #00ff00;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 
        0 0 50px rgba(0, 255, 0, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0d1117;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid #00ff00;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0d1117 25%, transparent 25%),
                linear-gradient(-45deg, #0d1117 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #0d1117 75%),
                linear-gradient(-45deg, transparent 75%, #0d1117 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: codeScroll 10s linear infinite;
    position: relative;
}

.app-preview::before {
    content: '> initializing_app...\A> loading_modules...\A> connecting_to_server...\A> app_ready';
    position: absolute;
    top: 20px;
    left: 20px;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    white-space: pre;
    animation: typewriter 4s linear infinite;
}

@keyframes codeScroll {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
}

@keyframes typewriter {
    0%, 100% { opacity: 0; }
    25%, 75% { opacity: 1; }
}

/* Removed gradient orb styles */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
}

.section-title::before {
    content: '// ';
    color: #00ff00;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
}

.section-description {
    font-size: 1.25rem;
    color: #8cc8ff;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Fira Code', monospace;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-details p {
    color: #8cc8ff;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ff00;
}

.highlight-label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.profile-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #00ff00, transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.profile-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #161b22;
    border-radius: inherit;
    z-index: -1;
}

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

.profile-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    transform: translateY(-5px);
}

.profile-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-placeholder svg {
    color: #00ff00;
}

.profile-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.profile-card p {
    color: #8cc8ff;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    transform: scale(1.1);
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background: #0d1117;
}

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

.portfolio-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.portfolio-card:hover {
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    transform: translateY(-10px);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #161b22, #0d1117);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-mockup {
    width: 32px;
    height: 32px;
    background: #000000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Only for portfolio cards, let the mockup size be auto so the icon can control its own size */
.portfolio-card .project-mockup {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
}


/* App icon for app cards (large) */
.app-card .app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

/* App icon for portfolio cards (small) */
.portfolio-card .app-icon {
    width: 120px !important;
    height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 2px solid rgba(0, 255, 0, 0.3) !important;
    border-radius: 27px !important; /* iOS app icon radius: 22.5% of width */
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.portfolio-card .app-icon img {
    width: 116px !important;
    height: 116px !important;
    max-width: 116px !important;
    max-height: 116px !important;
    min-width: 116px !important;
    min-height: 116px !important;
    object-fit: cover !important;
    display: block !important;
    border: none !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 25px !important; /* Slightly smaller radius for the image */
}

.icon-placeholder {
    font-size: 24px;
    filter: hue-rotate(120deg) contrast(2);
}

.project-info {
    padding: 30px;
}

.project-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.project-name::before {
    content: '$ ';
    color: #00ff00;
}

.project-description {
    color: #8cc8ff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-tag {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 0, 0.3);
    letter-spacing: 0.5px;
}

.project-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 320px; /* Allows for roughly 2 items per row */
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff00;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    min-width: 120px; /* Ensures consistent sizing */
}

.project-link:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Skills Section */
.skills-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

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

.skill-category {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
}

.skill-category h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-item {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Apps Section */
.apps-section {
    padding: 120px 0;
    background: #0d1117;
}

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

.app-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.app-card .app-icon,
.apps-section .app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

.app-name {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.app-description {
    color: #8cc8ff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.app-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.download-btn {
    padding: 10px 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 5px;
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.download-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

/* Support Section */
.support-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.support-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
}

.support-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.support-card p {
    color: #8cc8ff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff00;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #0d1117;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-info h2::before {
    content: '> ';
    color: #00ff00;
}

.contact-info p {
    color: #8cc8ff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
}

.method-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.method-info a {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.method-info a:hover {
    text-shadow: 0 0 5px #00ff00;
}

.contact-form {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 255, 0, 0.5);
}

/* Footer */
.footer {
    background: #161b22;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-brand h3::before {
    content: '> ';
    color: #00ff00;
}

.footer-brand p {
    color: #8cc8ff;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-column h4::before {
    content: '// ';
    color: #00ff00;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #8cc8ff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-column a:hover {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.footer-bottom p {
    color: #8cc8ff;
    font-size: 0.9rem;
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 120px 0;
    background: #0d1117;
    min-height: 80vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: #8cc8ff;
    line-height: 1.8;
}

.privacy-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    letter-spacing: 1px;
}

.privacy-content h2::before {
    content: '// ';
    color: #00ff00;
}

.privacy-content ul {
    margin: 20px 0 20px 30px;
}

.privacy-content li {
    margin-bottom: 10px;
}

.privacy-content a {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    text-shadow: 0 0 5px #00ff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 17, 23, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid #00ff00;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        padding: 15px 10px;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
}
