@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'),
    url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'),
    url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'),
    url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'),
    url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #0ea5e9;
  --secondary-color: #22c55e;
  --section-bg-color: #f0f8ff;
  --site-footer-bg-color: #0f172a;
  --custom-btn-bg-color: #0ea5e9;
  --custom-btn-bg-hover-color: #22c55e;
  --dark-color: #0f172a;
  --p-color: #475569;
  --border-color: #e2e8f0;

  /* New gradient variables */
  --accent-gradient: linear-gradient(135deg, #0ea5e9, #22c55e);
  --accent-gradient-reverse: linear-gradient(135deg, #22c55e, #0ea5e9);
  --dark-gradient: linear-gradient(135deg, #0f172a, #1e293b);
  --hero-gradient: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(34, 197, 94, 0.8));
  --card-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
  --card-shadow-hover: 0 20px 60px rgba(14, 165, 233, 0.25);
  --glow-primary: 0 0 30px rgba(14, 165, 233, 0.4);
  --glow-secondary: 0 0 30px rgba(34, 197, 94, 0.4);

  --body-font-family: 'Metropolis', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 17px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 24px;
  --border-radius-small: 12px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

/* Gradient text utility */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphism utility */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fade-in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
  line-height: 1.1;
}

h2 {
  color: var(--dark-color);
  font-size: var(--h2-font-size);
  letter-spacing: -1.5px;
}

h2.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.7;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.cursor {
  cursor: pointer;
}

/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-bg {
  background-color: var(--section-bg-color);
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.7));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay+.container {
  position: relative;
}

/* Decorative blobs for sections */
.section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.section-blob-1 {
  background: var(--primary-color);
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.section-blob-2 {
  background: var(--secondary-color);
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -80px;
}


/*---------------------------------------
  CUSTOM BLOCK - PREMIUM CARDS
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-block-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.custom-block-wrap:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

.custom-block-wrap:hover::before {
  transform: scaleX(1);
}

.custom-block-body {
  padding: 35px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-block-wrap:hover .custom-block-image {
  transform: scale(1.05);
}

.custom-block {
  position: relative;
  overflow: hidden;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
  background: var(--accent-gradient);
  border: none;
  position: relative;
  overflow: hidden;
}

.custom-block .custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.custom-block .custom-btn:hover::before {
  left: 100%;
}


/*---------------------------------------
  IMPACT SECTION
-----------------------------------------*/
#section_3 .row>[class*="col-lg-4"] {
  display: flex;
}

#section_3 .custom-block-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#section_3 .custom-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#section_3 .custom-block-body {
  flex: 1;
}

#section_3 .custom-block-image {
  height: 280px;
}

#section_3 .event-read-more,
#impact_items .event-read-more {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 10px;
  transition: color 0.3s;
  cursor: pointer;
}

#section_3 .event-read-more:hover,
#impact_items .event-read-more:hover {
  color: var(--secondary-color);
}

.impact-cost {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.impact-toggle-btn {
  background: var(--accent-gradient);
  border: none;
  padding: 12px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.impact-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

/* Impact items without image */
.custom-block-no-image {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.custom-block-no-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
}

.custom-block-no-image .custom-block-body {
  padding: 30px;
}

.custom-block-no-image h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.custom-block-no-image p {
  color: var(--p-color);
  margin-bottom: 0;
}

/* Impact Page */
#impact_items .row>[class*="col-lg-4"],
#impact_items .row>[class*="col-md-6"] {
  display: flex;
}

#impact_items .custom-block-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#impact_items .custom-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#impact_items .custom-block-body {
  flex: 1;
}

#impact_items .custom-block-image {
  height: 280px;
}


/*---------------------------------------
  NEWS SECTION
-----------------------------------------*/
#news_section .news-item {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: all 0.3s ease;
}

#news_section .news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
}

#news_section .news-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-small);
}

#news_section .news-item-content {
  padding: 0 10px;
}

#news_section .news-item-no-image .news-item-content {
  padding: 10px 20px;
}

#news_section .news-date {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

#news_section .news-title {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

#news_section .news-description {
  color: var(--p-color);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#news_section .news-description.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

#news_section .news-read-more {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
  cursor: pointer;
}

#news_section .news-read-more:hover {
  color: var(--secondary-color);
}

@media (max-width: 767px) {
  #news_section .news-item-content {
    padding: 15px 0 0 0;
  }

  #news_section .news-item-no-image .news-item-content {
    padding: 10px 0;
  }
}


/*---------------------------------------
  DONATE MODAL
-----------------------------------------*/
.donate-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.donate-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.donate-modal-close:hover {
  opacity: 1;
}

.donate-modal-body {
  padding: 40px 35px 35px;
  max-height: 85vh;
  overflow-y: auto;
}

.donate-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.donate-modal-header h3 {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.donate-modal-header p {
  color: var(--p-color);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Amount Section */
.donate-amount-section {
  margin-bottom: 30px;
}

.donate-amount-label {
  display: block;
  text-align: center;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Quick Amount Buttons */
.donate-quick-amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.donate-quick-btn {
  flex: 1;
  max-width: 90px;
  padding: 10px 0;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--white-color);
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-quick-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.donate-quick-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--white-color);
}

/* Custom Amount Input */
.donate-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.donate-input-wrap:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.donate-currency {
  padding: 14px 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
  background: var(--section-bg-color);
  border-right: 2px solid var(--border-color);
  line-height: 1;
}

.donate-amount-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  background: transparent;
  -moz-appearance: textfield;
}

.donate-amount-input::-webkit-outer-spin-button,
.donate-amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Action Buttons */
.donate-actions {
  display: flex;
  gap: 12px;
}

.donate-cancel-btn {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: var(--white-color);
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-cancel-btn:hover {
  border-color: var(--dark-color);
  background: var(--section-bg-color);
}

.donate-paypal-btn {
  flex: 2;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: var(--dark-color);
  color: var(--white-color);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-paypal-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  transform: translateY(-1px);
}

/* Donor Information Section */
.donate-info-section {
  margin-bottom: 20px;
}

.donate-fields-row {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.donate-fields-row .donate-field {
  flex: 1;
  margin-bottom: 0;
}

.donate-field {
  margin-bottom: 15px;
}

.donate-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.donate-field .required {
  color: #ef4444;
}

.donate-field .optional {
  font-weight: 400;
  color: var(--p-color);
  font-size: 0.85rem;
}

.donate-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--dark-color);
  background: var(--white-color);
  transition: all 0.3s ease;
}

.donate-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.donate-input::placeholder {
  color: #94a3b8;
}

.donate-input.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.donate-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Responsive */
@media screen and (max-width: 480px) {
  .donate-modal-body {
    padding: 30px 20px 25px;
  }

  .donate-modal-header h3 {
    font-size: 1.4rem;
  }

  .donate-quick-amounts {
    gap: 6px;
  }

  .donate-quick-btn {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .donate-actions {
    flex-direction: column;
  }

  .donate-cancel-btn,
  .donate-paypal-btn {
    flex: unset;
    width: 100%;
  }

  .donate-fields-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .donate-field {
    margin-bottom: 10px;
  }

  .donate-input {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .donate-info-section {
    margin-bottom: 15px;
  }
}


/*---------------------------------------
  PROGRESS BAR - GRADIENT
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 8px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.progress-bar {
  background: var(--accent-gradient);
  border-radius: var(--border-radius-large);
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX - PREMIUM
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.custom-text-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.custom-text-box:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-5px);
}

.custom-text-box:hover::after {
  transform: scaleX(1);
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--card-shadow);
  transition: all 0.5s;
}

.custom-text-box-image:hover {
  transform: scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.custom-text-box-icon {
  background: var(--accent-gradient);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 32px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON - PREMIUM
-----------------------------------------*/
.custom-btn {
  background: var(--accent-gradient);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.custom-btn:hover::before {
  left: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--white-color);
  margin-top: 8px;
  padding: 12px 28px;
  background: var(--accent-gradient);
}

.custom-btn:hover {
  background: var(--accent-gradient-reverse);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--white-color);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}


/*---------------------------------------
  NAVIGATION - PREMIUM
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 99;
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.4s;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}

.logo {
  height: auto;
  max-height: 70px;
  width: auto;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.02);
}

/* Logo responsive */
@media (max-width: 991px) {
  .logo {
    max-height: 55px;
  }
}

@media (max-width: 767px) {
  .logo {
    max-height: 45px;
  }
}

@media (max-width: 575px) {
  .logo {
    max-height: 40px;
  }
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 22px 18px;
  font-weight: 500;
  position: relative;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 0;
  border-radius: var(--border-radius-small);
  max-width: 50px;
  padding: 10px 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding: 10px 20px;
  transition: all 0.3s;
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 10px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: var(--section-bg-color);
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER - PREMIUM
-----------------------------------------*/
.site-header {
  background: var(--dark-gradient);
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--copyright-font-size);
}

.site-header p a:hover {
  color: var(--secondary-color);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-right: 8px;
  border-radius: 50%;
  transition: all 0.3s;
}

.site-header .social-icon-link:hover {
  background: var(--accent-gradient);
  transform: translateY(-2px);
}


/*---------------------------------------
  HERO SECTION - BOLD & VIBRANT
-----------------------------------------*/
.hero-section-full-height {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section-full-height::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(34, 197, 94, 0.75) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white-color);
  font-size: 72px;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  font-weight: var(--font-weight-normal);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-large);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary {
  background: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--white-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  background: transparent;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn-secondary:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Floating decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--white-color);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--white-color);
  bottom: -80px;
  left: -80px;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.3);
  top: 30%;
  left: 10%;
  animation: float 7s ease-in-out infinite 1s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeIn 1s ease-out 1s both;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator i {
  font-size: 28px;
  margin-top: 8px;
  animation: float 2s ease-in-out infinite;
}

/* Legacy carousel styles (kept for compatibility) */
.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
  height: 100vh;
  min-height: 680px;
}

.carousel-image {
  display: block;
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
}

#hero-slide .carousel-indicators-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#hero-slide .carousel-indicators {
  margin-right: 0;
  margin-left: 22px;
  justify-content: inherit;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background: var(--accent-gradient);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 70px;
  height: 70px;
  opacity: 0;
  transition: all 0.4s;
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--glow-primary);
}


/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT - PREMIUM
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--card-shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  z-index: -1;
  transition: all 0.4s;
}

.about-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.custom-text-block {
  padding: 60px 40px;
}


/*---------------------------------------
  COUNTER NUMBERS - GRADIENT
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
  text-align: center;
}

.counter-number,
.counter-text {
  display: block;
}

.counter-number,
.counter-number-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

.counter-text {
  color: var(--p-color);
  font-size: var(--p-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}


/*---------------------------------------
  VOLUNTEER - PREMIUM GRADIENT
-----------------------------------------*/
.volunteer-section {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  position: relative;
  overflow: hidden;
}

.volunteer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.volunteer-section::after {
  content: "";
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.8), rgba(14, 165, 233, 0.4));
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 400px;
  height: 400px;
  animation: float 10s ease-in-out infinite;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}

.volunteer-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.volunteer-section .custom-block-body p {
  line-height: 1.8;
}


/*---------------------------------------
  DONATE              
-----------------------------------------*/
.donate-section {
  background-image: url('../images/different-people-doing-volunteer-work.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}


/*---------------------------------------
  ABOUT PAGE - BOARD OF TRUSTEES
-----------------------------------------*/
.about-board-section {
  background: var(--white-color);
  position: relative;
  overflow: hidden;
}

/* Large decorative gradient blob */
.board-bg-decoration {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, rgba(34, 197, 94, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Section Heading ---- */
.board-section-heading {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--dark-color);
  margin-bottom: 0;
}

.board-section-heading span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.board-heading-line {
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: var(--accent-gradient);
  margin: 18px auto 0;
}

/* ---- Chair Spotlight ---- */
.board-spotlight {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.board-spotlight-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px;
  padding: 28px 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.board-spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(34, 197, 94, 0.1));
  pointer-events: none;
}

.board-spotlight-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  filter: blur(40px);
  pointer-events: none;
}

.board-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.board-spotlight-initial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--white-color);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.board-spotlight-info {
  position: relative;
  z-index: 1;
}

.board-spotlight-name {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white-color);
  margin-bottom: 4px;
}

.board-spotlight-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
}

/* ---- Vice Chair & Treasurer ---- */
.board-exec-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.board-exec-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--section-bg-color);
  border-radius: 16px;
  padding: 22px 36px;
  border-left: 4px solid;
  border-image: var(--accent-gradient) 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  max-width: 380px;
}

.board-exec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.12);
  background: var(--white-color);
}

.board-exec-initial {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e0f2fe, #d1fae5);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.board-exec-card:hover .board-exec-initial {
  background: var(--accent-gradient);
  color: var(--white-color);
  border-radius: 50%;
}

.board-exec-name {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-color);
  margin-bottom: 2px;
}

.board-exec-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

/* ---- Divider ---- */
.board-divider {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.board-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.board-divider span {
  position: relative;
  background: var(--white-color);
  padding: 0 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--p-color);
}

/* ---- Members Grid ---- */
.board-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.board-member-bar {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 16px 20px;
  background: var(--section-bg-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: default;
  min-width: 0;
}

.board-member-bar:hover {
  background: var(--white-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.board-bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.board-bar-dot-green {
  background: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.board-bar-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark-color);
  min-width: 0;
}

.board-bar-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: 6px;
  width: 100%;
  margin-left: 22px;
}

/* ---- Representative Cards ---- */
.board-rep-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-color);
  border-radius: 14px;
  padding: 20px 24px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  grid-column: span 1;
}

.board-rep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.12);
}

.board-rep-initial {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d1fae5, #e0f2fe);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.board-rep-card:hover .board-rep-initial {
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
}

.board-rep-info {
  min-width: 0;
}

.board-rep-name {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-color);
  margin-bottom: 2px;
}

.board-rep-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Member variant (blue accent) */
.board-rep-card-member {
  border-left-color: var(--primary-color);
}

.board-rep-card-member .board-rep-initial {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: var(--primary-color);
}

.board-rep-card-member:hover .board-rep-initial {
  background: var(--primary-color);
  color: var(--white-color);
}

.board-rep-card-member:hover {
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.12);
}

.board-rep-role-member {
  color: var(--primary-color);
}

/* ---- Responsive ---- */
@media screen and (max-width: 768px) {
  .board-section-heading {
    font-size: 1.8rem;
  }

  .board-spotlight-card {
    padding: 22px 30px;
  }

  .board-spotlight-initial {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
  }

  .board-spotlight-name {
    font-size: 1.25rem;
  }

  .board-exec-card {
    padding: 18px 24px;
    max-width: 100%;
  }

  .board-member-bar {
    padding: 14px 16px;
  }
}

@media screen and (max-width: 480px) {
  .board-section-heading {
    font-size: 1.5rem;
  }

  .board-spotlight-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 14px;
  }

  .board-exec-row {
    flex-direction: column;
    align-items: center;
  }

  .board-exec-card {
    width: 100%;
  }

  .board-members-grid {
    grid-template-columns: 1fr;
  }
}


/*---------------------------------------
  CONTACT PAGE
-----------------------------------------*/
.contact-page-section {
  background: var(--section-bg-color);
}

.contact-map-section {
  line-height: 0;
}

.contact-map-section iframe {
  width: 100%;
  height: 450px;
  display: block;
}

@media screen and (max-width: 768px) {
  .contact-map-section iframe {
    height: 300px;
  }
}

/* Donate CTA */
.donate-cta-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  position: relative;
  overflow: hidden;
}

.donate-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  filter: blur(60px);
  pointer-events: none;
}

.donate-cta-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
  filter: blur(50px);
  pointer-events: none;
}

.donate-cta-icon {
  font-size: 2.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 18px;
}

.donate-cta-section h2 {
  color: var(--white-color);
  margin-bottom: 14px;
}

.donate-cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.donate-cta-btn {
  background: var(--accent-gradient);
  border: none;
  padding: 14px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 30px;
  color: var(--white-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.donate-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}


/*---------------------------------------
  HEROES PAGE - SPONSORS & FUNDRAISERS
-----------------------------------------*/
.heroes-intro {
  background: var(--section-bg-color);
}

.heroes-intro h2 {
  margin-bottom: 20px;
}

.heroes-intro p {
  color: var(--p-color);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 12px;
}

/* Sponsors Section */
.heroes-sponsors {
  background: var(--white-color);
}

/* Tier Block */
.heroes-tier {
  margin-bottom: 50px;
  text-align: center;
}

.heroes-tier:last-child {
  margin-bottom: 0;
}

.heroes-tier-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-color);
  background: var(--accent-gradient);
  padding: 10px 28px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.heroes-tier-badge-alt {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

/* Sponsor Cards (logo + name) for top tiers */
.heroes-sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.heroes-sponsor-card {
  background: var(--section-bg-color);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  min-width: 220px;
  max-width: 300px;
  flex: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.heroes-sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.heroes-sponsor-logo {
  width: 120px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
}

.heroes-sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.heroes-sponsor-card h5 {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-color);
  margin: 0;
  line-height: 1.4;
}

/* Tier Lists (simple name lists) */
.heroes-tier-list {
  background: var(--section-bg-color);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.heroes-list-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.heroes-list-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.heroes-list-columns span {
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--dark-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.heroes-list-columns span:hover {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 6px;
}

/* Platinum/Diamond tier accent */
.heroes-tier-platinum .heroes-tier-badge {
  background: linear-gradient(135deg, #0f172a, #334155);
  font-size: 1.15rem;
  padding: 12px 34px;
}

.heroes-tier-diamond .heroes-tier-badge {
  background: linear-gradient(135deg, #1e3a5f, #0ea5e9);
  font-size: 1.1rem;
}

.heroes-tier-gold .heroes-tier-badge {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.heroes-tier-silver .heroes-tier-badge {
  background: linear-gradient(135deg, #475569, #94a3b8);
}

.heroes-tier-bronze .heroes-tier-badge {
  background: linear-gradient(135deg, #92400e, #d97706);
}

/* Responsive */
@media screen and (max-width: 992px) {
  .heroes-list-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .heroes-sponsor-card {
    min-width: 180px;
  }

  .heroes-tier-list {
    padding: 20px;
  }
}

@media screen and (max-width: 576px) {

  .heroes-list-columns,
  .heroes-list-columns-3 {
    grid-template-columns: 1fr;
  }

  .heroes-sponsor-card {
    min-width: 100%;
  }

  .heroes-tier-badge {
    font-size: 0.9rem;
    padding: 8px 22px;
  }
}


/*---------------------------------------
  ABOUT PAGE - MISSION / GOALS / VISION
-----------------------------------------*/
.about-mission-section {
  background: var(--white-color);
}

.about-mission-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-mission-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.about-mission-card:hover::before {
  transform: scaleX(1);
}

.about-mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white-color);
  transition: transform 0.4s ease;
}

.about-mission-card:hover .about-mission-icon {
  transform: scale(1.1);
}

.about-mission-label {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.about-mission-card p {
  color: var(--p-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .about-mission-card {
    padding: 30px 20px;
  }
}


/*---------------------------------------
  NEWS
-----------------------------------------*/
.news-detail-header-section {
  background-image: url('../images/news/close-up-volunteer-oganizing-stuff-donation.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-detail-header-section .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  margin-top: 12px;
}

.news-detail-header-section .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.news-detail-header-section .breadcrumb-item a:hover {
  color: var(--white-color);
}

.news-detail-header-section .breadcrumb-item.active {
  color: var(--primary-color);
}

.news-detail-header-section .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.news-block {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-block:hover {
  transform: translateY(-5px);
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.news-block-top img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-block:hover .news-block-top img {
  transform: scale(1.05);
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-category-block {
  background: var(--accent-gradient);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 12px 20px;
}

.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
  font-weight: var(--font-weight-semibold);
}

.news-block-info {
  padding-top: 15px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
  transition: all 0.3s;
}

.news-block-title-link:hover {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--accent-gradient);
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 4px 12px;
}

.tags-block-link {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 18px;
  transition: all 0.3s;
}

.tags-block-link:hover {
  border-color: var(--primary-color);
  background: var(--accent-gradient);
  color: var(--white-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--section-bg-color) 0%, #e0f2fe 100%);
}

.cta-section::before {
  content: "";
  background: var(--accent-gradient);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 250px;
  height: 250px;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  background: var(--accent-gradient-reverse);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: -50px;
  margin: auto;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite reverse;
}

.cta-section h2 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section a:not(.custom-btn) {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  position: relative;
}

.cta-section a:not(.custom-btn)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.cta-section a:not(.custom-btn):hover::after {
  transform: scaleX(1);
}


/*---------------------------------------
  TESTIMONIAL CAROUSEL - PREMIUM REDESIGN
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--section-bg-color) 50%, #ffffff 100%);
}

.testimonial-section::before {
  content: "";
  background: var(--accent-gradient);
  border-radius: 50%;
  position: absolute;
  top: -150px;
  left: -100px;
  margin: auto;
  width: 400px;
  height: 400px;
  opacity: 0.08;
  animation: float 12s ease-in-out infinite;
}

.testimonial-section::after {
  content: "";
  background: var(--accent-gradient-reverse);
  border-radius: 50%;
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  opacity: 0.08;
  animation: float 10s ease-in-out infinite reverse;
}

.section-subtitle {
  color: var(--p-color);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-wrapper {
  position: relative;
  padding: 0 60px;
}

.testimonial-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 20px 0;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent-gradient);
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
}

.testimonial-quote-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 25px;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.testimonial-quote-icon i {
  font-size: 32px;
  color: var(--white-color);
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--dark-color);
  font-style: italic;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--accent-gradient) border-box;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 2px;
}

.testimonial-author-role {
  font-size: 14px;
  color: var(--p-color);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-semibold);
}

/* Navigation Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  opacity: 1;
  z-index: 10;
}

.testimonial-arrow.carousel-control-prev {
  left: 0;
}

.testimonial-arrow.carousel-control-next {
  right: 0;
}

.testimonial-arrow-icon {
  width: 55px;
  height: 55px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-arrow-icon i {
  font-size: 22px;
  color: var(--dark-color);
  transition: all 0.3s;
}

.testimonial-arrow:hover .testimonial-arrow-icon {
  background: var(--accent-gradient);
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(14, 165, 233, 0.4);
}

.testimonial-arrow:hover .testimonial-arrow-icon i {
  color: var(--white-color);
}

/* Dot Indicators */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  padding: 0;
  transition: all 0.4s;
  cursor: pointer;
}

.testimonial-indicators button:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-indicators button.active {
  background: var(--accent-gradient);
  width: 35px;
  border-radius: 20px;
}

/* Legacy testimonial styles (kept for compatibility) */
#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-inner {
  overflow: visible;
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}


/*---------------------------------------
  CONTACT - PREMIUM REDESIGN (LIGHT)
-----------------------------------------*/
.contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

/* Background Shapes */
.contact-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-bg-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 15s ease-in-out infinite;
}

.contact-bg-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: float 12s ease-in-out infinite reverse;
}

.contact-section .section-subtitle {
  color: var(--p-color);
}

/* Contact Info Card */
.contact-info-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(14, 165, 233, 0.1);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  margin-bottom: 30px;
}

.contact-avatar-wrap {
  position: relative;
}

.contact-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--accent-gradient) border-box;
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.2);
}

.contact-avatar-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid var(--white-color);
}

.contact-avatar-info h5 {
  color: var(--dark-color);
  font-size: 20px;
  margin-bottom: 4px;
}

.contact-avatar-info span {
  color: var(--p-color);
  font-size: 14px;
}

.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
}

.contact-info-icon i {
  font-size: 20px;
  color: var(--white-color);
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--p-color);
  display: block;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--dark-color);
  font-size: 16px;
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.contact-info-content p a {
  color: var(--dark-color);
  transition: all 0.3s;
}

.contact-info-content p a:hover {
  color: var(--primary-color);
}

.contact-info-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.contact-info-footer p {
  color: var(--p-color);
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-social .social-icon-link {
  background: var(--section-bg-color);
  border: 1px solid rgba(14, 165, 233, 0.15);
  color: var(--dark-color);
}

.contact-social .social-icon-link:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--white-color);
}

/* Contact Form */
.contact-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent-gradient);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h3 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.contact-form-header p {
  color: var(--p-color);
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-form .form-control {
  background: var(--section-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 18px;
  margin-bottom: 0;
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient) !important;
  border: none !important;
  border-radius: var(--border-radius-large) !important;
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: var(--font-weight-semibold) !important;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4) !important;
}

.contact-submit-btn i {
  font-size: 18px;
  transition: transform 0.3s;
}

.contact-submit-btn:hover i {
  transform: translateX(5px);
}

/* Legacy styles */
.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.contact-info i {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM FORM - PREMIUM
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 1px solid #e9ebef;
  border-radius: var(--border-radius-small);
  color: var(--dark-color);
  margin-bottom: 24px;
  padding: 15px 20px;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.custom-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency+.form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio]+.form-check-label,
.form-check-radio .form-check-input:hover+.form-check-label,
.form-check-radio .form-check-input:checked+.form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}

.custom-form button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.custom-form button[type="submit"]:hover::before {
  left: 100%;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--accent-gradient-reverse);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}


/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  background: linear-gradient(135deg, var(--section-bg-color) 0%, #e0f2fe 100%);
  border-radius: var(--border-radius-medium);
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.subscribe-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.subscribe-form h5 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER - PREMIUM REDESIGN
-----------------------------------------*/
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}

/* Footer Background Shapes */
.footer-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.footer-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  bottom: 100px;
  left: -150px;
  animation: float 15s ease-in-out infinite reverse;
}

/* Footer CTA Section */
.footer-cta {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.footer-cta-inner {
  background: var(--accent-gradient);
  border-radius: var(--border-radius-medium);
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
}

.footer-cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.footer-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.footer-cta h3 {
  color: var(--white-color);
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 10px 10px 10px 0;
}

.footer-cta-btn:first-of-type {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:first-of-type:hover {
  background: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.footer-cta-btn-outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.footer-cta-btn-outline:hover {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
  transform: translateY(-3px);
}

/* Footer Main Content */
.footer-main {
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 80px;
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social .social-icon-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 42px;
  height: 42px;
  line-height: 42px;
}

.footer-social .social-icon-link:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: translateY(-5px);
}

.footer-widget-title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  margin-right: 0;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--white-color);
  padding-left: 10px;
}

.footer-links a:hover::before {
  width: 15px;
  margin-right: 8px;
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact-list li i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-contact-list li a:hover {
  color: var(--primary-color);
}

/* Footer Newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-small);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter h6 {
  color: var(--white-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.newsletter-form {
  margin: 0;
}

.newsletter-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-large);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.newsletter-input-wrap:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: var(--white-color);
  font-size: 14px;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--border-radius-large);
  padding: 12px 20px;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.newsletter-btn i {
  font-size: 16px;
}

/* Footer Bottom */
.site-footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  padding: 25px 0;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--copyright-font-size);
  margin: 0;
}

.copyright-text a {
  color: var(--primary-color);
  transition: all 0.3s;
}

.copyright-text a:hover {
  color: var(--secondary-color);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--copyright-font-size);
  transition: all 0.3s;
}

.footer-bottom-links li a:hover {
  color: var(--primary-color);
}

/* Legacy styles */
.site-footer-title {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: var(--secondary-color);
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
  padding: 12px 24px;
}

.site-footer .custom-btn:hover {
  background: var(--accent-gradient-reverse);
  box-shadow: var(--glow-primary);
}


/*---------------------------------------
  FOOTER MENU - LEGACY
-----------------------------------------*/
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
  margin-bottom: 12px;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s;
}

.footer-menu-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s;
}

.footer-menu-link:hover {
  color: var(--white-color);
  padding-left: 5px;
}

.footer-menu-link:hover::before {
  width: 100%;
}


/*---------------------------------------
  SOCIAL ICON - PREMIUM
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 8px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 42px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-link:hover {
  background: var(--accent-gradient);
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.site-footer-bottom .social-icon-link {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer-bottom .social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}


/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }

  .volunteer-image {
    width: 350px;
    height: 350px;
  }

  .hero-content h1 {
    font-size: 82px;
  }
}

@media screen and (max-width: 1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 20px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content .hero-subtitle {
    font-size: 18px;
  }

  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }

  .hero-shape-2 {
    width: 200px;
    height: 200px;
  }

  .hero-shape-3 {
    display: none;
  }

  .carousel:hover .carousel-control-next-icon,
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::after {
    width: 250px;
    height: 250px;
  }

  .testimonial-wrapper {
    padding: 0 20px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-arrow {
    width: 45px;
    height: 45px;
  }

  .testimonial-arrow-icon {
    width: 45px;
    height: 45px;
  }

  .testimonial-arrow-icon i {
    font-size: 18px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .about-image::before {
    display: none;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number,
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .contact-info-card {
    padding: 30px;
    margin-bottom: 30px;
    height: auto;
  }

  .contact-form {
    padding: 35px;
  }

  .contact-bg-shape-1 {
    width: 300px;
    height: 300px;
  }

  .contact-bg-shape-2 {
    width: 250px;
    height: 250px;
  }

  .site-footer {
    padding-top: 0;
  }

  .footer-cta {
    padding: 40px 0;
  }

  .footer-cta-inner {
    padding: 35px;
    text-align: center;
  }

  .footer-cta h3 {
    font-size: 26px;
  }

  .footer-cta .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }

  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-widget-title {
    margin-top: 20px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
  }

  .site-footer-bottom {
    text-align: center;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 580px) {

  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 100vh;
  }

  .hero-content {
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-shape-1,
  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .testimonial-wrapper {
    padding: 0;
  }

  .testimonial-card {
    padding: 35px 20px;
    margin: 10px 0;
  }

  .testimonial-quote-icon {
    width: 55px;
    height: 55px;
    margin: -55px auto 20px;
  }

  .testimonial-quote-icon i {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author-info {
    text-align: center;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-indicators {
    margin-top: 20px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }

  .custom-block-wrap:hover {
    transform: translateY(-5px);
  }

  .custom-text-box,
  .volunteer-form {
    padding: 25px;
  }

  .contact-info-card {
    padding: 25px;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-info-header {
    flex-direction: column;
    text-align: center;
  }

  .contact-avatar-info {
    text-align: center;
  }

  .contact-info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .contact-info-icon i {
    font-size: 18px;
  }

  .contact-bg-shape-1,
  .contact-bg-shape-2 {
    width: 150px;
    height: 150px;
    opacity: 0.5;
  }

  .contact-submit-btn {
    padding: 14px 30px !important;
  }

  .footer-cta-inner {
    padding: 30px 20px;
  }

  .footer-cta h3 {
    font-size: 22px;
  }

  .footer-cta p {
    font-size: 15px;
  }

  .footer-cta-btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    margin: 8px 0;
  }

  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-newsletter {
    padding: 20px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-shape-1,
  .footer-shape-2 {
    display: none;
  }
}

/* Trust Cards */
.trust-card {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #18005d, #18005d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-card:hover::before {
  opacity: 1;
}

/* Trust Badge Styles */
.trust-badge {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trust Images */
.trust-image {
  max-width: 120px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.trust-card:hover .trust-image {
  transform: scale(1.05);
}

/* Trust Title */
.trust-title {
  color: #1f2937;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

/* Trust Arrow */
.trust-arrow {
  color: #6b7280;
  font-size: 18px;
  transition: all 0.3s ease;
}

.trust-card:hover .trust-arrow {
  color: #374151;
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .trust-card {
    margin-bottom: 1rem;
  }

  .bbb-badge,
  .homestars-badge {
    padding: 10px 16px;
    font-size: 14px;
  }

  .google-text {
    font-size: 20px;
  }

  .trust-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 2rem 1rem;
  }

  .trust-badge {
    height: 70px;
  }

  .bbb-badge,
  .homestars-badge {
    padding: 8px 12px;
  }

  .google-text {
    font-size: 18px;
  }
}

/* Call button */

#call {
  position: fixed;
  z-index: 99;
  left: 10px;
  bottom: 2px;
}

@media screen and (max-width:1920px) {
  .div-only-mobile {
    visibility: hidden
  }
}

@media screen and (max-width:906px) {
  .div-only-mobile {
    visibility: visible
  }
}

/*---------------------------------------
  LATEST EVENTS SECTION
-----------------------------------------*/
#section_events .row>[class*="col-lg-6"] {
  display: flex;
}

#section_events .custom-block-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#section_events .custom-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#section_events .custom-block-body {
  flex: 1;
}

#section_events .event-read-more {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 10px;
  transition: color 0.3s;
  cursor: pointer;
}

#section_events .event-read-more:hover {
  color: var(--secondary-color);
}

#section_events .custom-block-image {
  height: 280px;
}

/*---------------------------------------
  EVENT DETAIL PAGE
-----------------------------------------*/
#event_detail {
  background-color: var(--section-bg-color);
}

.event-detail-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.event-detail-image-wrap {
  position: relative;
  overflow: hidden;
}

.event-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.event-detail-content {
  padding: 30px;
}

.event-detail-title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 20px;
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 30px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-meta-item i {
  font-size: 20px;
  color: var(--primary-color);
}

.event-meta-item span {
  font-size: 15px;
  color: var(--p-color);
}

.event-detail-description h4 {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.event-detail-description h4:first-child {
  margin-top: 0;
}

.event-detail-description p {
  color: var(--p-color);
  line-height: 1.8;
  margin-bottom: 15px;
}

.event-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.event-highlights-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--p-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.event-highlights-list li:last-child {
  border-bottom: none;
}

.event-highlights-list li i {
  color: var(--secondary-color);
  font-size: 18px;
}

.event-detail-actions {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-detail-actions .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.event-detail-actions .btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Event Sidebar */
.event-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* Sidebar Cards */
.event-sidebar-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-sidebar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-card-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.sidebar-card-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.sidebar-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.sidebar-info-item:hover {
  background: rgba(14, 165, 233, 0.08);
}

.sidebar-info-item i {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.sidebar-info-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--p-color);
  margin-bottom: 4px;
}

.sidebar-info-item > div > span {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
}

/* Social Share Buttons */
.social-share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-share-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-medium);
  color: var(--white-color);
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-share-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.social-share-btn:hover::before {
  transform: translateX(0);
}

.social-share-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--white-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-share-btn.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5bbd);
}

.social-share-btn.twitter {
  background: linear-gradient(135deg, #1a1a1a, #000);
}

.social-share-btn.linkedin {
  background: linear-gradient(135deg, #0a66c2, #004182);
}

.social-share-btn.email {
  background: linear-gradient(135deg, var(--primary-color), #0284c7);
}

/* Other Events List */
.other-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.other-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.other-event-item:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.3);
}

.other-event-item:hover .other-event-date {
  background: var(--white-color);
}

.other-event-item:hover .other-event-date .day {
  color: var(--primary-color);
}

.other-event-item:hover .other-event-date .month {
  color: var(--dark-color);
}

.other-event-item:hover .other-event-info h6,
.other-event-item:hover .other-event-info span {
  color: var(--white-color);
}

.other-event-date {
  min-width: 58px;
  text-align: center;
  padding: 10px 8px;
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.other-event-date .day {
  display: block;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1;
}

.other-event-date .month {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: var(--p-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.other-event-info {
  flex: 1;
  min-width: 0;
}

.other-event-info h6 {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 5px;
  transition: color 0.3s ease;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other-event-info span {
  font-size: 12px;
  color: var(--p-color);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.other-event-info span i {
  margin-right: 5px;
  font-size: 12px;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.back-link i {
  font-size: 18px;
}

/* Event Detail Responsive */
@media (max-width: 1199px) {
  .event-sidebar {
    top: 90px;
  }

  .other-event-info h6 {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .event-sidebar {
    position: static;
    margin-top: 30px;
  }

  .event-detail-image {
    height: 300px;
  }

  .event-detail-title {
    font-size: 26px;
  }

  .event-detail-meta {
    gap: 15px;
  }

  /* Horizontal scroll for sidebar cards on tablet */
  .event-sidebar-cards-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .event-sidebar-cards-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .event-sidebar-cards-wrapper::-webkit-scrollbar-track {
    background: var(--section-bg-color);
    border-radius: 3px;
  }

  .event-sidebar-cards-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
  }

  .event-sidebar-cards-wrapper .event-sidebar-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .other-event-info h6 {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .event-detail-image {
    height: 220px;
  }

  .event-detail-content {
    padding: 20px;
  }

  .event-detail-title {
    font-size: 22px;
  }

  .event-detail-meta {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  .event-meta-item {
    padding: 10px;
    background: var(--white-color);
    border-radius: var(--border-radius-small);
    border-left: 3px solid var(--primary-color);
  }

  .event-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .event-detail-actions .custom-btn,
  .event-detail-actions .btn-outline-primary {
    width: 100%;
    text-align: center;
  }

  .event-sidebar-card {
    padding: 20px;
  }

  .sidebar-info-item {
    padding: 10px;
  }

  .social-share-buttons {
    justify-content: center;
  }

  .social-share-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .other-event-item {
    padding: 12px;
  }

  .other-event-date {
    min-width: 52px;
    padding: 8px 6px;
  }

  .other-event-date .day {
    font-size: 20px;
  }

  .back-link {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 480px) {
  .event-detail-image {
    height: 180px;
  }

  .event-detail-title {
    font-size: 20px;
  }

  .event-detail-description h4 {
    font-size: 18px;
  }

  .sidebar-card-title {
    font-size: 16px;
  }

  .event-highlights-list li {
    font-size: 14px;
  }
}

/*---------------------------------------
  NEWS VIEW BUTTON (News Items)
-----------------------------------------*/
.news-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: 15px;
  text-decoration: none;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.news-view-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  gap: 12px;
}

.news-view-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.news-view-btn:hover i {
  transform: translateX(3px);
}

/*---------------------------------------
  NEWS DETAIL PAGE
-----------------------------------------*/
#news_detail {
  background-color: var(--section-bg-color);
}

.news-detail-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.news-detail-image-wrap {
  position: relative;
  overflow: hidden;
}

.news-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.news-detail-content {
  padding: 30px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--p-color);
}

.news-detail-meta span i {
  color: var(--primary-color);
  font-size: 16px;
}

.news-detail-title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.3;
}

.news-detail-body {
  margin-bottom: 30px;
}

.news-detail-body p {
  color: var(--p-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.news-detail-body h4 {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.news-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.news-detail-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--p-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-detail-list li:last-child {
  border-bottom: none;
}

.news-detail-list li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

.news-detail-quote {
  background: var(--section-bg-color);
  border-left: 4px solid var(--primary-color);
  padding: 25px 30px;
  margin: 25px 0;
  border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

.news-detail-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.news-detail-quote cite {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-style: normal;
}

/* News Tags */
.news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tag-label {
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
}

.news-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--section-bg-color);
  color: var(--p-color);
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-tag:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* News Share */
.news-detail-share {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
}

.share-label {
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
}

/* News Navigation */
.news-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 20px;
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.news-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.news-nav-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.news-nav-link i {
  font-size: 18px;
}

/* News Sidebar */
.news-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.news-sidebar-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.news-sidebar-card .sidebar-card-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

/* Recent News List */
.recent-news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-news-item {
  display: flex;
  gap: 15px;
  padding: 12px;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-news-item:hover {
  background: rgba(14, 165, 233, 0.1);
  transform: translateX(5px);
}

.recent-news-image {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  flex-shrink: 0;
}

.recent-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-news-info {
  flex: 1;
  min-width: 0;
}

.recent-news-info h6 {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-news-info span {
  font-size: 12px;
  color: var(--p-color);
}

.recent-news-info span i {
  margin-right: 5px;
}

/* Categories List */
.news-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-categories-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news-categories-list li:last-child {
  border-bottom: none;
}

.news-categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--p-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-categories-list a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.category-count {
  background: var(--section-bg-color);
  color: var(--p-color);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.news-categories-list a:hover .category-count {
  background: var(--primary-color);
  color: var(--white-color);
}

/* CTA Card */
.news-sidebar-cta {
  background: linear-gradient(135deg, var(--primary-color), #0284c7);
  text-align: center;
  color: var(--white-color);
}

.news-sidebar-cta .cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.news-sidebar-cta .cta-icon i {
  font-size: 28px;
  color: var(--white-color);
}

.news-sidebar-cta h5 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}

.news-sidebar-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.news-sidebar-cta .custom-btn {
  background: var(--white-color);
  color: var(--primary-color);
}

.news-sidebar-cta .custom-btn:hover {
  background: var(--dark-color);
  color: var(--white-color);
}

/* News Detail Responsive */
@media (max-width: 1199px) {
  .news-sidebar {
    top: 90px;
  }
}

@media (max-width: 991px) {
  .news-sidebar {
    position: static;
    margin-top: 30px;
  }

  .news-detail-image {
    height: 300px;
  }

  .news-detail-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .news-detail-image {
    height: 220px;
  }

  .news-detail-content {
    padding: 20px;
  }

  .news-detail-title {
    font-size: 22px;
  }

  .news-detail-meta {
    flex-direction: column;
    gap: 10px;
  }

  .news-detail-body h4 {
    font-size: 18px;
  }

  .news-detail-quote {
    padding: 20px;
  }

  .news-detail-quote p {
    font-size: 16px;
  }

  .news-detail-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-detail-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .news-nav-link {
    justify-content: center;
    width: 100%;
  }

  .news-sidebar-card {
    padding: 20px;
  }

  .recent-news-image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .news-detail-image {
    height: 180px;
  }

  .news-detail-title {
    font-size: 20px;
  }

  .news-view-btn {
    width: 100%;
    justify-content: center;
  }
}
