*{
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/Prompt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/Prompt-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    scroll-behavior: smooth;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Prompt', sans-serif;
}

.auto-top{
    margin-top: 105px;
}

.dark-mode {
    background-color: #121212;
    color: #ffffff;
}
.hero {
    background: linear-gradient(rgba(0, 0, 50, 0.7), rgba(0, 0, 70, 0.7)), url("/images/building.jpg") center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.section-title {
    width: 100%;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: orange;
    border-radius: 2px;
  }
.service-card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
}
.dark-mode footer {
    background-color: #333;
}

.navbar-nav .nav-link {
    margin: 0 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
    transform: scale(1.1);
}

.footer-section{
    background-color: black;
    color:white;
}

footer {
    background-color: black; 
}

footer a.nav-link:hover,
footer a.link-body-emphasis:hover {
    color: #0d6efd !important;
    text-decoration: underline;
    transform: scale(1.1);
}

.social-icons a:hover svg {
    fill: #0d6efd;
}

.red{
    color: red;
}

.orange{
    color: orange;
}

.loading-spin{
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    text-align: center;
    padding-top: 20%;
    color: white;
    font-size: 1.5rem;
}