
/* ======================== Home Page CSS ======================== */

/* hiro section css */
.hiro-wrap,
.hiro-wrap .hiro-slider,
.hiro-wrap .hiro-slider .hiro-item {
    width: 100vw;
    height: 100vh;
}
.hiro-wrap .hiro-slider * {
    outline: none;
}
.hiro-wrap .slick-dots {
    position: fixed;
    z-index: 100;
    width: 40px;
    height: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: auto;
    color: #fff;
    display: block;
}
.hiro-wrap .slick-dots li {
    display: block;
    width: 100%;
    height: auto;
}
.hiro-wrap .slick-dots li button {
    position: relative;
    width: 20px;
    height: 15px;
    text-align: center;
}
.hiro-wrap .slick-dots li button:before {
    content: "";
    background: #fff;
    color: #fff;
    height: 2px;
    width: 20px;
    border-radius: 0;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0.6;
}
.hiro-wrap .slick-dots li.slick-active button:before {
    width: 40px;
    opacity: 1;
}
.hiro-wrap.hiro-slider-right {
    left: 0;
    z-index: 1;
    width: 50vw;
    pointer-events: none;
}
.hiro-wrap.hiro-slider-right .hiro-slider {
    position: absolute;
    left: 0;
}


/* Page Banner CSS */
.page-hero {
    padding-top: calc(var(--section-padding) + 130px);
    background-size: cover;
    background-position: center;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-black);
    opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.page-hero .theme-title {
    max-width: 990px;
}
.page-hero .theme-title span {
    font-size: 18px;
}
.page-hero .theme-title span::before {
    top: 3px;
}
.page-hero .theme-title h1 {
    margin-bottom: var(--content-space);
}
.page-hero .theme-title p {
    margin-bottom: var(--content-space);
}

/* About Me CSS */
.about-me .image-anime.position-sticky {
    top: 150px;
}

/* Our Gallery CSS */
.gallery .theme-title {
    max-width: 800px;
    margin: 0 auto var(--section-title-bottom);
}
.gallery-item-wrap {
    scrollbar-width: none;
}
.gallery-item-wrap::-webkit-scrollbar {
    display: none;
}
.gallery-item-wrap + .gallery-item-wrap {
    margin-top: var(--content-space);
}
.gallery-item {
    width: 500px;
    flex-shrink: 0;
    flex:0 0 auto;
}
.gallery-item .image-anime img {
    transition: transform 0.4s ease;
}
.gallery-item:hover .image-anime img {
    transform: scale(1.2);
}
.view-img {
    position: relative;
}
.view-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .view-img .overlay {
    background-color: #ff000000;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
} */



/* Our Services CSS */
.services .theme-title {
    max-width: 800px;
    margin: 0 auto var(--section-title-bottom);
}
.services .service-item .theme-title {
    margin-bottom: 40px;
}
.service-item {
    border: 1px solid var(--theme-border-color);
    border-radius: var(--common-radius);
    padding: 40px;
    background-color: var(--color-light);
}
.service-item::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--theme-progress-gradient);
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
}
.service-item .content-box {
    position: relative;
    z-index: 2;
}
.service-item .icon-box {
    margin-bottom: var(--content-space-xl);
}
.service-item .content-box .theme-title h3 {
    margin-bottom: var(--content-space);
    color: var(--color-black);
}
.service-item:hover:before {
    height: 100%;
    border-radius: 0;
}
.service-item:hover .icon-box img {
    transition: all 0.4s ease-in-out;
    filter: brightness(0) invert(1);
}
.service-item:hover .content-box .theme-title h3,
.service-item:hover .content-box .theme-title p {
    transition: all 0.4s ease-in-out;
    color: var(--bs-white);
}
.service-item-no {
    margin: 10px -50px -65px 0;
}
.service-item-no h4 {
    font-size: 100px;
    font-weight: 700;
    line-height: 1em;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px var(--theme-border-color);
    transition: all 0.4s ease-in-out;
}


/* About Us CSS */
.about-us-images {
    margin-right: 20px;
    top: 150px;
}
.about-us-images .side-img-one {
    padding-right: 100px;
    padding-bottom: 100px;
}
.about-us-images .side-img-two {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 78%;
}
.about-us-images .side-img-two .image-anime {
    border-radius: 25px;
    border: 10px solid var(--color-darklight);
}
.about-us-images .image-anime {
    margin-bottom: 0;
}
.about-us .about-us-content .theme-title h2 {
    margin-bottom: var(--content-space);
}
.about-us .about-us-content .mission-vision {
    margin-top: var(--content-space-xl);
}
.aboutus-item {
	padding: 30px;
	border-radius: var(--common-radius);
    background-color: var(--color-light);
}
.aboutus-item-header {
	gap: 20px;
	margin-bottom: 30px;
}
.aboutus-item-header .icon-box img {
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}
.aboutus-item:hover .aboutus-item-header .icon-box img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(0);
}


/* Our Team CSS */
.our-team .theme-title {
    max-width: 600px;
    margin: 0 auto var(--section-title-bottom);
}
.team-item .team-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(var(--color-black) / 0%) 50%, rgb(var(--color-black) / 30%) 100%);
	z-index: 1;
}
.team-item:hover .team-item-image figure img {
    transition: all 0.6s ease-in-out;
    transform: scale(1.06);
}
.team-item .team-item-body {
    left: 30px;
    bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.team-item .team-item-content p {
    margin: 10px 0 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-item:hover .team-item-body {
	bottom: 30px;
}
.team-item:hover .team-item-content p {
    height: 20px;
    opacity: 1;
    visibility: visible;
}


/* CTA CSS */
.cta {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-black);
    opacity: 40%;
}

.cta .theme-title {
    max-width: 700px;
}
.cta .theme-title h2,
.cta .theme-title p {
    margin-bottom: var(--content-space);
}


/* ======================== Contact Page CSS ======================== */
/* Contact Us CSS */
.contact-details {
    top: 150px;
    background-color: var(--color-light);
    border-radius: var(--common-radius);
    margin-right: 30px;
    padding: 60px;
}
.contact-details .theme-title {
    margin-bottom: var(--content-space);
}
.contact-details .theme-title h2 {
    margin-bottom: var(--content-space);
}
.contact-details .contact-details-item {
    padding-block: 30px;
}
.contact-details .contact-details-item .icon-box {
    min-width: 40px;
}
.contact-details .contact-details-item .contact-details-content h3 {
    margin-bottom: var(--content-space-sm);
}
.contact-details .contact-details-item + .contact-details-item {
    border-top: 1px solid var(--theme-border-color);
}
.contact-form {
    background-color: var(--color-light);
    border-radius: var(--common-radius);
    padding: 60px;
}
.contact-form .theme-title {
    margin-bottom: var(--content-space-xl);
}
.contact-form .theme-title h2 {
    margin-bottom: var(--content-space);
}
.form-floating > label {
    padding: 0.8rem .75rem;
}
.form-floating > .form-control {
    box-shadow: none;
    padding: 0.5rem .75rem;
    height: calc(3.2rem + calc(var(--bs-border-width) * 2));
    min-height: calc(3.2rem + calc(var(--bs-border-width) * 2));
}
.form-floating > .form-control:focus {
    border-color: var(--color-secondary);
}
.form-floating>.form-control:not(:placeholder-shown)~label {
    transform: scale(.80) translateY(-.5rem) translateX(.15rem);
}

/* Map Location CSS  */
.location .theme-title {
    max-width: 800px;
    margin: 0 auto var(--section-title-bottom);
}
.location .location-map iframe {
    height: 500px;
    border-radius: var(--common-radius);
}



/* ======================== Project Page CSS ======================== */

/* Project CSS */
.project {
    position: relative;
}
.project .project-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1);
    will-change: transform;
}
.project .project-wrap.zoom-out {
    transform: scale(0.98); /* very small scale */
}
.project .project-wrap .project-item {
    display: flex;
}
.project .project-wrap .project-item .project-image {
    cursor: pointer;
    width: 450px;
    min-width: 450px;
    margin: 0 auto;
    position: relative;
    transition: min-width 0.4s ease-in-out, margin-left 0.4s ease-in-out;
}
.project .project-wrap .project-item .project-image .view-img figure {
    margin: 0;
    padding: 5px;
}
.project .project-wrap .project-item .project-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.project .project-wrap .project-item .project-heading {
    text-align: right;
    position: absolute;
    top: 0;
    right: 100%;
    padding-right: 30px;
}
.project .project-wrap .project-item .project-heading .project-icon {
    width: 50px;
    height: 50px;
    padding: 8px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    background-color: var(--color-darklight);
    margin-bottom: var(--content-space);
    border-radius: 3px;
}
.project .project-wrap .project-item .project-heading h2 {
    font-size: 16px;
    white-space: nowrap;
    margin-bottom: 5px;
}
.project .project-wrap .project-item .project-heading p {
    font-size: 14px;
    white-space: nowrap;
}
.project .project-wrap .project-item .project-details {
    display: none;
}
.project .project-wrap .project-item .project-details .project-content {
    width: 100%;
    min-width: 350px;
    text-wrap: auto;
}
.project .project-wrap .project-item .project-details .project-gallary {
    gap: 50px;
}
.project .project-wrap .project-item .project-image .view-img figure::before,
.project .project-wrap .project-item .project-image .view-img figure::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100px;
    height: 100px;
    background: var(--theme-gradient);
    transition: width 0.4s ease, height 0.4s ease;
}
.project .project-wrap .project-item .project-image .view-img figure::before {
    top: 0;
    left: 0;
}
.project .project-wrap .project-item .project-image .view-img figure::after {
    bottom: 0;
    right: 0;
}
.project .project-wrap .project-item .project-image:hover .view-img figure::before,
.project .project-wrap .project-item .project-image:hover .view-img figure::after {
    width: 100%;
    height: 100%;
}

/* ACTIVE ITEM = horizontal scroll container */
.project .project-wrap .project-item.active {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 100%;
    flex: 0 0 100%;
    transition: all 0.6s;
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
}
.project .project-wrap .project-item.active::-webkit-scrollbar {
    display: none;
}
.project .project-wrap .project-item.active.dragging {
    cursor: grabbing;
}
.project .project-wrap .project-item.active * {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.project .project-wrap .project-item.active .project-details {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding-right: 50px;
}
.project .project-wrap .project-item.active .project-gallary {
    flex-direction: row;
    gap: 50px;
}
.project .project-wrap .project-item.active .project-gallary .image-anime {
    min-height: 560px;
    min-width: max-content;
    margin: 0;
}
.project .project-wrap .project-item.active .project-gallary .image-anime img {
    height: 100%;
    object-fit: cover;
}
.project .project-wrap .project-item.active .project-image {
    min-width: 800px;
    margin-left: calc(50% - 400px);
}
.project .project-wrap .project-item.active .project-image .view-img figure::before,
.project .project-wrap .project-item.active .project-image .view-img figure::after {
    width: 100%;
    height: 100%;
}



/* ======================== 404 Page CSS ======================== */
.page-not-found.sec-padding {
    padding-top: calc(var(--section-padding) + 100px);
}
.page-not-found .image-anime {
    margin: 0 0 var(--content-space-lg);
}
.page-not-found .image-anime img {
    max-width: 700px;
    width: 100%;
}
.page-not-found .theme-title h1 {
        margin-bottom: var(--content-space-sm);
}
.page-not-found .theme-title p {
    margin-bottom: var(--content-space-lg);
}