:root {
    --primary-color: #6366f1;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --background-dark: #0f172a;
    --background-light: #1e293b;
    --background-card: #334155;
    --text-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #94a3b8;
    --text-bright: #e2e8f0;
    --border-color: #475569;
    --border-light: #64748b;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header and Navigation */
  header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid var(--border-light);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
  }
  
  .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
  }
  
  .nav-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
    border-radius: 1px;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 3px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
  }
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
  }
  
  .hero-badge i {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: clamp(56px, 10vw, 88px);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero p {
    font-size: clamp(22px, 4vw, 28px);
    margin-bottom: 50px;
    color: var(--text-bright);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
  }
  
  .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  
  .floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
  }
  
  .floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
  }
  
  .floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
  }
  
  .floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
  }
  
  .floating-icon:nth-child(4) {
    top: 40%;
    right: 25%;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    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 ease;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
  }

  .btn i {
    font-size: 18px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
  }
  
  .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
  }
  
  .btn-outline:hover::before {
    width: 100%;
  }
  
  .btn-outline:hover {
    color: var(--text-light);
    border-color: transparent;
  }
  
  /* Sections */
  section {
    padding: 120px 0;
    position: relative;
  }
  
  .section-title {
    font-size: clamp(40px, 8vw, 64px);
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
  }
  
  /* About Section */
  .about {
    background: var(--background-light);
    position: relative;
  }
  
  .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .about-img {
    position: relative;
  }
  
  .img-border {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
  }
  
  .img-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
  }
  
  .img-border img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
  }
  
  .about-img:hover .img-border img {
    transform: scale(1.05);
  }
  
  .about-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .badge {
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
  }
  
  .about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .about-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-bright);
  }
  
  .about-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .feature i {
    color: var(--secondary-color);
    font-size: 16px;
  }
  
  .feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
  }
  
  /* Resume Section */
  .resume {
    background: var(--background-dark);
    position: relative;
  }
  
  .resume::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 20% 90%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
  }
  
  .resume-card {
    background: var(--background-card);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
  }
  
  .resume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
  }
  
  .resume-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .card-header i {
    font-size: 28px;
    color: var(--secondary-color);
  }
  
  .resume-card h3 {
    font-size: 28px;
    margin-bottom: 0;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  .resume-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
  }
  
  .resume-card .date {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .resume-card .date::before {
    content: '📅';
    font-size: 14px;
  }
  
  .resume-item {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .resume-item:last-child {
    margin-bottom: 0;
  }
  
  .resume-item ul {
    padding-left: 20px;
  }
  
  .resume-item ul li {
    margin-bottom: 12px;
    color: var(--text-bright);
    line-height: 1.7;
    position: relative;
  }
  
  .resume-item ul li::before {
    content: '▸';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
  }
  
  /* Skills Section */
  .skills {
    background: var(--background-light);
    position: relative;
  }
  
  .skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
  }
  
  .skill-category {
    background: var(--background-card);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
  }
  
  .skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
  }
  
  .skill-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
  }
  
  .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .category-header i {
    font-size: 28px;
    color: var(--secondary-color);
  }
  
  .skill-category h3 {
    font-size: 28px;
    margin-bottom: 0;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  .skill-item {
    margin-bottom: 30px;
  }
  
  .skill-item .skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-light);
  }
  
  .skill-bar {
    height: 12px;
    background: var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }
  
  .skill-progress {
    height: 100%;
    border-radius: 6px;
    background: var(--gradient-primary);
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  /* Projects Section */
  .projects {
    background: var(--background-dark);
    position: relative;
  }
  
  .projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 90% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
  }
  
  .project-card {
    background: var(--background-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
  }
  
  .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
  }
  
  .project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
  }
  
  .project-img {
    height: 280px;
    overflow: hidden;
    position: relative;
  }
  
  .project-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .project-card:hover .project-img::before {
    opacity: 1;
  }
  
  .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-img img {
    transform: scale(1.1);
  }
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  
  .project-card:hover .project-overlay {
    opacity: 1;
  }
  
  .project-links-overlay {
    display: flex;
    gap: 20px;
  }
  
  .overlay-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .overlay-link:hover {
    transform: scale(1.1);
    background: var(--gradient-accent);
  }
  
  .project-content {
    padding: 40px;
  }
  
  .project-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .project-tag {
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
  }
  
  .project-content p {
    color: var(--text-bright);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
  }
  
  .project-links {
    display: flex;
    gap: 20px;
  }
  
  .project-links a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
  }
  
  .project-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
  }
  
  .contact {
    background: var(--background-light);
    position: relative;
  }
  
  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
  }
  
  .contact-info h3 {
    font-size: 32px;
    margin-bottom: 40px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
  }
  
  .contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .contact-item:hover .contact-icon::before {
    transform: translateX(100%);
  }
  
  .contact-icon i {
    font-size: 28px;
    color: var(--text-light);
    z-index: 1;
  }
  
  .contact-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
  }
  
  .contact-text p {
    color: var(--text-bright);
    font-size: 16px;
  }
  
  .contact-form {
    background: var(--background-card);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
  }
  
  .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
  }
  
  .contact-form:hover {
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
  }
  
  .form-group {
    margin-bottom: 30px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 18px;
    background: var(--background-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 16px;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
    background: var(--background-light);
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  footer {
    background: var(--background-dark);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
  
  .social-link {
    width: 60px;
    height: 60px;
    background: var(--background-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
  }
  
  .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
  }
  
  .social-link:hover::before {
    transform: scale(1);
  }
  
  .social-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
  }
  
  .social-link i {
    font-size: 24px;
    z-index: 1;
    position: relative;
  }
  
  .footer-text {
    margin-top: 30px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    font-size: 16px;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.8s ease-out;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .float {
    animation: float 3s ease-in-out infinite;
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    
    .contact-container {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    
    .resume-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-stats {
      gap: 20px;
    }
    
    .stat-item {
      padding: 15px;
    }
    
    .stat-number {
      font-size: 24px;
    }
    
    .stat-label {
      font-size: 12px;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 56px;
    }
    
    .hero p {
      font-size: 22px;
    }
    
    .nav-links {
      display: none;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .projects-grid {
      grid-template-columns: 1fr;
    }
    
    .skills-container {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 40px;
    }
    
    .hero-stats {
      flex-direction: column;
      align-items: center;
    }
    
    .about-features {
      flex-direction: column;
    }
    
    .floating-icon {
      display: none;
    }
  }