/* ========================================
   MODERN PORTFOLIO - COMPREHENSIVE CSS
   3D Animations | Gradients | Glows | Responsive
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-cyan: #00d4ff;
    --accent-purple: #c700ff;
    --accent-blue: #0099ff;
    --accent-pink: #ff0080;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --glow-color: rgba(0, 212, 255, 0.3);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s ease-out;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f1535 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.8;
    transition: all 0.1s ease-out;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    transition: all 0.3s ease-out;
}

.cursor,
.cursor-follower {
    will-change: transform;
}

/* ========== HEADER & NAVIGATION ========== */
.logo-link{
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
html{
  scroll-behavior: smooth;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 14, 39, 0.7);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    padding: 120px 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(199, 0, 255, 0.05) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    opacity: 0.5;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(2) {
    top: 50%;
    left: 80%;
    animation-delay: 5s;
    opacity: 0.3;
}

.particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 10s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 7s;
    opacity: 0.4;
}

.particle:nth-child(5) {
    top: 80%;
    left: 50%;
    animation-delay: 12s;
    width: 2px;
    height: 2px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, -40px); }
    75% { transform: translate(-30px, 10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.3s; }
.word:nth-child(3) { animation-delay: 0.5s; }
.word:nth-child(4) { animation-delay: 0.7s; }

@keyframes wordFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

/* ========== 3D FLOATING CUBE ========== */
.floating-cube {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateX 15s infinite linear, rotateY 20s infinite linear;
}

@keyframes rotateX {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(0deg); }
}

@keyframes rotateY {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(0deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.cube-face.front { transform: rotateY(0deg) translateZ(125px); }
.cube-face.back { transform: rotateY(180deg) translateZ(125px); }
.cube-face.right { transform: rotateY(90deg) translateZ(125px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(125px); }
.cube-face.top { transform: rotateX(90deg) translateZ(125px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(125px); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.scroll-indicator i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--glow-color);
}

/* ========== GENERIC SECTION ========== */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== ABOUT SECTION ========== */
.about {
    position: relative;
    z-index: 10;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    transition: all var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0;
    font-weight: 700;
    display: inline;
}

.counter-symbol {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-left: 0.2rem;
    display: inline;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stat-item p {
    margin: 0.8rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), inset 0 0 30px rgba(0, 212, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: all var(--transition-smooth);
}

.profile-image:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.4), inset 0 0 30px rgba(0, 212, 255, 0.15);
    transform: scale(1.05);
}

.official-site-btn {
  margin-top: 20px;
}

.official-site-btn a {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #00c6ff, #7b2ff7);
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(123, 47, 247, 0.4);
}

.official-site-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 198, 255, 0.7);
}


/* ========== SKILLS SECTION ========== */
.skills {
    position: relative;
    z-index: 10;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-card {
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 15px;
    transition: all var(--transition-smooth);
    transform: perspective(1000px) rotateX(0deg);
}

.skill-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
}

.skill-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.skill-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.skill-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.skill-bar {
    height: 6px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 3px;
    width: var(--progress);
    animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
    0% { width: 0; }
    100% { width: var(--progress); }
}

.skill-level {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: right;
}

/* ========== SERVICES SECTION ========== */
.services {
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 30px;
}

.service-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(199, 0, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: rotateY(5deg) rotateX(-5deg) translateY(-15px);
    border-color: var(--accent-cyan);
    box-shadow: 0 30px 50px rgba(0, 212, 255, 0.25), 0 0 30px rgba(0, 212, 255, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px var(--accent-cyan);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== PROJECTS SECTION ========== */
.projects {
    position: relative;
    z-index: 10;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transform: perspective(1000px);
}

.project-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateZ(20px);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(199, 0, 255, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all var(--transition-smooth);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-details {
    padding: 1.5rem;
}

.project-details h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.project-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all var(--transition-fast);
}

.project-tags span:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-cyan);
}

.project-imageDiv {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-imageDiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}


/* Hire Me Button */
.hire-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--accent-cyan),
        var(--accent-purple)
    );
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.hire-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.45);
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose {
    position: relative;
    z-index: 10;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.reason-card:hover {
    transform: translateY(-20px) scale(1.05);
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 30px 50px rgba(0, 212, 255, 0.2);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.reason-card:hover .reason-icon {
    transform: scale(1.3) rotate(-10deg);
    text-shadow: 0 0 20px var(--accent-cyan);
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-cyan);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ========== PROCESS SECTION ========== */
.process {
    position: relative;
    z-index: 10;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan), transparent, var(--accent-purple));
    transform: translateX(-1px);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) .step-content {
    direction: ltr;
}

.step-number {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--accent-cyan);
}

.step-content {
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 15px;
    transition: all var(--transition-smooth);
}

.step-content:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.step-content h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact {
    position: relative;
    z-index: 10;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-panel {
    max-width: 600px;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(199, 0, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.contact-panel h3 {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.contact-panel > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-smooth);
}

.contact-method:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateX(10px);
}

.method-icon {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    min-width: 40px;
    text-align: center;
}

.method-info h4 {
    color: var(--accent-cyan);
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
}

.method-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.social-links h4 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    transform: scale(1.2);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section */
    .hero {
        padding: 100px 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .word {
        display: inline;
    }

    .floating-cube {
        width: 180px;
        height: 180px;
    }

    .cube-face {
        width: 180px;
        height: 180px;
        font-size: 2.5rem;
    }

    .cube-face.front { transform: rotateY(0deg) translateZ(90px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(90px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(90px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(90px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(90px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(90px); }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }

    /* Skills Grid */
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* Process Timeline */
    .process-timeline::before {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .process-step:nth-child(even) {
        direction: ltr;
    }

    .step-number::before {
        width: 40px;
        height: 40px;
    }

    .step-number {
        font-size: 2rem;
    }

    /* Contact */
    .contact-panel {
        padding: 2rem;
    }

    /* CTA Buttons */
    .hero-cta {
        flex-direction: column;
    }

    /* Footer */
    .footer-content {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 1.5rem;
    }

    section {
        padding: 3rem 1rem;
    }
}

/* ========== UTILITY ANIMATIONS ========== */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
