:root {
  --primary-color: #00a651;
  --primary-dark: #008542;
  --primary-light: #33b86b;
  --gradient-primary: linear-gradient(135deg, #00a651 0%, #33b86b 100%);
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* Typography with proper spacing */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  background: rgba(0, 166, 81, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.section-badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons with proper spacing */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #008542 0%, #00a651 100%);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.3);
}

.btn-outline-dark {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Top Navigation with spacing */
.top-nav {
  background: var(--text-dark);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.cta-button i {
  background-color: #008542;
  padding: 8px;
  border-radius: 50%;
}
.cta-button a {
  color: #ffffff;
  font-size: 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(53, 207, 31, 0.1);
}

/* Main Navigation spacing */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
  padding: 8px 16px !important;
  margin: 0 4px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Navbar link (with arrow nicely aligned) */
.navbar .nav-item.dropdown .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #fff;
}

.dropdown-caret {
  margin-left: 6px;
  font-size: 0.8rem;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
}

/* Dropdown menu */
.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 20px;
  min-width: 250px;
  background-color: #fff;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin: 0;
  padding: 0;
  position: relative;
  transition: 0.3s all ease-in-out;
  background-color: #333;
  border-bottom: 0.5px solid #7a7777;
}

.dropdown-menu li:hover .dropdown-item {
  margin-left: 8px;
  transition: 0.2s all ease-in-out;
}
/* Dropdown item */
.dropdown-menu .dropdown-item {
  font-size: 0.95rem;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
  background-color: #343a40;
  padding: 10px 8px 10px 16px;
}

/* Hover effect on item */
.dropdown-menu .dropdown-item:hover {
  background-color: #333;
  color: #f6f6f6;
  text-decoration: none;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #333;
}

/* Footer spacing */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 0 40px;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand h5 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  margin-bottom: 25px;
}

.newsletter-form .input-group {
  margin-bottom: 15px;
}

.newsletter-form .form-control {
  border: 1px solid #374151;
  background: #374151;
  color: white;
  padding: 12px 20px;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  background: #374151;
  color: white;
}

.footer-divider {
  border-color: #374151;
  margin: 50px 0 30px;
}

.copyright {
  color: #9ca3af;
  margin: 0;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}
ul.sponsors {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.sponsors li {
  flex: 0 0 auto;
  width: 20%;
  margin-left: 10px;
  margin-right: 10px;
  border: 4px double #fdf6f9;
  padding: 5px;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.check-square {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.check-square > li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.check-square > li::before {
  position: absolute;
  color: var(--primary-color);
  top: 0;
  left: 0;
  content: "\f14a";
  padding-right: 10px;
  font-size: 16px;
  font-family: "FontAwesome";
}
@media (max-width: 991px) {
  .check-square > li::before {
    content: "";
  }
  ul.sponsors li {
    width: 33%;
  }
}

.relatedContentCard {
  box-shadow: 0 0 10px #ededed;
  -webkit-box-shadow: 0 0 10px #ededed;
  -moz-box-shadow: 0 0 10px #e9e9e9;
  display: inline-block;
  position: relative;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
}
.relatedContentThumbnail img {
  height: 220px;
  overflow: hidden;
  object-fit: contain;
  width: 100%;
}
.relatedContentCard .relatedContent {
  padding: 15px;
}
.relatedContentTitle {
  font-size: 20px;
}
.relatedContentDesc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
