:root {
  /* Light Theme Colors (Default) */
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-2: #f0f3fa;
  --border: #e2e7f0;
  --text: #0b1220;
  --text2: white;
  --muted: #5a6478;
  --accent: #2f6bff;
  --accent-hover: #1f57e0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Dark Theme (Triggered by adding 'dark' class to body) */
body.dark {
  --bg: #0b1220;
  --surface: #111a2e;
  --surface-2: #16223b;
  --border: #1f2c48;
  --text: #e6ecf7;
  --text2: black;
  --muted: #9aa7bd;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* --- Base & Reset Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}


/* main parrt */

/* --- About Main Section Container --- */
.about-container {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}
.about-me h1{
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 10px;
}
.about-me p{
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Left Image Box Style */
.about-img-box {
  background: var(--card-bg );
  border: 1px solid var(--border-color, #4b4b4c50);
  border-radius: 16px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  
}

.about-img-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Right Bio Content Style */
.about-content h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px; /* Heading text aur GIF ke beech ka gap */
}

/* Heading ke andar wale GIF ka size set karne ke liye */
.about-content h2 img {
  width: 35px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
}

.about-content p {
  
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Highlights Grid */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--muted,);
  padding: 20px;
  border-radius: 12px;
}

.highlight-card i {
  font-size: 1.5rem;
  color: var(--accent, #3b82f6);
  margin-bottom: 10px;
}

.highlight-card h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.highlight-card p {
  font-size: 0.9rem;
  margin: 0;
}



/* --- Extra Section: What I Focus On --- */
.about-extra-section {
  margin-top: 20px; /* Gap from previous content */
  border-top: 1px solid var(--border-color, #2a2a3a); /* Separator line */
  padding-top: 30px;
}

.about-extra-section h3 {
  color: var(--text);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-extra-section p {
  color: var(--text-muted,);
  font-size:15px;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px; /* Emoji aur text ke beech ka gap */
}

/* --- Extra Section: What I Focus On Button --- */
.about-extra-section .focus-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 24px;
  background: var(--text);
  color: var(--text2);
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.about-extra-section .focus-btn:hover {
    background-color: var(--muted); /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
 

/* --- Mobile Responsive View --- */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .about-extra-section p {
  line-height: 1.6;
  
}
}