@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400..800&family=Gayathri:wght@400;700&family=Inter:wght@400;700&family=Manjari:wght@100;400;700&display=swap");
.blog-content p {
  line-height: 1.4;
  margin-bottom: 20px;
  color: #444;
  font-family: "Manjari", "Inter", "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.blog-content h1 {
  font-weight: 800;
  font-family: "Manjari", "Inter", "DM Sans", sans-serif;
}
.blog-content h2, .blog-content h3 {
  color: #1a1a1a;
  margin-top: 35px;
  font-weight: 800;
  font-family: "Manjari", "Inter", "DM Sans", sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.step-list {
  background: #fdf2f2;
  border-radius: 10px;
  padding: 25px;
  list-style: none;
  margin: 20px 0;
}
.step-list li {
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
}
.step-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #f91b28;
}

.keyword-bold {
  color: #f91b28;
  font-weight: 600;
}
.keyword-bold a {
  text-decoration: none;
  color: #f91b28;
  font-weight: 600;
}
.keyword-bold a:hover {
  text-decoration: underline;
  color: #f91b28;
}

.table thead {
  background-color: #f91b28 !important;
  color: white;
}
.table th, .table td {
  padding-left: 18px;
}

.sponsor-card {
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}
.sponsor-card:hover {
  transform: translateY(-5px);
}

.btn-psc-thulasi {
  background: white;
  border: 1px solid #f91b28;
  color: #f91b28;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.btn-psc-thulasi:hover {
  background: #f91b28;
  border: 1px solid #f91b28;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}

.mock-test-btn {
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  padding: 18px 40px;
  background-color: #f91b28;
  color: white;
  border-radius: 50px;
  cursor: pointer;
}

.mock-test-btn:hover {
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  padding: 18px 40px;
  background-color: #ba131e;
  color: white;
  border-radius: 50px;
  cursor: pointer;
}

body {
  font-family: "Inter", "DM Sans", sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  transition: 0.3s;
  padding: 1rem 0;
}
.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar .nav-item {
  margin-left: 15px;
}
@media (max-width: 991px) {
  .navbar .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.navbar .dropdown-menu {
  margin-top: 15px !important;
  border-radius: 12px;
}

.nav-link.active {
  color: #f91b28 !important;
  font-weight: 500;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 140px 0;
  margin-top: 60px;
}

.card {
  border: 1px solid #eee;
  transition: 0.3s;
}

.btn-primary {
  background-color: #fff;
  color: #f91b28;
  border-color: #f91b28;
}

.btn-primary:hover {
  background-color: #f91b28;
  border-color: #f91b28;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}
.video-thumbnail .status-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  z-index: 2;
}

.table-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Unique Card Backgrounds */
.card-red {
  background: linear-gradient(135deg, #f91b28, #f91b28);
} /* Current Affairs */
.card-violet {
  background: linear-gradient(135deg, #7D1BF9, #7D1BF9);
} /* Papers */
.card-blue {
  background: linear-gradient(135deg, #2477f3, #2477f3);
} /* Exams */
.card-green {
  background: linear-gradient(135deg, #049a90, #049a90);
} /* Tips */
.topic-card {
  padding: 35px 15px;
  border-radius: 25px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topic-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* New Icon Styles */
.icon-glow {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.topic-card:hover .icon-glow {
  transform: rotate(-10deg) scale(1.1);
}

/* Card Text */
.card-info {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff !important;
}

/* Glass Button inside card */
.btn-action {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Small Device Fixes */
@media (max-width: 576px) {
  .topic-card {
    padding: 25px 10px;
  }
  .icon-glow {
    font-size: 2rem;
  }
  .topic-card h5 {
    font-size: 0.9rem;
  }
}
footer {
  background: #15222f;
  color: white;
  padding: 50px 0 20px;
}
footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: 0.3s;
}
footer a:hover {
  color: white;
}
footer p {
  max-width: 300px;
}

/* --- Winners Card Layout --- */
.winner-table-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.winner-row-header, .winner-card-row {
  display: flex;
  align-items: center;
  padding: 15px 25px;
}

.winner-row-header {
  background: #f8f9fa;
  font-weight: 700;
  border-bottom: 2px solid #dee2e6;
}

.winner-card-row {
  border-bottom: 1px solid #eee;
}

/* Desktop Widths */
.col-date {
  width: 25%;
}

.col-winner {
  width: 28%;
}

.col-sponsor {
  width: 28%;
}

.col-prize {
  width: 20%;
}

/* Elements Styling */
.winner-box, .sponsor-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #eee;
  flex-shrink: 0;
}

.sponsor-logo {
  width: 50px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

.w-name, .s-name {
  font-weight: 600;
  color: #1a1a1a;
  display: block;
}

.w-time, .s-text {
  font-size: 0.75rem;
  color: #666;
}

.p-amount {
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

/* Mobile Utilities */
.m-label {
  display: none;
}

.m-sep {
  border: 0;
  border-top: 1px solid #eee;
  margin: 15px 0;
  opacity: 1;
}

/* --- Mobile UI --- */
@media (max-width: 768px) {
  .winner-card-row {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .col-date, .col-winner, .col-sponsor, .col-prize {
    width: 100% !important;
    text-align: left !important;
  }
  .m-label {
    display: block;
    font-size: 0.65rem;
    color: #999;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  /* Prize section specific spacing on mobile */
  .col-prize {
    margin-top: 12px;
  }
  .winner-row-header {
    display: none;
  }
}
#how-to-participate {
  background: radial-gradient(circle at top right, #f8f9fa 0%, #ffffff 100%);
}

.participation-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* The Step Number Circle */
.step-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f91b28;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* Icon Background Tints */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bg-light-danger {
  background-color: #fff5f5;
}

.bg-light-primary {
  background-color: #f0f7ff;
}

.bg-light-success {
  background-color: #f0fff4;
}

.bg-light-warning {
  background-color: #fffaf0;
}

.participation-card h6 {
  margin-top: 10px;
  color: #333;
}

@media (max-width: 768px) {
  .participation-card {
    padding: 20px 10px !important;
  }
}
.Sponsership-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin-top: 80px;
}

/* Card Base */
.sponsor-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff;
}

/* Center Logo Wrapper */
.brand-logo-wrapper {
  background-color: #f1f3f5; /* Light Gray Background */
  padding-top: 30px; /* Top Padding */
  padding-bottom: 30px; /* Bottom Padding */
  display: flex;
  justify-content: center; /* Horizontal Center */
  align-items: center; /* Vertical Center */
}

/* The Logo Image */
.sponsor-center-logo {
  padding: 16px;
  max-width: 220px;
}

/* Badge Styling */
.bg-danger-soft {
  background-color: #fff0f0;
  font-weight: 500;
}

.card-body p {
  line-height: 1.6;
}

body {
  background-color: #fcfcfc;
  font-family: "Inter", sans-serif;
}

/* Tree UI Logic preserved within Columns */
.tree-root {
  font-size: 1rem;
  font-weight: 700;
  color: #f91b28;
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding: 10px 0;
}

.tree-branch {
  margin-left: 10px;
  border-left: 2px solid #ddd;
  padding-left: 15px;
  position: relative;
}

.tree-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 13px;
  border-bottom: 2px solid #ddd;
}

.sub-cat-title {
  font-weight: 700;
  color: #333;
  margin: 18px 0 12px 0;
  display: block;
  font-size: 0.9rem;
}

.tree-leaf {
  margin-left: 15px;
  border-left: 2px solid #ddd;
  padding-left: 20px;
  position: relative;
  padding-bottom: 10px;
}

.tree-leaf::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 15px;
  border-bottom: 2px solid #ddd;
}

/* Last leaf fix to prevent line over-extension */
.tree-leaf:last-child {
  border-left: 2px solid #ddd;
  height: auto;
  padding-bottom: 20px;
}

.topic-link {
  display: inline-flex;
  align-items: center;
  color: #555;
  text-decoration: none !important;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.topic-link:hover {
  color: #f91b28;
  text-decoration: underline !important;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/"; /* This adds the arrow between links */
  padding: 0 4px;
  color: #6c757d;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #212529; /* Change this to your brand color */
  font-weight: 500;
  cursor: pointer;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d; /* Grey color for the current page */
}/*# sourceMappingURL=main.css.map */