/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  line-height: 1.6;
}
header {
  background: #003366;
  color: #fff;
}
.top-bar {
  background: #000;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  text-align: right;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive navbar helpers (site-wide) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 70;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links.open { display: flex; }

@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  /* Hide nav-links by default on small screens; show when .open present */
  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: none; /* hidden until toggled */
    width: calc(100% - 40px);
    max-width: 360px;
    z-index: 75;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { width: 100%; padding: 10px 8px; display: block; }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.logo-img:hover img {
  transform: scale(1.05);
}

.navbar-brand:hover .logo-text {
  color: #ffcc00;
  transition: color 0.2s ease;
}

.logo-text {
  font-size: 1.0rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #358232;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.nav-links {
  list-style: none;
  
  margin: 0;
  padding: 0;
  /* Default to visible on desktop via flex set in desktop rules; mobile will override to display:none */
}
.nav-links li a {
  color: #358232;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #27611e;
}
/* Dropdown base styles */
.nav-links li {
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  color: #358232;
  text-decoration: none;
  display: inline-block;
  padding: 8px 12px;
  transition: color 0.2s;
}

/* Dropdown menu box */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 8px;
  top: 100%;
  left: 0;
  margin-top: 0; /* important - remove hover gap */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
}

/* Dropdown menu links */
.dropdown-content a {
  color: #358232;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
  border-radius: 6px;
}

/* Hover effect on links */
.dropdown-content a:hover {
  background-color: rgba(53, 130, 50, 0.08);
  color: #27611e;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Active hover on main link */
.dropdown:hover > a {
  color: #27611e;
}

/* Dropdown arrow styling */
.dropdown > a::after {
  content: '▼';
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.2s;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e6f0fa;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
}
.hero-img {
  width: 350px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: 2rem;
  background: #ccc;
}
section {
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
section h2 {
  color: #003366;
  margin-bottom: 1rem;
}
.events {
  text-align: center;
}
.events .event-list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.event-card {
  background: #fff;
  border: 2px solid rgb(53, 130, 50);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(53,130,50,0.08);
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-card:hover {
  box-shadow: 0 6px 24px rgba(53,130,50,0.18);
  transform: translateY(-4px) scale(1.03);
}
.event-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e0e3e7;
}
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.event-date-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 2;
}
.event-date-icon {
  font-size: 1.2em;
  color: rgb(177, 145, 79);
}
.event-date-text {
  color: #ffecb3;
  font-weight: 600;
  letter-spacing: 1px;
}
.event-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(177,145,79,0.93) 60%, transparent 61%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 3;
}
.event-card:hover .event-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}
.see-more-btn {
  background: #fff;
  color: rgb(53, 130, 50);
  font-weight: 700;
  padding: 0.7em 1.5em;
  border-radius: 6px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(53,130,50,0.10);
  border: 2px solid rgb(53, 130, 50);
  letter-spacing: 1px;
}
.event-desc {
  padding: 1.1rem 1rem 1.2rem 1rem;
  color: rgb(53, 130, 50);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.event {
  background: #e0e3e7;
  border-radius: 10px;
  padding: 1.3rem;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 340px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
  transform: scale(1.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.event img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}
.event h3 {
  margin: 0.7rem 0 0.3rem 0;
  color: rgb(53, 130, 50);
}
.industries ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.industries li {
  background: #e6f0fa;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  color: #003366;
}
.industries-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  margin: 0 auto 1.5rem auto;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.industries-marquee {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  animation: marquee-left-right 18s linear infinite;
  width: max-content;
}
.industries-marquee li {
  background: #e6f0fa;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  color: rgb(53, 130, 50);
  min-width: 160px;
  text-align: center;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.industries-marquee li:hover {
  background: #2e7d32;
  color: #fff;
  transform: scale(1.08);
}
@keyframes marquee-left-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin-bottom: 1.5rem;
}
.contact input, .contact textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.contact button {
  background: #003366;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact button:hover {
  background: #ffcc00;
  color: #003366;
}
.contact-info {
  font-size: 1rem;
  color: #003366;
}
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-content p {
  margin: 0.2rem 0;
}
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1.2rem 0 0.5rem 0;
}
.logo-img {
  width: 48px;
  height: 48px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7rem;
  border: none;
  box-shadow: none;
}
.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.management-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 1.5rem 0;
  flex-wrap: wrap;
}
.management-col {
  background: #f4f8fc;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  flex: 1 1 320px;
  min-width: 260px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  text-align: center;
}
.person-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.7rem;
  border: 3px solid #2e7d32;
  box-shadow: 0 4px 12px rgba(46,125,50,0.15);
}

/* Chairman card specific styling */
.chairman-card .person-img {
  width: 100%;
  max-width: 450px;
  height: 360px;
  border-radius: 8px;
  border: 3px solid #2e7d32;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(46,125,50,0.15);
}

/* Vice Chairman card specific styling */
.vice-chairman-card .person-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  border: 3px solid #2e7d32;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(46,125,50,0.15);
}

/* .person-imgvicecahirman {
  width: 100%;
  max-width: 450px;
  height: 300px;
  border-radius: 8px;
  border: 3px solid #2e7d32;
} */

.person-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.person-cards-row .person-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(53,130,50,0.08);
  padding: 1.5rem 1.2rem;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.08rem;
}
.person-card h4 {
  margin: 0.5rem 0 0.2rem 0;
  color: #2e7d32;
}
.person-name {
  margin: 0.5rem 0 0.2rem 0;
  color: rgb(53, 130, 50);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: #e6f0fa;
  padding: 0.4rem 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(53, 130, 50, 0.04);
  margin-bottom: 0.5rem;
}
.message-text { font-size: 1.02rem; display: block; margin-top: 0.5rem; }
.contact-form-bg {
  background: linear-gradient(135deg, #e6f0ea 0%, #f4f8fc 100%);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(46,125,50,0.08);
  max-width: 440px;
  margin: 0 auto 2rem auto;
}
.contact form label {
  font-weight: 500;
  color: #2e7d32;
  margin-bottom: 0.3rem;
  margin-top: 0.7rem;
  display: block;
  letter-spacing: 0.5px;
}
.contact form input,
.contact form textarea {
  margin-bottom: 0.5rem;
  background: #fff;
  border: 1.5px solid #c8e6c9;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact form input:focus,
.contact form textarea:focus {
  border: 1.5px solid #2e7d32;
  outline: none;
  box-shadow: 0 0 0 2px #c8e6c9;
}
.contact form button {
  margin-top: 0.7rem;
}
.footer-row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  background: #002244;
  color: #fff;
  padding: 2.5rem 2rem 1.5rem 2rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-col h3 {
  color: #ffcc00;
  margin-bottom: 1rem;
}
.footer-contact-form label {
  font-weight: 500;
  color: #ffcc00;
  margin-bottom: 0.2rem;
  margin-top: 0.6rem;
  display: block;
  letter-spacing: 0.5px;
}
.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1.5px solid #c8e6c9;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  background: #fff;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
}
.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border: 1.5px solid #ffcc00;
  outline: none;
  box-shadow: 0 0 0 2px #ffecb3;
}
.footer-contact-form button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.7rem;
  transition: background 0.2s;
}
.footer-contact-form button:hover {
  background: #ffcc00;
  color: #2e7d32;
}
.footer-form-row {
  display: flex;
  gap: 1rem;
}
.footer-form-group {
  flex: 1 1 0;
  min-width: 0;
}
.pre-footer-row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  background: #f4f8fc;
  color: #003366;
  padding: 2.5rem 2rem 1.5rem 2rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.pre-footer-col {
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 1.5rem;
}
.pre-footer-col h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
}
.pre-footer-contact-form label {
  font-weight: 500;
  color: #2e7d32;
  margin-bottom: 0.2rem;
  margin-top: 0.6rem;
  display: block;
  letter-spacing: 0.5px;
}
.pre-footer-contact-form input,
.pre-footer-contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1.5px solid #c8e6c9;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  background: #fff;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
}
.pre-footer-contact-form input:focus,
.pre-footer-contact-form textarea:focus {
  border: 1.5px solid #2e7d32;
  outline: none;
  box-shadow: 0 0 0 2px #c8e6c9;
}
.pre-footer-contact-form button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.7rem;
  transition: background 0.2s;
}
.pre-footer-contact-form button:hover {
  background: #ffcc00;
  color: #2e7d32;
}
.pre-footer-form-row {
  display: flex;
  gap: 1rem;
}
.pre-footer-form-group {
  flex: 1 1 0;
  min-width: 0;
}
.pre-footer-flex {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 14.2rem;
  margin-bottom: 0.5rem;
}
.social-icons a svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: rgb(53, 130, 50);
  transition: transform 0.18s, filter 0.18s;
}
.social-icons a:hover svg {
  filter: brightness(1.3) drop-shadow(0 2px 6px rgba(53,130,50,0.15));
  transform: scale(1.18);
}
section h2, .pre-footer-col h3, .management-col h3, .footer-col h3, .committee h2, .events h2, .downloads h2, .circulars h2, .about h2, .logo {
  color: rgb(53, 130, 50) !important;
}
/* Underline for Industries Under S.I.T.E Association heading */
#industries h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
  font-size: 2.1rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
#industries h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: rgb(177, 145, 79);
  border-radius: 2px;
  margin: 0.3rem auto 0 auto;
}
.industry-icon {
  display: inline-block;
  margin-right: 0.6em;
  font-size: 1.3em;
  vertical-align: middle;
}
.industry-icon-agriculture::before {
  content: "\1F33E"; /* Ear of rice emoji */
}
.industry-icon-automobiles::before {
  content: "\1F697"; /* Car emoji */
}
.industry-icon-flour::before {
  content: "\1F35E"; /* Bread emoji */
}
.industry-icon-gases::before {
  content: "\1F4A8"; /* Dash symbol for gas */
}
.industry-icon-fans::before {
  content: "\1F4A8"; /* Dash symbol as placeholder for fan */
}
.industry-icon-tubes::before {
  content: "\1F4E6"; /* Package emoji as placeholder for tubes */
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin: 2.5rem 0 1.5rem 0;
  justify-items: start;
}
.industry-tab {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.industry-tab:hover .industry-icon-bg {
  background: #b99b3f;
  transition: background 0.2s;
}
.industry-tab:hover .industry-label {
  color: rgb(177, 145, 79);
  font-size: 1.35rem;
  transition: color 0.2s, font-size 0.2s;
}
.industry-tab:hover .industry-icon-bg svg {
  transform: scale(1.13);
  transition: transform 0.2s;
}
.industry-icon-bg {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-label {
  font-size: 1.25rem;
  color: rgb(53, 130, 50);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s, font-size 0.2s;
}
.industry-icon-bg svg {
  transition: transform 0.2s;
}
.slider-section {
  width: 100%;
  background: #222;
  position: relative;
  z-index: 1;
}
.slider-container {
  position: relative;
  max-width: 100vw;
  height: 420px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.77,0,.18,1);
}
.slider-slide {
  min-width: 100vw;
  height: 420px;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  display: none;
}
.slider-slide.active {
  opacity: 1;
  z-index: 2;
  display: block;
}
.slider-slide img {
  width: 100vw;
  height: 420px;
  object-fit: cover;
  transition: transform 6s ease-in-out;
  transform: scale(1);
}
.slider-slide.active img {
  transform: scale(1.15);
  animation: zoomIn 6s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(34,34,34,0.45);
  border: 3px solid rgb(177, 145, 79);
  border-radius: 8px;
  padding: 2.2rem 2.5rem 2.2rem 2.5rem;
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
  z-index: 3;
}
.slider-overlay h1 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.slider-overlay p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.slider-see-more {
  background: rgb(53, 130, 50);
  color: #fff;
  border: none;
  padding: 0.7em 2.2em;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(53,130,50,0.10);
}
.slider-see-more:hover {
  background: rgb(177, 145, 79);
  color: #fff;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(53, 130, 50);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(53,130,50,0.10);
  opacity: 0.95;
}
.slider-arrow-left {
  left: 24px;
}
.slider-arrow-right {
  right: 24px;
}
.slider-arrow:hover {
  background: rgb(177, 145, 79);
  color: #fff;
}
.industries-rows-marquee {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin: 2.5rem 0 1.5rem 0;
}
.industries-row {
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow: hidden;
}
.industries-row-left {
  animation: marquee-left 18s linear infinite;
}
.industries-row-right {
  animation: marquee-right 18s linear infinite;
}
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-40%); }
}
@keyframes marquee-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(40%); }
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .navbar-brand {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Mobile dropdown adjustments */
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0;
    border-radius: 0;
    min-width: auto;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    padding: 8px 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-img {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 350px;
  }
  .events .event-list {
    flex-direction: column;
    gap: 1.2rem;
  }
  .event-list {
    gap: 1.5rem;
  }
  .event-card {
    max-width: 100%;
    min-width: 0;
  }
  .event-img-wrap {
    height: 150px;
  }
  .event-desc {
    font-size: 0.95rem;
    padding: 0.8rem 0.5rem 1rem 0.5rem;
  }
  .industries ul {
    flex-direction: column;
    gap: 0.8rem;
  }
  .management-row {
    flex-direction: column;
    gap: 1rem;
  }
  .person-cards-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  
  .person-cards-row .person-img {
    width: 95%;
    height: 500px;
    max-width: 450px;
  }
  .person-cards-row .person-card {
    max-width: 90vw;
    font-size: 1rem;
  }
  
  .person-cards-row .person-img {
    width: 100px;
    height: 100px;
  }
  .footer-row {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .pre-footer-row {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .pre-footer-flex {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }
  .social-icons {
    margin-top: 14.2rem;
    margin-bottom: 0.5rem;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .slider-container, .slider-slide, .slider-slide img {
    height: 260px;
  }
  .slider-overlay {
    padding: 1.2rem 1.2rem;
    min-width: 180px;
  }
  .slider-overlay h1 {
    font-size: 1.2rem;
  }
  .industries-row {
    gap: 1.2rem;
  }
  .industries-rows-marquee {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem;
  }
  
  .navbar-brand {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .logo-img {
    width: 45px;
    height: 45px;
  }
  
  .logo-text {
    font-size: 1.0rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    align-items: flex-start;
  }
  section {
    padding: 1.2rem 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .industries-marquee {
    gap: 1rem;
    font-size: 0.95rem;
  }
  .industries-marquee li {
    min-width: 120px;
    padding: 0.6rem 0.8rem;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .industry-label {
    font-size: 1rem;
  }
  .slider-container, .slider-slide, .slider-slide img {
    height: 160px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .industries-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .industries-rows-marquee {
    gap: 0.7rem;
  }
}
.person-cards-row .person-card {
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 10px rgba(53,130,50,0.08);
}
/* Remove general hover effect */
/* .person-cards-row .person-card:hover { }
*/

/* Only first three cards get the hover effect */
.person-cards-row .person-card:nth-child(-n+3):hover {
  /* transform: scale(1.12); */
  box-shadow: 0 6px 24px rgba(53,130,50,0.18);
  z-index: 2;
}
.industry-tab-animate {
  opacity: 0;
  transform: translateY(-60px);
  animation: industryTabSlideIn 0.85s cubic-bezier(.77,0,.18,1) forwards;
}
.industry-tab-animate:nth-child(1) { animation-delay: 0.05s; }
.industry-tab-animate:nth-child(2) { animation-delay: 0.15s; }
.industry-tab-animate:nth-child(3) { animation-delay: 0.25s; }
.industry-tab-animate:nth-child(4) { animation-delay: 0.35s; }
.industry-tab-animate:nth-child(5) { animation-delay: 0.45s; }
.industry-tab-animate:nth-child(6) { animation-delay: 0.55s; }
@keyframes industryTabSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Remove previous marquee/row styles if present */
.industries-rows-marquee, .industries-row, .industries-row-left, .industries-row-right {
  all: unset;
  display: revert;
}
.see-all-events-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
.see-all-events-btn {
  background: rgb(53, 130, 50);
  color: #fff;
  border: none;
  padding: 0.9em 2.5em;
  border-radius: 8px;
  font-size: 1.18em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53,130,50,0.10);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.see-all-events-btn:hover {
  background: rgb(177, 145, 79);
  color: #fff;
  transform: scale(1.07);
}
.events h2 {
  font-size: 2.3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 2rem;
}
.events h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: rgb(177, 145, 79);
  border-radius: 2px;
  margin: 0.3rem auto 0 auto;
}
.prosperity-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 0 0 0 0;
  gap: 2.5rem;
  color: #222;
}
.prosperity-content, .prosperity-image {
  flex: 1 1 0;
  max-width: 50%;
  min-width: 320px;
  box-sizing: border-box;
}
.prosperity-heading {
  color: rgb(53, 130, 50);
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  
}
.prosperity-underline {
  width: 100%;
  height: 4px;
  background: rgb(177, 145, 79);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
}
.prosperity-content p {
  color: #222;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.prosperity-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}
.prosperity-image img {
  width: 350px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
}
.prosperity-label {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 900px) {
  .prosperity-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem 1.5rem 1rem;
    gap: 1.5rem;
  }
  .prosperity-content, .prosperity-image {
    max-width: 100%;
    width: 100%;
  }
  .prosperity-image {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
  }
  .prosperity-underline {
    width: 180px;
  }
}
@media (max-width: 600px) {
  .prosperity-content, .prosperity-image {
    max-width: 100%;
    width: 100%;
  }
  .prosperity-image {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
  }
}
.aim-management-section {
  display: flex;
  gap: 2.5rem;
  background: #f8f9fa;
  padding: 2.5rem 2rem 2.5rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: 0 0 0 0;
  color: #222;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.aim-col, .management-col {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
}
.aim-heading, .management-heading {
  color: rgb(53, 130, 50);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  background: none;
  padding: 0;
  border-radius: 0;
}
.aim-underline, .management-underline {
  width: 100%;
  height: 3px;
  background: rgb(177, 145, 79);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
}
.aim-col p, .management-col p {
  color: #222;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.management-img {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-top: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(53,130,50,0.10);
}
@media (max-width: 900px) {
  .aim-management-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
    align-items: center;
  }
  .aim-col, .management-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .management-img {
    width: 90vw;
    max-width: 350px;
    margin-top: 1.2rem;
  }
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  margin-top: 2.5rem;
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}
.person-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(53,130,50,0.10), 0 1.5px 6px rgba(53,130,50,0.06);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  /* border-top: 5px solid rgb(53, 130, 50); */
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}
.core-values-section h2 {
  text-align: left;
}
@media (max-width: 900px) {
  .core-values-section h2 {
    text-align: center;
  }
  .core-values-row {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .core-values-section h2 {
    text-align: center;
  }
  .core-values-row {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .about-hero,
  .about-card,
  .about-aims,
  .about-aims ul,
  .about-aims li,
  .core-values-section,
  .core-values-row,
  .core-value-card {
    text-align: center;
  }
  .about-cards-row,
  .core-values-row {
    justify-content: center;
    align-items: center;
  }
  .about-card p {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .about-hero,
  .about-card,
  .about-aims,
  .about-aims ul,
  .about-aims li,
  .core-values-section,
  .core-values-row,
  .core-value-card {
    text-align: center;
  }
  .about-cards-row,
  .core-values-row {
    justify-content: center;
    align-items: center;
  }
  .about-card p {
    text-align: center;
  }
}
.person-card p strong {
  transition: color 0.22s, text-decoration 0.22s, letter-spacing 0.22s;
}
/* .person-card:hover p strong {
  color: rgb(177, 145, 79);
  text-decoration: underline wavy rgb(177, 145, 79) 1.5px;
  letter-spacing: 1.5px;
} */
.person-cards-row .person-card {
  max-width: 400px;
  min-width: 280px;
  padding: 2.5rem 0.7rem;
  font-size: 1.18rem;
}
.person-cards-row .person-img {
  width: 95%;
  height: 500px;
  max-width: 450px;
}

/* --- Responsive utilities (shared across pages) --- */
/* Container */
.container, .site-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Row / col helpers (flex grid) */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.col {
  flex: 1 1 0;
  min-width: 0;
}
.col-1 { flex: 0 0 8.3333%; }
.col-2 { flex: 0 0 16.6667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.3333%; }
.col-6 { flex: 0 0 50%; }
.col-12 { flex: 0 0 100%; }

/* Fluid image */
.img-fluid, img.img-fluid { max-width: 100%; height: auto; display: block; }

/* Responsive tables */
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-responsive table { width: 100%; border-collapse: collapse; }

/* Common helpers */
.text-center { text-align: center; }
.hide-sm { display: none !important; }
.show-sm { display: none; }

@media (max-width: 768px) {
  .hide-sm { display: block !important; }
  .show-sm { display: block; }
  /* Simple utility to stack columns */
  .col-4, .col-3, .col-6 { flex: 0 0 100%; }
}

/* Ensure images in card areas don't overflow */
.management-col .person-img, .person-card .person-img { max-width: 100%; height: auto; }

/* Make buttons touch-friendly on mobile */
button, .see-more, .see-all-events-btn { padding: 0.65rem 1.1rem; min-height: 44px; }

/* small typography scaling */
@media (max-width: 600px) {
  body { font-size: 15px; }
}

/* ------------------ Mobile nav override (force correct behavior) ------------------ */
@media (max-width: 900px) {
  /* Ensure the hamburger button is visible on mobile/tablet */
  .nav-toggle { display: inline-flex !important; }

  /* Hide nav by default on smaller screens; rely on .open to display it */
  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 64px !important;
    right: 12px !important;
    width: calc(100% - 32px) !important;
    max-width: 360px !important;
    background: rgba(255,255,255,0.98) !important;
    flex-direction: column !important;
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
    z-index: 9999 !important;
  }

  /* When JS toggles .open, force it visible */
  .nav-links.open { display: flex !important; }

  /* Simple hamburger visuals */
  .nav-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10001;
  }
  .nav-toggle .hamburger,
  .nav-toggle .hamburger::before,
  .nav-toggle .hamburger::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #27611e;
    border-radius: 2px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .nav-toggle .hamburger::before { transform: translateY(-7px); }
  .nav-toggle .hamburger::after { transform: translateY(5px); }

  /* Open state: middle line hidden, top+bottom form an X */
  .nav-toggle.open .hamburger { background: transparent; }
  .nav-toggle.open .hamburger::before { transform: rotate(45deg) translate(3px, 3px); }
  .nav-toggle.open .hamburger::after { transform: rotate(-45deg) translate(3px, -3px); }

  /* Make nav links full width touch targets */
  .nav-links a { padding: 12px 10px !important; }
}

/* Desktop: ensure nav is visible as flex when not overridden */
@media (min-width: 901px) {
  .nav-links { display: flex !important; position: static !important; box-shadow: none !important; }
}

/* ---------------------------------------------------------------------------- */