﻿/* === GLOBAL === */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eaeaea;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrapper {
    max-width: 1400px;
    min-width: 1280px;
    margin: 0 auto;
    padding: 0px 15px;
   
}
.responsive {
    max-width: 100%;
}
.spacing-20 {
    margin: 20px;
}


/* === TOP BAR === */

.outer-header {
    background-color: #FFFFFF;
}

.top-bar {
    border-radius: 0px 0px 10px 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    height: 110px;
    padding: 0 20px;
}

    
    .top-bar a img {
        height: 70px;
        width: auto;
        object-fit: contain;
        border-radius: 20px;
    }

.center-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
}

.title {
    font-size: 100px;
    font-weight: 900;
    color: #FFC900;
    margin: 21px 0 0 0;
}


.subtitle {
    font-size: 16px;
    color: #184BAF;
    margin-top: 4px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* center text perfectly */


    margin: 0;
    white-space: nowrap;
}
.subtitle-social {
    position: relative;
    display: flex;
    justify-content: flex-end; /* push icons to the right */
    align-items: center;
    padding: 0 0px;
    height: 40px; /* adjust as needed */
}
/* === SOCIAL MEDIA BAR === */
.top-social-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
    gap: 12px;
    height: 40px;
}

    .top-social-bar a img {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .top-social-bar a:hover img {
        transform: scale(1.2);
    }


.navbar {
    background-color: #C90907;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 13px;
}

    .navbar a {
        color: white;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
        transition: background 0.3s ease;
        margin: 5px 10px;
    }

       
        .navbar a:first-child {
            margin-left: 40px;
        }

        .navbar a:last-child {
            margin-right: 40px;
        }

        .navbar a:hover {
            background-color: #3e0bbd;
            border-radius: 8px;
        }



.main-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

.container {
    width: 90%;
    margin: 0 auto;
    transform: scale(1);
    background-color: white;
}

.advert-section {
    border: 2px solid #5d0fff;
    margin: 30px auto;
    width: 90%;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

    .advert-section h2 {
        font-size: 36px;
        font-weight: bold;
        color: black;
    }

.coming-soon-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    margin-top: 30px;
    background-color: #e9f3f9;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}

.coming-soon-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .coming-soon-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 10px #aaa;
        object-fit: cover;
    }

.coming-soon-text {
    flex: 0 0 60%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .coming-soon-text h2 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .coming-soon-text ul {
        list-style: disc;
        padding-left: 20px;
        color: #333;
    }

    .coming-soon-text p {
        margin-top: 15px;
        color: #444;
    }

.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
    padding: 30px;
    margin-top: 20px;
}

.grid-box {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    transition: background 0.3s, transform 0.3s;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .grid-box:hover {
        background-color: #f0f8ff;
        transform: scale(1.03);
    }


.full-width-section {
    width: 70%;
    
    
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #3E0976;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

    .about-text p {
        margin-bottom: 15px;
    }

.about-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-weight: bold;
    color: #555;
    text-align: left;
}

@media (max-width: 768px) {
    .about-footer {
        text-align: center;
    }

    .section-title {
        font-size: 24px;
    }
}


.qr-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    font-style: italic;
}

.form-label {
    font-weight: 600;
    color: #333;
}

input[type="text"].form-control:read-only {
    background-color: #f1f1f1;
    cursor: not-allowed;
}

input[type="file"].form-control {
    padding: 8px;
}

button[type="submit"] {
    font-size: 16px;
    font-weight: bold;
}

/* ✅ Responsive Improvements */
@media (max-width: 768px) {
    .qr-img {
        max-width: 200px;
    }

    .btn {
        font-size: 15px;
    }
}
/* === CONTACT US PAGE === */

.full-width-section {
    width: 100%;
    
    background-color: #fdfdfd;
}

.form-container.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.contact-form h2.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #3E0976;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #3E0976;
            outline: none;
        }

button[type="submit"] {
    background-color: #3E0976;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #520fa8;
    }

#feedbackMessage {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    color: green;
    font-size: 16px;
}


/* === FOOTER === */
footer {
    width: 100%;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
    color: #222;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
   
}

.footer-address {
    background-color: #C90907;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 30px;
    gap: 40px;
    overflow-x: auto;
    background-color: #fff;
}

.footer-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

    .footer-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 300px;
        border-top: 4px solid #800000;
    }

.footer-copyright {
    background-color: #C90907;
    color: white;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 0 0 7px 7px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-section {
        flex-direction: column;
    }

    .coming-soon-image, .coming-soon-text {
        flex: 1 1 100%;
        text-align: center;
    }

    .grid-section {
        grid-template-columns: repeat(1, 1fr);
    }
}
.page-content {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.login-left {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .login-left img {
        max-width: 100%;
        height: auto;
    }

.login-right {
    flex: 1;
    padding: 40px 30px;
}

    .login-right h3 {
        font-weight: 700;
        margin-bottom: 30px;
    }

.input-group {
    margin-bottom: 20px;
}

    .input-group .form-control {
        border-radius: 6px;
        padding-left: 40px;
    }

    .input-group .input-group-prepend {
        position: absolute;
        z-index: 10;
        height: 100%;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
    }


.btn-login {
    background-color: #5caeff;
    color: white;
    font-weight: 600;
    width: 100%;
    border-radius: 6px;
}

.alert {
    margin-bottom: 20px;
}
.member-row {
    margin: 25px auto;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

    .member-row:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        background: #f9f7ff;
    }

.profile-img {
    max-width: 150px;
    transition: transform 0.3s ease-in-out;
}

.member-row:hover .profile-img {
    transform: scale(1.1);
}

.member-row h4,
.member-row h3 {
    font-weight: 600;
    color: #2c3e50;
}

.member-row p {
    color: #555;
    margin: 5px 0 0;
    line-height: 1.6;
}

.issue-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.issue-section {
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.issue-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.issue-description {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    transition: all 0.3s ease;
}

.short-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expanded {
    display: block !important;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

.read-more-toggle {
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
    cursor: pointer;
    color: #0d6efd;
    text-decoration: underline;