:root {
    --card-bg-color: black;
    --dark-red: #a10505;
    --card-hover-shadow-color: rgba(226, 7, 7, 0.3);
    --arrow-color: white;
}

body {
    background-color: rgba(0, 0, 0, 0.883);
}

.bold-word {
    color: var(--dark-red);
    font-weight: bold;
}

.main_header{
    font-size: 50rem;
}

.header-section {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/pistol1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar {
    position: fixed;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.883);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    border-color: white;
}

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

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: var(--dark-red) !important;
}

.navbar-brand {
    color: white !important;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* About Us section styling */
.about-us {
    background-color: #f9f9f9;
    /* Light background color for contrast */
    padding: 60px 0;
}

.about-us h2 {
    font-size: 2.5rem;
    color: var(--dark-red);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

form {
    width: 100%;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text p.lead {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.about-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.about-list .about-item {
    margin-bottom: 10px;
    color: #444;
}

.about-us ul {
    font-size: 1.05rem;
}

.about-us p {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .about-content {
        display: flex;
        justify-content: space-between;
    }

    .about-text {
        padding: 40px;
    }
}

/* read more styling */

.read-more-content {
    display: none;
    /* Initially hidden */
}

.read-more-btn,
.btn-submit {
    background-color: var(--dark-red);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

.read-more-btn:hover,
.btn-submit:hover,
.btn-back:hover {
    background-color: #d23131;
    color: white;
}

.socials:hover {
    color: #d23131;
}


.show-more .read-more-content {
    height: auto;
    /* Makes the hidden content visible when toggled */
}

.col {
    display: flex;
    justify-content: center;
}

.more-text {
    display: none;
}

label, h2 {
    color: white;
}

.form-header {
    color: white;
}

.form-label {
    color: white;
}

.services-container{
    border-radius: 1rem;
    border: 2px solid var(--dark-red);
}

/* ==================== CARD STYLING ==================== */

.card-hover {
    background-color: var(--card-bg-color);
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.card-hover:hover {
    box-shadow: 0 0 15px var(--card-hover-shadow-color);
    background-color: var(--dark-red);
}

.card-body {
    color: white;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.card-img-top {
    border-radius: 0.25rem;
    object-fit: cover;
    height: 250px;
}

/* .card.card-hover{
    width: 20rem;
} */

.arrow-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--arrow-color);
    transition: color 0.3s, transform 0.3s;
    height: 30px;
    width: 30px;
}

.arrow-link:hover {
    color: var(--arrow-color) !important;
    transform: translateX(5px);
}
/* ==================== CARD STYLING ==================== */

.form-check-input {
    appearance: none; 
    width: 20px;
    height: 20px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    background-color: white; 
}


/* Checkbox color when clicked !!!!!!!!!!!!!!!!!!!! NOT CHANGING TO COLOR i WANT*/
.form-check-input:checked {
    background-color: #a10505;
    border-color: #a10505;
}


/* ==================== WHAT WE DO ==================== */
.whatwedo-container{
    display: flex;
    justify-content: center;
    background-color: white;
}
.whatwedo-container h2{
    font-size: 2.5rem;
    color: var(--dark-red);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services{
    color: #a10505;
}
.accordion-button {
    background-color: #800707;
    color: white;
}
.accordion-button:not(.collapsed) {
    background-color: #7c0404;
    color: white;
}

.toggle-bar{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-back {
    background-color: var(--dark-red);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}