@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Base color for nav links */
.nav-link {
    color: rgba(256, 256, 256, 0.6);
    transition: color 0.3s ease;
}

.nav-link.scroll {
    color: rgba(0, 0, 0, 0.5);
}

.hero .swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    /* Use background-image later */
    color: white;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .slide-content:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000080;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero .slide-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    opacity: 0;
    transform: translateY(40px);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    margin-bottom: 2rem;
}

.get-quote {
    opacity: 0;
    transform: translateY(40px);
}
.project-swiper{
    position:relative;
}
.hero .swiper-pagination, .project-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

/* Style all pagination bullets */
.hero .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.4s;
}
 .project-swiper .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.4s;
 }
/* Style the active pagination bullet */
.hero .swiper-pagination-bullet-active, .project-swiper .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 25%;
    background-color: #fff;
    transform: scale(1.1);
}

/* Only on desktop */
@media (min-width: 768px) {
    header:not(.bg-white) .nav-link:hover {
        color: white;
    }

    header.bg-white .nav-link:hover {
        color: #1f1f1f;
    }
}