@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* ===================
   CSS Variables (Modern)
====================== */
:root {
  --color-primary: #00CDE5;
  --color-primary-hover: #1CB9C8;
  --color-secondary: #241E5E;
  --color-secondary-hover: #0049D0;
  --color-text: #757F95;
  --color-heading: #241E5E;
  --color-bg-light: #F2FCFE;
  --color-white: #ffffff;
  
  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Roboto', sans-serif;
  
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(0, 205, 229, 0.15);
  --transition-standard: all 0.3s ease-in-out;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 20px;
  --radius-pill: 50px;
}

/* ===================
   General CSS
====================== */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-secondary);
  display: inline-block;
  text-decoration: none;
  transition: var(--transition-standard);
  outline: none;
}

a:hover, a:focus {
  color: var(--color-secondary-hover);
}

ul { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  margin: 0;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 { font-size: 40px; }
h2 { font-size: 35px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin: 0; }

img {
  max-width: 100%;
  height: auto;
  transition: var(--transition-standard);
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

::selection {
  background: var(--color-secondary);
  color: var(--color-white);
}

::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/* ===================
   Preloader
====================== */
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader span {
  border-radius: 50%;
  border: 5px solid var(--color-primary);
  margin: 10px;
}

.loader span:nth-child(1) { animation: loader .6s ease-in-out alternate infinite; }
.loader span:nth-child(2) { animation: loader .6s ease-in-out alternate .2s infinite; }
.loader span:nth-child(3) { animation: loader .6s ease-in-out alternate .4s infinite; }

@keyframes loader {
  100% { transform: scale(2); }
}

/* ===================
   Theme Default Utilities
====================== */
.ovrflow-hidden { overflow: hidden; }
.text-right { text-align: right; }
.space-between { display: flex; justify-content: space-between; align-items: center; }
.c-pd { padding: 0 7rem; }
.s-pd { padding: 0 12rem; }
.h-100 { height: 100%; }
.h-100vh { height: 100vh; }
.bg { background: var(--color-bg-light); }
.pos-rel { position: relative; z-index: 1; }

/* Margin & Padding Condensed */
.pb-140 { padding-bottom: 140px; } .pd-50 { padding: 50px 0; } .py-120 { padding: 120px 0; } 
.pt-120 { padding-top: 120px; } .pb-120 { padding-bottom: 120px; }
.pt-0{padding-top:0;} .pt-10{padding-top:10px;} .pt-20{padding-top:20px;} .pt-30{padding-top:30px;} .pt-40{padding-top:40px;} .pt-50{padding-top:50px;} .pt-60{padding-top:60px;} .pt-70{padding-top:70px;} .pt-80{padding-top:80px;} .pt-90{padding-top:90px;} .pt-100{padding-top:100px;}
.pb-0{padding-bottom:0;} .pb-10{padding-bottom:10px;} .pb-20{padding-bottom:20px;} .pb-30{padding-bottom:30px;} .pb-40{padding-bottom:40px;} .pb-50{padding-bottom:50px;} .pb-60{padding-bottom:60px;} .pb-70{padding-bottom:70px;} .pb-80{padding-bottom:80px;} .pb-90{padding-bottom:90px;} .pb-100{padding-bottom:100px;}
.mt-0{margin-top:0;} .mt-10{margin-top:10px;} .mt-20{margin-top:20px;} .mt-30{margin-top:30px;} .mt-40{margin-top:40px;} .mt-50{margin-top:50px;} .mt-60{margin-top:60px;} .mt-70{margin-top:70px;} .mt-80{margin-top:80px;} .mt-90{margin-top:90px;} .mt-100{margin-top:100px;}
.mb-0{margin-bottom:0;} .mb-10{margin-bottom:10px;} .mb-20{margin-bottom:20px;} .mb-30{margin-bottom:30px;} .mb-40{margin-bottom:40px;} .mb-50{margin-bottom:50px;} .mb-60{margin-bottom:60px;} .mb-70{margin-bottom:70px;} .mb-80{margin-bottom:80px;} .mb-90{margin-bottom:90px;} .mb-100{margin-bottom:100px;}
.mr-300 { margin-right: 300px; } .ml-300 { margin-left: 300px; }

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl { max-width: 1185px; }
}

/* ===================
   Site Title CSS
====================== */
.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-title-tagline i { margin-right: 5px; }

.site-title {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 48px;
  color: var(--color-heading);
  margin-top: 10px;
  margin-bottom: 0;
}

.site-title span { color: var(--color-primary); }
.site-heading p { margin-top: 15px; }

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  border-radius: var(--radius-pill);
  background-color: var(--color-primary);
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--color-white);
  animation: heading-move 5s infinite linear;
}

@keyframes heading-move {
  0% { transform: translateX(-1px); }
  50% { transform: translateX(85px); }
  100% { transform: translateX(-1px); }
}

@media all and (max-width: 992px) {
  .shadow-title { font-size: 100px; }
}

/* ===================
   Buttons
====================== */
.theme-btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 22px;
  transition: var(--transition-standard);
  text-transform: uppercase;
  position: relative;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--color-primary);
  box-shadow: 0 3px 15px rgba(0, 205, 229, 0.3);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover { color: var(--color-white); box-shadow: var(--shadow-hover); }
.theme-btn:hover::before { transform: translate(-50%, -50%) scale(1); }
.theme-btn i { margin-left: 10px; }

.theme-btn2 { background: var(--color-secondary); box-shadow: 0 3px 15px rgba(36, 30, 94, 0.3); }
.theme-btn2::before { background: var(--color-primary); }

.border-btn {
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-secondary);
  background: transparent;
  transition: var(--transition-standard);
}

.border-btn:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.border-btn i { margin-left: 8px; }

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  background: #147bbf;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: var(--transition-standard);
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top { bottom: 100px; }
}

/* ===================
   Header & Nav
====================== */
.header-top { background: #00a0d6; padding: 8px 0; position: relative; z-index: 2; }
.header-top-wrapper { display: flex; align-items: center; justify-content: space-between; }
.header-top-contact ul { display: flex; align-items: center; gap: 25px; }
.header-top-contact ul li { display: flex; align-items: center; gap: 10px; }
.header-top-contact-icon { width: 45px; height: 45px; line-height: 41px; background: var(--color-white); border-radius: 50%; text-align: center; }
.header-top-contact-icon img { width: 24px; }
.header-top-contact-info h6 { color: var(--color-white); font-size: 18px; }
.header-top-contact ul li p, .header-top-contact ul li a { color: var(--color-white); font-weight: 400; font-size: 17px; }
.header-top-contact ul li a i { color: #fdffff; margin-right: 5px; }

.header-top-right { display: flex; align-items: center; gap: 15px; }
.header-top-social span { color: var(--color-white); margin-right: 2px; }
.header-top-social a {
  width: 36px; height: 36px; line-height: 36px; margin-left: 5px; border-radius: 50%;
  font-size: 16px; text-align: center; transition: var(--transition-standard); color: var(--color-white);
}
.header-top-social a:hover { background: var(--color-primary); }

.header-phone { display: flex; align-items: center; gap: 15px; }
.header-phone-content span { display: block; margin-bottom: 13px; line-height: .6; color: var(--color-secondary); font-weight: 500; }
.header-phone-icon { width: 50px; height: 50px; line-height: 50px; background: var(--color-white); border-radius: 50%; text-align: center; }
.header-phone-icon img { width: 27px; }
.header-phone-number { font-size: 20px; line-height: 1; }
.header-phone-number a { color: var(--color-white); }

@media all and (max-width: 1199px) {
  .header-top-account { display: none; }
  .header-top::before { width: 320px; }
  .header-top-contact ul { gap: 10px; }
  .header-top-social a { width: 34px; height: 34px; line-height: 37px; margin-left: 0; }
  .header-top-left { margin-right: 5px; }
}
@media all and (max-width: 992px) { .header-top { display: none; } }

/* Bootstrap Nav Overrides */
.navbar { background: var(--color-white); padding: 0; z-index: 999; }
.navbar.fixed-top { box-shadow: var(--shadow-soft); animation: slide-down 0.7s; }
.navbar.fixed-top .nav-item .nav-link, .navbar.fixed-top .header-nav-link { color: var(--color-secondary); }
.navbar.fixed-top .header-nav-link:hover { color: var(--color-primary); }
.navbar.fixed-top .nav-item .nav-link.active, .navbar.fixed-top .nav-item:hover .nav-link { color: #f36621; }

@keyframes slide-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.navbar .navbar-brand .logo-display { display: block; }
.navbar .navbar-brand .logo-scrolled { display: none; }
.navbar.fixed-top .navbar-brand .logo-display { display: none; }
.navbar.fixed-top .navbar-brand .logo-scrolled { display: block; }

.navbar-toggler:focus { outline: none; box-shadow: none; }
.navbar-brand { margin-right: 0; }
.navbar-brand img { width: 82px; }

/* Desktop Menu */
@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 25px; padding: 30px 0; font-size: 18px; font-weight: 600;
    color: var(--color-secondary); text-transform: capitalize; position: relative;
  }
  .navbar .nav-item:last-child .nav-link { margin-right: 0; }
  
  .navbar .nav-item .dropdown-menu {
    display: block; opacity: 0; visibility: hidden; transition: .3s; margin-top: 0;
    padding: 8px; border: none; left: -15px; border-radius: var(--radius-md);
    background: var(--color-white); width: 220px; box-shadow: var(--shadow-soft);
  }
  .navbar .nav-item .dropdown-menu li { border-bottom: 1px solid #eee; }
  .navbar .nav-item .dropdown-menu li:last-child { border-bottom: none; }
  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 18px; font-weight: 500; padding: 10px 0 10px 20px; color: var(--color-secondary);
    position: relative; text-transform: capitalize; transition: var(--transition-standard); z-index: 1;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover { background: transparent; color: var(--color-primary); padding-left: 30px; }
  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//"; position: absolute; left: 15px; top: 10px; color: var(--color-primary);
    opacity: 0; visibility: hidden; transition: var(--transition-standard); z-index: -1;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before { opacity: 1; visibility: visible; }
  
  .navbar .nav-item .nav-link::before {
    content: ""; height: 2px; width: 0; background: var(--color-primary);
    position: absolute; bottom: 27px; left: 0; border-radius: var(--radius-pill); transition: var(--transition-standard); z-index: 1;
  }
  .navbar .nav-item .nav-link.active::before, .navbar .nav-item:hover .nav-link::before { width: 20px; }
  .navbar .nav-item .nav-link.active, .navbar .nav-item:hover .nav-link { color: #f36621; }
  
  .navbar .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; top: 100%; transform: rotateX(0deg); }
  .navbar .dropdown-menu-end { right: 0; left: auto; }
  
  .header-nav-right { display: flex; align-items: center; justify-content: center; gap: 15px; margin-left: 30px; }
  .header-nav-link { position: relative; width: 45px; height: 45px; line-height: 45px; color: var(--color-secondary); display: flex; align-items: center; justify-content: center; }
  .header-nav-link:hover { color: var(--color-primary); }
  #main_nav { justify-content: flex-end; }
}

/* Dropdown toggler */
.dropdown-toggle::after {
  display: inline-block; margin-left: 5px; vertical-align: baseline; font-family: 'Font Awesome 6 Pro';
  content: "\f107"; font-weight: 600; border: none; font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-right { display: none; }
@media all and (max-width: 991px) {
  .navbar { top: 0; right: 0; left: 0; position: fixed; }
  .navbar-brand { padding-left: 10px; }
  .navbar-brand img { width: 60px; }
  .navbar-collapse { max-height: 220px; overflow-y: auto; padding: 0 20px; background-color: var(--color-white); }
  .dropdown-toggle::after { float: right; }
  .navbar .nav-item .nav-link { color: var(--color-secondary); font-weight: 700; transition: var(--transition-standard); }
  .navbar .nav-item .nav-link:hover { color: var(--color-primary) !important; }
  .navbar-toggler { padding: 0; border: none; }
  .mobile-menu-right { display: flex; align-items: center; }
  .mobile-menu-link { font-size: 20px; color: var(--color-secondary); font-weight: 500; padding-right: 20px; margin-bottom: 0px; position: relative; }
  .navbar-toggler-btn-icon { font-size: 25px; color: var(--color-secondary); font-weight: 500; }
  .navbar .dropdown-menu { border-radius: 8px; }
  .header-nav-right { display: none; }
}

/* Multi level dropdown menu */
.navbar .nav-item .dropdown-submenu { position: relative; }
.navbar .nav-item .dropdown-submenu .dropdown-menu::before { display: none; }
.navbar .nav-item .dropdown-submenu a::after { transform: rotate(-90deg); position: absolute; right: 15px; top: 12px; font-weight: 600; }
.navbar .nav-item .dropdown-submenu a:hover { background: transparent; color: var(--color-white); }
.navbar .nav-item .dropdown-submenu .dropdown-menu { top: 120%; left: 100%; opacity: 0; visibility: hidden; }
.navbar .nav-item .dropdown-submenu:hover .dropdown-menu { top: 0; opacity: 1; visibility: visible; }

/* ===================
   Search Popup
====================== */
.search-popup {
  position: fixed; left: 0; top: 0; height: 100vh; width: 100%; z-index: 99999;
  margin-top: -540px; transform: translateY(-100%); background-color: rgba(0, 0, 0, .8);
  transition: all 1.5s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.search-active .search-popup { transform: translateY(0%); margin-top: 0; }
.search-popup .close-search {
  position: absolute; left: 0; right: 0; top: 75%; border: none; margin: -200px auto 0;
  border-radius: 50%; background: var(--color-primary); width: 50px; height: 50px;
  color: var(--color-white); font-size: 20px; cursor: pointer; transition: all 500ms ease; opacity: 0; visibility: hidden;
}
.search-active .search-popup .close-search { visibility: visible; opacity: 1; top: 50%; transition-delay: 1.5s; }
.search-popup form {
  position: absolute; max-width: 700px; top: 50%; left: 15px; right: 15px;
  margin: -35px auto 0; transform: scaleX(0); transition: all 300ms ease;
}
.search-active .search-popup form { transform: scaleX(1); transition-delay: 1.2s; }
.search-popup .form-group input[type="text"], .search-popup .form-group input[type="search"] {
  width: 100%; height: 60px; outline: none; border-radius: 12px; border: none; padding: 0 100px 0 35px;
}
.search-popup .form-group button {
  position: absolute; right: 5px; top: 5px; border-radius: 12px; background: var(--color-primary);
  color: var(--color-white) !important; height: 50px; width: 50px; border: none; cursor: pointer;
}

/* ===================
   Hero Section
====================== */
.hero-section { position: relative; }
.hero-single {
  padding: 360px 0; background-position: center !important; background-size: cover !important;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.hero-single::before {
  content: ""; position: absolute; width: 100%; height: 100%; left: -0.5px; top: 0; z-index: -1;
}
.hero-single .hero-content .hero-title { color: var(--color-white); font-size: 65px; font-weight: 700; margin: 20px 0; text-transform: capitalize; }
.hero-single .hero-content .hero-title span { color: var(--color-primary); }
.hero-single .hero-content .hero-sub-title {
  color: var(--color-white); font-size: 18px; letter-spacing: 2px; background: var(--color-primary);
  border-radius: var(--radius-pill); padding: 8px 15px; position: relative; font-weight: 600; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px;
}
.hero-single .hero-content p { color: var(--color-white); line-height: 30px; font-weight: 600; margin-bottom: 35px; }
.hero-single .hero-content .hero-btn { display: flex; gap: 1rem; }

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white); font-size: 30px; height: 55px; width: 55px; border-radius: 50%;
  background: rgba(0,0,0,0.3); line-height: 55px; transition: var(--transition-standard);
}
.hero-slider.owl-theme .owl-nav [class*=owl-]:hover { background: var(--color-primary); }

@media all and (max-width: 1199px) { .hero-single .hero-content .hero-title { font-size: 37px; } }
@media all and (max-width: 767px) { .hero-img { display: none; } }

/* ===================
   Play Button Animation
====================== */
.play-btn {
  display: inline-block; height: 75px; width: 75px; line-height: 75px; font-size: 20px;
  text-align: center; background: #1CB9C8; color: var(--color-white) !important; position: absolute; border-radius: 50%; z-index: 1;
}
.play-btn i::after {
  content: ""; position: absolute; height: 100%; width: 100%; top: 0; left: 0; z-index: -1;
  background-color: #1CB9C8; border-radius: 50%; animation: ripple-wave 1s linear infinite;
}
@keyframes ripple-wave {
  0% { opacity: 0.8; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(2); }
}

/* ===================
   Components & Cards (Services, Blogs, Portfolios, etc)
====================== */
.category-area { padding: 20px 0; background: var(--color-primary); }
.category-item { text-align: center; }
.category-icon { transition: var(--transition-standard); }
.category-item:hover .category-icon { transform: translateY(-5px); }
.category-title { margin-top: 10px; color: var(--color-white); letter-spacing: 1.5px; }

/* Bento style bases for all cards */
.service-item, .donation-item, .feature-item, .living-option-item, .stories-item, .career-single-item, .team-item, .blog-item {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-standard);
  position: relative;
  z-index: 1;
}

.service-item:hover, .feature-item:hover, .living-option-item:hover, .stories-item:hover, .team-item:hover, .blog-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.service-item { padding: 50px 40px 30px; text-align: center; }
.service-icon {
  background: var(--color-primary); width: 100px; height: 100px; line-height: 98px; border-radius: var(--radius-lg);
  margin: 0 auto 40px auto; position: relative; box-shadow: var(--shadow-soft);
}
.service-icon::before {
  content: ""; position: absolute; width: 100%; height: 100%; left: 0; top: 0;
  background: var(--color-primary); border-radius: var(--radius-lg); transform: rotate(20deg);
  transition: var(--transition-standard); opacity: .15;
}
.service-item:hover .service-icon::before { transform: rotate(135deg); }
.service-title { font-size: 24px; margin-bottom: 15px; }
.service-arrow a {
  width: 50px; height: 50px; line-height: 51px; background: var(--color-primary); color: var(--color-white);
  font-size: 22px; text-align: center; border-radius: 50%; box-shadow: var(--shadow-soft);
}
.service-arrow a:hover { background: var(--color-secondary); }

/* Unified Image rounding inside cards */
.donation-img img, .living-option-img img, .stories-img img, .portfolio-img img, .blog-item-img img, .about-img img {
  border-radius: var(--radius-xl);
  width: 100%;
}
.donation-img, .blog-item-img { overflow: hidden; border-radius: var(--radius-xl); }
.donation-item:hover .donation-img img, .blog-item:hover .blog-item-img img, .portfolio-item:hover .portfolio-img img { transform: scale(1.1); }

.donation-item { padding: 25px; background: var(--color-bg-light); }
.donation-title, .blog-title, .living-option-content h4 { font-size: 24px; margin-bottom: 10px; transition: var(--transition-standard); }
.donation-title a:hover, .blog-title a:hover, .living-option-content h4 a:hover { color: var(--color-primary); }

/* Progress Bar */
.progress-box { position: relative; margin: 30px 0 15px; }
.progress-percent {
  position: absolute; background: var(--color-primary); color: var(--color-white);
  padding: 0 8px; right: 0; top: -38px; border-radius: var(--radius-md); font-weight: 700;
}
.progress-box .progress {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); height: 16px; padding: 4px;
  border-radius: var(--radius-pill); background-color: var(--color-white); border: 1px solid #D5E0F5;
}
.progress-box .progress .progress-bar { background: var(--color-primary); border-radius: var(--radius-pill); }

/* Forms & Inputs */
.donation-form .form-control, .contact-form .form-control, .quote-content .form-control, .subscribe-form .form-control, .login-form .form-control {
  height: 60px; border-radius: var(--radius-md); border: 1px solid transparent; padding-left: 20px;
  background: var(--color-bg-light); box-shadow: none; transition: var(--transition-standard); color: var(--color-text);
}
.donation-form .form-control:focus, .contact-form .form-control:focus, .login-form .form-control:focus { border-color: var(--color-primary); background: var(--color-white); }
textarea.form-control { height: 150px !important; padding-top: 15px; resize: vertical; }

.quick-donation { background: var(--color-primary); padding: 50px 0; }
.quick-donation h3 { color: var(--color-white); font-size: 35px; }

/* Portfolio / Gallery Overlay */
.portfolio-content, .gallery-content { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.portfolio-content::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-xl); background-color: var(--color-primary);
  opacity: 0; visibility: hidden; transition: var(--transition-standard);
}
.portfolio-content:hover::before { opacity: 0.8; visibility: visible; }
.portfolio-link, .gallery-link {
  width: 75px; height: 75px; background: var(--color-white); display: flex; align-items: center; justify-content: center;
  position: absolute; left: 50%; top: 50%; border-radius: 50%; color: var(--color-primary);
  transform: translate(-50%, -40%); opacity: 0; visibility: hidden; transition: var(--transition-standard); font-size: 28px;
}
.portfolio-content:hover .portfolio-link { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }

/* Team Cards */
.team-item { padding: 20px; }
.team-img {
  border: 8px solid var(--color-primary); border-top-color: transparent; border-right-color: transparent;
  padding: 10px; height: 380px !important; transition: var(--transition-standard); border-radius: 50%;
}
.team-item:hover .team-img { transform: rotate(-45deg); }
.team-img img { border-radius: 50%; }

/* FAQ Accordion */
.faq-area .accordion-item { border: none; margin-bottom: 25px; border-radius: var(--radius-md) !important; box-shadow: var(--shadow-soft); }
.accordion-button { border-radius: 0px !important; background: transparent; font-weight: 600; font-size: 20px; color: var(--color-heading); box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--color-primary); border-bottom: 1px dashed var(--color-primary); }

/* Breadcrumbs */
.site-breadcrumb {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  position: relative; padding: 100px 0; z-index: 1; background-size: cover; background-position: center;
}
.site-breadcrumb::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .6); z-index: -1; }
.site-breadcrumb .breadcrumb-title { font-size: 38px; color: var(--color-white); font-weight: 700; }

/* Widgets / Sidebar */
.widget { background: var(--color-white); padding: 30px; margin-bottom: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.widget .widget-title { padding-bottom: 10px; margin-bottom: 30px; position: relative; font-size: 25px; color: var(--color-heading); }
.widget .widget-title::before { content: ''; position: absolute; width: 15px; border-bottom: 3px solid var(--color-primary); bottom: 0; left: 0; }
.widget .widget-title::after { content: ''; position: absolute; width: 30px; border-bottom: 3px solid var(--color-primary); bottom: 0; left: 22px; }

/* Footer */
.footer-area { background: #055284; position: relative; overflow: hidden; z-index: 1; padding-top: 80px;}
.footer-widget-title { color: var(--color-white); position: relative; padding-bottom: 20px; margin-bottom: 30px; font-size: 22px; }
.footer-widget-title::before { content: ''; position: absolute; width: 90px; height: 3px; border-radius: var(--radius-pill); background: var(--color-primary); bottom: 0; left: 0; z-index: -1; }
.footer-list { display: flex; flex-direction: column; gap: .8rem; }
.footer-list li a { color: var(--color-white); transition: var(--transition-standard); }
.footer-list li a:hover { padding-left: 10px; color: var(--color-primary); }
.copyright { padding: 20px 0; background: #292367; }