/* General reset and box sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #333;
}
#SITE_CONTAINER {
  width: 100%;
  overflow-x: hidden;
} /* Scroll to top */
#SCROLL_TO_TOP {
  height: 0;
} /* Site header */
.SITE_HEADER_WRAPPER {
  background-color: #1a1a1a;
  color: white;
  padding: min(20px, 5vw);
  width: 100%;
  box-sizing: border-box;
}
.SITE_HEADER {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  margin: 0 auto;
  gap: 10px;
} /* Left group: Title + Join button + Menu buttons */
.SITE_HEADER_INLINE {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1; /* take available space */
} /* Keep logo fixed at right end inside same row */
.wixui-image {
  flex-shrink: 0;
  display: flex;
  position: relative;
  top: 20px;
  right: auto;
  z-index: 9999;
}
.wixui-image img {
  max-height: 120px; /* adjust as needed */
  max-width: 120px; /* adjust as needed */
  height: auto;
  width: auto;
} /* Links */
.SITE_HEADER a {
  text-decoration: none;
  color: white;
} /* Left group: Title + Join button + Menu buttons */
.SITE_HEADER_INLINE {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0; /* allow shrink */
  justify-content: center;
}
.SITE_HEADER_INLINE .comp-jvyzp1iy,
.SITE_HEADER_INLINE .WRchTxt7-8w9 {
  margin: 0;
  padding: 10px;
  flex-shrink: 0;

}
.SITE_HEADER_INLINE h1 {
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 3.5vw, 2.25rem);
  color: yellow;
  font-family: "Times New Roman", serif;
  
} /* Button */
.wixui-button {
  padding: 15px 48px;
  margin: 0;
  border: 2px solid #d1ce16;
  outline: none;
  color: #d1ce16;
  cursor: pointer;
  position: relative;
  z-index: 20;
  border-radius: 10px;
  background: #0055a5;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  justify-content: center;
  text-decoration: none; /* Adjust as needed */
}
.wixui-button__label {
  color: #d1ce16;
  font-size: 18px;
  line-height: 1.6;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
.wixui-button::after,
.wixui-button::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: -1;
}
.wixui-button::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00080f;
}
.wixui-button::before {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #ff00c8,
    #ff0000
  );
  background-size: 600%;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: glowing 20s linear infinite;
}
.wixui-button:hover::before {
  opacity: 1;
}
.wixui-button:active::after {
  background: transparent;
}
.wixui-button:active {
  color: #000;
}
@keyframes glowing {
  0%,
  100% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
} /* Header title container */
#header-title {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  min-width: 0;
}
#header-title h1 {
  font-size: 36px;
  color: yellow;
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", serif;
  text-align: left;
} /* Dropdown menu */
.wixui-dropdown-menu {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-shrink: 1;
  white-space: nowrap;
}
.wixui-dropdown-menu__item {
  display: inline-block;
  margin: 0 10px;
}
.wixui-dropdown-menu__item a {
  padding: 10px 10px;
  color: white;
  font-weight: bold;
  display: block;
  border-radius: 4px;
  text-decoration: none;
}
.BmxP3m {
  font-size: 16px;
  color: white;
}
.wixui-dropdown-menu__item a:hover {
  background-color: #1f6403;
}
.wixui-dropdown-menu__item[data-state*="selected"] a {
  background-color: #1f6403;
} /* Mobile-specific adjustments */
@media (max-width: 728px) {
  .SITE_HEADER {
    justify-content: flex-start;
    gap: 5px;
  }
  .wixui-button {
    padding: 2px 5px;
    margin: 0;
    border: 2px solid #d1ce16;
    outline: none;
    color: #d1ce16;
    cursor: pointer;
    position: relative;
    z-index: 20;
    border-radius: 10px;
    background: #0055a5;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }
  .BmxP3m {
    font-size: 8px;
  }
  .wixui-button__label {
    color: #d1ce16;
    font-size: 8px;
    line-height: 1.6;
    vertical-align: middle;
    margin: 0;
    padding: 0;
  }
  .wixui-image {
    position: relative;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .wixui-image img {
    max-height: 60px; /* adjust as needed */
    max-width: 60px; /* adjust as needed */
    width: auto;
    height: auto;
  }
  .SITE_HEADER_INLINE {
    overflow: hidden;
  }
  #header-title h1 {
    font-size: clamp(1em, 0.1vw, 2em);
    text-align: center;
  }
  .wixui-dropdown-menu {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .wixui-dropdown-menu {
    margin-left: 0;
  }
} /* Footer */ /* Line 1: Flex row for all top footer items */
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #000;
  color: #fff;
  max-width: 1200px; /* Match header's max width */
  margin: 0 auto; /* Center horizontally */
  padding: -10 10px;
} /* Individual sections */
.footer-left,
.footer-center,
.footer-copy,
.footer-social {
  flex: 1;
  min-width: 150px;
} /* Center the button */
.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
} /* Button2 styling */
.wixui-button2 {
  padding: 15px 150px;
  margin: 0;
  border: 2px solid #d1ce16;
  outline: none;
  color: #d1ce16;
  cursor: pointer;
  position: relative;
  z-index: 20;
  border-radius: 10px;
  background: #000407;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin-left: 350px;
} /* Button label */
.wixui-button__label1 {
  color: #d1ce16;
  font-size: 17px;
  line-height: 1;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.wixui-button2::after,
.wixui-button2::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  z-index: -1;
}
.wixui-button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00080f;
}
.wixui-button2::before {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #ff00c8,
    #ff0000
  );
  background-size: 600%;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: glowing 20s linear infinite;
}
.wixui-button2:hover::before {
  opacity: 1;
}
.wixui-button2:active::after {
  background: transparent;
}
.wixui-button2:active {
  color: #000;
}
.wixui-button2 {
  text-decoration: none;
}
@keyframes glowing {
  0%,
  100% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
} /* Copyright */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #e7e40a;
  line-height: 1.6;
  padding: 10px;
  position: relative; /* 👈 Add this */
  z-index: 10;
  margin-left: 20px;
} /* Ensure links are styled correctly and clickable */
.footer-left {
  position: relative;
  z-index: 10;
}
.footer-left a {
  color: #f8f8f8;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto; /* 👈 Add this block */
  position: relative;
}
.footer-left a:hover {
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  color: #aaa;
  font-size: 12px;
  margin-left: 300px;
} /* Social icons container */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center both icons and text */
  gap: 8px;
} /* Row for social media icons */
.footer-social ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
} /* Icon styles */
.footer-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}
.footer-social img:hover {
  transform: scale(1.1);
} /* Contact Us link */
.footer-social h6 {
  margin: 0;
  font-size: 15px;
  text-align: center;
}
.footer-social h6 a {
  text-decoration: underline;
  color: #d1ce16; /* Yellow underline/text */
}
.footer-social a,
.footer-left a,
.footer-social img,
.footer-social h6 a {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
  
}
@media (max-width: 783px) {
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px; /* Prevent text wrapping */
    column-gap: 0px;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .footer-copy,
  .footer-left{
    display: none;
  }



  .footer-center,
  .footer-social {
    text-align: center;
    justify-content: center;
  }
  .footer-social a,
  .footer-social h6 a,
  .wixui-button__label1 {
    font-size: clamp(2px,10px,20px) ; /* Adjust font size for smaller screens */
  }
  .wixui-button2 {
    padding: auto auto; /* Adjust padding for smaller screens */
    margin-left: 0; /* Reset margin for smaller screens */
    margin-bottom: 20px;
  }

} /* main */ /* Add horizontal padding to the entire main content */
#PAGES_CONTAINER {
  padding-left: 430px; /* You can adjust this value */
  padding-right: 500px; /* You can adjust this value */
  box-sizing: border-box;
  min-height: 500px; /* Optional: Limit the width of the content */
} /* Optional: Make the padding responsive */
@media (max-width: 768px) {
  #PAGES_CONTAINER {
    padding-left: 20px;
    padding-right: 20px;
  }
} /* Wrapper for the two columns */
.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
} /* Left column: ASVA's Vision */
.left-column {
  flex: 1;
  max-width: 300px;
  padding: 0px;
  border-radius: 10px;
  color: white;
}
.left-column h2 {
  background-color: #f3d705; /* Light yellow background */
  display: inline-block; /* Shrinks background to text width */
  color: #000;
  padding: 10px 50px; /* Add some space around the text */
}
@media screen and (max-width: 768px) {
  .left-column h2 {
    padding: 5px 20px; /* Adjust padding for smaller screens */
    font-size: 20px; /* Adjust font size for smaller screens */
  }
  
}
/* Right column: Who is a Veteran */
.right-column {
  flex: 1;
  max-width: 520px;
  max-height: auto;
  padding: 10px;
  border-radius: 10px;
  color: white;
  margin-bottom: 10%;
} /* Style for "WHO IS A VETERAN?" heading */
.right-column h4 {
  color: #f3d705;
  font-weight: bold;
  font-family: "Times New Roman", serif;
  text-decoration: underline;
  margin-bottom: 5px;
} /* Paragraph text inside right column */
.right-column p {
  color: white;
  font-size: 15px;
  max-width: 400px;
} /* Responsive behavior */
@media (max-width: 768px) {
  .two-column-wrapper {
    flex-direction: column;
  }
} /* 2nd right col */
.right-column-new {
  padding: 0px;
  border-radius: 20px;
  color: white;
  max-width: 600px;
  margin: -320px 10px 10px 400px;
}
@media (max-width: 768px) {
  .right-column-new {
    margin: auto auto; /* Center on smaller screens */
    max-width: 100%; /* Full width on smaller screens */
    margin-top: 45px; /* Add some top margin */
  }
}
.row {
  display: flex;
  justify-content: space-around; /* space items evenly */
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
.icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: black;
  padding: 10px;
}
.info-button {
  background-color: yellow;
  color: black;
  border: none;
  padding: 10px 10px;
  font-weight: bold;
  font-family: monospace;
  cursor: pointer;
  min-width: 140px;
  border-radius: 10px;
  margin-left: -10px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .info-button {
    min-width: 100px; /* Adjust for smaller screens */
    padding: 5px 5px; /* Reduce padding */
    font-size: 10px; /* Smaller font size */
  }
}
.row p {
  font-size: 12px;
  line-height: 1.4; /* consistent vertical spacing */
  min-width: 80px;
  max-width: 130px;
  margin: 0 auto; /* center inside its column */
  text-align: left; /* keep left alignment */
  text-indent: 0px; /* indent first line */
  padding: 0; /* remove weird padding gaps */
}
@media screen and (max-width: 768px) {
  .row p {
    font-size: 10px; /* Smaller font size for smaller screens */
    max-width: 100px; /* Adjust max width for smaller screens */
    padding: 0 5px; /* Add some horizontal padding */
    margin-top: -20px;
  }
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  border: 4px solid yellow; /* Yellow border stays fixed */
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .slideshow-container {
    min-height: 200px; /* Adjust max height for smaller screens */
    max-width: auto; /* Allow width to adjust */
    height: auto; /* Adjust height for smaller screens */
  }
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 80s infinite;
  transition: opacity 2s ease-in-out;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} /* Smooth fade-in and fade-out effect */
@keyframes fade {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
} /* Delayed animations per slide */
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 10s;
}
.slide:nth-child(3) {
  animation-delay: 20s;
}
.slide:nth-child(4) {
  animation-delay: 30s;
}
.slide:nth-child(5) {
  animation-delay: 40s;
}
.slide:nth-child(6) {
  animation-delay: 50s;
}
.slide:nth-child(7) {
  animation-delay: 60s;
}
.slide:nth-child(8) {
  animation-delay: 70s;
} /* Text styling in bottom-right */
#WRchTxt1o {
  position: relative;
  border: 3px solid yellow;
  padding: 10px 15px;
  color: rgb(0, 0, 0);
  background: yellow; /* Semi-transparent white background */
  font-size: 28px;
  font-weight: bold;
  z-index: 10;
  max-width: 100%;
  text-align: center;
  margin-left: auto; /* Adjust as needed */
}
@media screen and (max-width: 768px) {
  #WRchTxt1o {
    font-size: 15px; /* Adjust font size for smaller screens */ /* Center text on smaller screens */
  }
} /* contact us page */
.container {
  position: relative;
  width: 100%;
  box-sizing: border-box; /* Add padding or margin if needed */
} /* Background div */
.background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
} /* Inline content positioned above background */
.inline-content {
  position: relative;
  z-index: 1;
  padding: 20px; /* adjust as needed */
} /* Grid container */
.grid-container {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
} /* Rich text styling */
.rich-text h2 {
  background-color: #f3d705; /* Light yellow background */
  display: inline-block; /* Shrinks background to text width */
  padding: 5px 50px; /* Add some space around the text */
  font-family: "Times New Roman", serif;
  color: #000;
  margin-left: -430px;
}
@media screen and (max-width: 768px) {
  .rich-text h2 {
    margin-left: 0; /* Reset margin for smaller screens */
  }
}
.paypal-button-container {
  text-align: left;
  margin: 20px 0;
  margin-left: 0px;
}
.paypal-button-container a {
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: none;
  text-decoration: none;
}
.paypal-button-container img {
  width: auto;
  max-width: 250px; /* Limit max size */
  height: auto;
  display: block;
  margin: 0 auto; /* Center the image */
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .paypal-button-container img {
    max-width: 200px; /* Adjust max width for smaller screens */
  }
}
.paypal-button-container img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
} /* form */
#PAGES_CONTAINER {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  outline: none; /* since tabindex -1 */
}
.section {
  margin-bottom: 50px;
} /* Headings */
.main-heading {
  font-size: 46px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin-bottom: 20px;
  color: #ffd900;
}
.subheading {
  font-size: 22px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  text-align: left;
}
.highlight {
  color: #222222;
}
.highlight-alt {
  color: #f1cc01;
} /* Intro paragraphs */
.intro-text {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: Arial, "MS PGothic", Dotum, Helvetica, sans-serif;
} /* Membership list */
.membership-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px 0;
  max-width: 400px;
  position: relative;
  z-index: 9999;
}
.membership-list li {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: left;
  font-family: Arial, "MS PGothic", Dotum, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  line-height: 50px;
  position: relative;
  z-index: 9999;
}
.membership-link {
  text-decoration: underline;
  color: #f3f175;
  transition: color 0.3s ease;
  position: relative;
  z-index: 9999;
}
.membership-link:hover,
.membership-link:focus {
  color: #f1cc01;
  outline: none;
} /* Membership image */
.membership-image-container {
  text-align: right;
  margin-top: -250px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .membership-image-container {
    display: none;
  }
}
.membership-image {
  width: 238px;
  height: 238px;
  object-fit: cover;
  display: inline-block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.membership-image-container a:hover .membership-image,
.membership-image-container a:focus .membership-image {
  transform: scale(1.05);
  outline: none;
}
