.hero-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 420px;

    background-color: #1a1a1a;

    background-image: url("../media/images/office1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
}


.swiper-slide {
  height: 260px;
  padding: 12px;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}


.form-layout{
  border-radius: 28px;
  width: 500px;
}


.account-body {
    background: linear-gradient(
        135deg,
        #1a1a1a 0%,
        #2c2c2c 50%,
        #1a1a1a 100%
    );
    min-height: 100vh;
}

.account {
    border-radius: 20px;
    background: white;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Volunteer */
.account input,
.account textarea,
.account select {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 12px;
    width: 100%;
    transition: all 0.2s ease;
}
.account .form-check {
    padding-left: 1.8rem;
}

.account .form-check-input {
    border: 2px solid #888;
}

.account .form-check-input:checked {
    background-color: #da292e;
    border-color: #da292e;
}
.account .form-group {
    margin-bottom: 1.2rem;
}
.account input:focus,
.account textarea:focus,
.account select:focus {
    background-color: #ffffff;
    border-color: #da292e; /* your red */
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
    outline: none;
}
.account input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #da292e; /* modern browsers */
    border: 1px solid #aaa;
    margin-right: 4px;
    cursor: pointer;
}

.btn.btn-campaign {
    background-color: #da292e !important;
    color: black !important;
    border: 2px solid #da292e !important;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn.btn-campaign:hover,
.btn.btn-campaign:focus,
.btn.btn-campaign:active {
    background-color: white !important;
    color: black !important;
    border-color: #da292e !important;
    text-decoration: none;
    box-shadow: none !important;
}
.btn-campaign:hover {
    transform: translateY(-1px);
}

/* Homepage images */
.section-image {
    width: 100%;
    min-height: 300px;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}


/* Footer */
.custom-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* Evenly spreads the content */
    align-items: center; /* Centers the content horizontally */
    height: 200px; /* Your fixed height */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

.custom-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Additional styles remain unchanged */

/* Making sure elements are positioned correctly */
.social-links, .footer-links, .action-button {
    position: relative;
    z-index: 2;
    width: 100%; /* Ensures full width for alignment */
}

.custom-footer .social-links a,
.custom-footer .social-links a i,
.custom-footer .footer-links a {
    color: white !important;
    transition: color 0.3s ease;
}

.custom-footer .social-links a:hover,
.custom-footer .social-links a:hover i,
.custom-footer .footer-links a:hover {
    color: black !important;
}

.navbar-logo {
    height: 80px;
    max-width: 240px;
    object-fit: contain;
    display: block;
}