/* MAIN VIDEO SECTION */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* VIDEO AS BACKGROUND (LIMITED TO SECTION) */
.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK OVERLAY */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* CONTENT CENTERED ABOVE VIDEO */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #EFEFEF;
    max-width: 600px;
    width: 100%;
}

/* HEADINGS AND PARAGRAPH */
/* SLANTED BUTTONS */
.slanted-btn {
    transform: skewX(-20deg);
    background: transparent;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
    padding: 10px 30px;
    font-size: 24px;
    font-weight: 400;
    display: inline-block;
    font-family: 'aquirebold' !important;
}

.slanted-btn span {
    display: inline-block;
    transform: skewX(20deg);
}

.slanted-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* TABS AT THE BOTTOM CENTER */
.tab-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.tab-wrapper .nav-link {
    transform: skewX(-19deg);
    background: transparent;
    color: white;
    font-weight: bold;
    padding: 12px 36px;
    border: 2px solid white;
    border-right: none;
    border-radius: 0;
}

.tab-wrapper .nav-link span {
    display: inline-block;
    transform: skewX(10deg);
}

.tab-wrapper .nav-link:last-child {
    border-right: 2px solid white;
}

.tab-wrapper .nav-link.active {
    background: white;
    color: black;
}

.tab-wrapper .nav-link:not(.active):hover {
    background: rgba(255, 255, 255, 0.2);
}

.missionvission {
    font-size: 18px;
}

/* SECTION 2 GRADIENT */

.aboutbgcolor {
    background: linear-gradient(to bottom, #151416, #662D8E);
    padding-bottom: 50px;
}

.ourheading {
    color: #EFEFEF;
    position: relative;
    display: inline-block;
}

.ourheading::after {
    content: "";
    display: block;
    height: 4px;
    margin-top: 10px;
    background: linear-gradient(to right, #E31A68, #662D8E);
    width: 100%;
}
.aboutexplain {
    max-width: 663px;
    width: 100%;
    height: auto;
}
.aboutexplain
{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.aboutexplainpara {
    max-width: 800px;
    text-align: center;
    color: #FBFBFB;
}

.about-card-heading {
    color: #FBFBFB;
}

.about-card-para {
    color: #FBFBFB;
}

.about-card-img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.aboutcard:hover .about-card-img {
    filter: drop-shadow(0 0 8px #26BFF2) drop-shadow(0 0 15px #26BFF2) drop-shadow(0 0 25px #26BFF2);
}

.aboutcard {
    background-color: #151416;
    border-radius: 0;
}

.about-card-img {
    width: 110px;
    height: 110px;
}
.about-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* progres design start */
.whitebgcolor {
    background-color: #EFEFEF;
}
.strategicflow {
    color: #151416;
    position: relative;
    display: inline-block;
}
.strategicflow::after {
    content: "";
    display: block;
    height: 4px;
    margin-top: 10px;
    background: linear-gradient(to right, #E31A68, #662D8E);
    width: 100%;
}
.image-progress-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.pipe {
    flex: 1;
    height: 6px;
    background-color: white;
    overflow: hidden;
    margin: 0 10px;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    /* ✅ Starts empty */
    background: linear-gradient(135deg, #E31A68, #662D8E);
    transition: width 0.1s linear;
    z-index: 1;
}

.borderimg {
    display: block;
    border: 5px solid;
    border-image: linear-gradient(135deg, #E31A68, #662D8E) 1;
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 400px;
}

.border-anim-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible;
}

.border-anim-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Border pieces start far away from section edges */
.flying-border {
    position: absolute;
    background: linear-gradient(135deg, #E31A68, #662D8E);
    z-index: 2;
    opacity: 0;
    transition: transform 3s ease-out, opacity 1s;
}

/* Adjusted flying borders to come just 20px from outside the image box */

/* Top border (starts 20px left) */
.flying-border.top {
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    transform: translateX(-20px);
}

/* Right border (starts 20px up) */
.flying-border.right {
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    transform: translateY(-20px);
}

/* Bottom border (starts 20px right) */
.flying-border.bottom {
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    transform: translateX(20px);
}

/* Left border (starts 20px down) */
.flying-border.left {
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transform: translateY(20px);
}

/* When active: move to 0 */
/* When active: move to 0 */
.border-anim-wrapper.animate .flying-border {
    transform: translate(0, 0);
    opacity: 1;
    transition-property: transform, opacity;
    transition-duration: 1.5s, 0.5s;
    /* ⬅️ Faster than before */
    transition-timing-function: ease-in-out, ease-in-out;
    transition-delay: 0.1s, 0s;
    /* reduced delay */
}



/* NEW ANIMATIONS */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
        /* Start lower */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(50px);
        /* Go down visibly */
    }
}

.fade-content {
    opacity: 0;
    transform: translateY(50px);
    transition: none;
    /* Disable CSS transition, we use animation */
}

.fade-content.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-content.fade-out {
    animation: fadeOutDown 1s ease-in forwards;
}




.slides-auto-scrol .ick-slide>div {
    padding: 2rem;
}

.slick-slide {
    height: auto;
}

.fade-content {
    opacity: 0.2;
    transition: opacity 0.3s ease-in-out;
}

.slick-current .fade-content {
    opacity: 1;
}

.glow-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    /* default: no circle background */
}

.glow-ring img {
    width: 100%;
    height: auto;
    max-width: 100px;
    max-height: 80px;
    object-fit: contain;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.image-box.active-highlight .glow-ring {
    background-color: #CA3A72;
    transition: filter 0.3s ease;
}

.image-box.active-highlight .glow-ring img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7500%) hue-rotate(187deg) brightness(108%) contrast(95%);
    transition: filter 0.3s ease;
}


/* progress section end  */

.cardheading {

    color: #151416;
}

.cardpara {
    color: #151416;
}


.your-class .slick-slide>div {
    padding: 2rem;
    margin: 0 10px;
}

.ourstory_bgcolor {
    background: linear-gradient(to bottom, #151416, #662D8E) !important;
}

.story_image {
    object-fit: cover;
}

.story_img_layout.align-end {
    margin-left: auto;
    margin-right: 0;
}

.our-story-wrapper {
    position: relative;
}

.vertical-line-inside {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #ccc;
    transform: translateX(-50%);
    z-index: 1;
}

/* Make sure image overlaps and touches the vertical line */
.story_img_layout {
    position: relative;
    z-index: 2;

}

/* Pull image to touch the line */
.ourstory_bgcolor {
    background: linear-gradient(to right, #DBACFB, #6D3F8D);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    /* Optional: makes text readable over the gradient */
}

/* Responsive fallback */
@media (max-width: 767px) {
    .vertical-line-inside {
        display: none;
    }


}
/* Show left border only on mobile */
.border-mobile-only {
  border-left: 5px solid #ccc;
}

@media (min-width: 768px) {
  .border-mobile-only {
    border-left: none;
  }
}

.story_img_layout.align-start {
    margin-right: auto;
    margin-left: 0;
}


.story_img_layout {
    max-width: 600px;
    width: 100%;
    height: 300px;
}





/* teams style start here */
.teamsbgcolor {
    background-color: #151416;
}

.slider-container {
    width: 100%;
    padding: 0 40px;
}

.slider-nav {
    width: 100%;
}

.slanted-card {
    background-color: #111;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    overflow: hidden;

}

.card-img-wrapper {
    height: 300px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slick-custom-prev.slick-disabled,
.slick-custom-next.slick-disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(100%);
    cursor: not-allowed;
}

.card-body {
    padding: 20px 40px;
}

.card-heading {
    background: linear-gradient(to bottom, #E31A68, #662D8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-para {
    color: #efefef;
}

.custom-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-arrows button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-arrows button:disabled {
    border-color: #555;
    color: #555;
    cursor: not-allowed;
}

.slick-custom-prev img,
.slick-custom-next img {
    width: 30px !important;
}