* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}
/* Dark Mode Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Dark Theme Colors */
body.dark-mode {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .glass-card {
    background: rgba(0, 0, 0, 0.3);
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.name {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.tagline {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.skills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.skills li {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skills li:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.contact-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
} 
/* Dark Mode Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Dark Theme Colors */
body.dark-mode {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .glass-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode p {
    color: #e5e5e5;
}
.about-section {
  margin-top: 30px;
  text-align: left;
}

.about-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Dark mode ke liye alag color chahiye to */
body:not(.dark-mode) .about-section p {
  color: #333;
}
.contact-section {
  margin-top: 30px;
  text-align: left;
}

.contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#contact-form input, 
#contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(5px);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #ddd;
}

#contact-form button {
  padding: 12px;
  background: #00c6ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}

#contact-form button:hover {
  background: #0072ff;
}

#form-status {
  margin-top: 10px;
  color: #00ff88;
  font-weight: 500;
}
/* Dark Mode Styles */
body.dark-mode {
  background: #0f172a;
}

body.dark-mode .glass-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode #contact-form input,
body.dark-mode #contact-form textarea {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

body.dark-mode .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
