
body {
    margin: 0;
    padding-top: 65px;
    font-family: 'Arial', sans-serif;
    background: white;
}

.main-container {
    position: relative;
    background: repeating-linear-gradient(
        to bottom,
        #b50000, #b50000 30px,
        #000000 30px, #000000 60px,
        #ffffff 60px, #ffffff 70px,
        #000000 70px, #000000 100px
    );
    background-size: 100% 100px;
    padding: 30px;
    margin: 90px auto;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* This softens the stripes */
    z-index: 1;
    pointer-events: none; /* Ensures clicks pass through to content */
}

.content {
    position: relative;
    z-index: 2;
    padding: 2px;
}

h2, h3, body p, li {
    font-size: 2.2rem;
    color: black;
}

h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

h3 {
    color: #000080;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

p {
    text-align: center;
}

li {
    text-align: left;
}

.about-card, .vision-card, .mission-card, .object-card {
    background: rgba(255, 255, 0, 0.5);
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

ul li::before {
    content: "✔";
    color: white;
    font-weight: bold;
    margin-right: 8px;
}

.card {
    width: 350px;
    text-align: center;
    padding: 20px;
    background: rgb(5, 29, 67);
    color: white;
    border: 2px solid white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

.logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.main-content {
    position: relative;
    background: repeating-linear-gradient(
        to bottom,
        #b50000, #b50000 30px,
        #000000 30px, #000000 60px,
        #ffffff 60px, #ffffff 70px,
        #000000 70px, #000000 100px
    );
    background-size: 100% 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px 0;
    overflow: hidden;
}

/* Add a dark overlay effect */
.main-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
    z-index: 1;
}

/* Ensure the content is above the overlay */
.container {
    position: relative;
    max-width: 100%;
    display: flex;
    
    width: 100%;
    z-index: 2; /* Keep content above overlay */
}