body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #ffffff;
  color: #1e293b;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  color: white;
  padding: 4px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

  border-radius: 6px;
  margin-top: -20px;
}
.menu-toggle {
  cursor: pointer;
  font-size: 24px;
  color: rgb(21, 61, 88);
  transition: color 0.3s;
  margin-left: 30px;
}
.menu-toggle:hover {
  color: #38bdf8;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.header-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 26px;
  margin-top: 2px;
}

.search-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.search-box {
  width: 94%;
  height: 40px;
  border-radius: 6px;
  padding: 8px 40px 8px 12px; /* Extra right padding for icon space */
  border: 2px solid #cbd5e1;
  outline: none;
  font-size: 18px;
  box-sizing: border-boxn;
}

.clear-icon {
  position: absolute;
  top: 50%;
  right: 20px; /* Positioned inside the input */
  transform: translateY(-50%);
  font-size: 18px;
  color: #6b7280;
  cursor: pointer;
  display: none;
  z-index: 10;
  user-select: none;
  margin-right: 40px;
}

.suggestions-box {
  position: absolute;
  top: calc(100% + 2px); /* Appears just below the .search-box */
  left: 0;
  width: 93%; /* Match width of .search-box */
  background-color: #ffffff;
  border: 2px solid #cbd5e1;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  font-family: "Segoe UI", sans-serif;
  padding: 0;
  margin-left: 39px;
  font-size: 20px;
}

/* Suggestion item */
.suggestions-box div {
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 20px;
  color: #1e293b;
  border-top: 1px solid #f1f1f1;
  margin-top: 4px;
}

/* Hover effect */
.suggestions-box div:hover {
  background-color: #f9fafb;
}

/* Optional: scrollbar */
.suggestions-box::-webkit-scrollbar {
  width: 6px;
}
.suggestions-box::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}
.login-btn {
  background: #2563eb; /* Blue-600 */
  color: #ffffff;
  padding: 8px 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 999px; /* Full-rounded */
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 100px;
}

.login-btn:hover {
  background-color: #1d4ed8; /* Blue-700 */
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px) scale(1.02);
}

/* sidebar styling */

/* SIDEBAR CONTAINER */
.sidebar {
  position: fixed;
  top: 0;
  left: -240px;
  width: 200px;
  height: 100%;
  background-color: #fafcfc;
  color: #1e1e1e;
  transition: left 0.4s ease;
  padding-top: 60px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
}

/* SIDEBAR OPEN */
.sidebar.active {
  left: 0;
}

/* MENU LIST STYLE */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* COMMON LINK STYLE */
.sidebar li a {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  border-radius: 6px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-top: 20px;
}

/* SPECIAL MARGIN FOR FIRST ITEM (HOME) ONLY */
.sidebar li:first-child a {
  margin-top: 55px;
}

/* HOVER EFFECT */
.sidebar li a:hover {
  background-color: #e4e4e7;
  color: #1a1a1a;
}

/* LUCIDE ICON STYLE */
.sidebar li i {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
  flex-shrink: 0;
  color: #2d2d2d;
}

/* SIDEBAR BOTTOM SECTION */
.sidebar-bottom {
  padding: 0 0 90px 0;
  margin-bottom: 20px;
}

/* BOTTOM LINKS */
.sidebar-bottom li a {
  margin-top: 8px;
  font-weight: 500;
}

/* Optional: Active link styling */
.sidebar li a.active {
  background-color: #dcdfe4;
  font-weight: 700;
}

.section {
  padding: 10px 10px;
  background: #f9fafb;
}
.heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 transparent;
  font-family: "Inter", sans-serif;
  height: 200px; /* Or any value you prefer */
  font-size: 18px;
}

.cards::-webkit-scrollbar {
  height: 8px;
}
.cards::-webkit-scrollbar-thumb {
  background-color: #94a3b8;
  border-radius: 10px;
}
.cards::-webkit-scrollbar-track {
  background-color: transparent;
}

.card {
  background: linear-gradient(to bottom right, #ffffff, #f1f5f9);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
  color: #1e293b;
  width: fit-content;
  min-width: 250px;
  max-width: 400px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  font-family: Open Sans;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(30, 41, 59, 0.15);
  background: linear-gradient(to bottom right, #e0f2fe, #f8fafc);
}

.card-content {
  text-align: center;
  margin-bottom: 15px;
}
.job-title {
  font-size: 18px;
  font-weight: bold;
  color: #1e293b;
  word-break: normal;
  padding: 0 10px;
}

.card-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  margin-top: -10px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.apply-btn {
  background-color: #16a34a;
}
.apply-btn:hover {
  background-color: #15803d;
  transform: scale(1.05);
}

.info-btn {
  background-color: #2563eb;
}
.info-btn:hover {
  background-color: #1e40af;
  transform: scale(1.05);
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}
.latest1 {
  border-color: green;
  color: green;
}

.boxes {
  border-color: green;
  color: green;
}
.latest-jobs-section {
  padding: 30px;
  background-color: #f8fafc;
}

.section-title {
  font-size: 26px;
  color: #1d4ed8;
  font-weight: bold;
  margin-bottom: 20px;
  border-left: 6px solid #1d4ed8;
  padding-left: 10px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.latest-jobs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: white;
}

.latest-jobs-table thead {
  background-color: #1e3a8a;
  color: white;
}

.latest-jobs-table th,
.latest-jobs-table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #e2e8f0;
  font-size: 20px;
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;

  .latest-jobs-table tbody tr:nth-child(even) {
    background-color: #f1f5f9;
  }
}

.btn-group {
  display: flex;
  gap: 8px; /* Space between buttons */
  flex-wrap: nowrap; /* Prevents wrapping */
  align-items: center;
}

.btn-apply,
.btn-info {
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; /* Keeps button height consistent */
  transition: background 0.3s ease;
  white-space: nowrap; /* Text won’t wrap to next line */
}

.btn-apply {
  background-color: #10b981;
  color: white;
}

.btn-apply:hover {
  background-color: #059669;
}

.btn-info {
  background-color: #3b82f6;
  color: white;
}

.btn-info:hover {
  background-color: #2563eb;
}

.govt-updates-section {
  width: 100%;
  background-color: #f8fafc;
  padding: 20px 0;
  margin: 0;
}

.govt-updates-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ Center align all boxes */
  gap: 40px; /* ✅ Small gap between boxes */
  padding: 0 10px;
  box-sizing: border-box;
}

.govt-box {
  background-color: #ffffff;
  width: 100%;
  max-width: 350px;
  padding: 0;
  border: 2px solid #6e6113; /* Golden border */
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.govt-box h2 {
  background-color: #b45309; /* Darker orange for contrast */
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  margin: 0;
  border-bottom: 2px solid #000000;
  letter-spacing: 0.5px;
}

.govt-box h2:hover {
  background-color: #92400e;
  color: #ffffff;
}

.entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #333;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.entry:hover {
  background-color: #f5faff;
}

.entry-title {
  font-size: 17px !important;
  font-weight: bold;
  color: #0c4568;
  flex-grow: 1;
  margin-right: 12px;
  line-height: 1.4; /* ✅ Normal readable line height */
  word-break: break-word; /* ✅ Prevents words from overflowing */
  white-space: normal; /* ✅ Allows line wrapping */
}

.btn-action {
  background-color: #0f77c1;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  min-width: 60px;
}

.btn-action:hover {
  background-color: #095d98;
}

/* View More button */
.view-more {
  text-align: center;
  margin: 15px 0 20px;
}

.btn-view-more {
  background-color: #374151; /* Darker shade for better contrast */
  color: #ffffff; /* White text */
  padding: 10px 22px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(15, 119, 193, 0.3);
  display: inline-block;
  border-radius: 5px;
  width: 96%;
  text-align: center;
  box-sizing: border-box;
}

.btn-view-more:hover {
  background-color: #1f2937; /* Slightly darker hover */
  box-shadow: 0 6px 14px rgba(9, 91, 146, 0.4);
  transform: translateY(-1px);
}

/* Mobile responsiveness */



/* Hero Section Container */

.hero-categories {
  padding: 20px 20px;
  background-color: #ffffff;
  margin-top: 30px;
  text-align: center;
}

.hero-heading {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111827;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 170px;
  padding: 5px 5px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-decoration: none;
  background-color: #ffffff;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  height: auto;
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-box p {
  font-size: 21px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* second hero section */

.hero-categories-text {
  padding: 40px 20px;
  background-color: #f1f5f9;
  text-align: center;
}

.hero-heading-text {
  font-size: 30px;
  margin-bottom: 20px;
  color: #05192e;
  font-family: "Poppins", sans-serif;
}

.category-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.category-text-link {
  display: block;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 17px;
  text-decoration: none;
  color: #05192e;
  font-weight: 500;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.category-text-link:hover {
  background-color: #05192e;
  color: #fff;
}

/* ✅ Responsive fine-tuned for mobile */
/* @media (max-width: 768px) {
  .hero-heading-text {
    font-size: 22px;
  }

  .category-text-link {
    font-size: 15px;
    padding: 10px;
  }
} */

/* .hero-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 60px;
  background: linear-gradient(to right, #257cd9, #55aff0);

  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 20px auto;
  height: 220px;
  gap: 30px;
}

/* Left Side */
/* .hero-left {
  flex: 1;
}

.hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #ebe9e9;
  margin-bottom: 60px;
}

.hero-subtext {
  font-size: 16px;
  color: #f6f6f6;
  margin-bottom: 22px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: #0ca7df;
  color: white;
  padding: 10px 22px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: black;
}

.btn-secondary {
  background-color: transparent;
  color: #f9f9f9;
  border: 2px solid #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.btn-secondary:hover {
  background-color: white;
  color: rgb(0, 0, 0);
} */

/* Right Side Image */
/* .hero-right {
  flex: 0.7;
  text-align: right;
}

.hero-right img {
  width: 180px;
  height: 180px;
  border-radius: 200px;
  object-fit: contain;
} */
*/

/* Base Setup */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 20px;
}

/* Section Title */
.section-title {
  font-size: 32px;
  color: #2c3e50;
  margin-left: 30px; /* Align with tips */
  margin-bottom: 20px;
  border-bottom: 2px solid #2c3e50;
  display: inline-block;
  padding-bottom: 6px;
}

/* Vertical List Container */
.tips-container {
  max-width: 95%;
  margin-left: 30px; /* Left side of screen */
  padding: 0;
  list-style: none;
}

/* Tip Card Base */
.tip-card {
  display: block;
  width: 100%;
  padding: 12px 18px;
  border-left: 4px solid #2c3e50;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 21px;
  color: #243138;
  transition: all 0.2s ease;
  background-color: #ffffff; /* Default */
  text-decoration: none;
  font-weight: bold;
  word-spacing: 2px;
}

/* Odd cards: light blue */
.tip-card:nth-child(odd) {
  background-color: #efeff0;
}

/* Even cards: light gray */
.tip-card:nth-child(even) {
  background-color: #f4f4f4;
}

/* Hover Effect */
.tip-card:hover {
  background-color: #ddeeff;
  border-left-color: #0b4e91;
}

/* join on whatsapp */
.whatsapp-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #000000;
  padding: 6px 15px;
  border-radius: 6px;
  background: #ffffff;
  max-width: 800px;
  margin: 50px auto;
  font-family: "Inter", sans-serif;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 14px; /* 👈 Adjust this value as needed */
  font-weight: 600;
  font-size: 25px;
  color: #000;
}

.banner-icon {
  width: 26px;
  height: 26px;
}

.join-btn {
  background-color: #128c7e; /* Darker WhatsApp-like green */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 40px; /* Increase height for better touch accessibility */
}

.join-btn:hover {
  background-color: #0b705e;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* mobile responsive */

.new-badge {
  position: relative;
  display: inline-block;
  background-color: #ff0000; /* Bright yellow like the burst */
  color: #ffffff; /* Bright red text */
  font-size: 15px;
  font-weight: bold;
  padding: 5px 15px;
  text-align: center;
  min-width: 50px;
  text-transform: uppercase;
  animation: shakeBadge 0.7s infinite;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
  clip-path: polygon(
    50% 0%,
    58% 15%,
    70% 5%,
    75% 20%,
    90% 15%,
    85% 30%,
    100% 35%,
    85% 45%,
    95% 55%,
    80% 60%,
    90% 75%,
    75% 72%,
    70% 90%,
    60% 78%,
    50% 100%,
    40% 78%,
    30% 90%,
    25% 72%,
    10% 75%,
    20% 60%,
    5% 55%,
    15% 45%,
    0% 35%,
    15% 30%,
    10% 15%,
    25% 20%,
    30% 5%,
    42% 15%
  );
}

/* Shaking animation */
@keyframes shakeBadge {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(3deg);
  }
}
.new-badge-highlight {
  position: relative;
  display: inline-block;
  background-color: #990373; /* Bright yellow like the burst */
  color: #ffffff; /* Bright red text */
  font-size: 15px;
  font-weight: bold;
  padding: 5px 15px;
  text-align: center;
  min-width: 50px;
  text-transform: uppercase;
  animation: shakeBadge 0.7s infinite;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
  clip-path: polygon(
    50% 0%,
    58% 15%,
    70% 5%,
    75% 20%,
    90% 15%,
    85% 30%,
    100% 35%,
    85% 45%,
    95% 55%,
    80% 60%,
    90% 75%,
    75% 72%,
    70% 90%,
    60% 78%,
    50% 100%,
    40% 78%,
    30% 90%,
    25% 72%,
    10% 75%,
    20% 60%,
    5% 55%,
    15% 45%,
    0% 35%,
    15% 30%,
    10% 15%,
    25% 20%,
    30% 5%,
    42% 15%
  );
}

/* Shaking animation */
@keyframes shakeBadge {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(3deg);
  }
} /* First Badge Style - HOT! (Pulse + Glow) */
.first-badge {
  display: inline-block;
  background-color: #e91e63;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 4px 30px;
  margin-left: 8px;
  text-transform: uppercase;
  animation: hotPulse 1.5s infinite ease-in-out;
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.6);
  clip-path: polygon(
    50% 0%,
    58% 15%,
    70% 5%,
    75% 20%,
    90% 15%,
    85% 30%,
    100% 35%,
    85% 45%,
    95% 55%,
    80% 60%,
    90% 75%,
    75% 72%,
    70% 90%,
    60% 78%,
    50% 100%,
    40% 78%,
    30% 90%,
    25% 72%,
    10% 75%,
    20% 60%,
    5% 55%,
    15% 45%,
    0% 35%,
    15% 30%,
    10% 15%,
    25% 20%,
    30% 5%,
    42% 15%
  );
}

@keyframes hotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(233, 30, 99, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(233, 30, 99, 1);
  }
}

/* Second Badge Style - SOON! (Soft bounce) */
.second-badge {
  display: inline-block;
  background-color: #3f51b5;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 4px 30px;
  margin-left: 8px;
  text-transform: uppercase;
  animation: bounceSoon 2s infinite ease;
  box-shadow: 0 0 8px rgba(63, 81, 181, 0.5);
  clip-path: polygon(
    50% 0%,
    58% 15%,
    70% 5%,
    75% 20%,
    90% 15%,
    85% 30%,
    100% 35%,
    85% 45%,
    95% 55%,
    80% 60%,
    90% 75%,
    75% 72%,
    70% 90%,
    60% 78%,
    50% 100%,
    40% 78%,
    30% 90%,
    25% 72%,
    10% 75%,
    20% 60%,
    5% 55%,
    15% 45%,
    0% 35%,
    15% 30%,
    10% 15%,
    25% 20%,
    30% 5%,
    42% 15%
  );
}

@keyframes bounceSoon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.answer-badge {
  display: inline-block;
  background-color: #ff0303; /* Teal color */
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 4px 30px;
  margin-left: 8px;
  text-transform: uppercase;
  animation: glowFade 1.8s infinite ease-in-out;
  box-shadow: 0 0 8px rgba(0, 150, 136, 0.6);
  clip-path: polygon(
    50% 0%,
    58% 15%,
    70% 5%,
    75% 20%,
    90% 15%,
    85% 30%,
    100% 35%,
    85% 45%,
    95% 55%,
    80% 60%,
    90% 75%,
    75% 72%,
    70% 90%,
    60% 78%,
    50% 100%,
    40% 78%,
    30% 90%,
    25% 72%,
    10% 75%,
    20% 60%,
    5% 55%,
    15% 45%,
    0% 35%,
    15% 30%,
    10% 15%,
    25% 20%,
    30% 5%,
    42% 15%
  );
}

@keyframes glowFade {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(0, 150, 136, 0.6);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 16px rgba(0, 150, 136, 1);
  }
}

.comment-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comment-heading {
  font-size: 28px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
}

.comment-form .form-group {
  margin-bottom: 16px;
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #334155;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 18px;
  transition: border 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #2563eb;
  outline: none;
}

.comment-submit-btn {
  background-color: #2563eb;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.comment-submit-btn:hover {
  background-color: #1d4ed8;
}

.chat-box {
  background-color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column; /* 👈 Newest at top */
  gap: 10px;
}

.chat-message {
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-name {
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 4px;
  font-size: 25px;
}

.chat-text {
  color: #334155;
  font-size: 18px;
  margin-left: 80px;
  margin-top: -30px;
}

.chat-time {
  text-align: right;
  color: #64748b;
  font-size: 12px;
  margin-top: 0px;
}
/* about govtnews.com */

.about-section {
  background-color: #fff;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-table {
  width: 100%;
  overflow-x: auto;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  text-align: left;
  font-size: 20px;
}

.info-table th {
  background-color: #f8f8f8;
  width: 25%;
  font-size: 20px;
}

.info-table ul {
  margin: 0;
  padding-left: 19px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  background: #0073e6;
  color: #fff;
  padding: 4px 10px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  transition: background 0.3s ease;
}

.btn-link:hover {
  background: #005bb5;
}

.rojgar-section {
  max-width: 90%;
  margin: 0 auto; /* This centers the section horizontally */
  padding: 40px;
  background-color: #f8f9fa;
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 19px;
}

.rojgar-section h2 {
  color: #0056b3;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.rojgar-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.rojgar-info h3 {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #333;
}

.rojgar-info ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.rojgar-info ul li {
  margin-bottom: 8px;
}

.rojgar-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.rojgar-table th,
.rojgar-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.rojgar-table th {
  background-color: #0073e6;
  color: #fff;
}

.rojgar-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.tag-link a {
  display: inline-block;
  background-color: #0073e6;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 8px;
  font-size: 0.9rem;
}

.tag-link a:hover {
  background-color: #005bb5;
}

@media (max-width: 768px) {
  .rojgar-section {
    padding: 15px;
  }

  .rojgar-section h2 {
    font-size: 1.5rem;
  }

  .rojgar-info ul li {
    font-size: 0.95rem;
  }
}
td i {
  margin-right: 6px;
  vertical-align: middle;
  color: #0073e6;
}

/* why trust */
.trust-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: #212529;
  font-family: "Poppins", sans-serif;
}

.trust-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #02060a;
  text-align: center;
}

.trust-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-section li {
  background: #f8f9fa;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-left: 5px solid #0073e6;
  border-radius: 8px;
  font-size: 19px;
  line-height: 1.5;
}

.trust-section li strong {
  color: #333;
}

@media (max-width: 600px) {
  .trust-section {
    padding: 20px 15px;
  }

  .trust-section h2 {
    font-size: 24px;
  }

  .trust-section li {
    font-size: 16px;
    padding: 10px 12px;
  }
}
/* faq section editing */
.faq-section {
  max-width: 90%;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #212529;
  font-family: "Poppins", sans-serif;
}

.faq-section h2 {
  text-align: center;
  color: #0073e6;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-section h3 {
  font-size: 20px;
  color: #222;
  margin-top: 20px;
}

.faq-section p {
  font-size: 16px;
  color: #444;
  margin-top: 5px;
  line-height: 1.6;
}

.faq-section .btn-link {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  background: #0073e6;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.faq-section .btn-link:hover {
  background-color: #005bb5;
}
.last-date-heading {
  min-width: 130px;
}
/* header responsive */
@media (max-width: 768px) {
  .header {
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    gap: 6px;
    margin-right: -16px;
    height: 40px;
  }

  .header-logo {
    display: none; /* Hide logo on mobile */
  }

  .menu-toggle {
    margin-left: 4px;
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .search-wrapper {
    position: relative; /* This ensures .suggestions-box positions relative to this */
    display: flex;
    align-items: center;
  }

  .search-box {
    width: 100%;
    padding: 6px 30px 6px 10px;
    font-size: 17px;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 33px;
    margin-top: 3px;
  }

  .clear-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    color: #666;
    margin-right: -1px;
  }

  .login-btn {
background: #559efd;
  color: #ffffff;
border: 2px solid #4584eb;

    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    white-space: nowrap;
    padding: 2px 12px;
    min-width: 50px;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    height: 32px;
    
  }

  .login-btn:hover {
background: #3681e4;
  color: #ffffff;
  }
  #menu-icon {
    font-size: 25px;
  }
  .suggestions-box {
    position: absolute;
    top: calc(100% + 2px); /* Places it exactly below .search-box */
    left: 0;
    width: 100%; /* SAME width as .search-box via .search-wrapper */
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    font-family: "Segoe UI", sans-serif;
    padding: 0;
    font-size: 17px;
    margin-left: -3px;
  }

  /* ✅ Default behavior for desktop and tablets (≥769px) */

 /*
.hero-categories {
  background-color: #f9fafb;
  text-align: center;
  padding: 20px 10px;
  margin-left: -20px;
  margin-right: -20px;
}

.hero-heading {
  font-size: 28px;
  margin-bottom: 15px;
  color: #141414;
  font-weight: 600;
}

.category-grid {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 10px;
}

.category-box {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
  border-radius: 6px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #ffffff; 
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px; 
  font-family: "Poppins", sans-serif; 
  font-size: 14px;
  font-weight: 500;
}

.category-box:hover {
  background-color: #34495e; 
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.category-box img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.category-box p {
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #05192e;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 20px;
  }

  .category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .category-box {
    width: 30%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .category-box img {
    display: none;
  }

  .category-box p {
    font-size: 16px;
    text-align: center;
    padding: 0 3px;
    color: white;
  }
}
*/


  /* ✅ Responsive Styling for .govt-updates-section - Clean, Fully Responsive, No Buttons, No Animations */

  @media (max-width: 768px) {
    .govt-updates-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 0 0px;
    }

    .govt-box {
      width: 100%;
      max-width: 100%;
      border-radius: 1px;
      border: 1px solid #ccc;
    }

    .govt-box h2 {
      font-size: 18px;
      padding: 8px 0;
    }

    .entry {
      display: block;
      padding: 10px 5px;

      text-align: left;
      background-color: transparent; /* ✅ Neutral background, remove hover color */
      transition: none !important; /* ✅ Remove all animation effects */
    }

    .entry:hover {
      background-color: transparent !important; /* ✅ No hover effect */
    }

    .btn-action {
      display: none !important; /* ✅ Remove Full Info button */
    }

    .view-more {
      margin: 8px 0 12px;
    }

    .btn-view-more {
      width: 100%;
      font-size: 13px;
      padding: 8px 0;
    }
  }
  /* @media (max-width: 768px) {
    .new-badge,
    .new-badge-highlight,
    .answer-badge,
    .first-badge,
    .second-badge {
      display: none !important; 
    }
  } */
@media (max-width: 768px) {
  .new-badge {
       font-size: 9px;
    padding: 3px 8px;
    min-width: 30px;
    transform: scale(0.8);
  }
}

 @media (max-width: 768px) {
  .new-badge-highlight {
    font-size: 9px;
    padding: 3px 8px;
    min-width: 30px;
    transform: scale(0.8);
  }
}


  .answer-badge {
      font-size: 9px;
    padding: 3px 8px;
    min-width: 30px;
    transform: scale(0.8);
  }

  .first-badge {
     font-size: 9px;
    padding: 3px 8px;
    min-width: 30px;
    transform: scale(0.8);
  }

  .second-badge {
  font-size: 9px;
    padding: 3px 8px;
    min-width: 30px;
    transform: scale(0.8);
  }
}

  
  @media (max-width: 768px) {
    .btn-apply {
      display: none !important;
    }
  }
  @media (max-width: 768px) {
    .govt-updates-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .govt-box {
      width: 100%;
    }

    .govt-box:last-child {
      grid-column: span 2; /* ✅ Makes the LAST box occupy 2 columns = 100% width */
    }
       .entry-title {
  font-size: 11px !important;
  font-weight: bold;
  color: #0c4568;
  flex-grow: 1;
  margin-right: 12px;
  line-height: 1.4; /* ✅ Normal readable line height */
  word-break: break-word; /* ✅ Prevents words from overflowing */
  white-space: normal; /* ✅ Allows line wrapping */
}
  }

  @media (max-width: 767px) {
    .govt-box:nth-of-type(7),  /* ✅ Government Applications */
  .govt-box:nth-of-type(8) {
      /* ✅ Admissions Open */
      display: none !important;
    }
  }
  /* latest job table styling */

  @media (max-width: 767px) {
    .latest-jobs-table {
      width: 100vw; /* ✅ Full viewport width */
      margin: 0; /* ✅ Remove any margins */
      border-collapse: collapse;
    }
    .table-wrapper {
      padding: 0; /* ✅ Remove internal padding */
      margin: 0; /* ✅ Remove margins */
    }
    .latest-jobs-table thead {
      display: flex;
      width: 100%;
    }

    .latest-jobs-table thead tr {
      display: flex;
      width: 100%;
    }

    /* ✅ Show Title and Date headings side by side */
    .latest-jobs-table thead th:nth-child(2),
    .latest-jobs-table thead th:nth-child(5) {
      display: block;
      padding: 11px;
      background-color: #1e3a8a;
      color: #fff;
      font-size: 15px;
      align-items: left;
      justify-content: left;
      font-weight: 500;
    }

    .latest-jobs-table thead th:nth-child(2) {
      width: 160px; /* Matches job title column */
    }

    .latest-jobs-table thead th:nth-child(5) {
      width: 60px; /* Matches last date column */
    }

    /* ✅ Hide other headings */
    .latest-jobs-table thead th:nth-child(1),
    .latest-jobs-table thead th:nth-child(3),
    .latest-jobs-table thead th:nth-child(4),
    .latest-jobs-table thead th:nth-child(6) {
      display: none;
    }

    .latest-jobs-table tbody {
      display: block;
      width: 100%;
    }

    .latest-jobs-table tbody tr {
      display: flex;
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 6px;
      overflow: hidden;
    }
    .latest-jobs-section {
      padding: 0px;
      background-color: #f8fafc;
    }

    .latest-jobs-table td:nth-child(2) {
      width: 177px;
      padding: 4px 2px;
      font-size: 14px;
      color: #0c4568;
      word-wrap: break-word;
      white-space: normal;
      display: flex;
      align-items: center;
      border-radius: 1px;
    }

    .latest-jobs-table td:nth-child(5) {
      width: 120px;
      background-color: #e9f1ff;
      color: #1e3a8a;
      font-weight: bold;
      text-align: center;
      display: flex;
      align-items: left;
      justify-content: left;
      font-size: 13px;
    }

    .latest-jobs-table td:nth-child(1),
    .latest-jobs-table td:nth-child(3),
    .latest-jobs-table td:nth-child(4),
    .latest-jobs-table td:nth-child(6) {
      display: none;
    }
  }
  .latest-jobs-table td:nth-child(6) {
    display: none;
  }
  .latest-jobs-table th:nth-child(6) {
    display: none;
  }
  /* cards styling */

  .cards {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 5px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 transparent;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    height: auto;
  }

  .cards::-webkit-scrollbar {
    height: 6px;
  }
  .cards::-webkit-scrollbar-thumb {
    background-color: #94a3b8;
    border-radius: 10px;
  }
  .cards::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .card {
    background: linear-gradient(to bottom right, #ffffff, #f1f5f9);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: #1e293b;
    min-width: 170px; /* ✅ shrink to allow 2 cards in view */
    max-width: 180px;
    flex-shrink: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    font-family: "Open Sans", sans-serif;
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.15);
    background: linear-gradient(to bottom right, #e0f2fe, #f8fafc);
  }

  .card-content {
    text-align: center;
    margin-bottom: 10px;
  }

  .job-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    padding: 0 4px;
    word-break: break-word;
    line-height: 1.2;
    text-align: center;
  }

  .last-date {
    font-size: 12px;
    color: #334155;
    margin-top: 4px;
  }

  .card-footer {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 5px;
  }

  .apply-btn {
    background-color: #15803d; /* Darker green (same as your hover) */
    color: #ffffff;
  }
  .apply-btn:hover {
    background-color: #116530; /* Slightly darker on hover */
    transform: scale(1.05);
  }

  .info-btn {
    background-color: #1e40af; /* Darker blue */
    color: #ffffff;
  }
  .info-btn:hover {
    background-color: #1a348d; /* Even darker on hover */
    transform: scale(1.05);
  }

  /* ✅ Responsive overrides for mobile screens */
  @media (max-width: 480px) {
    .card {
      min-width: 48vw; /* ✅ shows 2 cards per screen horizontally */
      max-width: 48vw;
    }

    .job-title {
      font-size: 13px;
    }

    .last-date {
      font-size: 12px;
    }

    .btn {
      font-size: 11px;
      padding: 4px 8px;
    }
  }
  .tips-section {
    padding: 20px;
    background-color: #f8fafc;
    font-family: "Inter", sans-serif;
  }

  .section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1e293b;
    text-align: center;
  }

  .tips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  /* ✅ Tip card design */
  .tip-card {
    background: linear-gradient(to right, #f0fdfa, #f0f9ff);

    border: 1px solid #cbd5e1;
    border-radius: 3px;
    padding: 10px 16px;
    text-decoration: none;
    color: #1e293b;
    font-size: 15px;
    font-weight: 500;
    flex: 1 1 calc(33.333% - 24px); /* 3 per row on desktop */
    min-width: 97%;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    margin-left: -30px;
  }

  /* For desktop hover */
  .tip-card:hover {
    background: linear-gradient(to right, #bae6fd, #f0f9ff);
    transform: translateY(-4px);
    color: #0f172a;
  }

  /* For mobile tap */
  .tip-card:active {
    background: linear-gradient(to right, #dbeafe, #eff6ff);
    transform: scale(0.98);
    color: #0f172a;
  }

  /* ✅ Responsive for tablets */
  @media (max-width: 768px) {
    .tip-card {
      flex: 1 1 calc(50% - 16px); /* 2 per row */
      font-size: 14px;
      margin-bottom: -3px;
      margin-left: 2;
    }
  }

  /* ✅ Responsive for mobile */
  @media (max-width: 480px) {
    .whatsapp-banner {
      flex-direction: column;
      align-items: flex-start;
      padding: 12px;
      gap: 10px;
    }

    .banner-left {
      font-size: 15px;
    }

    .banner-left img {
      width: 18px;
      height: 18px;
    }

    .join-btn {
      background-color: #128c7e; /* Improved contrast */
      color: #ffffff;
      width: 100%; /* Full-width button */
      text-align: center;
      font-size: 13px; /* Small, so needs good contrast */
      padding: 8px 0; /* Compact padding */
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      height: 20px;
    }

    .join-btn:hover {
      background-color: #0b705e; /* Even better contrast on hover */
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }
  }
  @media (max-width: 480px) {
    .rojgar-section {
      padding: 16px 12px;
       font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 
      font-size: 14px;
      line-height: 1.6;
      background-color: #ffffff;
    }

    .rojgar-section h2 {
      font-size: 18px;
      margin-bottom: 12px;
      color: #bb5705;
    }

    .rojgar-section h3 {
      font-size: 16px;
      margin-top: 18px;
      margin-bottom: 10px;
      color: #0f172a;
    }
    .rojgar-table td:first-child {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .rojgar-section p {
      font-size: 14px;
      margin-bottom: 12px;
      color: #334155;
    }

    .rojgar-section ul {
      padding-left: 20px;
      margin-bottom: 12px;
    }

    .rojgar-section ul li {
      font-size: 14px;
      margin-bottom: 8px;
      color: #475569;
    }

    .rojgar-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      margin-top: 10px;
    }

    .rojgar-table th,
    .rojgar-table td {
      padding: 8px 6px;
      border: 1px solid #e2e8f0;
      text-align: left;
    }

    .rojgar-table td i {
      margin-right: 6px;
    }

    .rojgar-content {
      overflow-x: auto;
    }
  }
  @media (max-width: 480px) {
    .trust-section {
      padding: 16px 12px;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      line-height: 1.6;
      background-color: #ffffff;
      color: #334155;
    }

    .trust-section h2 {
      font-size: 18px;
      margin-bottom: 14px;
      color: #1e293b;
    }

    .trust-section ul {
      padding-left: 18px;
      margin: 0;
    }

    .trust-section ul li {
      margin-bottom: 10px;
      font-size: 14px;
      color: #475569;
    }

    .trust-section strong {
      color: #0f172a;
    }
  }
  @media (max-width: 480px) {
    .faq-section {
      padding: 16px 12px;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      background-color: #ffffff;
      color: #334155;
      line-height: 1.6;
    }

    .faq-section h2 {
      font-size: 18px;
      margin-bottom: 16px;
      color: #1e293b;
    }

    .faq-section h3 {
      font-size: 15px;
      margin-top: 18px;
      color: #0f172a;
    }

    .faq-section p {
      font-size: 14px;
      margin-top: 6px;
      margin-bottom: 12px;
      color: #475569;
    }

    .faq-section a.btn-link {
      color: #ffffff;
      text-decoration: underline;
      font-weight: 500;
    }

    .faq-section .tag-link {
      margin-top: 18px;
      text-align: left;
    }

    .faq-section .tag-link a {
      display: inline-block;
      background-color: #ffffff;
      color: #1e3a8a;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
    }

    .faq-section .tag-link a:hover {
      background-color: #dbeafe;
    }
  }
  @media (max-width: 480px) {
    .comment-section {
      padding: 16px 12px;
      font-family: "Inter", sans-serif;
      background-color: #ffffff;
      color: #334155;
    }

    .comment-heading {
      font-size: 18px;
      margin-bottom: 14px;
      color: #1e293b;
    }

    .comment-form .form-group {
      margin-bottom: 14px;
    }

    .comment-form label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: #475569;
    }

    .comment-form input,
    .comment-form textarea {
      width: 100%;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      box-sizing: border-box;
    }

    .comment-submit-btn {
      background-color: #2563eb;
      color: white;
      padding: 10px 16px;
      border: none;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
      font-weight: 600;
    }

    .comment-submit-btn:hover {
      background-color: #1e40af;
    }

    .chat-box {
      margin-top: 20px;
    }

    .chat-message {
      border: 1px solid #e2e8f0;
      background-color: #f8fafc;
      padding: 10px 14px;
      border-radius: 8px;
      margin-bottom: 12px;
    }

    .chat-name {
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 4px;
      font-size: 14px;
    }

    .chat-text {
      font-size: 14px;
      color: #334155;
      margin-bottom: 6px;
    }

    .chat-time {
      font-size: 12px;
      color: #64748b;
      text-align: right;
    }
  }

@media screen and (max-width: 480px) {
  .category-grid {
    margin-top: -10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 0px 20px;
    justify-items: center;
  }

  .category-box {
    height: auto;
    padding: 4px 0px;
    max-width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;         /* Remove box background */
    border: none;             /* Remove border around box */
    box-shadow: none;         /* Remove any shadow */
  }

  .category-box img {
    height: 55px;
    width: 55px;
    border-radius: 50%;       /* Make image round */
    object-fit: cover;
    display: block;
    margin-bottom: 4px;
    border: 2px solid #ccc;   /* Border around image only */
    padding: 3px;
    background-color: #fff;   /* Optional: white background inside border */
  }

  .category-box p {
    margin: 0;
    font-size: 11.5px;
    padding: 0;
    text-align: center;
    line-height: 1.2;
  }

  .hero-heading {
    font-size: 20px;
    margin-top: 10px;
  }


 @media (max-width: 768px){
/* SIDEBAR CONTAINER */
.sidebar {
  position: fixed;
  top: 0;
  left: -240px;
  width: 160px;
  height: 100%;
  background-color: #fafcfc;
  color: #1e1e1e;
  transition: left 0.4s ease;
  padding-top: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
}

/* SIDEBAR OPEN */
.sidebar.active {
  left: 0;
}

/* MENU LIST STYLE */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* COMMON LINK STYLE */
.sidebar li a {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 16px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  border-radius: 6px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  margin-top: 15px;
  margin-left: -10px;
}

/* SPECIAL MARGIN FOR FIRST ITEM (HOME) ONLY */
.sidebar li:first-child a {
  margin-top: 55px;
}

/* HOVER EFFECT */
.sidebar li a:hover {
  background-color: #e4e4e7;
  color: #1a1a1a;
}

/* LUCIDE ICON STYLE */
.sidebar li svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.6;
  flex-shrink: 0;
  color: #2d2d2d;
  margin-left: 5px;
}


/* SIDEBAR BOTTOM SECTION */
.sidebar-bottom {
  padding: 0 0 90px 0;
  margin-bottom: 20px;
}

/* BOTTOM LINKS */
.sidebar-bottom li a {
  margin-top: 15px;
  font-weight: 500;
}

/* Optional: Active link styling */
.sidebar li a.active {
  background-color: #dcdfe4;
  font-weight: 700;
}
}
}

/* ===============================
   ✅ Floating Action Buttons (Mobile Only)
   =============================== */

/* Hide by default (desktop) */
.mobile-fab-container {
  display: none;
}

/* Show only on mobile devices */
@media (max-width: 767px) {
  .mobile-fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }

  .fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4f46e5, #6366f1); /* Indigo Gradient */
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }

  .fab-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #4338ca, #4f46e5);
  }

  .fab-btn i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
  }

  .fab-btn span {
    white-space: nowrap;
  }
}


