/* .navbar {
  transition: all 0.3s ease;
}

.navbar.sticky-top {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-donate {
  background: linear-gradient(135deg, #bf182a 0%, #e02e42 100%);
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-donate:hover {
  background: linear-gradient(135deg, #a31424 0%, #bf182a 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(191, 24, 42, 0.3);
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: #1f1f1f !important;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #bf182a !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #bf182a;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.notice-text {
  background: #fff5e8;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #bf182a;
  margin: 0;
}

.notice-text img {
  width: 20px;
  margin-right: 8px;
}

.logo img {
  height: 45px;
  transition: all 0.3s;
}

.navbar-toggler {
  border: none;
  background: #bf182a;
  color: white;
  padding: 8px 12px;
}

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

@media (max-width: 991px) {
  .notice-text {
    font-size: 12px;
    padding: 6px 15px;
    margin: 10px 0;
  }

  .btn-donate {
    padding: 8px 20px;
    font-size: 13px;
  }

  .logo img {
    height: 38px;
  }

  .nav-link::after {
    display: none;
  }
} */
/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    background: white !important;
}

.navbar.sticky-top {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo img {
    height: 45px;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .logo img {
        height: 38px;
    }
}

/* Nav Links */
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: #1f1f1f !important;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0 !important;
}

.nav-link:hover {
    color: #bf182a !important;
}

/* Active menu underline */
.nav-link.active {
    color: #bf182a !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10;
    width: 100%;
    height: 2px;
    background: #bf182a;
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #bf182a;
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

/* Donate Button */
.btn-donate {
    background: linear-gradient(135deg, #bf182a 0%, #e02e42 100%);
    border: none;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #a31424 0%, #bf182a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 24, 42, 0.3);
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    background: #bf182a;
    padding: 8px 12px;
    border-radius: 8px;
}

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

.transparent-navbar {
    background-color: transparent !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

/* Mobile Sidebar Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 1050;
        padding: 80px 20px 30px;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Overlay when sidebar is open */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        /* opacity: 0; */
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px !important;
        margin: 0 !important;
    }

    .nav-link {
        padding: 12px 15px !important;
        font-size: 16px;
        border-radius: 10px;
        transition: all 0.3s;
    }

    .nav-link:hover {
        background: #fff5f5;
        padding-left: 20px !important;
    }

    .nav-link.active {
        background: linear-gradient(135deg, #bf182a 0%, #e02e42 100%);
        color: white !important;

    }

    .nav-link.active::after {
        display: none;

    }

    .btn-donate {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    /* Close button in sidebar */
    .sidebar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        background: #bf182a;
        border: none;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }

    .sidebar-close:hover {
        background: #a31424;
        transform: rotate(90deg);
    }
}

/* Desktop view adjustments */
@media (min-width: 992px) {

    .sidebar-close,
    .sidebar-overlay {
        display: none;
    }
}

/* Content spacing */
section {
    padding: 80px 0;
    text-align: center;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}