@import url("../fonts/Poppins/stylesheet.css"); :root {
    --main-color: #1A1F25;
    --second-color: #5C5D62;
    --third-color: #B1B1B8;
    --fourth-color: #0E1629;
    --fivth-color: #9195A1;
    --sixth-color: #F1E9E6;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    color: var(--main-color);
    padding: 0px;
    margin: 0px;
    font-weight: 300;
    line-height: 30px;
    overflow-x: hidden;
}
.container-fluid{
    padding: 35px;
}
.mt-custom{
    margin-top: 90px;
}
.background-white {
    background-color: rgb(255, 255, 255);
}

.form-control {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(177, 177, 184);
    border-radius: 0px;
    margin: 0px 0px 20px;
    padding: 7px 0px;
}

label {
    font-size: 18px;
    font-weight: 500;
}

.section-title {
    font-size: 18px;
    display: inline-block;
}

.section-title.dark {
    color: var(--main-color);
}

.border-dark {
    border-color: rgb(255, 255, 255);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgb(108, 117, 125);
    margin-bottom: 1.5rem;
}

.navbar {
    transition: 0.3s;
    margin: 20px 30px 0px 30px;
}
.navbar .container{
    background: var(--main-color);
    padding: 15px 10px 15px 35px;
    border-radius: 60px;
}

.navbar.scrolled {
    background-color: var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    margin: 0px;
    padding: 0;
}

.nav-link {
    margin: 0px 10px;
    font-weight: 500;
    transition: color 0.3s;
    color: white !important;
}

.nav-link:hover {
    color: rgb(248, 249, 250) !important;
}

.sepcial-link {
    background-color: var(--second-color);
    border-radius: 30px;
    padding: 5px 30px 5px 38px !important;
    color: #fff;
}

.sepcial-link:hover {
    color: var(--main-color) !important;
    background: #fff;
}

.sepcial-link::before {
    content: "";
    background-color: #fff;
    left: 18px;
    top: 15px;
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
}
.sepcial-link:hover::before {
    background-color: var(--main-color);
}

#home .hero-section span:nth-of-type(1) {
    right: calc(50% - 440px);
    top: 20%;
}

#home .hero-section span:nth-of-type(2) {
    left: calc(50% - 520px);
    bottom: 26%;
}

#home .hero-section span:nth-of-type(3) {
    right: calc(50% - 580px);
    bottom: 10%;
}

#home span::before {
    content: "";
    background-color: rgb(0, 0, 0);
    border: 2px solid rgb(255, 255, 255);
    left: -39px;
    top: 7px;
    position: absolute;
    width: 25px;
    height: 25px;
    display: block;
    border-radius: 50%;
}

#home span:nth-of-type(2)::before {
    right: -39px;
    left: auto;
    top: 7px;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/heroImg.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.hero-content {
    width: 820px;
    max-width: 96%;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--third-color);
}
.hero-content h1 b{
    color: #fff;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px;
}

#who{
    background: var(--main-color);
    color: #fff;
    margin-top: -30px;
    padding: 50px 0 10px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#about p {
    font-size: 15px;
}

#about p b {
    font-size: 17px;
    font-weight: 600;
}

.oneImage.swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.oneImage .swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.oneImage .slide-content {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 25px;
    width: 520px;
    margin-left: 0px;
    margin-bottom: 0px;
}

.oneImage .slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
}

.oneImage .slide-description {
    color: var(--main-color);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.oneImage .slide-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(238, 238, 238);
    padding-top: 15px;
}

.oneImage .nav-arrows {
    display: flex;
    gap: 10px;
}

.oneImage .nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgb(221, 221, 221);
    padding: 16px;
}

.oneImage .nav-arrow:hover {
    background: var(--main-color);
    transform: translateY(-3px);
    color: rgb(255, 255, 255);
    border-color: var(--main-color);
}

.oneImage .nav-arrow:hover svg path {
    fill: rgb(255, 255, 255);
    stroke: rgb(255, 255, 255);
}

.oneImage .swiper-pagination {
    display: inline;
    bottom: 63px !important;
    width: max-content !important;
    left: 190px !important;
}

.oneImage .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgb(147, 147, 147);
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer !important;
}

.oneImage .swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
}

@media (max-width: 992px) {
    .oneImage .slide-content {
        width: 60%;
    }
    .container-fluid{
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .oneImage.swiper {
        height: 450px;
    }

    .oneImage .slide-content {
        width: 80%;
        margin-left: 10%;
    }

    .oneImage .slide-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .oneImage.swiper {
        height: 400px;
    }

    .oneImage .slide-content {
        width: 90%;
        margin-left: 5%;
        padding: 20px;
    }

    .oneImage .slide-title {
        font-size: 1.3rem;
    }

    .oneImage .slide-description {
        font-size: 1rem;
    }
}

.accordion-item {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(221, 221, 221);
    margin-bottom: 30px;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after, .accordion-button::after {
    display: none;
}

/* projects section */
.oneHalfImage.swiper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.oneHalfImage .swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}
.oneHalfImage .swiper-wrapper{
    right: -150px;
    position: relative;
}
.oneHalfImage .slide-content {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 25px;
    width: 520px;
    margin-left: 0px;
    margin-bottom: 0px;
}

.oneHalfImage .slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
}

.oneHalfImage .slide-description {
    color: var(--main-color);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* completed projects */
.comProjectsSwiper {
    width: 100%;
    height: 100%;
    padding: 30px 0px;
}

.comProjectsSwiper .swiper-slide {
    text-align: center;
    background: rgb(255, 255, 255);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.comProjectsSwiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.comProjectsSwiper .slide-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}

.comProjectsSwiper .slide-content {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    position: absolute;
    z-index: 11;
    background: #fff;
    bottom: 0;
    border-radius: 15px;
    margin: 20px;
    padding: 15px 20px;
    width: calc( 100% - 40px);
}

.comProjectsSwiper .slide-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.comProjectsSwiper .slide-description {
    color: rgb(127, 140, 141);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}
.comProjectsSwiper .slide-description svg{
    width: 21px;
}

.comProjectsSwiper .swiper-button-next, .comProjectsSwiper .swiper-button-prev, .comProjectsSwiper .swiper-pagination {
    display: none !important;
}

@media (max-width: 768px) {
    .comProjectsSwiper .slide-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .comProjectsSwiper .slide-image {
        height: 180px;
    }
}


.projects-header {
    padding: 3rem 0px;
}

.builder-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 0.3s;
    height: 100%;
}

.builder-card:hover {
    transform: translateY(-5px);
}

.builderSwiper {
    width: 100%;
    height: 100%;
    padding: 30px 0px;
}

.builderSwiper .swiper-slide {
    text-align: center;
    background: rgb(255, 255, 255);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.builderSwiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.builderSwiper .slide-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    object-position: top;
}

.builderSwiper .slide-content {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.builderSwiper .slide-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.builderSwiper .slide-description {
    color: rgb(127, 140, 141);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.builderSwiper .swiper-button-next, .builderSwiper .swiper-button-prev, .builderSwiper .swiper-pagination {
    display: none !important;
}

@media (max-width: 768px) {
    .builderSwiper .slide-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .builderSwiper .slide-image {
        height: 180px;
    }
}

.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/contactBg.png") center center / cover no-repeat;
    color: white;
}

.contact-form {
    background: rgb(255, 255, 255);
    border-radius: 0.5rem;
    color: rgb(0, 0, 0);
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.contact-info {
    height: 100%;
}

.contact-section .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--main-color);
    --bs-btn-border-color: var(--main-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #111111;
    --bs-btn-hover-border-color: #111111;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #111111;
    --bs-btn-active-border-color: #111111;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--main-color);
    --bs-btn-disabled-border-color: var(--main-color);
    padding: 12px 20px;
}

footer {
    background-color: var(--main-color);
    color: white;
    padding: 40px 0px 0;
}

footer a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    transition: 0.3s;
}

footer a:hover {
    text-decoration: none;
    transition: 0.3s;
}

footer li {
    transition: 0.3s;
}

footer li:hover svg {
    rotate: none;
    transition: 0.3s;
}

footer svg {
    width: 20px;
    rotate: -45deg;
}

footer svg path {
    stroke: rgb(255, 255, 255);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
    }

    .contact-form, .contact-info {
        margin-bottom: 2rem;
    }
}




/* gallery fo modal */
.modalGallery.swiper {
    width: 100%;
    height: 570px;
    overflow: hidden;
}

.modalGallery .swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: 10px;
}

.modalGallery .slide-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    position: absolute;
    left: 70px;
    bottom: 10px;
    z-index: 111;
}

.modalGallery .nav-arrows {
    display: flex;
    gap: 10px;
}

.modalGallery .nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgb(221, 221, 221);
    padding: 16px;
}

.modalGallery .nav-arrow:hover {
    background: var(--main-color);
    transform: translateY(-3px);
    color: rgb(255, 255, 255);
    border-color: var(--main-color);
}
.modalGallery .nav-arrow:hover svg path{
    fill: #fff;
}

.modalGallery .swiper-pagination {
    display: inline;
    bottom: 63px !important;
    width: max-content !important;
    left: 190px !important;
}

.modalGallery .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgb(147, 147, 147);
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer !important;
}

.modalGallery .swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
}
.mmodalCustomize .btn-close{
    position: absolute;
    z-index: 11;
    left: 25px;
    bottom: 25px;
    background: #fff;
    width: 50px;
    height: 50px;
    padding: 20px;
    border-radius: 50%;
    padding: 0;
    opacity: 1;
}
.mmodalCustomize .btn-close svg{
    width: 20px;
}
.sepcial-link-mo {
    display: none;
}

@media (max-width: 992px) {
    .modalGallery .slide-content {
        width: 60%;
    }
    .navbar-toggler{
        position: absolute;
        right: 20px;
        top: 17px;
    }
    .sepcial-link{
        position: absolute !important;
        right: 79px;
        top: 18px;
    }
    .hero-content h1, .hero-content h1 b {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    #who h2, #who p{
        text-align: center;
    }
    .comProjectsSwiper .slide-content {
        padding: 0;
        position: relative;
        z-index: 11;
        background: #fff;
        bottom: 0;
        border-radius: 15px;
        margin: 15px 0 0 0;
    }
    label {
        font-size: 15px;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .modalGallery.swiper {
        height: 450px;
    }
    .accordion.me-4{
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .modalGallery.swiper {
        height: 400px;
    }
    .sepcial-link::before{
        display: none;
    }
    .sepcial-link {
        padding: 5px 20px 5px 20px !important;
        display: none;
    }
    .sepcial-link-mo {
        display: block;
    }
}


