
/* Custom styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: -100px; /* Moves navbar out of view */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: top 0.3s ease; /* Smooth hide/show transition */
}

/* Navbar Visible */
.navbar.show {
    top: 0; /* Brings navbar into view */
}

.navbar .brand-logo {
    color: white;
}

.navbar .right a {
    color: white;
}

/* Full-Height Section */
.full-height-section {
    display: flex;
    height: 100vh;
}

.left-column .slider {
    height: 100%;
}

.right-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.intro-content {
    max-width: 80%;
    text-align: center;
}

.intro-content h4 {
    font-size: 2.5rem;
    font-weight: bold;
}

.intro-content p {
    font-size: 1.2rem;
    color: #555;
}

/* Slider Images */
.slides li img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Maintain image proportions */
}

/* Features Section */
.features {
    padding: 40px 20px;
    background-color: #f5f5f5;
    color: #333;
}

.features h4 {
    font-weight: bold;
    margin-bottom: 20px;
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features ul li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .full-height-section {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        height: auto;
    }
}

@media (max-width: 600px) {
    .intro-content h4 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .features ul li {
        font-size: 1rem;
    }
}


.btn {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


/* Enhanced Modal Styles */
.modal {
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.modal-content {
    padding: 30px;
    background: linear-gradient(to bottom right, #ffffff, #f1f1f1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-header h4 {
    margin: 0;
    font-weight: bold;
    font-size: 24px;
    color: #333;
}

.input-field input[type=email],
.input-field input[type=text],
.input-field input[type=password] {
    font-size: 16px; 
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}



.input-field label {
    font-size: 14px;
    color: #666;
}

.modal-footer .btn {
    background-color: green;
    border-radius: 25px;
    width: 100%;
    padding: 0px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: background-color 0.3s;
}

.modal-footer .btn:hover {
    background-color: #004d40;
}

.helper-text {
    font-size: 14px;
    color: #666;
    margin-top: -15px;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.signup-link a {
    color: #00796b;
    font-weight: bold;
    text-decoration: none;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

/* Modal Animation */
.modal {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal.open {
    opacity: 1;
    transform: translateY(0);
}

.modal-close {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal-close.open {
    opacity: 0;
    transform: translateY(-20px);
}

/* Adjusted card layout and background to blend more */
.announcement-card {
    background-color: rgba(0, 0, 0, 0); /* Blend with page background */
    color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none; /* Removing extra shadows */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Centering the announcements */
.announcement-card .card-content {
    text-align: center;
}

/* Text styles to keep consistent with the page */
.announcement-card h4 {
    font-weight: bold;
    color: #fdd835; /* Golden color for the title */
}

/* Important details highlighted with light green */
.announcement-card p strong {
    color: #81c784; /* Light green */
}

/* Soft hover effect */
.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media only screen and (max-width: 600px) {
    .announcement-card {
        padding: 10px;
    }
    .announcement-card h4 {
        font-size: 18px;
    }
    .announcement-card p {
        font-size: 14px;
    }
}

/* Centering the post container */
.post-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

/* Profile section */
.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-info .author-name {
    font-weight: bold;
    color: #333;
}

.post-info .post-date {
    display: block;
    font-size: 0.85em;
    color: #777;
}

/* Content styling */
.post-content .post-text {
    margin-bottom: 10px;
    color: #333;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Footer and buttons */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.engagement-icons button {
    background: none;
    border: none;
    color: #3b5998;
    font-size: 0.9em;
    cursor: pointer;
    padding: 5px;
}

.engagement-icons button:disabled {
    color: #999;
    cursor: default;
}

.read-more-link {
    color: #3b5998;
    font-size: 0.9em;
    text-decoration: none;
    padding: 5px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Full-height section styling */
.full-height-section {
    height: 100vh;
    display: flex;
    align-items: stretch;
    background-color: #f4f4f4;
}

.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

/* Left column: Slider */
.left-column .slider {
    height: 100%;
}

.slides li img {
    width: 100%;
    height: 100vh; /* Full viewport height for images */
    object-fit: cover;
}

/* Right column: Intro content */
.right-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.intro-content {
    max-width: 80%;
    text-align: center;
}

.intro-content h4 {
    font-size: 2.5rem;
    font-weight: bold;
}

.intro-content p {
    font-size: 1.2rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .full-height-section {
        flex-direction: column;
    }
    .left-column,
    .right-column {
        height: auto;
    }
}


/* Reset Password Card Styles */
.reset-password-card {
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.reset-password-card .card-content {
    padding: 30px;
    background: linear-gradient(to bottom right, #ffffff, #f1f1f1);
    border-radius: 12px;
}

.reset-password-card .card-header h4 {
    margin: 0;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.reset-password-card .input-field input[type=email],
.reset-password-card .input-field input[type=password] {
    font-size: 16px; 
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.reset-password-card .input-field label {
    font-size: 14px;
    color: #666;
}

.reset-password-card .card-footer .btn {
    background-color: green;
    border-radius: 25px;
    width: 100%;
    padding: 1px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: background-color 0.3s;
}

.reset-password-card .card-footer .btn:hover {
    background-color: #004d40;
}

.reset-password-card .helper-text {
    font-size: 14px;
    color: #666;
    margin-top: -15px;
    margin-bottom: 10px;
}



/* Main Container for Cards */
.accomplishments-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spacing between cards */
    padding: 20px;
    background-color: white; /* Slight gray background */
}

/* Card Layout */
.accomplishment-card {
    display: flex; /* Two-column structure */
    align-items: flex-start; /* Align image and text at the top */
    gap: 20px; /* Space between image and text */
    padding: 25px;
    background-color: #f5f5f5; /* White background for the card */
    border: 1px solid #cccccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease; /* Slight hover effect */
}

.accomplishment-card:hover {
    transform: scale(1.02); /* Slight zoom on hover */
}

/* Left Column: Image */
.card-image {
    flex: 0 0 150px; /* Fixed width and height for the image */
    height: 150px;
    border-radius: 4px; /* Rounded edges */
    object-fit: cover; /* Ensure image fits perfectly */
    border: 1px solid #ddd; /* Subtle border for image */
}

/* Right Column: Content */
.card-content {
    flex: 1; /* Take up remaining space */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Title */
.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #0074cc; /* Blue color for the title */
    line-height: 1.4;
    margin: 0;
}

/* Description Text */
.card-description {
    font-size: 17px;
    color: #333333; /* Dark gray for readable text */
    line-height: 1.6;
    margin: 0;
    text-align: justify; /* Proper text justification */
}

/* Hyperlink (Read More) */
.card-link {
    font-size: 14px;
    color: #0056b3; /* Standard link blue */
    text-decoration: underline;
    margin-top: 10px; /* Space above the link */
    align-self: flex-start; /* Align link to the left */
}

.card-link:hover {
    color: #003d80; /* Darker blue on hover */
    text-decoration: none; /* No underline on hover */
}




