/* header  */
.headerImgCont {
    height: 620px;
    position: relative;
    overflow: hidden;
}

.headerImgCont img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .headerImgCont {
        height: 400px;
    }
}

header {
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    width: auto;
    background-color: var(--dark);
    z-index: -1;
}

/* about  */
.aboutCard {
    height: 100%;
    border: 1px solid #f2f1ed44;
}

.underlinedEffect {
    position: relative;
    display: inline-block;
}

.underlinedEffect::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--light_em);
}

/* investment  */
.investmentCards {
    height: 100%;
    width: auto;
    cursor: pointer;
    border: 1px solid #26352f70;
    transition: 0.25s;
}

.investmentCards:hover {
    border-color: var(--dark_em);
}

.investmentCards:hover.investmentCards .cardIcon {
    fill: var(--primary) !important;
}

.investmentCards .cardIcon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark_em);
    fill: var(--light_em);
    border-radius: 50%;
    transition: 0.25s;
}

/* bot  */
.botImgCont {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botImgCont img {
  height: 100%;
  width: auto;
  object-fit: contain;
  animation: spin 10s linear infinite; /* speed adjust */
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* idustry  */
.industriesCard {
    height: 380px;
    border: 1px solid #00000044;
    position: relative;
    overflow: hidden;
    transition: 0.25s;
}

/* image inside */
.industriesCardImg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.6);
    transition: 0.25s;
}

/* hover effects */
.industriesCard:hover * {
    color: var(--light_em) !important;
    fill: var(--light_em) !important;
}

.industriesCard:hover .industriesCardImg {
    opacity: 1;
}

/* === blur overlay + Coming Soon === */
.industriesCard::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.4); /* thoda dark tint */
    z-index: 1;
}

.industriesCard::after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 8px 18px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* roadmap  */
.swiper_controls_btns {
    height: 40px;
    width: 40px;
    background: var(--light_em);
    border: 1px solid var(--light_em);
    border-radius: 50%;
    transition: 0.25s;
}

.swiper_controls_btns:disabled {
    opacity: 0.8;
    cursor: default;
}

.swiper_controls_btns:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.swiper_img_cont {
    min-height: 450px;
    max-height: 100%;
    width: auto;
}

@media (max-width: 992px) {
    .swiper_img_cont {
        min-height: 300px !important;
    }
}

.swiper_img_cont img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 75%;
    width: 75%;
    object-fit: contain;
}

.heading_line {
    height: 4px;
    width: 60px;
    background: var(--primary);
    border-radius: 10px;
}
