
/* --- CSS Variables & Theme Configuration --- */
: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);

  --bg-overlay: rgba(255, 255, 255, 0.93);
}

/* 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);

  --bg-overlay: rgba(6, 6, 6, 0.94);
}

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

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

.work-section {
  padding: 60px 20px;
  max-width: 1500px; /* कंटेनर की चौड़ाई बढ़ाई गई है */
  margin: 0 auto;
  width: 90%;
  
}

.work-container-grid {
  display: grid;
  grid-template-columns: 1fr 600px; /* राइट फॉर्म कॉलम की चौड़ाई बढ़ा दी गई है (520px) */
  gap: 30px;
  align-items: center;
}

.work-intro h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.work-intro p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
.work-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* .highlight-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
} */

.highlight-icon {
  background: var(--text);
  color: var(--text2);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 700;
}

.highlight-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.work-form-box {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  width: 100%;
}

.form-top-note span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.form-top-note h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 20px;
}

.work-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--muted);
}

/* --- Fixed Skills Radio Layout Alignment --- */
.skills-grid-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 5px;
}

.radio-label {
  display: flex;
  align-items: center; /* वर्टिकल सेंटर एलाइनमेंट */
  gap: 10px;           /* रेडियो बटन और टेक्स्ट के बीच की दूरी */
  font-size: 0.9rem;
  font-weight: normal !important;
  color: var(--text);  /* रंग को साफ़ दिखने के लिए var(--text) किया गया है */
  cursor: pointer;
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  transition: border-color 0.2s;
}


.radio-label input[type="radio"] {
  accent-color: var(--accent); /* रेडियो बटन को थीम का कलर देगा */
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background:var(--text);
  color:var(--text2);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--muted);
}
.soon-touch{
  font-size: 14px;
  color: var(--muted);
}
.success-toast {
  position: fixed;
  top: -100px; /* शुरू में स्क्रीन से ऊपर छुपा रहेगा */
  left: 50%;
  transform: translateX(-50%);
  background: #10b981; /* हरा रंग (Success Color) */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transition: top 0.4s ease-in-out; /* स्मूथ एनिमेशन */
}

/* जब यह क्लास एक्टिव होगी तो यह टॉप से नीचे दिखेगा */
.success-toast.show {
  top: 20px; 
}


.required-star {
  color: #ef4444; /* Bright Red Color */
  margin-left: 3px;
}


@media (max-width: 992px) {
  .work-container-grid {
    grid-template-columns: 1fr;
  }
  .work-section {
  max-width: 1500px; /* कंटेनर की चौड़ाई बढ़ाई गई है */
  margin: 0 auto;
  width: 100%;
  
}
}