/* ---------------------------
  Navbar Styling (Unchanged)
---------------------------- */
.navbar {
  background: #CAD8DB59;
  backdrop-filter: blur(20px);
  width: 100%;
  height: clamp(8rem, 6.25vw, 32rem); /* Fluid height based on viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 clamp(0.2rem, 0.15625vw, 1rem) clamp(0.5rem, 0.390625vw, 2.5rem) rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

body {
  padding-top: clamp(8rem, 6.25vw, 32rem); /* Match navbar height */
}

.navbar_container {
  width: 100%;
  max-width: clamp(120rem, 150vw, 400rem); /* Fluid max-width */
  height: 100%;
  padding: 0 clamp(2rem, 1.5625vw, 10rem);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.navbar_logo img {
  height: clamp(8.8rem, 6.875vw, 35rem); /* Fluid logo height */
  object-fit: contain;
  cursor: pointer;
  padding: clamp(1rem, 0.78125vw, 4rem);
}

.navbar_links {
  display: flex;
  align-items: center;
  gap: clamp(7rem, 5.46875vw, 28rem); /* Fluid gap */
  list-style: none;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.4rem, 1.09375vw, 7rem); /* Fluid font size */
  line-height: 100%;
  letter-spacing: 0;
  margin: 0;
}

.navbar_links li a {
  color: inherit;
  transition: color 0.3s ease;
  letter-spacing: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

/* Dropdown Menu Styling */
.navbar_dropdown {
  position: relative;
}

.dropdown_toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.dropdown_toggle::after {
  content: "▼";
  font-size: clamp(0.8rem, 0.625vw, 4rem);
  margin-left: clamp(0.5rem, 0.390625vw, 2rem);
  transition: transform 0.3s ease;
}

.navbar_dropdown:hover .dropdown_toggle::after {
  transform: rotate(180deg);
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(202, 216, 219, 0.95);
  backdrop-filter: blur(20px);
  border-radius: clamp(0.5rem, 0.390625vw, 2rem);
  box-shadow: 0 clamp(0.5rem, 0.390625vw, 2rem) clamp(2rem, 1.5625vw, 8rem) rgba(0, 0, 0, 0.15);
  min-width: clamp(20rem, 15.625vw, 80rem);
  padding: clamp(1rem, 0.78125vw, 4rem) 0;
  margin-top: clamp(1rem, 0.78125vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
}

.navbar_dropdown:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown_menu li {
  margin: 0;
}

.dropdown_menu li a {
  display: block;
  padding: clamp(1rem, 0.78125vw, 4rem) clamp(2rem, 1.5625vw, 8rem);
  color: #333;
  font-size: clamp(1.2rem, 0.9375vw, 6rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: clamp(0.3rem, 0.234375vw, 1.2rem) solid transparent;
}

.dropdown_menu li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-left-color: #333;
  padding-left: clamp(2.5rem, 1.953125vw, 10rem);
}

.navbar_search {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar_search img {
  width: 2.4rem;
  height: 2.4rem;
  filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(500%) hue-rotate(320deg) brightness(90%) contrast(90%);
}

.navbar_toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 2rem;
  user-select: none;
}

.navbar_toggle .bar {
  height: 0.3rem;
  width: 100%;
  background-color: black;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

/* ---------------------------
  Footer Styling
---------------------------- */
.footer {
  background-color: #1f1b17;
  color: #f5f5f5;
  padding: 0;
  font-family: var(--font-primary);
}

.footer_content {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer_left {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_logo {
  width: 25rem;
}

.footer_social_block {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer_socials {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
  margin-bottom: 0.8rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.footer_socials img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer_socials img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.footer_copyright {
  font-size: 1.4rem;
  margin: 0;
}

.footer_right {
  max-width: 45%;
  font-size: 1.4rem;
  line-height: 1.7;
}

.footer_heading {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.footer_address a {
  color: #f5f5f5;
  text-decoration: underline;
}

/* ---------------------------
  Donate Section Styling
---------------------------- */
.donate {
  padding-top: clamp(2rem, 1.5625vw, 10rem);
  display: grid;
  grid-template-columns: 46% 27% 27%;
  color: white;
  font-family: var(--font-primary);
}

.donate_box_1 {
  background: #CAD8DB;
  padding: clamp(3rem, 2.34375vw, 15rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: clamp(8rem, 6.25vw, 40rem) !important;
}

.donate_1_heading {
  font-size: clamp(2.4rem, 1.875vw, 12rem);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 1.171875vw, 7.5rem);
   color:  #252422;
}

.donate_word {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
  font-size: clamp(5.3rem, 4.140625vw, 26.5rem);
  background: #C74A9B;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #C74A9B;
}

.donate_box_1 p {
  color:  #252422;
  font-size: clamp(1.8rem, 1.40625vw, 9rem);
  line-height: 1.7;
}

.donate_1_footer {
  display: flex;
  gap: clamp(2rem, 1.5625vw, 10rem);
  align-items: flex-start;
  margin-top: clamp(2rem, 1.5625vw, 10rem);
   color:  #252422;
}


.donate_1_footer_p{
  font-size: clamp(1.2rem, 0.9375vw, 6rem) !important;
  max-width: 90%;
}

.donate_1_footer button {
  color: #C74A9B;
  border: clamp(1px, 0.078125vw, 5px) solid #C74A9B;
  padding: clamp(1rem, 0.78125vw, 5rem) clamp(2.5rem, 1.953125vw, 12.5rem);
  border-radius: clamp(0.6rem, 0.46875vw, 3rem);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-primary);
  background-color: transparent;
  white-space: nowrap;
}

.donate_box_2,
.donate_box_3 {
  padding: clamp(2rem, 1.5625vw, 10rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.donate_box_2 {
  background-color: var(--primary-color-3);
  color: white;
}

.donate_box_3 {
  background-color: var(--primary-color-2);
  color: white;
}

.donate_box_2:hover,
.donate_box_3:hover {
  color: #252422;
  background-image: linear-gradient(1.46deg, #e4e5dc 100%, #eee5c8 10%);
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.donate_box_2:hover img,
.donate_box_3:hover img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(9%) saturate(1740%) hue-rotate(2deg) brightness(97%) contrast(90%);
}

.donate_box_2 img,
.donate_box_3 img {
  width: clamp(80px, 6.25vw, 400px);
  margin: 0 auto clamp(1rem, 0.78125vw, 5rem);
}

.donate_box_2 h4,
.donate_box_3 h4 {
  font-size: clamp(2.5rem, 1.953125vw, 12.5rem);
  margin: clamp(0.5rem, 0.390625vw, 2.5rem) 0;
  font-family: var(--font-primary);
}

.donate_box_2 p,
.donate_box_3 p {
  font-size: clamp(1.87rem, 1.4609375vw, 9.35rem);
  line-height: 1.6;
}

/* ---------------------------
  Responsive Design
---------------------------- */
@media (max-width: 1080px) {
  .footer_content{
    padding: 15rem 2rem;
  }
}
/* Tablet and below (up to 1024px) */
@media (max-width: 1024px) {
  .navbar_container {
    padding: 0 4rem;
  }

  .navbar_links {
    gap: 4rem;
    font-size: 1.1rem;
  }

  .footer_content {
    padding: 12rem 1.5rem;
    gap: 2.5rem;
  }

  .footer_logo {
    width: 22rem;
  }

  .footer_right {
    max-width: 60%;
  }

  .donate {
    grid-template-columns: 1fr;
    height: auto;
    padding: 1.5rem;
  }

  .donate_box_1,
  .donate_box_2,
  .donate_box_3 {
    padding: 2.5rem !important;
    text-align: center;
  }

  .donate_1_footer {
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .navbar_container {
    justify-content: space-between;
    padding: 0 2rem;
  }

  .navbar_links {
    position: fixed;
    top: 8rem;
    right: 0;
    height: calc(100vh - 8rem);
    width: 80%;
    max-width: 40rem;
    background-color: var(--standard-section-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 2.5rem;
    box-shadow: -0.2rem 0 0.5rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .navbar_links.active {
    transform: translateX(0);
  }

  .navbar_links li a {
    font-size: 2rem;
  }

  /* Mobile dropdown styles */
  .dropdown_menu {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin: 1rem 0 0 2rem;
    min-width: auto;
    width: calc(100% - 2rem);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .dropdown_toggle::after {
    display: none;
  }

  .dropdown_menu li a {
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
    color: #444;
  }

  .navbar_search {
    font-size: 2.4rem;
  }

  .navbar_toggle {
    display: flex;
  }

  .navbar_logo img {
    height: 8rem;
    margin-left: 0;
  }

  .footer_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .footer_left {
    flex-direction: column;
    align-items: center;
  }

  .footer_social_block {
    align-items: center;
    margin-top: 2rem;
  }

  .footer_right {
    max-width: 100%;
  }

  .donate {
    padding: 1rem;
  }

  .donate_box_1,
  .donate_box_2,
  .donate_box_3 {
    padding: 2rem !important;
    text-align: center;
  }

  .donate_1_heading {
    font-size: 2.2rem;
  }

  .donate_word {
    font-size: 4.5rem;
  }

  .donate_1_footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .donate_box_2 h4,
  .donate_box_3 h4 {
    font-size: 2.2rem;
  }

  .donate_box_2 p,
  .donate_box_3 p {
    font-size: 1.6rem;
  }
}

/* Mobile Small (up to 480px) */
@media (max-width: 480px) {
  .navbar_container {
    padding: 0 1.5rem;
  }

  .navbar_logo img {
    height: 7rem;
  }

  .navbar_links {
    width: 100%;
    max-width: none;
    padding: 2rem 1.5rem;
  }

  .navbar_links li a {
    font-size: 1.8rem;
  }

  .navbar_search img {
    width: 2rem;
    height: 2rem;
  }

  .footer_logo {
    width: 20rem;
  }

  .footer_socials img {
    width: 38px;
    height: 38px;
  }

  .footer_copyright,
  .footer_right {
    font-size: 1.3rem;
  }

  .donate_box_1,
  .donate_box_2,
  .donate_box_3 {
    padding: 1.5rem !important;
    text-align: center;
  }

  .donate_1_heading {
    font-size: 2rem;
  }

  .donate_word {
    font-size: 3.5rem;
  }

  .donate_box_1 p {
    font-size: 1.3rem;
  }

  .donate_1_footer button {
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
  }

  .donate_box_2 img,
  .donate_box_3 img {
    width: 60px;
  }

  .donate_box_2 h4,
  .donate_box_3 h4 {
    font-size: 2rem;
  }

  .donate_box_2 p,
  .donate_box_3 p {
    font-size: 1.4rem;
  }
}

/* Mobile Extra Small (up to 360px) */
@media (max-width: 360px) {
  .navbar_container {
    padding: 0 1rem;
  }

  .navbar_logo img {
    height: 6rem;
  }

  .navbar_links {
    padding: 1.5rem 1rem;
  }

  .navbar_links li a {
    font-size: 1.6rem;
  }

  .navbar_toggle {
    width: 2rem;
    height: 1.6rem;
  }

  .navbar_toggle .bar {
    height: 0.2rem;
  }

  .footer_content {
    padding: 1.5rem 0.8rem;
    gap: 1.5rem;
  }

  .footer_logo {
    width: 18rem;
  }

  .footer_socials img {
    width: 35px;
    height: 35px;
  }

  .footer_copyright,
  .footer_right {
    font-size: 1.2rem;
  }

  .donate {
    padding: 0.8rem;
  }

  .donate_box_1,
  .donate_box_2,
  .donate_box_3 {
    padding: 1.2rem !important;
    text-align: center;
  }

  .donate_1_heading {
    font-size: 1.8rem;
  }

  .donate_word {
    font-size: 3rem;
  }

  .donate_box_1 p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .donate_1_footer button {
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
  }

  .donate_box_2 img,
  .donate_box_3 img {
    width: 50px;
  }

  .donate_box_2 h4,
  .donate_box_3 h4 {
    font-size: 1.8rem;
  }

  .donate_box_2 p,
  .donate_box_3 p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}