.state-section {
  width: 100%;
  padding: 50px 20px;

  /* 🔹 Background image added */
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  position: relative;
}

/* optional overlay for readability */
.state-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.state-section>div {
  position: relative;
  z-index: 1;
}

.section-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #f59e0b;
}

.state-title {
  font-size: 34px;
  color: #444;
  margin-bottom: 35px;
}

.state-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.state-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  color: #1f2937;
  cursor: pointer;
  transition: 0.3s;
}

.state-box:nth-child(1) {
  background: #e3f2fd;
}

/* light blue */
.state-box:nth-child(2) {
  background: #e8f5e9;
}

/* light green */
.state-box:nth-child(3) {
  background: #fff3e0;
}

/* light orange */
.state-box:nth-child(4) {
  background: #fce4ec;
}

/* light pink */
.state-box:nth-child(5) {
  background: #ede7f6;
}

/* light purple */
.state-box:nth-child(6) {
  background: #e0f7fa;
}

/* cyan */
.state-box:nth-child(7) {
  background: #f3e5f5;
}

/* lavender */
.state-box:nth-child(8) {
  background: #f9fbe7;
}

.state-box:nth-child(9) {
  background: #e1f5fe;
}

.state-box:nth-child(10) {
  background: #fffde7;
}

.state-box:nth-child(11) {
  background: #e8eaf6;
}

.state-box:nth-child(12) {
  background: #f1f8e9;
}

.state-box:nth-child(13) {
  background: #fbe9e7;
}

.state-box:nth-child(14) {
  background: #ede7f6;
}

.state-box:nth-child(15) {
  background: #e0f2f1;
}

.state-box:nth-child(16) {
  background: #fce4ec;
}


.state-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.state-icon {
  font-size: 20px;
  color: #f59e0b;
}

@media (max-width: 600px) {
  .state-title {
    font-size: 24px;
  }
}

.job-section {
  background: #f7f9fc;
  padding: 40px 0;
  font-family: system-ui, sans-serif;
}

.job-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.job-card {
  padding: 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 20px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.job-card.yellow {
  background: linear-gradient(135deg, #fff7d1, #ffe9a3);
}

.job-card.pink {
  background: linear-gradient(135deg, #ffd6dc, #f7a6b2);
}

.fire {
  color: #ff2d00;
  font-size: 26px;
}

/* Bottom Buttons */
.bottom-buttons {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.btn {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.telegram {
  color: #229ED9;
}

.whatsapp {
  color: #25D366;
}

.app {
  color: #1e88e5;
}

/* Responsive */
@media (max-width: 900px) {

  .job-grid,
  .bottom-buttons {
    grid-template-columns: 1fr;
  }
}

/* Container and section styling */
.info-section {
  background-color: #f9fafb;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #34495e;
}

.discover-more {
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.discover-more h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #d6e4ff;
  border-radius: 30px;
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.2s ease;
}

.tag span {
  font-size: 14px;
}

.tag:hover {
  background: #f0f6ff;
  border-color: #1a73e8;
}

.discover-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* decorative underline */
.discover-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1a73e8;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* ===============================
   MOBILE VIEW (ONLY)
================================ */
@media (max-width: 768px) {

  .job-section {
    padding: 15px 0;
  }

  .container {
    padding: 0 10px;
  }

  /* Grid becomes single column */
  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Card full width */
  .card {
    width: 100%;
    margin-top: 0;
  }

  /* Order set: 1 2 3 4 */
  .grid > .card:nth-child(1) {
    order: 1;
  }

  .grid > .middle-column {
    order: 2;
  }

  .grid > .middle-column .card:nth-child(1) {
    order: 3;
  }

  .grid > .middle-column .card:nth-child(2) {
    order: 4;
  }

  .grid > .card:nth-child(3) {
    order: 5;
  }

  /* Header font smaller */
  .card-header {
    font-size: 20px;
    padding: 10px 5px;
  }

  /* List text readable on mobile */
  .card-list li {
    font-size: 15px;
    line-height: 1.5;
  }

  /* View all button center */
  .view-btn {
    align-self: center;
    margin: 10px auto;
    font-size: 12px;
  }
}


.job-section {
  padding: 30px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.middle-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ff4b4b;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  margin-top: 27px;
}

.card-header {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  color: #fff;
  text-align: center;
  padding: 8px;

  font-size: 30px;
  font-family: 'Merriweather Sans', sans-serif;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
 
  font-size: 20px;
  color: black;
  font-family: 'Font Awesome 5 Pro' !important;
}

.card-list li:last-child {
  border-bottom: none;
}

.out {
  color: red;
  font-weight: bold;
}

.new {
  color: red;
}

.soon {
  color: red;
}

.blue {
  color: #0056ff;
}

.view-btn {
  margin: 10px;
  align-self: self-end;
  background: #00c389;
  color: #000;
  padding: 5px 14px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
}


.info-section {
  padding: 30px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-card {
  background: #fff;
  border: 1px solid #ff5a5a;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.info-header {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 6px 6px 0 0;
  font-family: 'Merriweather Sans', sans-serif;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 14px 14px;
  
  font-size: 20px;
  color: black;
  border-bottom: 1px solid #e9e9e9;
  font-family: 'Font Awesome 5 Pro';
}

.info-list li:last-child {
  border-bottom: none;
}

.view-all {
  align-self: flex-end;
  margin: 15px;
  background: #19c39c;
  color: #000;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  background: linear-gradient(to right, #19c1b3, #38ef7d);
}



.edu-section {
  padding: 30px 0;
}

.edu-container {
  max-width: 1200px;
  margin: auto;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.edu-card {
  background: #ffffff;
  border: 1px solid #ff5a5a;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.edu-header {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  color: #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  padding: 14px 10px;
  border-radius: 6px 6px 0 0;
}

.edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edu-list li {
  padding: 15px 14px;
  font-size: 20px;
  border-bottom: 1px solid #e9e9e9;
font-family: 'Font Awesome 5 Pro';
  color: black;
}

.edu-list li:last-child {
  border-bottom: none;
}

.edu-highlight {
  color: #1e5bff;
  font-weight: 500;
}

.edu-btn {
  align-self: flex-end;
  margin: 16px;
  background: #19c39c;
  color: #000;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  background: linear-gradient(to right, #19c1b3, #38ef7d);
}

.edu-card {
  background: #ffffff;
  border: 1px solid #ff5a5a;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 👇 this pushes the button to bottom */
.edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}






.alok-about-section {
  width: 100%;
  background: #fff;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
}

.alok-about-header {
  max-width: 95%;
  margin: 40px auto;
  padding: 26px 0;
  background: linear-gradient(90deg, #18c1a3, #39e97a);
  clip-path: polygon(3% 0%,
      100% 0%,
      97% 100%,
      0% 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);

  /* CENTER TEXT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.alok-about-title {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  color: black;
  text-align: center;
}


.alok-about-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 0px;
  font-size: 18px;
  line-height: 1.4;
  color: black;
}

.alok-about-content a {
  color: #1a73e8;
  text-decoration: none;
  word-break: break-word;
}

.alok-job-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 8px 18px;
  background: #0b57d0;
  color: #fff !important;
  border-radius: 22px;
  font-size: 18px;
  text-decoration: none;
}

.alok-job-btn span {
  font-size: 16px;
}

.alok-admin-msg {
  font-style: italic;
  margin: 25px 0;
}

p {
  color: black;
}




.key-features {
  font-family: Arial, sans-serif;
  color: #222;
}

.feature-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
}

.feature-item::before {
  content: "»";
  position: absolute;
  left: 0;
  top: 1px;
  color: #1a73e8;
  font-size: 18px;
}


.alok-admission-section {
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
}

.alok-admission-container {
  max-width: 1200px;
  margin: auto;
}

.alok-admission-title {
  font-size: 34px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 16px;
}

.alok-admission-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 24px;
}

.alok-topic-box {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.alok-topic-header {
  background: #f9fafb;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.alok-topic-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 18px;
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.alok-topic-item:last-child {
  border-bottom: none;
}

.alok-topic-item:hover {
  background: #f9fafb;
}

.alok-arrow {
  font-size: 26px;
  color: #9ca3af;
}

.alok-admission-footer {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
}

.alok-admission-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 6px 16px;
  background: #60d00b;
  color: #cc0e0e;
  border-radius: 22px;
  font-size: 16px;
  text-decoration: none;
}

.alok-admission-btn span {
  font-size: 14px;
}

.alok-admission-btn:hover {
  color: #ffffff;
}

.alok-topic-item:last-child {
  border-bottom: none;
}

.alok-topic-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 18px;
  color: #1f2937;
  text-decoration: none;
  background: #fff;

  /* BORDER BOTTOM */
  border-bottom: 1px solid #e5e7eb;
}

.fj-section {

  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
}

.fj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: -1 20px;
}

.fj-title {
  font-size: 34px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 25px;
}

.fj-mt {
  margin-top: 10px;
}

.fj-discover {
  margin-bottom: 30px;
}

.fj-discover-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 15px;
  font-size: x-large;
  font-weight: bold;
}

.fj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fj-tag {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 30px;
  font-size: 15px;
  color: #2563eb;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.3s ease;
}

.fj-tag:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.fj-text {
  max-width: 1050px;
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
}

.sj-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
  background: #ffffff;


}

/* Gradient header bar */
.sj-header {
  max-width: 1200px;
  margin: 40px auto 40px;
  padding: 18px 20px;
  background: linear-gradient(90deg, #18c6b0, #3df28b);
  text-align: center;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.sj-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
}

/* Content */
.sj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sj-text {
  font-size: 20px;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 30px;
}

/* Blue pill button */
.sj-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 6px 16px;
  background: #0b5ed7;
  color: #ffffff;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

.sj-pill::before {
  content: "⚡";
  margin-right: 6px;
}

/* List */
.sj-list {
  font-size: 22px;
  color: #1f2937;
  line-height: 1.8;
  padding-left: 25px;
}

.sj-list li {
  margin-bottom: 22px;
}


.sj-list {
  list-style: none;
  counter-reset: roman;
  padding-left: 0;
  font-size: 18px;
  padding: 20px;
}

.sj-list li {
  counter-increment: roman;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: #1f2937;
}

/* Roman numbers */
.sj-list li::before {
  content: counter(roman, lower-roman) ".";
  min-width: 40px;
  /* THIS creates perfect spacing */
  text-align: right;
  font-weight: 500;
}

.dm-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: -1 20px;
  font-family: "Inter", Arial, sans-serif;
}

.dm-label {
  font-size: 20px;
  color: black;
  margin-right: 15px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: bold;
}

.dm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dm-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  font-size: 18px;
  color: #1d4ed8;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.25s ease;
}

/* Lightning icon */
.dm-tag::before {
  content: "⚡";
  font-size: 16px;
  color: #1d4ed8;
}

/* Hover like original */
.dm-tag:hover {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}

.dm-tag:hover::before {
  color: #ffffff;
}

.faq-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
  background: #ffffff;

}

/* Header */
.faq-header {
  max-width: 1200px;
  margin: 40px auto 45px;
  padding: 18px 20px;
  background: linear-gradient(90deg, #18c6b0, #3df28b);
  text-align: center;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.faq-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  color: #0f172a;
}

/* Content */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 5px;
  font-weight: bold;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  margin: 0;
}

/* Link style */
.faq-link {
  color: #1d4ed8;
  text-decoration: none;
  border-bottom: 2px dotted #1d4ed8;
  padding-bottom: 2px;
}

.faq-link::before {
  content: "⚡ ";
  color: #1d4ed8;
}

.disclaimer-section {
  background: #f8f6f6;
  /* normal background */
  padding: 5px 0 2px;
  font-family: "DM Sans", Arial, sans-serif;

}

.disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-title {
  font-size: 28px;
  font-weight: 600;
  color: red;
  margin-bottom: 20px;
}

.disclaimer-text {
  font-size: 13px;
  line-height: 1.5;
  color: #1f2937;
  margin-bottom: 5px;
}

.job-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "DM", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #1f2937;
}

/* Blue pill button */
.job-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 6px 16px;
  background: #0b5ed7;
  color: #ffffff;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.job-pill::before {
  content: "⚡";
  margin-right: 6px;
}

.follow-section {
  background: #1f2a3a;
  padding: 60px 20px 70px;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
}

.follow-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 35px;
}

.follow-icons {
  display: flex;
  justify-content: center;
  gap: 80px;
}

/* Icon base */
.follow-icons a {
  font-size: 42px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.follow-icons a:hover {
  transform: scale(1.15);
}

/* Real brand colors */
.tg i {
  color: #229ED9;
}

/* Telegram */
.fb i {
  color: #1877F2;
}

/* Facebook */
.tw i {
  color: #1DA1F2;
}

/* Twitter */
.ig i {
  background: linear-gradient(45deg,
      #F58529,
      #DD2A7B,
      #8134AF,
      #515BD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yt i {
  color: #FF0000;
}

/* YouTube */


.alok-raj-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
  background: #ffffff;

}

.alok-raj-header h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* Two Column Layout */
.alok-raj-wrapper.alok-raj-two-col {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* Left & Right */
.alok-raj-left,
.alok-raj-right {
  width: 50%;
}

/* Middle Vertical Line */
.alok-raj-divider {
  width: 2px;
  background: linear-gradient(to bottom, #ff9800, #ddd, #ff9800);
}

/* Left Title */
.alok-raj-title {
  font-size: 22px;
  margin-bottom: 20px;
}

/* Feature Grid */
.alok-raj-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.alok-raj-feature-box {
  padding: 10px 14px;
  background: #f9f9f9;
  border-left: 4px solid #ff9800;
  font-size: 14px;
}

/* Right Content */
.alok-raj-right p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Button */
.alok-raj-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #ff9800;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .alok-raj-wrapper.alok-raj-two-col {
    flex-direction: column;
  }

  .alok-raj-left,
  .alok-raj-right {
    width: 100%;
  }

  .alok-raj-divider {
    display: none;
  }
}



.alok-mehta-job-btn {
  color: #fff !important;
}

.alok-mehta-main {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Merriweather Sans', sans-serif;
}

/* TITLE BAR */
.alok-mehta-title-bar {
  background: linear-gradient(to right, #1ec9a3, #3ee07f);
  padding: 18px;

  text-align: center;
  margin-bottom: 30px;
}

.alok-mehta-title-bar h2 {
  margin: 0;
  font-size: 28px;
  color: #111;
}

/* CONTENT */
.alok-mehta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 12px;
}

.alok-mehta-content a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

/* BUTTON */
.alok-mehta-job-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 20px;
  background: #1a73e8;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* BLOCKQUOTE */
.alok-mehta-content blockquote {
  font-style: italic;
  background: #f5f5f5;
  border-left: 4px solid #1ec9a3;
  padding: 12px;
  margin: 15px 0;
}

/* DISCOVER */
.alok-mehta-discover-section {
  margin-top: 40px;
  text-align: center;
}

.alok-mehta-discover-section h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.alok-mehta-discover-line {
  width: 80px;
  height: 4px;
  background: #1a73e8;
  margin: 0 auto 25px;
  border-radius: 10px;
}

/* TAGS */
.alok-mehta-discover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.alok-mehta-discover-tags span {
  padding: 8px 16px;
  border: 1px solid #dbeafe;
  border-radius: 25px;
  font-size: 14px;
  color: #1a73e8;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.alok-mehta-discover-tags span:hover {
  background: #1a73e8;
  color: #fff;
}




/* RESPONSIVE */
@media (max-width: 768px) {
  .alok-mehta-title-bar h2 {
    font-size: 22px;
  }

  .alok-mehta-content p {
    font-size: 15px;
  }

  .alok-mehta-discover-section{
    display: none;
  }

  .discover-more{
    display: none;
  }
}

/* ---------------------------------------------------------------- current job ------------------------------------*/


.job-wrapper {
  max-width: 880px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding-bottom: 20px;
}

.job-header {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  padding: 22px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: white;
  border-radius: 18px 18px 0 0;
}

.search-bar {
  padding: 22px;
}

.search-bar input {
  width: 100%;
  padding: 15px 22px;
  border-radius: 35px;
  border: none;
  outline: none;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px #ddd;
}

.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 22px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6e9ef;
  transition: 0.35s ease;
}

.job-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: #ff4b2b;
}

.job-text {
  max-width: 70%;
}

.job-text h4 {
  margin: 0;
  font-size: 19px;
  color: #222;
}

.job-text span {
  color: #e63946;
  font-weight: 600;
  font-size: 14px;
}

.apply {
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.apply:hover {
  opacity: 0.9;
}

@media(max-width:600px) {
  .job-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .job-text {
    max-width: 100%;
  }
}



/* ---------------------------------------------------------------- Admit card------------------------------------*/

.admit-wrapper {
  max-width: 880px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding-bottom: 20px;
}

.admit-header {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  padding: 22px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: white;
  border-radius: 18px 18px 0 0;
}

.search-bar {
  padding: 22px;
}

.search-bar input {
  width: 100%;
  padding: 15px 22px;
  border-radius: 35px;
  border: none;
  outline: none;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px #ddd;
}

.admit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 22px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6e9ef;
  transition: 0.35s ease;
}

.admit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: #ff4b2b;
}

.admit-text {
  max-width: 70%;
}

.admit-text h4 {
  margin: 0;
  font-size: 19px;
  color: #222;
}

.admit-text span {
  color: #e63946;
  font-weight: 600;
  font-size: 14px;
}

.download {
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.download:hover {
  opacity: 0.9;
}

@media(max-width:600px) {
  .admit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .admit-text {
    max-width: 100%;
  }
}

/*------------------------------------------------------------------------- resualt -------------------------------*/

.current-result-box {
  border: 1.5px solid #ff3b2f;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 720px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.current-result-header {
  background: linear-gradient(90deg, #ff3b2f, #ff6b5c);
  color: white;
  font-size: 22px;
  text-align: center;
  padding: 14px;
}

.result-filter {
  margin: 15px 20px 5px;
  padding: 11px 16px;
  width: calc(100% - 70px);
  border-radius: 30px;
  border: 1.5px solid #ccc;
  font-size: 14px;
  outline: none;
}

.result-filter:focus {
  border-color: #ff3b2f;
  box-shadow: 0 0 6px rgba(255, 59, 47, 0.4);
}

.result-count {
  margin: 0 20px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.result-list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.result-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 15px;
  margin-bottom: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.result-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: #ff3b2f;
}

.result-title {
  flex: 1;
  line-height: 1.4;
}

.badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.SSC {
  background: #ffe5e5;
  color: #b30000;
}

.BPSC {
  background: #e6f0ff;
  color: #003d99;
}

.IBPS {
  background: #e6ffe6;
  color: #1b7f1b;
}

.POLICE {
  background: #fff1cc;
  color: #8a4b00;
}

.UPSC {
  background: #f0e6ff;
  color: #5a2ca0;
}

.new-badge {
  background: #ff3b2f;
  color: white;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 10px;
  margin-left: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

.btn-result {
  background-color: #ff3b2f;
  color: white;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  flex-shrink: 0;
}

.btn-result:hover {
  background-color: #ff6b5c;
}




/*--------------------------------------------------------------- syllabus ----------------------------------------*/


.current-syllabus-box {
  border: 1.5px solid #ff3b2f;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.current-syllabus-header {
  background: linear-gradient(90deg, #ff3b2f, #ff6b5c);
  color: white;
  font-size: 22px;
  text-align: center;
  padding: 14px;
  border-radius: 12px 12px 0 0;
}

.syllabus-filter {
  margin: 15px 20px 5px;
  padding: 10px 15px;
  width: calc(100% - 70px);
  border-radius: 25px;
  border: 1.5px solid #ccc;
  font-size: 14px;
  outline: none;
}

.syllabus-filter:focus {
  border-color: #ff3b2f;
}

.syllabus-count {
  margin: 0 20px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.syllabus-list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.syllabus-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #111;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.syllabus-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  border-color: #ff3b2f;
}

.syllabus-year {
  color: red;
  font-weight: 700;
  margin-top: 4px;
}

.new-badge {
  display: inline-block;
  margin-left: 6px;
  background: #ff3b2f;
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

.btn-syllabus {
  align-self: flex-start;
  margin-top: 10px;
  background-color: #ff3b2f;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.btn-syllabus:hover {
  background-color: #ff6b5c;
}

mark {
  background: #fff2a8;
  padding: 0 3px;
  border-radius: 3px;
}

/*----------------------------------------------------------- syllabus -------------------------*/

.alok-box {
  border: 1.5px solid #ff3b2f;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.alok-header {
  background: linear-gradient(90deg, #ff3b2f, #ff6b5c);
  color: white;
  font-size: 22px;
  text-align: center;
  padding: 14px;
  border-radius: 12px 12px 0 0;
}

.alok-filter {
  margin: 15px 20px 5px;
  padding: 10px 15px;
  width: calc(100% - 70px);
  border-radius: 25px;
  border: 1.5px solid #ccc;
  font-size: 14px;
  outline: none;
}

.alok-filter:focus {
  border-color: #ff3b2f;
}

.alok-count {
  margin: 0 20px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.alok-list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.alok-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
}

.alok-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  border-color: #ff3b2f;
}

.alok-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alok-year {
  color: red;
  font-weight: 700;
  flex-shrink: 0;
}

.alok-new {
  background: #ff3b2f;
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  animation: blink 1s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

.alok-btn {
  background-color: #ff3b2f;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  flex-shrink: 0;
}

.alok-btn:hover {
  background-color: #ff6b5c;
}


/*----------------------------------------------- contact----------------------------------*/


.contact-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.contact-header {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  text-align: center;
  padding: 18px;
  border-radius: 12px 12px 0 0;
  color: #fff;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.email-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px dashed #3f51b5;
  padding: 15px;
  border-radius: 10px;
  margin: 25px 0;
  justify-content: space-between;
}

.email-box i {
  color: #3f51b5;
  font-size: 22px;
}

.email-box span {
  font-size: 18px;
  font-weight: 600;
  color: #3f51b5;
}

.email-box button {
  background: #3f51b5;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.email-box button:hover {
  background: #2c387e;
}

.email-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ff512f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.email-btn:hover {
  background: #dd2476;
}

.social-section {
  margin-top: 40px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: #333;
  transition: 0.3s;
}



@media(max-width:600px) {
  .email-box {
    flex-direction: column;
    text-align: center;
  }
}



.card-admit{
  color: #000;
}
.card-admit:hover{
  color: #0c09d5;
}



/*----------------------------- net admit card -----------------*/
.net-vacancy-table {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    border: 2px solid #000;
    border-collapse: collapse;
    font-family: "Times New Roman", serif;
}

.net-vacancy-table th,
.net-vacancy-table td {
    border: 1px solid #000;
    padding: 15px;
    vertical-align: middle;
    font-size: 22px;
}

.net-vacancy-header {
    background: #0b0b5e;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 18px;
}

.net-sub-head {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.net-click {
    color: red;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.net-eligibility {
    font-size: 26px;
    line-height: 1.6;
}

.net-eligibility b {
    font-weight: bold;
}

.net-bottom-box {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    border: 2px solid #000;
    padding: 15px;
    font-family: "Times New Roman", serif;
    font-size: 28px;
}

.net-bottom-box .red {
    color: #8b0000;
    font-weight: bold;
}

.net-bottom-box .blue {
    color: blue;
    font-weight: bold;
}

.net-admit-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #ccc;
    text-align: start;
    font-family: "Times New Roman", serif;
}

.net-admit-card .net-title {
    color: blue;
    font-size: 20px;
    margin-bottom: 10px;
}

.net-admit-card .net-date {
    color: red;
    font-size: 15px;
    margin-bottom: 25px;
}

.net-admit-card .net-content {
    font-size: 15px;
    line-height: 1.6;
    color: black;
}

.net-admit-card .net-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #0b5ed7;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px;
}

.net-table {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    border: 2px solid #000;
    border-collapse: collapse;
    font-family: "Times New Roman", serif;
}

.net-table th,
.net-table td {
    border: 1px solid #000;
    padding: 10px;
    vertical-align: top;
    font-size: 18px;
}

.net-header {
    text-align: center;
    padding: 15px;
    line-height: 1.6;
}

.net-header .h1 {
    color: red;
    font-size: 26px;
    font-weight: bold;
}

.net-header .h2 {
    color: green;
    font-size: 22px;
    font-weight: bold;
}

.net-header .h3 {
    color: blue;
    font-size: 22px;
    font-weight: bold;
}

.bg-maroon {
    background: #6a0033;
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

.bg-green {
    background: #0b5e2b;
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

.bg-orange {
    background: #ff4500;
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

ul {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background: yellow;
    font-weight: bold;
}

.red {
    color: red;
    font-weight: bold;
}

.center-text {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}






.nta-box {
  border: 2px solid #000;
  font-family: "Times New Roman", serif;
  margin: 20px auto;   /* ✅ center box */
  max-width: 1100px;   /* optional – looks perfect */
}

.nta-header {
  background: #00008b;
  color: #fff;
  text-align: center;  /* already centered */
  font-weight: bold;
  font-size: 24px;
  padding: 8px 10px;
  border-bottom: 2px solid #000;
}

.nta-list {
  list-style-type: disc;
  padding: 15px 40px;
  font-size: 20px;
}

.nta-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}


.sr-box {
  border: 2px solid #000;
  margin: 20px auto;
  max-width: 1100px;
  font-family: "Times New Roman", serif;
}

.sr-title {
  background: #00008b;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 6px;
  font-size: 18px;
  border-bottom: 2px solid #000;
}

.sr-list,
.sr-qa {
  padding: 10px 40px;
  font-size: 16px;
}

.sr-list li,
.sr-qa li {
  margin-bottom: 6px;
}

.sr-table {
  width: 1100px;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: "Times New Roman", serif;
}

.sr-table td {
  border: 1px solid #000;
  padding: 8px;
  background: #fff59d;
  font-weight: bold;
}

.table-heading td {
  background: #ff0000;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.sr-table a {
  color: blue;
  text-decoration: none;
  font-weight: bold;
}

.social-table td {
  background: #fff;
  font-weight: bold;
}

.left-link {
  color: red;
}

.right-link {
  text-align: right;
}


/* Banner */
.ugc-banner {
  width: 1100px;
  margin: 20px auto;
  display: flex;
  border: 1px solid #000;
  background: linear-gradient(#ffe082, #fff);
}

.ugc-left {
  flex: 3;
  padding: 20px;
}

.ugc-left h1 {
  font-size: 64px;
  color: #1b5e20;
  margin: 0;
  font-weight: 900;
}

.december {
  display: inline-block;
  background: #1b5e20;
  color: #fff;
  padding: 6px 15px;
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}

.admit-card {
  background: linear-gradient(#ff5252, #b71c1c);
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  padding: 15px;
  margin-top: 15px;
}

.ugc-right {
  flex: 1;
  background: #0b3d0b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tick-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(#ff9800 0 50%, #2e7d32 50% 100%);
  color: #fff;
  font-size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #fff;
}

/* Site name */
.site-name {
  text-align: center;
  font-size: 14px;
  color: green;
  margin: 5px 0 15px;
  font-weight: bold;
}

/* Posts */
.post-wrapper {
  width: 1100px;
  margin: auto;
  display: flex;
  border: 1px solid #000;
  margin-bottom: 10px;
}

.post-box {
  flex: 1;
  border-right: 1px solid #000;
  padding: 10px;
}

.post-box:last-child {
  border-right: none;
}

.post-box h3 {
  margin: 0;
  font-size: 16px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.post-box ul {
  padding-left: 18px;
}

.post-box li {
  margin: 6px 0;
}

.post-box a {
  color: #0000ee;
  text-decoration: none;
}

/* =========================
   RESPONSIVE ONLY (MOBILE + TABLET)
   ========================= */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .net-admit-card,
  .nta-box,
  .sr-box,
  .net-bottom-box {
    padding: 16px;
  }

  .net-title {
    font-size: 20px;
    text-align: center;
  }

  .net-date {
    text-align: center;
    font-size: 14px;
  }

  .net-btn {
    display: block;
    margin: 15px auto;
    text-align: center;
  }

  table {
    width: 100%;
  }

  .ugc-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .post-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .net-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .net-content {
    font-size: 14px;
    line-height: 1.6;
  }

  table,
  table tr,
  table td,
  table th {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 15px;
  }

  table th {
    text-align: left;
  }

  .center-text {
    text-align: left;
  }

  .social-table td {
    display: block;
    text-align: center;
  }

  .social-table .right-link {
    margin-top: 8px;
  }

  .ugc-banner h1 {
    font-size: 26px;
  }

  .ugc-banner .admit-card {
    font-size: 18px;
  }

  .site-name {
    text-align: center;
    font-size: 14px;
  }

  .post-box h3 {
    font-size: 16px;
  }
}





/*-----------------------------------------responsive -------------------------------------------------*/

/* =========================
   ONLY MOBILE VIEW ORDER
========================= */
@media (max-width: 768px) {

  /* Grid single column */
  .grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Reset default order */
  .grid > * {
    order: 0;
  }

  /* 1️⃣ Admit Card */
  .grid > .card:first-child {
    order: 1;
  }

  /* Middle column (New Update + Result) */
  .middle-column {
    display: contents; /* important */
  }

  /* 2️⃣ New Update */
  .middle-column .card:first-child {
    order: 2;
  }

  /* 4️⃣ Result */
  .middle-column .card:last-child {
    order: 4;
  }

  /* 3️⃣ Current Job */
  .grid > .card:last-child {
    order: 3;
  }

  /* Mobile text adjustments */
  .card-header {
    font-size: 20px;
    padding: 10px;
  }

  .card-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .view-btn {
    margin: 10px auto;
    align-self: center;
    font-size: 12px;
  }
}


/* =========================
   ONLY MOBILE VIEW ORDER
========================= */
@media (max-width: 768px) {

  /* Single column layout */
  .info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Reset order */
  .info-grid > .info-card {
    order: 0;
  }

  /* 1️⃣ Syllabus */
  .info-grid > .info-card:nth-child(1) {
    order: 1;
  }

  /* 2️⃣ Answer Key */
  .info-grid > .info-card:nth-child(2) {
    order: 2;
  }

  /* 3️⃣ Admission */
  .info-grid > .info-card:nth-child(3) {
    order: 3;
  }

  /* Mobile typography */
  .info-header {
    font-size: 20px;
    padding: 10px;
    text-align: center;
  }

  .info-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .view-all {
    margin: 10px auto;
    text-align: center;
    font-size: 13px;
  }
}


/* =========================
   ONLY MOBILE VIEW ORDER
========================= */
@media (max-width: 768px) {

  /* Single column layout */
  .edu-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Reset order */
  .edu-grid > .edu-card {
    order: 0;
  }

  /* 1️⃣ University Update */
  .edu-grid > .edu-card:nth-child(1) {
    order: 1;
  }

  /* 2️⃣ Scholarship */
  .edu-grid > .edu-card:nth-child(2) {
    order: 2;
  }

  /* 3️⃣ Upcoming Job */
  .edu-grid > .edu-card:nth-child(3) {
    order: 3;
  }

  /* Mobile text adjustments */
  .edu-header {
    font-size: 20px;
    padding: 10px;
    text-align: center;
  }

  .edu-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .edu-btn {
    margin: 10px auto;
    text-align: center;
    font-size: 13px;
  }
}

/* ===============================
   ONLY MOBILE VIEW ORDER
   Sarkari Yojana → Document → Blog
================================ */
@media (max-width: 768px) {

  /* Single column layout for mobile */
  .edu-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 13px;
  }

  /* Reset order */
  .edu-grid > .edu-card {
    order: 0;
  }

  /* 1️⃣ Sarkari Yojana */
  .edu-grid > .edu-card:nth-child(1) {
    order: 1;
  }

  /* 2️⃣ Document */
  .edu-grid > .edu-card:nth-child(2) {
    order: 2;
  }

  /* 3️⃣ Latest Blog */
  .edu-grid > .edu-card:nth-child(3) {
    order: 3;
  }

  /* Mobile typography improvement */
  .edu-header {
    font-size: 20px;
    text-align: center;
    padding: 10px;
  }

  .edu-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .edu-btn {
    margin: 10px auto;
    font-size: 13px;
    text-align: center;
  }
}


/* ===============================
   ONLY MOBILE VIEW – 3/16 GRID
================================ */
@media (max-width: 768px) {

  .state-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    padding: 10px;
  }

  .state-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 5px;
    border: 1px solid #ff4b4b;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
  }

  .state-box i {
    font-size: 18px !important;
  }

  .state-title {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    line-height: 1.4;
  }
}
