


/* Hero Banner */

.astrazhb-head2 {
    z-index: 3;
    overflow: visible;
    position: absolute;
    right: 30px;
}

.astrazhb-img {
    z-index: 2;
}

.shape {
    width: 350px;
    height: 130px;
    background: #c8ff00;
    position: absolute;
    bottom: 0px;
    right: 0px;
    /* border-radius: 50%; */
    /* box-shadow: 0 0 5px #f9f9f9; */
    /* animation: floaty 5s ease-in-out infinite; */

}

.shape2 {
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    /* box-shadow: 0 0 5px #f9f9f9; */
    background: #c8ff00;
    position: absolute;
    top: 0px;
    left: 0px;
    /* animation: floaty 5s ease-in-out infinite; */
}

.hero-line {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 250px;
}

@keyframes floaty {
    0% {
        transform: translatex(0px);
        rotate: 30deg;
    }

    50% {
        transform: translatex(-20px);
        rotate: 30deg;
    }

    100% {
        transform: translatex(0px);
        rotate: 30deg;
    }
}

#play-video:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.astrazhb-thumb {
    width: 110px;
    height: 110px !important;
    border-radius: 50% !important;
}

.astrazhb-thumb-video {
    display: block;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Basic styling for overlay and play button */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.video-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.video-container {
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

.video-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.video-play-button {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.video-play-button span {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Info box */


/* Image Reveal */
.astrazirv-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.astrazirv-img-wrapper .reveal {
    /* visibility: hidden; */
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Projects Widget */

.astraz-project-mask img {
    height: 100%;
    width: 100%;
    transform-origin: top;
    object-fit: cover;
}

.astraz-project-mask {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.elementor-editor-active .astraz-project-mask {
    visibility: visible !important;
}

.astraz-project-wrapper .repeater-item:nth-child(even) {
    margin-top: 100px;
    padding-left: 100px;
}

.astraz-project-tdbwrapper {
    position: absolute;
    bottom: 0;
    right: -100%;
    background: rgb(200 243 29);
    color: #000000;
    padding: 15px 30px;
    transition: right 1s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    width: 55%;
}

.astraz-project-mask:hover .astraz-project-tdbwrapper {
    right: 0;
    opacity: 1;
}


/* Add this CSS to your styles */
.astraz-project-wrapper2 .astraprojectgrid2 .astraz-project-mask2 {
    position: relative;
    overflow: hidden;
}

.astraz-project-wrapper2 .astraprojectgrid2 .project-content .image-container {
    display: block;
    position: relative;
    overflow: hidden;
}

.astraz-project-wrapper2 .astraprojectgrid2 .project-content .project-img {
    transition: transform 0.3s ease-in-out;
    /* Smooth zoom effect */
    width: 100%;
    /* Ensure the image is responsive */
    height: auto;
}

.astraz-project-wrapper2 .astraprojectgrid2 .project-content {
    overflow: hidden;
}

.astraz-project-wrapper2 .astraprojectgrid2 .project-content:hover .project-img {
    transform: scale(1.1);
    /* Zoom in the image on hover */
}

.astraz-project2-tdbwrapper {
    position: relative;
    /* background: #424242; */
    display: flex;
    justify-content: space-between;
}

.astraz-project2-tdbwrapper .astraz-project-title {
    padding: 20px;
    border-radius: 0px 0px 80px 10px;
}

/* Services Widget */

.astraz-service-btn {
    text-align: center;
}

.hover-reveal {
    position: absolute;
    width: 300px;
    height: 400px;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    z-index: -1;
}



.hover-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: transform 0.4s ease-out;
}

/* testimonial */

.astraz-testimonial-slider .buttons {
    z-index: 1;
    right: 60px;
    top: 0;
    width: 80px;
    height: 40px;
    position: absolute;
    border-radius: 50px;
    transform: translateX(50%);
}

.astraz-testimonial-slider .buttons .previous,
.astraz-testimonial-slider .buttons .next {
    width: 50%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin-left: -20px;
    background-color: #c8ff00;
}

.astraz-testimonial-slider .buttons .previous {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url('https://alcs-slider.netlify.app/images/icon-prev.svg'); */
}

.astraz-testimonial-slider .buttons .previous:hover {
    transform: scale(1.25);
}

.astraz-testimonial-slider .buttons .next {
    right: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.astraz-testimonial-slider .buttons .next:hover {
    transform: scale(1.25);
}

.astraztms-slide {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
}


.testimonial blockquote {
    font-size: 24px;
    line-height: 30px;
}


.testimonial-item-num {
    font-size: 200px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #939393;
    position: relative;
    left: 10px;
}


.testimonial-slider .astraztms-slide {

    opacity: 0;
    transform: translateY(50px);
    /* Start position: 50px below */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    display: none;
    /* Initially hidden */
}

.elementor-element-edit-mode .astraz-testimonial-slider .astraztms-slide {
    opacity: 1;
    display: block;
}


.astraztms-slide.active {
    opacity: 1;
    transform: translateY(0);
    /* Move to original position */
    display: flex;
    /* Show active slide */
}

.astraz-testimonial {
    padding: 32px 0 0 0;
    background-size: 80px;
    background-position: 19% -7%;
    background-repeat: no-repeat;
    background-image: url(https://alcs-slider.netlify.app/images/pattern-quotes.svg);
}

.astraz-testimonial blockquote {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 20px;
}

.astraz-testimonial .author-desc {
    padding: 36px;
}

.astraz-testimonial .author {
    font-size: 15px;
    font-weight: 700;
}

.astraz-testimonial .active {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.4s;
}

.astraz-testimonial .hide {
    display: none;
}

/* blog Slider */

.astrazpost-scroll-slider {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.astrazpost-scroll-wrapper {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* .astrazpost-scroll-slide {
    flex: 1 0 75vw;
    max-width: 75vw;
    height: 100%;
} */

.astrazpost-scroll-slide {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1 0 65vw;
    max-width: 65vw;
}

.item-container {
    position: relative;
}

.item-title {
    font-size: 4vw;
    font-weight: bold;
    line-height: 1;
}

.item-body {
    position: absolute;
    left: 50%;
    top: 65%;
    /* width: 50%; */
    transform: translate(-50%, -50%);
}



.tag {
    margin-right: 0.5rem;
}

.tag>a {
    display: block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.25);
    color: #FFF;
}

/* Image Reveal */


/* infinite scroll */

.infinite-scroll-widget {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.infinite-scroll-widget .scroll {
    width: max-content;
    /* Ensures the content doesn't break */
    display: flex;
    align-items: center;
    gap: 0px;
    /* Adds spacing between duplicated text */
    white-space: nowrap;
}

.infinite-scroll-widget .scroll div {
    color: #000;
    font-size: 4em;
    background: #fff;
    padding: 20px 10px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    animation: scrollAnimation 10s linear infinite;
}

.infinite-scroll-widget .scroll div span {
    -webkit-text-stroke: 2px #000;
    color: transparent;
}

/* Ensures Smooth Infinite Scrolling */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Make sure the second scrolling text has the same animation */
.infinite-scroll-widget .scroll.animation_text1 {
    transform: rotate(7deg) translateY(350px) translateX(110px);
    width: max-content;
}

.infinite-scroll-widget .scroll.animation_text2 {
    transform: rotate(-7deg) translateY(-140px) translateX(-200px);
    width: max-content;
}


/* style2 */
.infinite-scroll-widget2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.scroll.animation2_text {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-animation 36s linear infinite;
}

.scroll.animation2_text div {
    display: inline-block;
    padding-right: 50px;
    /* Adjust spacing between items */
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    /* background-color: #fff; */
    color: #000;
}

@keyframes scroll-animation {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* text reveal */

.letter {
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
}

.rtTextSection {
    overflow: hidden;
    /* Prevents content shifting */
}

/* advanced text   */
/* style 2,3 */
.advanced-text-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.advanced-text-widget h2 {
    position: relative;
    font-family: sans-serif;
    font-size: 150px;
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    overflow: hidden;
    line-height: 1;
    /* Fix text height issue */
    white-space: nowrap;
    /* Prevent text wrapping */
}

.astraAThero-text {
    font-weight: bold;
    font-size: 7em;
    position: relative;
    color: black;
    background-clip: text;
    -webkit-background-clip: text;
    /* Chrome, Safari */
    -moz-background-clip: text;
    /* Firefox (for older versions) */
    -o-background-clip: text;
    /* Older Opera */
    -ms-background-clip: text;
    /* Old IE (rare but valid) */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    transition: 0.5s;
}

.astraAThero-text:hover {
    letter-spacing: 3px;
}

.upText {
    animation: upText 1s ease;
    animation-timing-function: ease;
}

@keyframes upText {
    0% {
        transform: translateY(2rem);
        opacity: 0;
        visibility: hidden;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* style 1 */
.astraTCS-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.astraTCS-text {
    position: relative;
    font-size: 14vw;
    color: #1B2E51;
    -webkit-text-stroke: 0.1vw #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.astraTCS-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    color: #EF4C72;
    -webkit-text-stroke: 0vw #FFFFFF;
    border-right: 4px solid #EF4C72;
    overflow: hidden;
    animation: astraTCS-animate 6s linear infinite;
}

@keyframes astraTCS-animate {

    0%,
    10%,
    100% {
        width: 0%;
    }

    70%,
    90% {
        width: 100%;
    }
}


/* scroll-slider */



.astrazScSl__container {
    position: sticky;
    top: 0;
    height: 90vh;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* margin-bottom: 100px; */

}

.ScSlimage {
    width: auto;
    height: 70vh;
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Elementor Editor Mode Styles */
.elementor-editor-active .astrazScSl__container {
    display: block !important;
    /* Block display for editor */
}

.elementor-editor-active .ScSlimage {
    opacity: 1 !important;
    position: relative !important;
    height: 300px;
}

.ScSlimage.active {
    opacity: 1;
}

.astrazScSl__content {
    grid-column: col-start 8 / center-end;
}

.astrazScSl__section {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #cdcdcd31;
}

.astrazScSl__content p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.astrazScSl__content i {
    margin-bottom: 20px;
}

.astrazScSl__section:first-child {
    border-top: none;
}

.astrazScSl__button {
    background-color: #005bb5;
    text-decoration: none;
    width: 20%;
    text-align: center;
    /* transition: all 0.3s ease; */
}

.astrazScSl__button:hover {
    text-decoration: none;
    background-color: #14e441;
    color: #fff rgb(0, 181, 106)rgb(15, 235, 143);
}


/* zoom image */

.astrazirv-zoom-wrapper,
.astrazirv-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.astrazirv-content {
    overflow-x: hidden;
}

.astrazirv-content .astraz-section {
    width: 100%;
    /* height: 100vh; */
}

.astrazirv-content .astraz-section.hero {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.astrazirv-image-container {
    perspective: 500px;
}

.astrazirv-image-container img {
    /* width: 60%;  */
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    transition: width 0.05s linear, left 0.05s linear;
}

/* blob image */

.imgshape {
    visibility: visible;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0.4s,
        transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.4s;
    /* height: 90vh; */
    /* width: 90vw; */
    display: inline-block;
    /*justify-content: center;*/
    /*align-items: center;*/
}

.bg-cover {
    height: 280px;
    width: 280px;
    background-size: cover;
    background-position: center;
    -webkit-animation: liquid 7s ease-in-out infinite;
    animation: liquid 7s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes liquid {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}


/* Spin Image */

.astrazirv-Spin-Wrapper {
    position: relative;
    display: inline-block;
}

.astrazirv-Spin-Wrapper img {
    width: 100%;
    /* Ensure the image takes up the full width of its container */
    height: auto;
    /* Maintain aspect ratio */
}

.astrazirv-Spin-Wrapper i,
.astrazirv-Spin-Wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center the icon */
    font-size: 24px;
    /* Adjust the size of the icon */
    color: #000;
    /* Change color as needed */
    pointer-events: none;
    /* Prevent the icon from interfering with clicks on the image */
}

.astrazirv-Spin-Wrapper img {
    display: block;
    /* margin: 0 auto; */
    /* max-height: 100%; */
    /* height: 300px; */
    /* max-width: 100%; */
    width: auto;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* ==================
    Pin Element
================== */

[data-settings],
.astrazpost-scroll-wrapper, .pin-spacer, .astrazpost-scroll-slider {
    transition: 0s !important;
    /* Prevents movement when pinned */
}


/* ==================
    Project Slider
================== */
.astraz-projectSlider-wrapper .swiper-container {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.astraz-projectSlider-wrapper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.astraz-projectSlider-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
}

.astraz-projectSlider-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Curved Effect */
.astraz-projectSlider-wrapper .swiper-slide img {
    /* transform: perspective(1000px); */
    opacity: 0.7;
}

.astraz-projectSlider-wrapper .swiper-slide-prev img {
    transform: perspective(900px) rotateY(20deg);
    opacity: 0.85;
}

.astraz-projectSlider-wrapper .swiper-slide-next img {
    transform: perspective(900px) rotateY(-20deg);
    opacity: 0.85;
}

.astraz-projectSlider-wrapper .swiper-slide-active img {
    /* transform: perspective(1000px) rotateX(10deg) scale(1.1); */
    transform: scale(1.1);
    opacity: 1;
}


/* Project Slider2 */

.astraproSlider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.astraproject-slider {
    width: 100%;
    overflow: hidden;
}

.astraproSlider-track {
    display: flex;
    will-change: transform;
}

.astraproSlider-item {
    transition: transform 0.5s ease;
}

.astraproSlider-item:hover .astraz-project-tdatawrapper{
    padding:50px;
}

/* Background Image */
.astraproSlider-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.astraproSlider-nav {
    display: flex;
    justify-content: end;
    gap: 15px;
}

/* Navigation Buttons */
.astraproSlider-nav .prev-btn,
.astraproSlider-nav .next-btn {
    background: #0c0d0e;
    color: #c8f31d;
    border: none;
    padding: 26px 30px;
    cursor: pointer;
    font-size: 25px;
    z-index: 10;
    margin: 10px 0px;
}

.astraproSlider-nav .prev-btn {
    left: 10px;
}

.astraproSlider-nav .next-btn {
    right: 10px;
}





/* Team */

.astrateam-teambox-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 400px;
}

.teambox-item-inner {
    /* background-color: white; */
    position: relative;
    border-radius: 20px;
    overflow: visible;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3sease;
    transition: all 0.3sease;
}

.teambox-item-inner .team-image {
    position: relative;
    mask-image: radial-gradient(circle at 50% 37%, black 35%, rgba(0, 0, 0, 0) 35.5%);
    /* -webkit-mask-image: radial-gradient(circle at 50% 37%, black 35%, rgba(0, 0, 0, 0) 35.5%); */
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 145%;
    mask-position: center;
    -webkit-mask-position: center;
    transition: mask-size 0.6s ease, mask-position 0.6s ease;
}

.team-image .team-image-inner {
    position: relative;
    padding-top: 128%;
    overflow: hidden;
    background-color: var(--primary);
}

.team-image .team-image-inner1 {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: var(--primary);
}

.teambox-item-inner .team-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: cover;
    transition: width 0.4s, height 0.4s;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    filter: saturate(0);

}

.astrateam-teambox-item .team-content {
    position: absolute;
    bottom: 0;
    padding: 25px 40px;
    z-index: 3;
}



.astrateam-teambox-item:hover .team-image {
    mask-size: 400% 500%;
    -webkit-mask-size: 400% 500%;
}

.button-popup-detail {
    position: absolute;
    width: 75px;
    height: 38px;
    bottom: 22px;
    right: 15px;
    padding: 14px 0 0 14px;
    border-radius: 20px 0 0;
    z-index: 2;
}

.astrateam-teambox-item .button-popup-detail:before {
    content: "";
    width: 20px;
    height: 20px;
    clip-path: path("M 0 0 Q 0,20 21,21 L -1 21 Z");
    position: absolute;
    bottom: 100%;
    right: 0px;
    transform: rotate(-90deg);
}



/* .astrateam-teambox-item .button-popup-detail .popup-icon:before {
    font-family: "diteck-icon";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    content: "+";
} */

.astrateam-teambox-item .button-popup-detail .popup-icon:before {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #000000;
    font-size: 14px;
    bottom: -22px;
    right: 0;
    z-index: 3;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3sease;
    transition: all 0.3sease;
}

.astrateam-teambox-item .button-popup-detail:after {
    content: "";
    width: 20px;
    height: 20px;
    clip-path: path("M 0 0 Q 0,20 21,21 L -1 21 Z");
    position: absolute;
    bottom: 0;
    right: 100%;
    transform: rotate(-90deg);
}

.astrateam-teambox-item:after {
    display: block;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 22px;
    background: transparent;
}

.astrateam-social-links {
    display: flex;
    flex-direction: column;
    align-items: end;
    position: absolute;
    top: 50px;
    right: 22px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
}

.astrateam-teambox-item .team-content-1 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.astrateam-teambox-item:hover .team-content-1 {
    opacity: 1;
    transform: translateY(0);
}

.astrateam-teambox-item:hover .astrateam-social-links {
    opacity: 1;
    transform: translateY(20);
    pointer-events: auto;
}

.astrateam-social-links li {
    margin-bottom: 10px;
    padding: 3px 10px;
    width: 100%;
}




/*======= Button =======*/

/* btn1 */
.bouncybtn-link {
    position: relative;
}

.bouncybtn-link span,
.bouncybtn-link svg,
.bouncybtn-link i {
    position: relative;
}

.bouncybtn-link svg,
.bouncybtn-link i {
    margin-left: 10px;
    z-index: 2;
    vertical-align: middle;
}

.bouncybtn-link .bouncybtn-color {
    border-radius: 2em;
    /* background-color: greenyellow; */
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: -10px;
}



/* btn2 */


.btn2-ripple .ripple-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.btn2-ripple .ripple-btn span {
    position: relative;
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleAnim 0.7s forwards;
}

@keyframes rippleAnim {
    0% {
        width: 0;
        height: 0;
    }

    100% {
        width: 220%;
        height: 220%;
    }
}


/* button 3 -Blob */

.btnblob {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnblob div:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.8s;
    animation: animate 6s linear infinite;
}

.btnblob:hover div:nth-child(1) {
    border: none;
    background: rgba(255, 255, 255);
}

.btnblob div:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #7ef9ff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.8s;
    animation: animate2 4s linear infinite;
}

.btnblob:hover div:nth-child(2) {
    border: none;
    background: rgba(126, 249, 255);
}

.btnblob div:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ff66cc;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.8s;
    animation: animate 10s linear infinite;
}

.btnblob:hover div:nth-child(3) {
    border: none;
    background: rgba(255, 102, 204);
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate2 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.blob-button a {
    position: relative;
    display: inline-block;
    margin-top: 4px;
}


/* Button 4 -Flip */


.full,
.flip-button .qube .front,
.flip-button .qube .back,
.flip-button .qube .front::before {
    width: 100%;

}

.flip-button {
    width: 205px;
    height: 80px;
}

.flip-button .qube {
    position: relative;
    height: 60px;
    width: 185px;
    perspective: 1800px;
}

.flip-button .qube .front,
.flip-button .qube .back {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    transition: transform 0.3s ease;
    position: absolute;
    color: #fff;
    line-height: 60px;
    text-align: center;
}

.flip-button .qube .front {
    background-color: #191919;
}

.flip-button .qube .front::before {
    content: '';
    display: block;
    z-index: -1;
}

/* .flip-button .qube .front::after {
    background: #fff;
    content: '';
    height: 155px;
    left: -75px;
    opacity: 0.4;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
} */
.flip-button .qube .back {
    background-color: #d6d35d;
    color: #191919;
    transform: rotateX(0deg) translateZ(60px);
}

.flip-button .qube:hover .front {
    transform: rotateX(0deg) translateZ(30px);
}

.flip-button .qube:hover .back {
    transform: rotateX(90deg) translateZ(30px);
}

.flip-button:active .front {
    border-radius: 0;
    background-color: transparent;
    color: #191919;
}

.flip-button:active .front::before {
    background-color: #d6d35d;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.flip-button:active .front::after {
    left: 120%;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}


/* Button 5 */
/* 

.button {
    display: inline-flex;
    height: 40px;
    width: 150px;
    border: 2px solid #BFC0C0;
    margin: 20px 20px 20px 20px;
    color: #BFC0C0;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8em;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  a {
    color: #BFC0C0;
    text-decoration: none;
    letter-spacing: 1px;
  } */


/* First Button */

#arrow-hover {
    width: 15px;
    height: 10px;
    position: absolute;
    transform: translateX(60px);
    opacity: 0;
    -webkit-transition: all .25s cubic-bezier(.14, .59, 1, 1.01);
    transition: all .15s cubic-bezier(.14, .59, 1, 1.01);
    margin: 0;
    padding: 0 5px;
}

a#button-1:hover img {
    width: 15px;
    opacity: 1;
    transform: translateX(50px);
}



/* @media screen and (min-width:1000px) {
    h1 {
      font-size: 2.2em;
    }
    #container {
      width: 50%;
    }
  } */





/* Navigation Menu */

/* Menu Style Start */

.astraz-menu {
    display: inline-block;
}

.astraz-menu>ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.astraz-menu>ul>li>a {
    position: relative;
    display: inline-block;

}

.astraz-menu>ul>li>a::before {
    position: absolute;
    content: "";
    bottom: 25px;
    width: 4px;
    height: 4px;
    left: 0;
    border-radius: 40px;
    opacity: 0;
    /* background: var(--color-green); */
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.astraz-menu li {
    position: relative;
}

.astraz-menu li ul {
    padding-top: 0;
    position: absolute;
    min-width: 220px;
    gap: 0;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
    /* background: var(--color-black2); */
}

.astraz-menu>ul>li:hover> ::before {
    opacity: 1;
    width: 15px;
}

.astraz-menu>ul>li:active>::before {
    opacity: 1;
    width: 15px;
}

.astraz-menu li ul li:hover>ul {
    top: 0;
}

.astraz-menu li ul li:hover>a {
    padding-left: 45px;
}

.astraz-menu li ul ul {
    left: 100%;
}

.astraz-menu li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}



.astraz-menu li li a {
    display: block;
    padding: 15px 35px;
    font-weight: 500;
    color: var(--color-white);
}


.astraz-menu li.menu-item-has-children>a::after {
    font-family: "icomoon";
    content: "\e900";
    speak: never;
    font-size: calc(100% - 2px);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-left: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.astraz-menu li.menu-item-has-children .menu-item-has-children>a {
    position: relative;
    padding-right: 50px;
}

.astraz-menu li.menu-item-has-children .menu-item-has-children>a::after {
    position: absolute;
    top: 20px;
    right: 33px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin-left: 0;
}

/* Menu Style End */


/*=====================
    3 Search Bar 
=======================*/

/* Search Style Start */
.astraz-search-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.astraz-search-container .search-option-open {
    font-size: 22px;
    /* color: var(--color-white); */
    /* background: var(--color-tr); */
}

.astraz-search-container .search-option-open:hover {
    color: var(--color-green);
}

.astraz-search-container.active .header-search {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.astraz-search-container.active .search-overlay {
    opacity: 0.8;
    visibility: visible;
}

.astraz-search-container.active .search-close {
    opacity: 1;
    visibility: visible;
}

.astraz-search-container .link-anime {
    display: none;
}

.astraz-search-container .header-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    width: calc(100% - 35px);
    height: 70px;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    border-bottom: 1px solid var(--color-border);
    z-index: 5;
    background: var(--color-tr);
    -webkit-transform: translate(-50%, -150%) scale(0.8);
    transform: translate(-50%, -150%) scale(0.8);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /* clears the ‘X’ from Internet Explorer */
    /* clears the ‘X’ from Chrome */
}

.astraz-search-container .header-search2 {
    position: relative;
    opacity: 1;
    visibility: visible;
    height: unset;
    left: 0;
    -webkit-transform: unset;
}

.astraz-search-container .header-search input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.astraz-search-container .header-search input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.astraz-search-container .header-search input[type=search]::-webkit-search-decoration,
.astraz-search-container .header-search input[type=search]::-webkit-search-cancel-button,
.astraz-search-container .header-search input[type=search]::-webkit-search-results-button,
.astraz-search-container .header-search input[type=search]::-webkit-search-results-decoration {
    display: none;
}

.astraz-search-container .header-search input {
    width: calc(100% - 40px);
    height: 100%;
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-tr);
}

.astraz-search-container .header-search button {
    width: 70px;
    height: 100%;
    padding: 0;
    color: var(--color-white);
    font-size: 16px;
    background: var(--color-tr);
}

.astraz-search-container .header-search button:hover {
    color: var(--color-green);
}

.astraz-search-container .search-overlay {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
    background: #000;
}


.astraz-search-container .search-close {
    position: fixed;
    padding: 0;
    top: 120px;
    right: 15px;
    font-size: 44px;
    opacity: 0;
    visibility: hidden;
    color: var(--color-white);
    background: var(--color-tr);
    z-index: 4;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.astraz-search-container .search-close:hover {
    color: var(--color-green);
}

/* Search style2 */
.astraz-search-container .header-search2 {
    position: relative;
    left: 0;
    top: 0;
    width: 400px;
    height: 40px;
    opacity: 1;
    visibility: visible;
    border-radius: 100px;
    border-bottom: none;
    background: var(--color-black3);
}

.astraz-search-container .header-search2 input {
    font-size: 14px;
    width: calc(100% - 74px);
    height: 100%;
    padding-left: 25px;
    color: var(--color-white);
    background: var(--color-tr);
}

.astraz-search-container .header-search2 button {
    font-size: 14px;
    width: 70px;
    height: 100%;
    color: var(--color-white);
    background: var(--color-tr);
}

.astraz-search-container .header-search2 button:hover {
    color: var(--color-border);
}

.menu-bar.v3 .menu-right.active .header-search,
.astraz-search-container .header-search2 {
    -webkit-transform: translate(0%, 0%) scale(1);
    transform: translate(0%, 0%) scale(1);
}

/* Search end */

/* ----logo-carousel---- */

/* Logo Carousel Container */
.logo_cara_slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: #ffffff;
}

/* Track that holds the slides */
.logo_cara_slider .slide-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    /* Ensure smooth looping */
    animation: scroll 10s linear infinite;
}

/* Individual slide */
.logo_cara_slider .cara_slide {
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents shrinking */
}

/* Logo Images */
.logo_cara_slider .cara_slide img {
    /* Fixed height */
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
    /* Smooth transition for opacity and filter */
    
    /* Make logos black and white by default */
}

/* Hover Effect */
.logo_cara_slider .cara_slide:hover img {
    opacity: 1;
    /* Make the logo fully opaque on hover */
}

/* Infinite Scrolling Keyframes */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo_cara_slider .slide-track:hover {
    animation-play-state: paused;
}



/* -------astraz video------- */


/* style.css */

/* Set up the container for the background video */
.astrazvid_video-bg-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* or adjust height as needed */
    overflow: hidden;
}

/* Video background styling */
.astrazvid_bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay content with title and description */
.astrazvid_video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.astrazvid_video-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.astrazvid_video-description {
    font-size: 1rem;
    margin-top: 10px;
}


/* ----------------------------- */

/* Media Query===Responsive  */

@media (max-width: 40em) {
    .item-body {
        position: static;
        transform: none;
        width: auto;
        left: auto;
        top: auto;
    }
}

@media (max-width: 767px) {

    /*=====================
      3 Menu Bar 
  =======================*/
    .main-menu.astraz-menu ul{
        margin-top: 15px;
    }

    .elementor-menu .menu {
        display: none;
    }

    /* CSS to show the menu when 'active' class is added */
    .elementor-menu .menu.hamburger-mobile-menu {
        display: block;
        /* Add any animation if needed */
    }

    .elementor-menu .menu.hamburger-mobile-menu .sub-menu {
        display: none;
        padding-left: 20px;
        /* Optional: add indentation */
    }

    /* Show submenu when the 'active' class is added */
    .elementor-menu .menu.hamburger-mobile-menu .menu-item-has-children.active .sub-menu {
        display: block;
        position: relative;
        opacity: unset;
        visibility: visible;
    }

    .astraz-menu li.menu-item-has-children>a::after {
        display: none;
    }

    .submenu-toggle-icon {
        margin-left: 10px;
        display: inline-block;
        width: 50%;
    }

    .full-width-menu {
        position: fixed;
        width: 100vw;
        left: 0;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        z-index: 9999;
        /*position: relative;*/
    }

    .astraz-menu li.menu-item-has-children {
        position: relative;
    }

    .astraz-menu li.menu-item-has-children>a {
        pointer-events: auto;
        /* Ensure link is clickable */
    }


    .astraz-menu li.menu-item-has-children.active>a::after {
        transform: translateY(-50%) rotate(180deg);
        /* Rotate when active */
    }

    .hamburger-mobile-menu {
        height: 100vh;
    }

    .hamburger-mobile-menu>li {
        border-bottom: 1px solid #ffffffd1;
    }

    .astraz-search-container .search-close {

        top: 167px;
    }

    
    .team-content {
        position: static;
        padding: 15px;
    }

    .button-popup-detail {
        position: static;
        margin-top: 10px;
    }
    
    .astraz-project-wrapper .repeater-item:nth-child(even) {
        margin-top: 50px;
        padding-left: 15px;
    }




}


@media (min-width: 768px) {

    /*=====================
      Menu Bar
  =======================*/

    .hamburger-menu {
        display: none;
    }

    .submenu-toggle-icon {
        display: none;
    }

    .hover-reveal {
        width: 220px;
        height: 300px;
    }

    
}