


body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
}

.navbar {
    background-color: rgb(234, 230, 168);
    position: relative;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 60px;
}

.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-menu a {
    color: rgb(10, 33, 241);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: black;
    border-bottom: 2px solid #5a0df5;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    width: 180px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.page-layout {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 20px;
    display: flex;
    gap: 1.5rem;
    border: none;
}

.left-bar {
    flex: 0 0 260px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #f0d9c3;
    border-radius: 10px;
    padding: 1.3rem;
    order: 1;
}

.left-bar h3 {
    color: #5c2c0c;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.history-item {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #f0d9c3;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item strong {
    color: #e87a00;
    display: block;
    margin-bottom: 0.3rem;
}

.main-content {
    flex: 1 1 auto;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #f0d9c3;
    border-radius: 10px;
    padding: 1.8rem;
    order: 2;
}

.main-content h1 {
    color: #5c2c0c;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    animation: slideleft 1s ease-in both;
}

@keyframes slideleft {
    from {
        transform: translateX(-300px);
    }
    to {
        transform: translateX(0);
    }
}

.image-row {
    display: flex;
    gap: 1rem;
    margin: 1.2rem 0;
}

.image-row img {
    flex: 1;
    width: 50%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transform: translateX(40px);
    animation: slideinright 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideinright {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-content p {
    margin-bottom: 1rem;
    color: #3d2817;
    animation: slideleft 2s ease-in both;
}

.right-bar {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #f0d9c3;
    border-radius: 10px;
    padding: 1.3rem;
    order: 3;
}

.right-bar h3 {
    color: #5c2c0c;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card {
    background: #fff4e6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid #e87a00;
}

.info-card strong {
    color: #bec626;
    display: block;
    margin-bottom: 0.3rem;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.mission-box {
    flex: 1 1 280px;
    border: 1px solid #e8f2e0;
    border-radius: 8px;
    padding: 1.2rem;
    background: #fffdf9;
}

.mission-box h3 {
    color: #5c2c0c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-section {
    float: left;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 20px;
}

.login-container {
    background: linear-gradient(rgba(55, 120, 142, 0.75), rgba(92, 44, 12, 0.75));
    margin-top: 1px;
    float: left;
    top: 5px;
    margin-bottom: 50px;
    align-content: center;
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(69, 1, 1, 0.15);
    flex-direction: column;
}

.login-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-header h1 {
    color: rgb(20, 3, 87);
    font-size: 2.2rem;
    font-weight: bolder;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.form-group label {
    font-weight: 600;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.1rem;
    border: 1px solid orange;
    border-radius: 8px;
    font: inherit;
    background: #a6b5d5;
}

.form-group select {
    width: 70%;
}

.form-group input {
    width: 70%;
}

.form-group textarea {
    width: 64%
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid #ffc857;
    border-color: #c79370;
}

.radio-group {
    display: flex;
    gap: 2.0rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 1.0rem;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 50px;
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 50px;
    gap: 0.5rem;
    width: 58%;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.form-options a {
    color: #5c2c0c;
    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

.login-btn {
    background: #5c2c0c;
    color: #fff;
    border: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-btn:hover {
    background: #15151d;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #7a5a44;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 0.5px solid #e0cbb7;
}

.divider span {
    padding: 0 1rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem;
    border: 1px solid #c4a68a;
    border-radius: 6px;
    background: #fff;
    color: #2c1810;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.social-btn:hover {
    background: #fff9f3;
    border-color: #5c2c0c;
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    flex: 1 1 240px;
    border: 1px solid #e8f2e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fffdf9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
    display: block;
    opacity: 1;
}

.service-card img:hover {
    opacity: 0.8;
}

.service-card-body {
    padding: 1rem;
}

.service-card h3 {
    color: #5c2c0c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(92, 44, 12, 0.15);
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.site-footer {
    background: #fff;
    color: #fbe8d3;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #e87a00
}

.footer-section {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-section h4 {
    color: #183ad0;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.footer-section a {
    color: #d17812;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: black;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
    color: black;
}

.social-icons a {
    font-size: 1.6rem;
    text-decoration: none;
    transition: 0.2s;
}

.social-icons a:hover {
    transform: scale(1.15);
}

.footer-bottom {
    border-top: 1px solid #5c2c0c;
    text-align: center;
    padding: 1.2rem 20px;
    font-size: 0.9rem;
    color: #d17812
}

@media (max-width: 1150px) {
    .search-bar input {
        width: 120px;
    }
    .right-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #5c2c0c;
        padding: 1rem 20px 1.5rem;
        gap: 1.2rem;
    }
    .nav-menu.show {
        display: flex;
    }
    .search-bar {
        display: none;
    }
    .page-layout {
        flex-direction: column;
        padding: 1rem 15px;
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 6rem auto 3rem; 
        padding: 0 1.5rem;
    }
    .left-bar {
        flex: 1 1 auto;
        order: 3;
    }
    .main-content {
        order: 1;
        text-align: center;
        font-size: 3rem;
        color: #ffffff; 
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        margin-bottom: 2.5rem;
    } 
    .right-bar {
        display: block;
        flex: 1 1 auto;
        order: 2;
    }
    .main-content h1 {
        font-size: 1.6rem;
    }
    .image-row {
        flex-direction: column;
    }
    .image-row img {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
} 

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    pointer-events: none;
    overflow: hidden;
}

.video-section {
    width: 100%;       
    height: 100%;      
    object-fit: cover;  
}

.login-container {
    background: rgba(55, 120, 142, 0.75);
}

.navbar {
    background: rgba(234, 230, 168, 0.85);
}

.site-footer {
    background: rgba(255, 255, 255, 0.85);
}
