body {
    padding-top: 80px;
    font-family: 'Encode Sans Semi Condensed', sans-serif;
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.5s ease;
    color: black;
    font-weight: 900;
    z-index: 1001;
}

.navbar .navbar-brand, .navbar .nav-link {
    color: black;
}

.nav-link {
    transition: color 0.5s ease;
}

.navbar.scrolled {
    background-color: black;
    color: white;
}

.navbar.scrolled .nav-link {
    color: white;
}

#navbar-logo {
    max-height: 100px;
    width: auto;
}

.collapse.show {
    z-index: 1000;
}

.navbar-toggler-icon {
    background-color: white;
    outline: white;
}

@media (max-width: 768px) {
    body {
        padding-top: 150px;
    }

    .navbar-toggler {
        z-index: 1002;
        outline: white;
    }
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-text-container {
    position: absolute;
    bottom: 50px;
    left: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
}

.custom-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: transparent;
    color: white;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: black;
}

@media (max-width: 768px) {
    .video-text-container {
        padding: 10px;
        bottom: 30px;
        left: 15px;
    }

    .custom-btn {
        padding: 5px 10px;
        font-size: 14px;
    }
}

/* Section Container */
.section-container {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    margin: 50px 0;
    font-family: 'Encode Sans Semi Condensed', sans-serif;
}

.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.section-title,
.section-text,
.section-btn {
    position: relative;
    z-index: 2;
}

.section-title {
    color: gray;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-text {
    color: black;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}

.section-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid black;
    background-color: transparent;
    color: black;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.section-btn:hover {
    background-color: black;
    color: white;
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    padding-top: 2%;
}

.slide {
    position: relative;
}

.slide-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    z-index: 1000;
}

.slide-info {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
    color: white;
    max-width: 500px;
}

@media (max-width: 768px) {
    .slider-container {
        height: auto;
    }

    .slide-image {
        height: auto;
    }

    .slide-info {
        bottom: 20px;
        right: 10px;
        max-width: 80%;
        font-size: 12px;
    }

    h2 {
        font-size: 18px;
    }
}

/* Slick Navigation */
.slick-prev, .slick-next {
    background-color: rgba(255, 165, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 20;
    position: absolute;
    bottom: 20px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    left: 70px;
}

.slick-prev.slick-cloned, .slick-next.slick-cloned,
.slick-prev.slick-slide, .slick-next.slick-slide {
    background-color: transparent !important;
    border: none;
    color: transparent !important;
    pointer-events: none;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(255, 165, 0, 0.8);
}

@media (max-width: 768px) {
    .slick-prev, .slick-next {
        font-size: 18px;
        width: 30px;
        height: 30px;
        bottom: 30px;
    }

    .slick-next {
        left: 60px;
    }

    .slick-prev:not(.slick-slide), .slick-next:not(.slick-slide) {
        font-size: 14px;
        top: 40px;
    }
}

/* Footer */
.site-footer {
    background-color: black;
    padding: 20px 0;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
}

.footer-column h4 {
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #666;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        padding: 20px 0;
        text-align: center;
    }

    .footer-column h4 {
        margin-top: 20px;
    }
}

/* About Us Section */
.about-us-section {
    padding: 150px 0;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.about-description {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Estimate Section */
.estimate-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

.estimate-btn {
    background-color: white;
    border: 2px solid black;
    color: black;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.estimate-btn:hover {
    background-color: black;
    color: white;
}

/* Projects Section */
.projects-section {
    text-align: center;
    padding: 50px 0;
}

.projects-title {
    font-size: 32px;
    color: black;
    margin-bottom: 0px;
}

.projects-subtitle {
    font-size: 20px;
    color: #777;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    margin-top: 0px;
}

.project-card {
    width: 280px;
    height: 280px;
    margin: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    background-color: white;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
}

/* Project Detail Section */
.projectdetail-cover {
    margin-top: 2%;
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.projectdetail-image {
    width: 100%;
    display: block;
}

.projectdetail-details-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.projectdetail-title {
    font-size: 1.5em;
    color: white;
}

.projectdetail-year-location,
.projectdetail-type {
    color: white;
}

.project-description-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.description-content {
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

/* Project Images */
.project-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.project-image-item {
    flex-basis: calc(33.33% - 30px);
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project-image-item:hover {
    transform: translateY(-5px);
}

.project-image-item img {
    width: 80%;
    display: block;
    border-radius: 5px;
}

.image-link {
    display: block;
    overflow: hidden;
}

/* Project Videos */
.project-videos {
    margin-top: -12%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.project-video-item {
    flex-basis: calc(33.33% - 20px);
    position: relative;
    padding-top: 56.25%;
    height: 0;
    width: 33.33%;
    float: left;
}

.project-video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .project-image-item {
        flex-basis: 100%;
        margin: 10px 0;
    }

    .project-video-item {
        width: 100%;
        float: none;
    }
}

/* Form */
.beautiful-form {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.form-group button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #0056b3;
}

.form-title {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
}

@media (max-width: 768px) {
    .beautiful-form {
        width: 90%;
    }
}
