/* ---------- GLOBAL RESET & BODY ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #a8e063, #56ab2f);
  color: #333;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- HEADER ---------- */
header {
  background-color: #035c28;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  flex-wrap: wrap;
  height: 70px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-left {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 15px;
}

.page-label h2 {
  margin: 0;
  font-size: 1.8rem;
  white-space: nowrap;
  color: white;
}

/* ---------- NAVIGATION ---------- */
nav {
  display: flex;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px;
  display: block;
  transition: color 0.3s ease;
}

.nav-menu > li > a:hover {
  color: #f39c12;
}

/* ---------- DROPDOWN SUBMENU ---------- */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #035c28;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 999;
}

.submenu li a {
  display: block;
  padding: 10px;
  color: white;
  white-space: nowrap;
}

.submenu li a:hover {
  background-color: #027a3c;
  color: #f39c12;
}

.dropdown:hover .submenu {
  display: block;
}

/* ---------- NEWS BAR ---------- */
.news-bar {
  background-color: #f39c12;
  color: white;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.news-bar p {
  margin: 0;
  animation: scrollNews 15s linear infinite;
}

@keyframes scrollNews {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  max-width: 800px;
  background-color: #ffffffcc;
  margin: 180px auto 40px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-section h1 {
  text-align: center;
  color: #035c28;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background-color: #27ae60;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #2ecc71;
}

/* ---------- ABOUT PAGE ---------- */
.about-content {
  margin-top: 150px;
  padding: 30px 20px;
  background: linear-gradient(to right, #f1e10a, #a8e063);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-height: 60vh;
  color: #333;
  line-height: 1.7;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #035c28;
  border-bottom: 2px solid #035c28;
  padding-bottom: 10px;
  text-align: center;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1a3c1d;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-content ul {
  padding-left: 25px;
  margin-bottom: 30px;
  color: #333;
}

.about-content li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  list-style-type: disc;
}

.about-content section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.about-content section h2,
.about-content section p,
.about-content section ul {
  grid-column: span 2;
}

.about-content section ul {
  columns: 2;
  column-gap: 40px;
  padding-left: 20px;
}

.about-content section li {
  break-inside: avoid;
}

/* ---------- FOOTER ---------- */
footer,
.site-footer {
  background-color: #035c28;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  width: 100vw;
  position: relative;
  box-sizing: border-box;
}

/* ---------- ABOUT IMAGES ---------- */
.img-fluid {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ---------- SECTION BLOCKS ---------- */
.section {
  background: linear-gradient(to right, green, orange);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  color: white;
  margin-bottom: 20px;
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  margin-top: 120px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #333;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ---------- PARTNER SECTION ---------- */
.partner-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.partner-section h2 {
  color: #035c28;
  font-size: 2rem;
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner-logos img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ---------- PARTNERS SLIDER & MARQUEE ---------- */
.partners {
  padding: 60px 0;
  background-color: #f4f4f4;
  overflow: hidden;
}

.partners_slider_container,
.partners_marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners_slider {
  padding: 0 15px;
}

.marquee_track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
}

.partner_item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex: 0 0 auto;
  margin: 0 30px;
}

.partner_item img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  vertical-align: middle;
}

.partner_item img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll-marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .page-label h2 {
    font-size: 1.3rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 15px;
  }

  nav {
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .nav-menu > li > a {
    padding: 8px 0;
  }

  .submenu {
    position: static;
    box-shadow: none;
    background-color: #046d33;
    width: 100%;
  }

  .submenu li a {
    padding-left: 20px;
  }

  .contact-section {
    margin: 220px 10px 40px;
    padding: 20px;
  }

  .about-content {
    margin-top: 180px;
    padding: 20px;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content section {
    grid-template-columns: 1fr;
  }

  .about-content section h2,
  .about-content section p,
  .about-content section ul {
    grid-column: span 1;
    columns: 1;
  }

  .partner_item img {
    max-height: 60px;
    max-width: 120px;
  }

  .partners {
    padding: 40px 0;
  }
}