/*B5v2.1 082025*/
/* --- 1. Global & Root --- */
@import url(https://fonts.bunny.net/css?family=lora:400,400i,700,700i|nunito-sans:400,400i,700,700i);
:root {
  --white: #FFFFFF;
  --black: #000000;
  --light: #F0ECE2;
  --dark: #212529;
  --primary: #AD4200;
  --secondary: #032044;
  --success: #f1f5f7;
  --danger: #7A0F00;
  --warning: #ffd1a3;
  --info: #e6e6e6;
}
*{ box-sizing: border-box; }
html, body { background-color: var(--white); font-family: 'Nunito Sans', sans-serif; font-size: 16px; font-weight: 400; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none !important; }
a:hover { color: var(--primary); }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-2 { font-family: 'Lora', serif;}
ul { list-style: none; margin: 0; padding: 0; }
p { color: var(--black); line-height: 25px; }
img { max-width: 100%; height: auto; }
ul.square-list { margin-inline-start: 20px; }
ul.square-list > li { list-style-type: square; }
.object-fit-cover { width: 100%; height: 100%; object-fit: cover; }
:focus-visible { outline: 2px dashed var(--primary); outline-offset: 1px; }
.offscreen { position: absolute; height: 1px; width: 1px; overflow: hidden; clip-path: inset(1px 1px 1px 1px); }
.skip-to-content.offscreen:focus { position: relative; display: inline; }
legend { font-size: 16px; margin-top: 15px; }
.form-group { margin-bottom: 15px !important; }

/* --- 2. Utilities --- */
.bg-dark { background-color: var(--black) !important; color: var(--white) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-info { background-color: var(--info) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-black { background-color: var(--black) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }
.text-dark { color: var(--dark) !important; }
.text-light { color: var(--light) !important; }
.text-white { color: var(--white) !important; }
.text-black { color: var(--black) !important; }
.border-primary { border-color: var(--primary) !important; }
.border-secondary { border-color: var(--secondary) !important; }
.border-success { border-color: var(--success) !important; }
.border-danger { border-color: var(--danger) !important; }
.border-warning { border-color: var(--warning) !important; }
.border-info { border-color: var(--info) !important; }
.border-dark { border-color: var(--dark) !important; }
.border-light { border-color: var(--light) !important; }
.border-white { border-color: var(--white) !important; }
.border-black { border-color: var(--black) !important; }

/* --- 3. Header (Revised for Flexible Height) --- */
.background-header { position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 100; transition: all .5s ease; }
.header-area { background-color: var(--white); position: relative; transition: all .5s ease; z-index: 100; }
.header-area .main-nav { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; }
.header-area .main-nav .logo { flex-shrink: 0; }
.header-area .main-nav a.logo > img { display: block; height: 30px; width: auto; }
.header-area .main-nav .nav { display: none; align-items: center; gap: 15px; }
.header-area .main-nav .nav li a { display: block; color: var(--primary); font-size: 15px; font-weight: 700; padding: 10px 0; transition: all 0.3s ease; }
.header-area .main-nav .nav li:hover a, .header-area .main-nav .nav li a.active { color: var(--danger) !important; }
.background-header .main-nav .nav li:hover a, .background-header .main-nav .nav li a.active { color: var(--primary) !important; }
.header-area .main-nav .nav li.has-sub { position: relative; padding-right: 15px; }
.header-area .main-nav .nav li.has-sub:after { color: var(--white); content: "\f107"; font-family: FontAwesome; font-size: 12px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.header-area .main-nav .nav li.has-sub:hover ul.sub-menu { opacity: 1; transform: translateY(0); visibility: visible; z-index: 1; }
.header-area .main-nav .nav li.has-sub ul.sub-menu { background: var(--white); box-shadow: 0 2px 28px rgba(0,0,0,.06); opacity: 0; position: absolute; top: 100%; transform: translateY(1em); transition: all .3s; visibility: hidden; width: 200px; }
.header-area .main-nav .nav li.has-sub ul.sub-menu li a { color: var(--black) !important; font-size: 13px; font-weight: 400; padding: 10px 20px; border-bottom: 1px solid var(--info); }
.header-area .main-nav .nav li.has-sub ul li a:hover { background: var(--success); color: var(--primary) !important; padding-left: 25px; }
.header-area .main-nav .menu-trigger { cursor: pointer; display: block; height: 40px; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); text-indent: -9999em; width: 32px; z-index: 99; }
.header-area .main-nav .menu-trigger span, .header-area .main-nav .menu-trigger span:before, .header-area .main-nav .menu-trigger span:after { background-color: var(--black); display: block; height: 2px; position: absolute; transition: all 0.4s; width: 30px; }
.header-area .main-nav .menu-trigger span:before, .header-area .main-nav .menu-trigger span:after { content: ""; }
.header-area .main-nav .menu-trigger span { top: 16px; }
.header-area .main-nav .menu-trigger span:before { top: -10px; transform-origin: 33% 100%; }
.header-area .main-nav .menu-trigger span:after { top: 10px; transform-origin: 33% 0; }
.header-area .main-nav .menu-trigger.active span { background-color: transparent; }
.header-area .main-nav .menu-trigger.active span:before { background-color: var(--black); transform: translateY(6px) translateX(1px) rotate(45deg); }
.header-area .main-nav .menu-trigger.active span:after { background-color: var(--black); transform: translateY(-6px) translateX(1px) rotate(-45deg); }
.sub-header {font-size:.84rem;background-color:var(--secondary);color:var(--white);border-bottom:2px solid var(--primary)!important;}

/* --- 4. Page Sections & Components --- */
section.heading-page, section.landing-header, section.donor-header {  }
section.heading-page {  }
section.landing-header {  }
section.donor-header { }
section.heading-page h6, section.heading-page .h6, section.landing-header h6, section.landing-header .h6, section.donor-header h6, section.donor-header .h6 { }
section.heading-page h2, section.heading-page .h2, section.landing-header h2, section.landing-header .h2, section.donor-header h2, section.donor-header .h2 {  }
section.landing-page, section.donor-page, section.downloads-page { padding-top: 30px; padding-bottom: 0; }
.main-banner { position: relative; max-height: 600px; overflow: hidden; background-color: var(--black); height: calc(100vh - 41px); }
#bg-video { width: 100%; height: 600px; z-index: 0; overflow: hidden; }
.owl-main.owl-carousel .owl-item img { width: 100%; height: 600px; object-fit: cover; }
.video-overlay { background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%); position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.main-banner .caption { max-width: 425px; background-color: var(--light); z-index: 2; pointer-events: all; text-align: left; color: var(--dark) !important; }
.services { margin-top: -135px; position: absolute; width: 100%; }
.services .item { background: var(--primary); background-position: center; background-repeat: no-repeat; background-size: cover; border-radius: 20px; color: var(--white); padding: 40px; text-align: center; }
.services .item .icon { margin: 0 auto; max-width: 100px; }
.services .item p { color: var(--white); font-size: 13px; }
.services .item p.h4 > a { color: var(--white); font-size: 18px; font-weight: 700; margin: 25px 0 15px; }
.owl-custom-nav .owl-nav { display: none; }
.owl-custom-nav .owl-nav .owl-prev span, .owl-custom-nav .owl-nav .owl-next span { opacity: 0; }
.owl-custom-nav .owl-nav .owl-prev, .owl-custom-nav .owl-nav .owl-next { position: absolute; top: 50%; transform: translateY(-50%); outline: none; transition: opacity .5s; }
.owl-custom-nav .owl-nav .owl-prev:before, .owl-custom-nav .owl-nav .owl-next:before { background-color: var(--white); border-radius: 50%; color: var(--black); display: inline-block; font-family: 'FontAwesome'; font-size: 25px; font-weight: 700; height: 50px; line-height: 50px; width: 50px; }
.owl-custom-nav .owl-nav .owl-prev:hover, .owl-custom-nav .owl-nav .owl-next:hover { opacity: 0.9; }
.owl-custom-nav .owl-nav .owl-prev { left: -80px; }
.owl-custom-nav .owl-nav .owl-prev:before { content: '\f104'; }
.owl-custom-nav .owl-nav .owl-next { right: -85px; }
.owl-custom-nav .owl-nav .owl-next:before { content: '\f105'; }
.image-extend-right-wrapper { width: 100%; }
.image-extend-right-wrapper img { width: 100%; height: auto; display: block; }
.society-section { background-color:var(--light) }
/* --- Custom List Styling (Orange Carets) --- */
ul.list-caret { list-style: none; padding-left: 0; }
ul.list-caret li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--dark); line-height: 1.5; }
ul.list-caret li::before { content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--primary); position: absolute; left: 0; top: 4px; font-size: 1rem; }

/* --- Minimalist Tabs (Orange Line Style) --- */
.nav-tabs-minimal { border-bottom: 2px solid var(--info); gap: 1rem; }
.nav-tabs-minimal .nav-link { border: none; border-bottom: 3px solid transparent; color: var(--secondary); font-weight: 700; font-family: 'Nunito Sans', sans-serif; padding: 0.75rem 0.5rem; background: transparent; transition: all 0.3s ease; }
.nav-tabs-minimal .nav-link:hover { color: var(--primary); border-color: rgba(173, 66, 0, 0.3); }
.nav-tabs-minimal .nav-link.active { color: var(--primary); border-bottom: 3px solid var(--primary); background-color: transparent; }
/* --- Framed Section Styles --- */
.framed-section { border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); background-color: var(--white); }
.framed-box { background-color: var(--light); border-left: 1px solid var(--primary); border-right: 1px solid var(--primary); padding: 4rem 2rem; width: 100%; height: 100%; }

/* --- Sidebar Callout (Quote Box) --- */
/* --- Sidebar Callout (Orange Background, Centered) --- */
.sidebar-callout { background-color: var(--primary); color: var(--white); border: none; padding: 3rem 2rem; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.sidebar-callout blockquote { font-family: 'Lora', serif; font-style: italic; font-size: 1.25rem; color: var(--white) !important; margin: 0; border: none; line-height: 1.6; }
/* --- What Matters Section --- */
.matters-card { background: var(--white); border: 1px solid var(--info); height: 100%; padding: 1.5rem 1rem; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; text-align: center; }
.matters-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--primary); }
.matters-card img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 1rem; border-bottom: 3px solid var(--light); }
.matters-card h3 { color: var(--primary); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.75rem; min-height: 2.5em; display: flex; align-items: center; justify-content: center; }
.matters-card p { font-size: 0.9rem; line-height: 1.4; color: var(--secondary); margin: 0; }
.contact-us {background-color:var(--light);border-top:1px solid var(--primary);border-bottom:1px solid var(--primary);}
section.upcoming-how-to-give { background-color: var(--white); }
section.upcoming-how-to-give .categories { background-color: var(--white); margin-right: 45px; padding: 40px; }
section.upcoming-how-to-give .categories h3 { border-bottom: 1px solid var(--light); color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 30px; padding-bottom: 20px; }
.give-item { margin-bottom: 30px; border: 1px solid transparent;  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);background-color:var(--success);border-radius:0;transition: all 0.3s ease;}
.give-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--primary); }
.give-title span { font-weight: 700; font-size: 12px; margin-bottom: 15px; color: var(--secondary); text-transform: uppercase; }
.give-item .down-content { padding: 2em; position: relative; z-index: 2; height: 100%; }
.give-icon { width: 50px; margin-bottom: 15px; opacity: 1; transition: all .5s; }
svg.give-icon { fill: var(--primary) !important; color: var(--primary) !important; }
.give-item:hover svg.give-icon {fill: var(--secondary) !important; color: var(--secondary) !important;}
/* Fix for Stretched Link erasing the arrow */
.give-item .btn.stretched-link { position: static; } /* This makes the card relative, btn static */
.give-item .btn.stretched-link::after { position: relative; z-index: 2; width: auto; height: auto; background: transparent; transform: none; content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 0.3rem; transition: 0.5s ease-out; inset: auto; }
.give-item .btn.stretched-link:hover::after { transform: translateX(0.2rem); }
.give-item .down-content { position: relative; }
.give-item .btn.stretched-link::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: auto; background-color: transparent; }
.give-item .btn.stretched-link::after { position: relative !important; inset: auto !important; z-index: 2; content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 0.3rem; transition: 0.5s ease-out; width: auto; height: auto; background-color: transparent; transform: none; }
.give-item .btn.stretched-link:hover::after { transform: translateX(0.2rem); }
.our-courses .item .down-content { background-color: var(--white); height: 100%; }
.our-courses .item .down-content h3.h4 { border-bottom: 1px solid var(--light); color: var(--primary); font-size: 18px; padding: 25px; text-align: center; font-weight: 700; }
.our-courses .item .down-content .info { padding: 25px; }
.our-courses .item .down-content .info ul li { display: inline-block; margin-right: 1px; }
.our-courses .item .down-content .info ul li i { color: var(--primary); font-size: 14px; }
.our-courses .item .down-content .info span { color: var(--primary); display: inline-block; font-size: 15px; font-weight: 700; text-align: right; width: 100%; }
.our-courses .owl-dots { display: inline-block; margin-top: 40px; text-align: center; width: 100%; }
/* Touch target fix (2026-07-11): the visible dot stays the same 7px circle /
   24x8 active pill it always was, via ::before - but the clickable <button>
   itself is now a full 24x24px box (WCAG 2.5.8 minimum target size), instead
   of the button's own hit area being only as big as the tiny visible dot. */
.our-courses .owl-dots .owl-dot { position: relative; display: inline-block; width: 24px; height: 24px; margin: 0; padding: 0; background: none; outline: none; vertical-align: middle; }
.our-courses .owl-dots .owl-dot::before { content: ""; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background-color: var(--primary); transition: all .5s; }
.our-courses .owl-dots .owl-dot.active::before { border-radius: 4px; width: 24px; height: 8px; margin: -4px 0 0 -12px; }
.owl-courses-item .owl-stage { display: flex; } .owl-courses-item .owl-item { display: flex; flex: 1 0 auto; } .owl-courses-item .card { width: 100%; height: 100%; }
.services .owl-stage, #donors .owl-stage { display: flex; }
.services .owl-item, #donors .owl-item { display: flex; align-items: stretch; }
.services .item, #donors .item { height: 100%; }
.donors-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.donor-controls { display: flex; align-items: center; gap: 10px; }
.donor-controls .custom-nav-btn { background: none; border: none; color: var(--info); font-size: 24px; cursor: pointer; padding: 5px; line-height: 1; }
.donor-controls .custom-nav-btn:hover { color: var(--dark); }
.donor-controls .owl-stop-button { width: 40px; height: 40px; background-color: var(--info); border: none; border-radius: 50%; color: var(--dark); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color .3s; }
.donor-controls .owl-stop-button:hover { background-color: #ddd; }
#donors .card {border-radius: 0;}
section.contact-us #contact input:not([type='submit']) { background-color: var(--white); border: none; height: 40px; margin-bottom: 10px; outline: none; padding: 0px 15px; width: 100%; }
section.contact-us #contact textarea { background-color: var(--white); border: none; border-radius: 20px; color: #7a7a7a; font-size: 13px; margin-bottom: 30px; max-height: 180px; min-height: 140px; outline: none; padding: 15px; width: 100%; }
section.contact-us #contact button { background-color: var(--primary); border: none; color: var(--white); display: inline-block; font-size: 13px; font-weight: 700; outline: none; padding: 12px 30px; transition: all .3s; }
section.contact-us #contact button:hover { opacity: 0.9; }
section.contact-us .right-info-2 { background-color: var(--white); z-index: 2; pointer-events: all; text-align: left; color: var(--dark) !important; }
.contact-image { max-width: 125px; margin-bottom: 1em; }
#radio1, #radio2, #radio3 { height: 15px !important; display: inline-block; width: auto !important; margin-bottom: 0 !important; }
#contactForm label, label { display: inline-block !important; }
._checkbox-radio { display: flex; }
._checkbox-radio input { width: 15px !important; height: 15px !important; }
/* --- Donor Image Ratio (4:3) --- */
.donor-image-wrapper { width: 100%; aspect-ratio: 4 / 3; position: relative; overflow: hidden; background-color: var(--light);border-radius:0 }
.donor-image-wrapper img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: transform 0.5s ease; border-radius:0}
/* Zoom effect on hover */
.item.card:hover .donor-image-wrapper img { transform: scale(1.1); }
#donors .card { border: 1px solid var(--info); box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); transition: all 0.3s ease; border-radius: 0;}
#donors .card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--primary); }

/* --- 5. Buttons --- */
.btn.btn-primary { background-color: transparent; border: none; padding: 0 0 2px 0; box-shadow: none; color: var(--primary); font-weight: 900; font-size: 18.7px; text-decoration: none; display: inline-flex; align-items: center; transition: color 0.5s ease-out, background-size 0.5s ease-out; background-image: linear-gradient(var(--dark), var(--dark)), linear-gradient(var(--warning), var(--warning)); background-size: 0% 2px, 100% 2px; background-repeat: no-repeat; background-position: 0 100%; }
.btn.btn-primary:hover, .btn.btn-primary:focus { color: var(--danger); background-color: transparent; border-color: transparent; box-shadow: none; text-decoration: none; background-size: 100% 2px, 100% 1px; }
.btn.btn-primary:focus-visible { outline: 0.5rem solid #27829E; outline-offset: 0.625rem; }
.btn.btn-primary:after { display: inline-block; font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f0da"; color: inherit; margin-left: 0.3rem; transition: 0.5s ease-out; text-decoration: none; line-height: 1; }
.btn.btn-primary:hover:after, .btn.btn-primary:focus:after { color: inherit; transform: translatex(0.2rem); text-decoration: none; }
.btn.btn-primary:disabled, .btn.btn-primary.disabled { background-color: transparent; border-color: transparent; color: var(--primary); opacity: 0.65; background-image: none; }
/* --- 6. Footer --- */
.footer-section { font-size: .75rem; padding: 1rem; }

/* --- 7. Media Queries --- */
@media (max-width: 991px) { .mobile-top-fix { margin-top: 30px; } .mobile-bottom-fix { margin-bottom: 30px; } .mobile-bottom-fix-big { margin-bottom: 60px; } .h-100 { height: auto !important; } .main-banner .caption h2 { font-size: 22px; margin-bottom: 10px; margin-top: 10px; } .services { margin-top: -135px; } section.upcoming-how-to-give { padding: 20px 0 0; } section.upcoming-how-to-give .categories { margin: 0 0 30px; } section.contact-us #contact { margin-bottom: 30px; } section.society-section { padding: 30px 0; } section.our-courses, section.contact-us { padding-top: 30px; padding-bottom: 20px; } }
@media (max-width: 767px) { .header-area { padding: 0 15px; } .header-area .main-nav .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); } .header-area .main-nav .nav li { width: 100%; padding: 0 !important; border-bottom: 1px solid var(--info); } .header-area .main-nav .nav li:first-child { border-top: 1px solid var(--info); } .header-area .main-nav .nav li a { color: var(--dark) !important; padding: 15px 20px !important; height: auto !important; line-height: normal !important; } .header-area .main-nav .nav li a:hover { background: var(--success) !important; color: var(--primary) !important; } .header-area .main-nav .nav li.has-sub ul.sub-menu { display: none; } .display-2 { font-size: calc(1.2rem + 1.9vw); } .donor-controls { display: none; } }
@media (min-width: 768px) { .header-area .main-nav .nav { display: flex !important; } .header-area .main-nav .menu-trigger { display: none !important; } .owl-nav { display: none; } }
@media (min-width: 992px) { .image-extend-right-wrapper { width: calc(100% + 100px); } .image-extend-right-wrapper img { max-width: none; } .header-area .main-nav a.logo > img { height: 60px;} }
@media (min-width: 1006px) { .owl-custom-nav .owl-nav { display: block !important; } }

/* --- 8. Print Styles --- */
@media print {
  .print-logo { height: 75px; width: auto; margin: 0; }
  .print-header-text { font-size: 11px; align-self: center; }
  body, p, blockquote { font-size: 13px; line-height: 18px; }
  h1, .h1 { font-size: 28px; }
  h2, .h2 { font-size: 21px; }
  h3, .h3 { font-size: 18px; }
  h4, .h4 { font-size: 16px; }
  h5, .h5 { font-size: 14px; }
  h6, .h6 { font-size: 12px; }
  .mb-3 { margin-bottom: 10px !important; }
  .container { width: 100% !important; max-width: 100% !important; }
  .footer-section, .header-area, .sub-header, section.heading-page { display: none !important; }
  footer .btn { display: none !important; }
  html { height: 100%; }
  body { display: flex; flex-direction: column; min-height: 100%; }
  main { flex: 1 0 auto; }
  footer { flex-shrink: 0; padding-top: 2em; }
  footer .container, footer p { margin: 0 !important; padding: 0 !important; }
}
@page { size: 8.5in 11in; margin: .5in; }