@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'SUIT-Regular', sans-serif;
}




.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




header {
    background-color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}




header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.logo img {
    height: 60px;
    display: block;
}




nav ul {
    list-style: none;
    display: flex;
}




.main-menu > li {
    font-size: 18px;
    margin-left: 30px;
    position: relative;
}




.main-menu > li > a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 150px;
    text-align: center;
}




.main-menu > li:hover > a {
    background-color: #007bff;
    color: #fff;
}




.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 150px;
    text-align: center;
}




.submenu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}




.submenu li a:hover {
    background-color: #007bff;
    color: #fff;
}




.main-menu > li:hover .submenu {
    display: block;
}








/*footer*/
footer {
    font-family: 'SUIT-Regular', sans-serif;
}




.footer-main {
    background-image: url('{{$template}}img/background.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}




.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}




.footer-section {
    flex: 1;
    padding: 0 20px;
}






.footer-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}




.footer-section p {
    font-size: 16px;
    line-height: 1.5;
}




.view-more {
    display: inline-block;
    margin-top: 15px;
    color: black;
    text-decoration: none;
    border: 1px solid black;
    padding: 5px 10px;
}




.phone {
    font-size: 28px;
    font-weight: bold;
}




.footer-bottom {
    background-color: #dedede;
    padding: 20px 0;
}




.company-info {
    display: flex;
    align-items: center;
}




.company-logo {
    width: 200px;
    margin-right: 20px;
}




.info-text p {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
}




.admin-links {
    margin-top: 10px;
}




.admin-links a {
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}




@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}




.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}




.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}




.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}




.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}