* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --accent: #ff7a18;
  --accent-bg: rgba(255,122,24,0.06);
  --transition: 0.28s;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  padding-top: 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  padding: 2px;
}

/* Increase visible size without affecting layout by using transform */
.logo-img {
  transform-origin: center left;
  transform: scale(1.40);
  transition: transform var(--transition) ease;
}

nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-btn {
  background: #ff7a18;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.contact-btn {
  text-decoration: none;
  display: inline-block;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, rgba(188, 217, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 80px 40px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.hero-left {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FEATURE CARDS */
.feature-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-weight: 600;
}

.feature-card span {
  background: #ffd200;
  color: #000;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.card-1 { top: 20%; left: 55%; }
.card-2 { top: 38%; left: 58%; }
.card-3 { top: 56%; left: 55%; }

/* RIGHT */
.hero-right .badge {
  background: #e9f0ff;
  color: #1f4fd8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 18px;
}

.hero-right h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #4a4a4a;
}

.accent {
  color: #ff7a18;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Slightly larger hero heading on wide screens for prominence */
.hero-right h1 {
  font-size: 52px;
}

/* CTA */
.cta {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #1f4fd8;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #1f4fd8;
  color: #1f4fd8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-card {
    display: none;
  }

  nav {
    display: none;
  }
}

/* Responsive adjustments for navbar logo */
@media (max-width: 900px) {
  body { padding-top: 72px; }
  .logo-img { width: 56px; height: 56px; transform: scale(1.05); }
}

@media (max-width: 480px) {
  body { padding-top: 64px; }
  .logo-img { width: 48px; height: 48px; padding: 3px; transform: scale(1); }
  .logo { gap: 10px; }
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 20px;
    min-height: calc(100vh - 72px);
  }

  .hero-right h1 {
    font-size: 38px;
  }

  .hero-img {
    max-width: 420px;
  }
}

/* Responsive: scale down award images and adjust text on small screens */
@media (max-width: 768px) {
  .award-card img {
    width: 110px;
  }

  .award-card h4 { font-size: 13px; }
  .award-card p { font-size: 12px; }
  .award-card span { font-size: 11px; }
}

@media (max-width: 480px) {
  .award-card img { width: 90px; }
  .award-card { padding: 18px 12px; }
  .award-card h4 { font-size: 12px; }
  .award-card p { font-size: 11px; }
}

.about-disha {
  padding: 48px 20px;
  background: #f8faff;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-disha h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1f4fd8;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
  text-align: center;
}

/* CATEGORY CARDS */
.category-card {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.category {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.category h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f4fd8;
  margin-bottom: 8px;
}

.category p {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

/* FREE NOTE */
.free-note {
  background: #eaf0ff;
  border-left: 4px solid #1f4fd8;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  color: #222;
}

/* DESKTOP ENHANCEMENT */
@media (min-width: 768px) {
  .about-text {
    font-size: 16px;
  }

  .category-card {
    grid-template-columns: 1fr 1fr;
  }
}

.participate-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  font-family: 'Poppins', sans-serif;
}

.participate-container {
  max-width: 1000px;
  margin: 0 auto;
}

.participate-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1f4fd8;
  margin-bottom: 20px;
}

.participate-intro {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}

/* STEPS */
.steps-grid {
  display: grid;
  gap: 22px;
}

.step-card {
  background: #ffffff;
  padding: 26px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.step-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

.step-card a {
  color: #1f4fd8;
  font-weight: 500;
  text-decoration: none;
}

/* CTA */
.participate-cta {
  margin-top: 40px;
  padding: 18px;
  background: #eaf0ff;
  border-left: 4px solid #1f4fd8;
  border-radius: 14px;
  text-align: center;
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

/* Desktop enhancement */
@media (min-width: 768px) {
  .participate-intro {
    font-size: 16px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.awards-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(205, 222, 243, 0.18) 0%, rgba(210, 231, 255, 0.18) 100%);
  backdrop-filter: blur(2px);
  font-family: 'Poppins', sans-serif;
}

.awards-container {
  max-width: 1100px;
  margin: 0 auto;
}

.awards-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1f4fd8;
  margin-bottom: 10px;
}

.awards-subtitle {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

/* GROUP */
.award-group {
  margin-bottom: 40px;
}

.award-group h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

/* CARDS */
.award-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

.award-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  border: 0px solid rgba(0,0,0,0.06);
  box-shadow: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.award-card img {
  width: 60%;
  height: auto;
  max-height: 58%;
  object-fit: contain;
  margin-top: 6px;
}

.award-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 3px;
  margin-top: auto; /* push text group toward bottom */
  text-align: center;
}

.award-card p {
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0 4px;
  text-align: center;
}

.award-card span {
  font-size: 9px;
  color: #777;
  margin-bottom: 6px;
  text-align: center;
}

/* COLOR THEMES */
.gold { border-top: none; }
.silver { border-top: none; }
.bronze { border-top: none; }
.blue { border-top: none; }
.purple { border-top: none; }
.green { border-top: none; }

/* DESKTOP TWEAK */
@media (min-width: 768px) {
  .awards-section h2 {
    font-size: 34px;
  }
}

.highlights-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.highlights-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f4fd8;
}

.slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.prev { left: -10px; }
.next { right: -10px; }

@media (max-width: 768px) {
  .slide {
    grid-template-columns: 1fr;
  }

  .slide img {
    height: 200px;
  }
}

/* Responsive logo size adjustments */
@media (max-width: 768px) {
  .partner-item img {
    max-height: 70px;
  }

  .logo-grid img {
    max-height: 100px;
    padding: 18px;
  }

  .award-card img {
    width: 70px;
  }
}

@media (max-width: 900px) {
  .partners-row .container { justify-content: center; }
  .partner-item { flex: 0 1 220px; max-width: 260px; }
}

@media (max-width: 480px) {
  .partners-row .container { justify-content: center; }
  .partner-item { flex: 0 1 100%; max-width: 100%; }
}

.partners-row {
  padding: 60px 20px;
  background: #ffffff;
}

.partners-row .container {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
}

/* Ensure section heading spans full width above the grid */
.partners-row .container h2 {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1f4fd8;
  margin-bottom: 20px;
}

.partner-item {
  background: #f8faff;
  padding: 18px 14px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex: 0 1 300px;
  max-width: 320px;
}

.partner-item img {
  max-height: 90px;
  margin-bottom: 12px;
}

.partner-item p {
  font-size: 14px;
  color: #555;
}

.partner-item strong {
  color: #1f4fd8;
  font-size: 16px;
}

.partner-categories {
  padding: 80px 20px;
  background: linear-gradient(120deg, #eef3ff, #fff7ef);
  font-family: 'Poppins', sans-serif;
}

.partner-categories h2 {
  text-align: center;
  font-size: 28px;
  margin: 40px 0 20px;
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  gap: 24px;
  max-width: 960px; /* limit to ~4 columns */
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  justify-content: center; /* center rows when fewer items */
}

.logo-grid img {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .partner-categories .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .partner-categories .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-categories .logo-grid {
    grid-template-columns: 1fr;
  }
}

.terms-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f4f7ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1f4fd8;
  margin-bottom: 30px;
}

.terms-card {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.terms-list {
  list-style: none;
  padding-left: 0;
}

.terms-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f4fd8;
  font-size: 22px;
  line-height: 1;
}

.final-consent {
  margin-top: 24px;
  padding: 16px;
  background: #eaf0ff;
  border-left: 4px solid #1f4fd8;
  border-radius: 12px;
  font-weight: 500;
  color: #222;
}

/* Desktop enhancement */
@media (min-width: 768px) {
  .terms-section h2 {
    font-size: 34px;
  }

  .terms-list li {
    font-size: 16px;
  }
}

.site-footer {
  background: linear-gradient(120deg, #ffffff, #ffffff);
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: 'Poppins', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  font-size: 14px;
  color: #333;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

/* Mobile Optimisation */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-logo img {
    height: 32px;
  }
}

/* --- Subtle animations and hover effects --- */
/* Elements reveal on scroll */
section,
.award-card,
.partner-item,
.slide,
.hero-right,
.logo-grid img {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Slight lift on interactive cards */
.award-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.award-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.partner-item img,
.logo-grid img {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.partner-item:hover img,
.logo-grid img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Buttons subtle hover */
.btn {
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn.secondary:hover {
  background: var(--accent-bg);
  color: var(--accent);
}

/* Small accent utility */
.small-accent { color: var(--accent); }

/* Improve initial hero entrance */
.hero-right { transition: opacity 0.7s ease, transform 0.7s ease; }

/* reduce motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  section, .award-card, .partner-item, .slide, .hero-right, .logo-grid img { transition: none; transform: none; }
  .btn { transition: none; }
}
