/* Centered Donate Button in Header */
.tp-donate-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}
.tp-donate-btn {
    background: #f7c873;
    color: #073B4A;
    font-weight: 700;
    font-size: 1.1em;
    padding: 12px 32px;
    border-radius: 32px;
    border: none;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(7,59,74,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin: 0 24px;
    letter-spacing: 0.5px;
}
.tp-donate-btn:hover {
    background: #ffd966;
    color: #073B4A;
    box-shadow: 0 4px 16px rgba(7,59,74,0.18);
}
/* Remove bullets from main menu and dropdowns */
.tp-navbar-menu,
.tp-navbar-menu ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}
/* Login box padding fix */
.login-box, .admin-login-box, .auth-box {
    padding: 32px 32px 24px 32px !important;
    box-sizing: border-box;
}
/* Footer styling */
.tp-footer {
    height: 80px; /* Increase as needed */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px; /* Optional: adds space from the left edge */
    background: #f8f8f8; /* Optional: footer background */
}
.tp-footer-inner {
    text-align: left;
    width: 100%;
}
/* Remove shadow from Support Our Programs section */
div, section {
    box-shadow: none !important;
}

/* --- Monetary Donations Section Content --- */
.monetary-donations-container {
background: #fff;
color: #222;
padding: 32px 24px;
border-radius: 8px;
box-shadow: none !important;
max-width: 900px;
margin: 30px auto 40px 30px !important; /* 30px top, auto right, 40px bottom, 30px left */
}

.monetary-donations-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #073B4A;
}
.monetary-donations-container p {
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: #222;
}
/* --- Force Navbar Logo and Menu Spacing --- */
.tp-logo img {
  margin: 20px 0 0 20px !important;
}
.tp-navbar-link {
  margin: 0 16px !important;
}
.tp-logo img {
  display: block;
  max-height: 68px;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
}
/* --- 3x2 Placeholder Grid Styles --- */
.tp-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 0 24px;
}
.tp-placeholder-item {
  background: #f7c873;
  color: #073B4A;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 2px 8px rgba(7,59,74,0.07);
  text-align: center;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .tp-placeholder-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .tp-placeholder-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}
/* --- End Placeholder Grid Styles --- */
/* --- Modern Responsive Navbar Styles --- */
.tp-navbar {
  width: 100%;
  background: #073B4A;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(7,59,74,0.07);
  padding-top: 0;
}
.tp-navbar-container {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 32px 0 0; /* 0 top, 32px right, 0 bottom, 0 left */
  height: 92px;
  min-height: 92px;
  position: relative;
  background: none;
  color: inherit;
}
.tp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: static;
  /* Margin removed here, set on img below */
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.tp-logo img {
  display: block;
  height: 68px;
  width: 128px;
  object-fit: contain;
  margin: 20px 0 0 20px; /* 20px top, 0 right, 0 bottom, 20px left */
}
.tp-navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 10px 0 0 0 !important;
}
.tp-navbar-item {
  position: relative;
}
.tp-navbar-link {
  display: block;
  padding: 10px 18px;
  margin: 0 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.tp-navbar-link:hover,
.tp-navbar-dropdown-link:hover {
  background: #12667a;
  color: #fff;
}
.tp-navbar-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #073B4A;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  z-index: 1001;
}
.tp-navbar-dropdown:hover > .tp-navbar-dropdown-menu,
.tp-navbar-dropdown:focus-within > .tp-navbar-dropdown-menu,
.tp-navbar-dropdown.tp-open > .tp-navbar-dropdown-menu {
  display: block;
}
.tp-navbar-dropdown-link {
  display: block;
  padding: 0.85rem 1.25rem;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  background: none;
  transition: background 0.2s;
}
/* Hamburger menu styles */
.tp-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1rem;
}
.tp-navbar-toggle-icon {
  width: 28px;
  height: 3px;
  background: #fff;
  display: block;
  position: relative;
}
.tp-navbar-toggle-icon::before,
.tp-navbar-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.2s;
}
.tp-navbar-toggle-icon::before {
  top: -9px;
}
.tp-navbar-toggle-icon::after {
  top: 9px;
}
@media (max-width: 900px) {
  .tp-navbar-container {
    flex-direction: row;
    height: 56px;
  }
  .tp-navbar-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #073B4A;
    flex-direction: column;
    display: none;
  }
  .tp-navbar-menu.tp-open {
    display: flex;
  }
  .tp-navbar-item {
    width: 100%;
  }
  .tp-navbar-link {
    padding: 1rem 2rem;
  }
  .tp-navbar-toggle {
    display: block;
  }
  .tp-navbar-dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 100%;
    background: #073B4A;
  }
}
/* --- End Navbar Styles --- */
/* Reset and Base Styles */
/* ---* {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}--- */

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

#wrap_all {
    margin: 0;
    padding: 0;
}

/* Header Bar */
#header-bar {
    width: 100%;
    background: #073B4A;
    box-shadow: 0 2px 8px rgba(7,59,74,0.07);
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}
#header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 92px;
}
/* ...existing code... */
/* ...existing code... */

/* Avada Layout System */
.av-layout-grid-container {
    width: 100%;
    table-layout: fixed;
    display: table;
    border-top-style: none;
    border-top-width: 0px;
}

.flex_cell {
    display: table-cell;
    vertical-align: middle;
}

.flex_cell_inner {
    display: block;
    position: relative;
}

.container_wrap {
    position: relative;
}

.fullsize {
    width: 100%;
}

/* Cell Sizing */
.av_one_third {
    width: 33.33%;
}

.av_two_third {
    width: 66.67%;
}

.av_one_fourth {
    width: 25%;
}

.av_three_fourth {
    width: 75%;
}

.av_two_fifth {
   box-shadow: 0 2px 8px rgba(0,0,0,1);
}

.av_three_fifth {
    width: 60%;
}

.no_margin {
    margin: 0;
}

/* Hero Section */
.footer_color {
    background-color: #073b4a;
    color: white;
    min-height: 100vh;
    position: relative;
}

.arrow-slide {
    background: url('yellow.png') 0% 50px no-repeat fixed;
    background-size: contain;
    vertical-align: bottom;
    position: relative;
    margin-top: 30px;
}

.flex_cell.av_two_third {
    padding: 80px 150px 120px 40px;
    vertical-align: middle;
}

/* Logo */
.logo-container {
    margin-bottom: 80px;
}

.logo-container img {
    display: block;
    width: 180px;
    height: auto;
}

/* Hero Content */
.hero-content h1 {
    color: #ffffff;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 300;
}

.subheading {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-text {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* Donate Button */
.donate-button-container {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
    text-align: center;
    padding: 0 !important;
}

.avia-button {
    background-color: #f7b622;
    border: none;
    color: #111;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    max-width: 900px;
    padding: 32px 0;
    font-size: 2rem;
    margin: 0 auto !important;
    display: block;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    box-shadow: none;
}

.avia-button:hover {
    background-color: #eda926;
    color: #073B4A;
    transition: all 0.2s ease-in-out;
}

.avia_iconbox_title {
    position: relative;
    z-index: 3;
}

/* Contact Info Grid */
.contact-info-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.contact-info-grid .flex_column {
    flex: 1;
    background: #073B4A;
    border-radius: 6px;
    box-shadow: none !important;
}

.contact-info-grid h3 {
    color: #ffffff;
    font-size: 18px;
    text-transform: lowercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-grid p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-grid a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info-grid a:hover {
    text-decoration: underline;
}

/* Donation Section */
.main_color {
    background-color: #ffffff;
    color: #333;
    min-height: 620px;
    position: relative;
}

.donation-arrow-cell {
    background: url('blue.png') 0% 50px no-repeat fixed;
    background-size: contain;
    height: 620px;
    min-height: 620px;
    vertical-align: middle;
    margin-top: 30px;
}

.flex_cell.av_three_fourth {
    padding: 30px;
    vertical-align: top;
    height: 620px;
    min-height: 620px;
}

/* Donation Content Grid */
.donation-content-grid {
    display: flex;
    gap: 40px;
    height: 100%;
    align-items: flex-start;
    padding-top: 30px;
}

.donation-content-grid .flex_column {
    flex: 1;
}

.donation-content-grid h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.donation-content-grid p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Item Donations Section */
.item-donations {
    margin-top: 50px; /* 30px existing + 20px extra space above */
    padding-top: 20px;
    padding-left: 0;
    margin-left: 30px !important;
}

.item-donations h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.item-donations p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.donation-columns {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.donation-column {
    flex: 1;
}

.donation-column h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.donation-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-column li {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px !important;
}

.donation-column li:before {
    content: "•";
    color: #222;
    font-weight: bold;
    position: absolute;
    left: 12px;
    margin-right: 0;
}

/* Donorbox Widget */
.donorbox-widget {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donorbox-widget iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer */
.tp-footer {
    background: #073B4A;
    color: #EDAA1E;
    text-align: center;
    padding: 24px 0 16px 0;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    margin-top: 40px;
}

.tp-footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media only screen and (max-width: 989px) {
    .flex_cell.av_two_third {
        padding: 60px 40px 80px 30px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }
    
    .subheading {
        font-size: 24px;
    }
    
    .hero-text {
        font-size: 20px;
    }
    
    .contact-info-grid {
        flex-direction: column;
        gap: 30px;
    }

    .donation-content-grid h2 {
        font-size: 30px;
    }

    .donation-content-grid p {
        font-size: 16px;
    }

    .item-donations h2 {
        font-size: 30px;
    }

    .item-donations p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .av-layout-grid-container {
        display: block;
    }
    
    .flex_cell {
        display: block;
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .arrow-slide {
        display: none;
    }
    
    .donation-arrow-cell {
        display: none;
    }
    
    .flex_cell.av_two_third {
        padding: 30px 20px;
    }
    
    .flex_cell.av_three_fourth {
        padding: 30px 20px;
        height: auto;
    }
    
    .donation-content-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .donation-columns {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .subheading {
        font-size: 20px;
    }
    
    .hero-text {
        font-size: 18px;
    }

    .donation-content-grid h2 {
        font-size: 28px;
    }

    .donation-content-grid p {
        font-size: 16px;
    }

    .item-donations h2 {
        font-size: 28px;
    }

    .item-donations p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .subheading {
        font-size: 18px;
    }
    
    .hero-text {
        font-size: 16px;
    }

    .donation-content-grid h2 {
        font-size: 24px;
    }

    .donation-content-grid p {
        font-size: 15px;
    }

    .item-donations h2 {
        font-size: 24px;
    }

    .item-donations p {
        font-size: 15px;
    }
}
	.flex_column.av_two_fifth a,
	.flex_column.av_two_fifth a:visited,
	.flex_column.av_two_fifth a:active,
	.flex_column.av_two_fifth a:hover,
	.flex_column.av_two_fifth a:focus {
		color: #fff !important;
		text-decoration: underline; /* optional, for visibility */
}