html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

.careers-hero {
  background: #1a1a2e;
  padding: 8rem 6rem 2rem;  /* Bottom padding 3rem se 2rem reduce */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 100%;
  margin: 0 0 0 0;
  min-height: 45vh;  /* 45vh se 35vh - aur chota */
}

.careers-hero-left h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  margin-top: 4rem;  /* 5rem se 3rem reduce */
 
}

.careers-hero-right {
  max-width: 600px;
}

.careers-hero-right p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
  font-weight: 300;
  margin-top: 4rem;
}

/* Opportunity Cards */
.opportunity-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*.opportunity-card:hover {
  //transform: translateY(-4px);
  //box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}*/

.card-icon {
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.opportunity-card h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.opportunity-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 1.2rem;
}

/* Duration Box */
.duration-box {
  background: #f0f4f8;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  border-left: 4px solid #1a1a2e;
}

.duration-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.duration-box p {
  margin: 0;
  color: #333333;
}

/* Apply Box */
.apply-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 6px;
  margin-top: 2rem;
  border: 1px solid #e0e0e0;
}

.apply-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.apply-box p {
  margin-bottom: 1rem;
}

.apply-box a:not(.apply-btn) {
  color: #1a1a2e;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.apply-box a:not(.apply-btn):hover {
  color: #b8936e;
}

.note-text {
  font-size: 0.9rem;
  color: #777777;
  font-style: italic;
}

/* Apply Button */
.apply-btn {
  display: inline-block;
  background: #1a1a2e;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.apply-btn:hover {
  background: #2d2d4a;
  transform: scale(1.02);
}

/* Professional Environment Section */
.environment-section {
  padding: 4rem 0;
  background: #1a1a2e;
}

.environment-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.environment-box h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.environment-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
/* ===== RESPONSIVE DESIGN ===== */

/* 5. LARGE SCREENS (1921px+) */
@media (min-width: 1921px) {
  .careers-hero {
    padding: 10rem 8rem 3rem;
    gap: 5rem;
    min-height: 50vh;
  }

  .careers-hero-left h1 {
    font-size: 4.5rem;
    margin-top: 5rem;
  }

  .careers-hero-right {
    max-width: 750px;
  }

  .careers-hero-right p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-top: 5rem;
  }

  .opportunity-card {
    padding: 4rem;
    border-radius: 12px;
  }

  .card-icon {
    margin-bottom: 2rem;
    font-size: 3rem;
  }

  .opportunity-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .opportunity-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .duration-box {
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left-width: 5px;
  }

  .duration-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }

  .duration-box p {
    font-size: 1.05rem;
  }

  .apply-box {
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2.5rem;
  }

  .apply-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
  }

  .apply-box p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
  }

  .note-text {
    font-size: 1rem;
  }

  .apply-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
  }

  .environment-section {
    padding: 5rem 0;
  }

  .environment-box {
    padding: 4rem;
    border-radius: 12px;
  }

  .environment-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .environment-box p {
    font-size: 1.3rem;
    line-height: 1.9;
    max-width: 1100px;
  }
}

/* 2. STANDARD DESKTOP (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
  .careers-hero {
    padding: 9rem 7rem 2.5rem;
    gap: 4.5rem;
    min-height: 48vh;
  }

  .careers-hero-left h1 {
    font-size: 4rem;
    margin-top: 4.5rem;
  }

  .careers-hero-right {
    max-width: 650px;
  }

  .careers-hero-right p {
    font-size: 1.05rem;
    margin-top: 4.5rem;
  }

  .opportunity-card {
    padding: 3.5rem;
    border-radius: 10px;
  }

  .opportunity-card h2 {
    font-size: 2.2rem;
  }

  .opportunity-card p {
    font-size: 1.05rem;
  }

  .environment-section {
    padding: 4.5rem 0;
  }

  .environment-box {
    padding: 3.5rem;
  }

  .environment-box h2 {
    font-size: 2.2rem;
  }

  .environment-box p {
    font-size: 1.15rem;
    max-width: 950px;
  }
}

/* 1. LAPTOP / HALF SCREEN (1025px - 1366px) - FIXED */
@media (min-width: 1025px) and (max-width: 1366px) {
  .careers-hero {
    padding: 8rem 6rem 2rem;
    gap: 4rem;
    min-height: 45vh;
  }

  .careers-hero-left h1 {
    font-size: 3.5rem;
    margin-top: 4rem;
  }

  .careers-hero-right {
    max-width: 600px;
  }

  .careers-hero-right p {
    font-size: 0.95rem;
    margin-top: 4rem;
  }

  .opportunity-card {
    padding: 3rem;
  }

  .opportunity-card h2 {
    font-size: 2rem;
  }

  .opportunity-card p {
    font-size: 1rem;
  }

  .duration-box {
    padding: 1.5rem;
  }

  .apply-box {
    padding: 2rem;
  }

  .environment-section {
    padding: 4rem 0;
  }

  .environment-box {
    padding: 3rem;
  }

  .environment-box h2 {
    font-size: 2rem;
  }

  .environment-box p {
    font-size: 1.1rem;
  }
}

/* 3. TABLET (769px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
  .careers-hero {
    padding: 7rem 4rem 2rem;
    flex-direction: column;
    gap: 2.5rem;
    min-height: 40vh;
  }

  .careers-hero-left h1 {
    font-size: 3rem;
    margin-top: 2rem;
  }

  .careers-hero-right {
    max-width: 100%;
  }

  .careers-hero-right p {
    font-size: 0.95rem;
    margin-top: 0;
  }

  .opportunities-section .container {
    grid-template-columns: 1fr;
  }

  .opportunity-card {
    padding: 2.5rem;
  }

  .opportunity-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
  }

  .opportunity-card p {
    font-size: 0.98rem;
  }

  .duration-box {
    padding: 1.4rem;
    margin: 1.8rem 0;
  }

  .duration-box h3 {
    font-size: 1.05rem;
  }

  .apply-box {
    padding: 1.8rem;
    margin-top: 1.8rem;
  }

  .apply-box h3 {
    font-size: 1.15rem;
  }

  .apply-btn {
    padding: 0.85rem 1.8rem;
  }

  .environment-section {
    padding: 3.5rem 0;
  }

  .environment-box {
    padding: 2.5rem;
  }

  .environment-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
  }

  .environment-box p {
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

/* 4. MOBILE LAYOUT (< 768px) */
@media (max-width: 768px) {
  .careers-hero {
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
    min-height: 35vh;
  }

  .careers-hero-left h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
  }

  .careers-hero-right {
    max-width: 100%;
  }

  .careers-hero-right p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 0;
  }

  .opportunities-section .container {
    grid-template-columns: 1fr;
  }

  .opportunity-card {
    padding: 2rem;
    border-radius: 8px;
  }

  .card-icon {
    margin-bottom: 1.2rem;
  }

  .opportunity-card h2 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  .opportunity-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .duration-box {
    padding: 1.3rem;
    margin: 1.7rem 0;
    border-radius: 5px;
  }

  .duration-box h3 {
    font-size: 1.05rem;
  }

  .duration-box p {
    font-size: 0.95rem;
  }

  .apply-box {
    padding: 1.7rem;
    margin-top: 1.7rem;
    border-radius: 5px;
  }

  .apply-box h3 {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
  }

  .apply-box p {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  .note-text {
    font-size: 0.88rem;
  }

  .apply-btn {
    padding: 0.8rem 1.7rem;
    font-size: 0.95rem;
  }

  .environment-section {
    padding: 3rem 0;
  }

  .environment-box {
    padding: 2.5rem 1.5rem;
    border-radius: 6px;
  }

  .environment-box h2 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  .environment-box p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* 4.1 SMALL PHONES (< 480px) */
@media (max-width: 480px) {
  .careers-hero {
    padding: 5rem 1.5rem 1.5rem;
    gap: 1.5rem;
    min-height: 30vh;
  }

  .careers-hero-left h1 {
    font-size: 2rem;
    margin-top: 1rem;
    letter-spacing: 0.01em;
  }

  .careers-hero-right p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .opportunity-card {
    padding: 1.5rem;
    border-radius: 6px;
  }

  .card-icon {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .opportunity-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .opportunity-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }

  .duration-box {
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-left-width: 3px;
  }

  .duration-box h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .duration-box p {
    font-size: 0.9rem;
  }

  .apply-box {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .apply-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .apply-box p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .note-text {
    font-size: 0.85rem;
  }

  .apply-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .environment-section {
    padding: 2.5rem 0;
  }

  .environment-box {
    padding: 2rem 1.2rem;
  }

  .environment-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .environment-box p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}
