/* =============================
   General Section Styling
============================= */
section {
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

/* =============================
   Guides Intro Section
============================= */
.guides-intro {
  background-color: #f3f6fa;  /* soft light blue */
  color: #1a1a1a;
  text-align: center;
  border-left: 6px solid #007bff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}

.guides-intro:hover {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.guides-intro h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.guides-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

/* =============================
   Guides Grid Section
============================= */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.guide-card {
  background-color: #ffffff;
  padding: 2rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05), 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 2px solid transparent;
}

.guide-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12), 0 18px 45px rgba(0,0,0,0.08);
  border-color: #007bff;
}

.read-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.4rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.read-more-btn:hover {
  transform: scale(1.05) translateY(-2px);
  background-color: #0056b3;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* =============================
   Explore RozgarZone Section
============================= */
.explore-sections {
  background-color: #fff9f2; /* soft peach */
  padding: 3rem 2rem;
  border-left: 6px solid #ff9800;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.explore-sections:hover {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.sections-grid-wrapper .sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.section-card {
  background-color: #fff3e0;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05), 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 2px solid transparent;
}

.section-card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12), 0 20px 50px rgba(0,0,0,0.08);
  border-color: #ff9800;
  background-color: #ffe0b2;
}

.use-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.4rem;
  background-color: #ff9800;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.use-btn:hover {
  transform: scale(1.05) translateY(-2px);
  background-color: #e68900;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* =============================
   Roz Section (#roz)
============================= */
#roz {
  background-color: #e9f7ef; /* soft green */
  padding: 3rem 2rem;
  border-left: 6px solid #43a047;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

#roz a.section-card {
  background-color: #c8e6c9;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#roz a.section-card:hover {
  transform: scale(1.03);
  background-color: #a5d6a7;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12), 0 20px 50px rgba(0,0,0,0.08);
  border-color: #43a047;
}
h1{

  color: #2e2c2c;
  text-align: center;
  
}

/* =============================
   Responsive Typography
============================= */
@media (max-width: 768px) {
  .guides-intro h1 {
    font-size: 2rem;
  }
  .guide-card h2,
  .section-card h3 {
    font-size: 1.2rem;
  }
}
/* Card Buttons */
.guide-card .read-more-btn,
.section-card .use-btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background-color: #007bff; /* main color */
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.guide-card .read-more-btn:hover,
.section-card .use-btn:hover {
  background-color: #0056b3; /* hover color */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
