@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --skf-body-bg: #f4f7fa;
    --skf-border: #e0e6ed;
    --skf-text-main: #334155;
    --skf-text-muted: #475569;
    --color: rgb(79, 121, 95);
}

.amount-tabs {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.amount-btn {
    flex: 1;
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.3s;
}

.amount-btn.active {
    background: #007bff;
    /* Primary Color */
    color: white;
    border-color: #007bff;
}

.tabs-content {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.app-form-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* --- Reusable Card Component --- */
.skf-card-premium {
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-radius: 1.25rem;
    background: #fff;
    overflow: hidden;
}

.skf-card-header-main {
    background: var(--skf-primary-grad) !important;
    border-bottom: none;
    padding: 2.5rem !important;
    text-align: center;
    color: #fff;
}

/* --- Reusable Typography & Sections --- */
.skf-section-group {
    position: relative;
    margin-bottom: 2rem;
}

.skf-step-indicator {
    display: inline-block;
    background: #e7f1ff;
    color: #0d6efd;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* --- Reusable Form Elements --- */
.skf-form-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--skf-text-muted);
}

.skf-input-custom,
.skf-select-custom {
    padding: 0.75rem 1rem;
    border: 1px solid var(--skf-border);
    border-radius: 0.75rem !important;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.skf-input-custom:focus,
.skf-select-custom:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* --- Custom File Input Component --- */
.skf-file-upload {
    background-color: #f8fafc;
}

.skf-file-upload::file-selector-button {
    background: #334155;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.skf-file-upload::file-selector-button:hover {
    background: #1e293b;
}

/* --- Info & Action Components --- */
.skf-declaration-area {
    background-color: #f8fafc;
    border: 1px solid var(--skf-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.skf-btn-submit-premium {
    background: var(--skf-primary-grad);
    border: none;
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 0.75rem;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.skf-btn-submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.3);
    color: #fff;
}

.skf-divider {
    opacity: 0.1;
    margin: 3rem 0;
}

.heads {
    width: 120px;
}

.heads2 {
    width: 280px;
}

.donations-btn {
    background-color: #528FF0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


.site-footer {
    position: relative;
    background-image: url("../images/hero_1.jpg");
    /* CHANGE IMAGE PATH */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #e5e7eb;
    padding: 80px 0 30px;
    font-size: 14px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.753),
            rgba(15, 23, 42, 0.96));
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.site-footer .widget,
.site-footer .footer-widget {
    margin-bottom: 25px;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Heading underline */
.site-footer h3::after,
.site-footer h4::after {
    content: "";
    width: 36px;
    height: 2px;
    background: #38bdf8;
    display: block;
    margin-top: 6px;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer ul li a:hover {
    color: #38bdf8;
    padding-left: 6px;
}

.site-footer address,
.site-footer p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: normal;
}

.site-footer .social,
.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.site-footer .social li {
    margin: 0;
}

.site-footer .social a,
.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.site-footer .social a:hover,
.site-footer .footer-social a:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-3px);
}

.site-footer .footer-bottom,
.site-footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

.site-footer .footer-bottom a,
.site-footer .copyright a {
    color: #38bdf8;
    text-decoration: none;
}

.site-footer .footer-bottom a:hover,
.site-footer .copyright a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 60px 0 25px;
    }

    .site-footer h3,
    .site-footer h4 {
        font-size: 15px;
    }

    .site-footer ul li a:hover {
        padding-left: 0;
    }
}

.volunteer-form {
    max-width: 520px;
    margin: 60px auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-bottom: 2px solid #0f172a;
}

.volunteer-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: #0f172a;
}
.teams-image {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 120px;
}
.teams-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.feature {
    height: 360px;
}

.sf-preheader {
  background: var(--color);
  color: #cbd5f5;
  font-size: 13px;
}

.sf-preheader-wrap {
  display: flex;
  align-items: center;
  padding: 6px 0;
  justify-content: space-between;
}

.sf-pre-left a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 500;
}

.sf-pre-left a:hover {
  color: #38bdf8;
}
.sf-pre-center {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #e5e7eb;
  text-shadow: 1px 1px 10px #000;
}

.sf-pre-right {
  display: flex;
  justify-content: end;
  float: right;
  gap: 14px;
}

.sf-pre-right a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}
.cursor-circle,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform;
}

.cursor-circle {
    width: 34px;
    height: 34px;
    border: 2px solid #ff6600;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #ff6600;
    z-index: 10000;
}

.sf-pre-right a:hover {
  color: #38bdf8;
}

@media (max-width: 767px) {
  .sf-preheader {
    display: none;
  }
}
.sf-navbar {
  position: sticky;
  top: 0;
background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  z-index: 999;
  transition: all 0.35s ease;
}

/* Slide down animation */
@keyframes sfSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 
.sf-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
} */

.sf-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sf-logo img {
  height: 70px;
  width: auto;
}

.sf-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.sf-menu li {
  position: relative;
}

.sf-menu a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
}

.sf-menu a:hover {
  color: #38bdf8;
}

.sf-active > a {
  color: #38bdf8;
}
.sf-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0f172a;
  border-radius: 14px;
  min-width: 280px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.sf-has-dropdown:hover > .sf-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sf-dropdown .sf-has-dropdown > .sf-dropdown {
  top: 0;
  left: 100%;
  margin-left: 6px;
  transform: translateX(12px);
}

.sf-dropdown .sf-has-dropdown:hover > .sf-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sf-dropdown li {
  position: relative;
  list-style: none;
}

.sf-dropdown li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  color: #e5e7eb;
  white-space: nowrap;
}

.sf-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #38bdf8;
}

.sf-has-dropdown > a::after {
  content: "›";
  margin-left: 8px;
  font-size: 14px;
  opacity: 0.6;
}
.sf-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sf-call {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.sf-call i {
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 8px;
    margin-right: 8px;
}

.sf-call:hover {
  color: #38bdf8;
}
.sf-burger {
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sf-burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
}
.sf-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--skf-text-main);
  z-index: 1000;
  transition: right .35s ease;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 70px 25px 30px;
}

.sf-mobile-menu.sf-open {
  right: 0;
}
.sf-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.sf-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-mobile-menu li {
  border-bottom: 1px solid #eee;
  color: #fff;
}

.sf-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #fefefe;
  text-decoration: none;
}
@media (max-width: 991px) {
  .sf-menu {
    display: none;
  }

  .sf-call {
    display: none;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile safe */
@media (max-width: 576px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
