/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --bg_body: #6e7d161a;
    --bg_body_1: #f0f1e7;
    --txt-color: #000;
    --font-family: "Teachers", sans-serif;
    --font-family: "Assistant", sans-serif;
    --theme-clr: #c61818;
    --border-color: #838383;
    --bg-dark: #404040;
}

.teachers {
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    /* background-color: var(--bg_body); */
    font-family: var(--font-family);
    font-weight: 500;
    text-transform: capitalize;
}

p {
    margin: 0;
    font-size: 17px;
    letter-spacing: .5px;
    line-height: 28px;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar-nav {
    li {
        a {
            font-size: 19px;
            font-size: 18px;
            letter-spacing: .5px;
            font-weight: 600;
        }
    }
}
.exp-card {
    position: relative; /* Needed for ::before to align */
    overflow: hidden;   /* Optional: keeps pseudo-element inside */
}

.exp-card::before {
content: "";
    position: absolute;
    bottom: 18px;
    /* top: 21px; */
    left: 50%;
    width: 0%;
    height: 4px;
    background: red;
    border-radius: 20px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.exp-card:hover::before {
    width: 80%;
}

header {
    /* width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center; */
    position: relative;
    z-index: 100;

    a.nav-link {
        color: var(--txt-color);
        border: 1px solid transparent;
        font-weight: 600;
    }

    a.nav-link.active,
    a.nav-link:hover,
    a.nav-link:focus {
        color: var(--txt-color) !important;
        border-bottom: 1px solid var(--txt-color);
    }

    ;
    width: 100%;

    .logo-dark {
        display: block;
    }

    .logo-white {
        display: none;
        filter: brightness(0) invert(1);
    }

    ul.dropdown-menu.show {
        background-color: #fff;
    }

    ul.dropdown-menu.show {
        background-color: rgb(255 255 255 / 51%);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        font-weight: bold;
        color: #fff;
    }
}

.home {
    header {
        position: absolute;

        :not(.page-header.is-sticky) {
            a.nav-link {
                color: #fff;
                border: 1px solid transparent;
            }

            a.nav-link.active,
            a.nav-link:hover,
            a.nav-link:focus {
                color: #fff !important;
                border-bottom: 1px solid #fff;
            }

            a {
                /* color: #fff; */
            }

            button.btn i {
                color: #ffffff;
            }

            .searchdivmain {
                background-color: #ffffff38;
            }
        }

        .logo-white {
            display: block;
        }

        .logo-dark {
            display: none;
        }

        .page-header.is-sticky {
            .logo-white {
                display: none;
            }

            .logo-dark {
                display: block;
            }

            a.nav-link {
                color: var(--txt-color);
                border: 1px solid transparent;
            }

            a.nav-link.active,
            a.nav-link:hover,
            a.nav-link:focus {
                color: var(--txt-color) !important;
                border-bottom: 1px solid var(--txt-color);
            }

            a {
                color: var(--txt-color);
            }

            button.btn i {
                color: #000000;
            }

            .searchdivmain {
                background-color: var(--bg_body);
            }
        }

    }
}


/* sticky header */
.page-header {
    /* box-shadow: 0 0px 20px #00000024; */
}

.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 0px 20px #00000024;
    /* background-color: var(--bg_body_1); */
    background-color: #fff;
    width: 100%;
    top: 0;
    z-index: 99;
    animation: slideDown 0.35s ease-out;
}

.w-fitcontent {
    width: fit-content;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* sticky header end */

button {
    text-transform: capitalize;
}


.topheresec {

    .swiper--tophero {
        width: 100%;
        padding: 0;
    }

    .swiper-slide {
        position: relative;
        width: 200px;
        height: 85vh;
        border-radius: 30px;
        overflow: hidden;
        transition: 1s;
        user-select: none;
        filter: brightness(.6);

        @media (max-width:768px) {
            height: 100%;
            flex-direction: column;
            gap: 15px;
        }
    }

    .swiper-slide::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(180deg, black, transparent);
        z-index: 1;
    }

    @media (max-width: 768px) {
        .heroimgcntnt {
            position: relative !important;
            width: 100%;
            margin-top: 15px;
        }

        .swiper-slide::before {
            height: 30%;
        }

        .heroimgdesc {

            h1,
            p,
            a {
                color: var(--bg-dark) !important;
            }
        }
    }

    .swiper-slide img {
        width: 100%;
        height: 85vh;
        object-fit: cover;
        transition: 1s;
    }

    @media (max-width:768px) {
        .swiper-slide img {
            height: 50vh;
        }
    }

    .swiper-slide-active {
        position: relative;
        width: 1440px;
        transition: 1s;
        filter: brightness(1);

        .heroimgcntnt {
            display: block;
            padding-top: 50px;
        }
    }

    .swiper-slide-active img {
        transform: scale(1.1);
        object-position: 50% 0%;
    }


    .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        background-color: #fff;
        border-radius: 50%;
        transition: all 0.6s ease-in-out;
    }
}

/* .homehead header:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    filter: blur(30px);
    background-color: #00000082;
    top: -14%;
    z-index: -1;
} */

.sec_mar {
    margin-top: 100px;
    margin-bottom: 100px;
    
}
footer {
    margin-bottom: 100px;
    padding: 35px 20px;
    color: #FFFFFF;
    background-color: #070707;
    background-image: url("/assets/images/FooterBg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    z-index: 1; /* content ke liye */
}
    footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.178), rgba(0,0,0,0.2));
    z-index: -1;
}
.abtsecdiv {
    h2 {
        font-weight: 700;
        letter-spacing: .5px;
    }
}

h2 {
    font-weight: 700;
    letter-spacing: .5px;
}

.abtimgdiv {
    border-radius: 30px;
    overflow: hidden;
}

.max-h-100\/50 {
    max-height: calc(100% - 60%);
    height: 100%;
}

.max-h-100\/45 {
    max-height: calc(100% - 66%);
}

@media (min-width:767px) {
    .fabimgdiv {
        height: 500px;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: top;
        }
    }
}

.fabimgdiv {
    position: relative;
}




@media (min-width:1041px) {
    /* .bgshdow--cntnt{
        height: 0;
        transition: height .5s ease;
        .fabcont {
            opacity: 0;
            bottom: 0;
            transition: bottom .5s ease;
        }
    } */

    .fabimgdiv .bgshdow--cntnt {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        height: 100%;
        transition: height .5s ease;
        width: 100%;
        padding: 30px 15px 15px;
        background: linear-gradient(0deg, rgb(14 14 14), rgba(15, 41, 35, 0) 100%);

        .fabcont {
            position: absolute;
            bottom: 15px;
            opacity: 1;
            transition: bottom .5s ease;
        }

        h3 {
            color: #fff;
            font-weight: 700;
        }

        .viewprodbtn {
            background: white;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: .5px;
            border-radius: 100px;
            padding: 9px 30px;
            margin-top: 15px;
        }

        p {
            color: #fff;
            margin-top: 15px;
        }
    }
}

.applicimg {
    position: relative;

    img {
        width: 100%;
        object-fit: cover;
        z-index: 1111;
        border-radius: 15px;
    }
}

.applicimg:before {
    /* content: ""; */
    /* position: absolute; */
    /* left: 10px; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: #47474733; */
    /* z-index: -1; */
    /* border-radius: 015px; */
    /* bottom: 10px; */
}

.applicimg:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-clr);
    z-index: -1;
    border-radius: 015px;
    transition: all .3s ease;
}

.applicimg:hover:after {
    top: 10px;
    right: 10px;
    transition: all .3s ease;
}

.btn-theme {
    background-color: var(--theme-clr);
    border: 1px solid var(--theme-clr);
    padding: 8px 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
    transition: all .5s ease;

    &:hover {
        background-color: transparent;
        color: var(--theme-clr);
        border: 1px solid var(--theme-clr);
        transition: all .5s ease;


    }
}

.btn-theme-o {
    background-color: transparent;
    color: var(--theme-clr);
    border: 1px solid var(--theme-clr);

    padding: 8px 30px;
    font-size: 18px;

    font-weight: 600;
    border-radius: 100px;
    transition: all .5s ease;

    &:hover {
        background-color: var(--theme-clr);
        border: 1px solid var(--theme-clr);
        transition: all .5s ease;
        color: #fff;


    }
}

.btn-theme-ob {
    font-size: 18px;
    color: var(--theme-clr);
    font-weight: 600;
    border-radius: 0px;
    border-bottom: 1px solid var(--theme-clr);
    transition: all .5s ease;

    &:hover {
        border-bottom: 1px solid transparent;
        transition: all .5s ease;
    }
}

/* .infraimgdiv {
    position: relative;
    img{
        width: 100%;
    }
} */

.infraimgdiv {
  position: relative;
  overflow: hidden;        /* ensures zoomed image doesn’t overflow the rounded corners */
  border-radius: 20px;     /* matches your rounded-5 */
}

.infraimgdiv img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;   /* smooth zoom */
}

.infraimgdiv:hover img {
  transform: scale(1.1);   /* zoom in */
}

/* .infraimgdiv:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: height .5s ease;
}

.infraimgdiv:hover:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: height .5s ease;
}

.infraimgdiv:hover:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: width .5s ease;
}

.infraimgdiv:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: width .5s ease;
} */

.infradesc {
    padding: 30px;
    border-radius: 30px;
    background-color: #47474733;
}

/* swiper starts */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.ourclntdivv--00 {
    /* background-color: #45454587; */
    border-radius: 20px;
    margin-top: 20px;
}

.ourclntdivv--00 img {
    border-radius: 10px;
}

/* swiper ends */
.footerlink {
     width: 200px;
      margin-bottom: 15px;
    /* width: 230px; */
    height: 52px;
    filter: brightness(0) invert(1);
}

.footerlink_social img{
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}
.footerul{
        padding: 0px;
    list-style: none;
    margin-top: 20px;
}
.tower{
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}
.footerlink_social ul{
        display: flex
;
    gap: 20px;
    list-style: none;
    padding: 0px;
    margin-top: 20px;
}
.footerlink img{
        width: 225px;
    height: 80px;
}
.sustaindivcontent {
    /* max-width: 760px; */
    /* margin: auto; */
    font-size: 17px;
    line-height: 35px;
    padding: 20px;
    border: 1px solid #343333;
    border-radius: 10px;
    height: 100%;
}

footer {
    li {
        margin-top: 15px;
    }

    a,
    p {
        color: #ffffff;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

#menumodal {
    .modal-content {
        background: #f0f1e7;
    }
}



@media (max-width:991px) {
    .thumbnail .item {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        position: relative;
    }

    .carousel .list .item .content {
        padding-right: 5%;
    }

    .thumbnail {
        bottom: 15px;
        left: 12%;
    }

    .sec_mar {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}


@media (max-width:767px) {
    .carousel {
        height: 81vh;
    }

    .fabimgdiv {
        height: 315px;
    }
}

@media (max-width:1040px) {
    .bgshdow--cntnt {
        height: 100%;
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        transition: height .5s ease;
        width: 100%;
        padding: 30px 15px 15px;
        background: linear-gradient(0deg, rgb(14 14 14), rgba(15, 41, 35, 0) 100%);

        h3 {
            color: #fff;
            font-weight: 700;
        }

        .viewprodbtn {
            background: white;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: .5px;
            border-radius: 100px;
            padding: 9px 30px;
            margin-top: 15px;
        }

        p {
            color: #fff;
            margin-top: 15px;
        }
    }

    .fabcont {
        position: absolute;
        padding: 10px;
        bottom: 15px;
    }

    .fabimgdiv img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* @media (max-width:575px) {
    .applicimg:before {
        left: 30px;
        width: 110px;
        height: 110px;
    }

    .applicimg:after {
        top: -42px;
        right: 50px;
        width: 110px;
        height: 110px;

    }
} */

.appltitle {
    @media (max-width: 768px) {
        h5 {
            font-size: 17px;
            line-height: 25px;
        }

    }
}

@media (max-width:360px) {
    .thumbnail {
        left: 9%;
    }
}

.fabdivmiun {
    max-width: 1700px;
}

.breadcrumbsdiv{
  position: relative;
  background: url(../images/68549.jpg) center / cover no-repeat;
  /* background-attachment: fixed; */
  color:#fff;
}

.breadcrumbsdiv::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.48);            /* solid overlay */
  /* or a gradient:
     background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.2)); */
  z-index:0;
  pointer-events:none;                     /* keep links clickable */
}

/* keep your real content above the overlay */
.breadcrumbsdiv > *{
  position: relative;
  z-index: 1;
}

.line-wrapper {
    /* border-top:  1px solid #bebebe;
    border-bottom:  1px solid #bebebe; */
}


.card-style-three {
    padding-left: 100px;

    @media (max-width: 991px) {
        padding-left: 0;
    }
}

@media (min-width:991px) {
    .card-style-three {
               /* border-left: 1px solid #bebebe;
        border-bottom: 1px solid #bebebe; */
    }

    .card-style-three:last-child {
        border-bottom: none;
    }
}

@media (max-width:991px) {
    .card-style-three {
        border-top: 1px dashed var(--border-color);
    }

    .card-style-three:last-child {
        border-bottom: none;
    }
}

.redmorbtn {
    border-bottom: 1px solid;
    padding-bottom: 5px;
}

.swprbtn {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translatey(-50%);
    font-size: 20px;
    width: 45px;
    height: 45px;
    color: var(--theme-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 3px 6px #00000040;
}

.swiper-button-nextt {
    right: 15px;
}

.swiper-button-prevv {
    left: 15px;
}

@media (min-width:991px) {
    .whywediff--title {
        max-width: 300px;
        margin: auto;
    }
}

.card-style-two .applicimg:after {
    top: 0;
    right: 70px;
    z-index: 0;
}

.whydiff--card {
    padding: 30px;
    height: 100%;
    border-radius: 30px;
    background-color: #fff;
}

.whywediff--slider .swprbtn { 
    top: 25px; 
    background-color: transparent; 
    box-shadow: none; 
    color: #000; 
    border: 1px solid #000; 
    font-size: 28px;
}

.card-style-two .applicimg:before {
    z-index: 0;
}

.card-style-two .applicimg img {
    z-index: 9;
    position: relative
}


@media (min-width:575px) {
    .container-fluuid {
        padding-left: 15px;
    }
}

.applicationpgsec {

    .masonry {
        /* Masonry container */
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1em;
        -moz-column-gap: 1em;
        column-gap: 1em;
        /* margin: 1.5em; */
        padding: 0;
        -moz-column-gap: 1.5em;
        -webkit-column-gap: 1.5em;
        column-gap: 1.5em;
        font-size: .85em;
    }

    .item {
        display: inline-block;
        width: 100%;
        -webkit-transition: 1s ease all;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;

    }

    .item img {
        max-width: 100%;
    }

    @media only screen and (max-width: 320px) {
        .masonry {
            -moz-column-count: 1;
            -webkit-column-count: 1;
            column-count: 1;
        }
    }

    @media only screen and (min-width: 321px) and (max-width: 768px) {
        .masonry {
            -moz-column-count: 1;
            -webkit-column-count: 1;
            column-count: 1;
        }
    }

    @media only screen and (min-width: 769px) and (max-width: 1200px) {
        .masonry {
            -moz-column-count: 3;
            -webkit-column-count: 3;
            column-count: 3;
        }
    }

    @media only screen and (min-width: 1201px) {
        .masonry {
            -moz-column-count: 3;
            -webkit-column-count: 3;
            column-count: 3;
        }
    }
}

.ourprod--card {
    border: 1px solid var(--border-color);
    border-top: none;
}

.sendinq {
    color: var(--theme-clr);
    font-size: 17px;
    padding: 8px 30px;
    font-weight: 600;
    letter-spacing: .5px;
    position: relative;
    border: 1px solid var(--theme-clr);

    &:hover {
        border-color: var(--theme-clr);
        color: #fff;
    }

    &:before {
        position: absolute;
        width: 100%;
        height: 0%;
        content: "";
        background-color: var(--theme-clr);
        top: 0;
        left: 0;
        z-index: -1;
        transition: .5s ease all;

    }

    &:hover:before {
        height: 100%;
        transition: .5s ease all;
    }
}

.ourprod--img {
    max-height: 300px;
    overflow: hidden;
}

.infratopvideodiv iframe {
    width: 100%;
}

.infraimg {
    height: 100%;
    border: 1px solid var(--txt-color);

    img {
        height: 100%;
        width: 100%;
    }
}

#menumodal .modal-dialog {
    height: 100% !important;
    background-color: #f0f1e7;
}

.conticon {
    width: 80px;
    height: 80px;
    background: var(--theme-clr);
}

.con--form {
    border-radius: 30px;
    margin-top: 5rem;
    border: 1px solid;
}

.title-one h1.fw-bold {
    font-size: 48px;
    /* color: var(--theme-clr); */
}

.input-group-meta input {
    border: 1px solid var(--border-color);
    height: 47px;
    border-radius: 5px;
    padding-left: 15px;

    &:focus {
        outline: none;
        border: none;
    }
}

.input-group-meta textarea {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;

    &:focus {
        outline: none;
        border: none;
    }
}

.top--viddiv {
    height: 86vh;
    margin-top: 0;
    overflow: hidden;

    iframe {
        height: 100%;
    }
}

.zq_choose-item {
    border: 1px dashed var(--border-color);
    border-radius: 5px;
}

.bg-gray {
    background-color: var(--bg-dark);
}

.border-theme-dark {
    border: 1px solid var(--bg-dark);
}

.linkedslide {
    &:hover img {
        transform: scale(1.1);
        transition: all .5s ease;
    }

    img {
        transform: scale(1);
        transition: all .5s ease;
    }
}

.bg-theme {
    background-color: var(--theme-clr);
}

.text-theme {
    color: var(--theme-clr);
}

.text-theme-dark {
    color: var(--bg-dark);
}

.searchdivmain {
    background-color: var(--bg_body);
    border-radius: 100px;
    overflow: hidden;

    input {
        background-color: transparent;
        border: 0;
        padding: 10px 10px 10px 15px;

        &:focus {
            border: none;
            outline: 0
        }
    }

    ;

    .searchbtn {
        background-color: var(--theme-clr);
        height: 100%;
        padding: 10px;
        border-radius: 100px;
        color: #fff;
    }
}

/* slider linkedin */
.our_client_sec {
    .swiper-slide {
        transition: transform 0.3s, width 0.3s, height 0.3s;
    }

    .swiper-slide.swiper-slide-active {
        transform: scale(1.1);
        /* Adjust the scale as needed */
        z-index: 1;
    }
}

.career {
    .careerjobsec {
        .careercard {
            p {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }
        }
    }
}

div#jobmodal,
#jobmodalform {
    .modal-dialog.modal-dialog-centered {
        max-width: 840px;
    }

    .uploaddiv {
        border: 1px dashed var(--theme-clr);
        position: relative;
        border-radius: 7px;
        height: 48px;

        input {
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
            opacity: 0;
        }

        ;
        text-align: center;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: center;

        h5 {
            margin: 0
        }
    }
}

.abtsec1 {
  position: relative; /* required for overlay */
  background-image: url(/assets/images/941189_ODHMK90.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.329);
  color: #fff; /* make text visible on dark overlay */
  z-index: 1;
  background-attachment: fixed;
}

/* Black overlay */
.abtsec1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000bf; 
  z-index: -1; 
}


@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 30px;

    } 
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    height: 850px;
    transition: all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 95px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

.hero-style .slide-title h2 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 40px;
    text-transform: capitalize;
    transition: all .4s ease;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.8;
    font-family: Rajdhani;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
    background-color: #2b3b95;
    color: #fff;
}

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

.slider__btn {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* slider top end */

.clientsprocess--sec {
    .clients {
        .sldr--btn {
            left: 0;
        }
    }
}


.ourteam {
    .atglancetbl>thead>tr>* {
        background-color: #ffeeee;
        border: none;
        background-color: transparent;
        box-shadow: none;
        padding: 15px 20px;
        letter-spacing: .5px;
        
    }

    .atglancetbl>thead>tr:nth-of-type(odd) {
        background-color: #ffefef;
        border-radius: 10px;
        overflow: hidden;
    }
}

.atglancetbl>tbody>tr>*,
.atglancetbl>thead>tr>* {
    background-color: #ffeeee;
    border: none;
    background-color: transparent;
    box-shadow: none;
    padding: 15px 20px;
    letter-spacing: .5px;
    a{
        color: var(--theme-clr);
        font-weight: 600;
        :hover{
            color: var(--txt-color);
        }
    }
}

.atglancetbl>tbody>tr:nth-of-type(odd) {
    background-color: #ffffff !important;
    border-radius: 10px;
    overflow: hidden;
}

.atglancetbl>tbody>tr:nth-of-type(odd)>*:first-child {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.atglancetbl>tbody>tr:nth-of-type(odd)>*:last-child {
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.ataglancetbldiv {
    border: 1px solid var(--theme-clr);
    border-radius: 15px;
}

/* Parent container */
.abttctimg.abtimgdiv {
    border-right:8px solid #c17752;
    border-bottom: 8px solid #c17752;
    border-top: none;
    border-radius: 31px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

/* Image inside */
.abttctimg.abtimgdiv img {
  display: block;                  /* removes bottom gap */
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: transform 0.2s ease;   /* speed */
}
.abttctimg.abtimgdiv:hover img {
  transform: scale(1.08);        /* zoom on hover */
}
/* home container */
.abtimgdiv {
    border-right:8px solid #c17752;
    border-bottom: 8px solid #c17752;
    border-top: none;
    border-radius: 28px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

/* Image inside */
/* .abtimgdiv img {
  display: block;                  
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: transform 0.2s ease;  
} */
.abtimgdiv:hover img {
  transform: scale(1.08);        
}
/* Image inside */
.abtimgdiv img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
    transition: transform 0.2s ease; 
  animation: infiniteZoom 8s ease-in-out infinite alternate; 
}
.header_responsive{
  display: flex;
  align-items: center;
}
@media (max-width:1024px) {
  .header_responsive{
  display: flex;
  justify-content: space-between;
  width:100%;
}
}
/* Keyframes for smooth zoom */
@keyframes infiniteZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);  /* zoom level */
  }
}
.exp {
    grid-template-columns: repeat(5, 1fr);

    @media (max-width: 991px) {
        grid-template-columns: repeat(4, 1fr);
    }

    @media (max-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 575px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 320px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.expextra {
    grid-template-columns: repeat(3, 1fr);

    @media (max-width: 991px) {
        grid-template-columns: repeat(4, 1fr);
    }

    @media (max-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 575px) {
        grid-template-columns: repeat(1, 1fr);
    }

    @media (max-width: 320px) {
        grid-template-columns: repeat(1, 1fr);
    }
    .exp-card{
        img{
            max-height: 250px;
            min-height: 251px;
            height: 100%;
            overflow: hidden;
            object-fit: cover;
        }
    }
}

.copgov {

    .atglancetbl>tbody>tr>*,
    .atglancetbl>thead>tr>* {
        width: calc(100% /3);
    }
}

.keycon{
    .investcontcoldiv {
        border: 1px solid var(--theme-clr);
        border-radius: 30px;
        padding: 25px;
        height: 100%;
    }
}

.memberimg {
    max-height: 400px;
    overflow: hidden;
    min-height: 401px; 
}

.teammembercard {
padding: 20px;
    /* box-shadow: 0px 7px 10px 0px #ddd; */
    border-radius: 10px;
    border: 1px solid #cfcfcf;
     transition: transform .20s ease, border-color .2s ease, box-shadow .2s ease;
  background: #fff;
}
.teammembercard:hover {
  transform: scale(1.02);                /* zoom effect */
  border-color: #9a0100;                 /* red border */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.25); */
}
.teammembercard .memberimg {
    margin-bottom: 10px;
    text-align: center;
    align-content: center;
      overflow: hidden;
}

.teammembercard .memberimg img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.9s ease;   /* slow zoom */
}
.teammembercard:hover .memberimg img {
  transform: scale(1.02);
}

/* Text to red on hover */
.teammembercard .membername h4,
.teammembercard .memberposition p,
.teammembercard .membername ion-icon {
  transition: color .3s ease;
}
.teammembercard:hover .membername h4,
.teammembercard:hover .memberposition p,
.teammembercard:hover .membername ion-icon {
  color: #9a0100; /* red */
}
/* Table styling for corporate governance page */
.atglancetbl {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border: none;
}

/* Dark red top border */
.atglancetbl thead tr {
  background-color: #9a0101;   /* dark red */
  color: #fff;
}

.atglancetbl thead th {
  border: none;
  padding: 12px;
  /* text-align: center; */
}

/* Table body rows */
.atglancetbl tbody tr {
  border-bottom: 2px solid #fff; /* white line at bottom of each row */
  transition: background 0.3s ease;
}

.atglancetbl tbody td {
  padding: 12px;
  /* text-align: center; */
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #c61818;
}

/* Optional hover effect */
.atglancetbl tbody tr:hover {
  background: #f8f9fa;
}
.atglancetbl tbody tr {
  background-color: #8b000021;   /* semi-transparent dark red */
  border-bottom: 2px solid #fff; /* white border at the end of row */
  transition: background 0.3s ease;
}

/* Optional: on hover make it slightly darker */
.atglancetbl tbody tr:hover {
  background-color: #8b000021;   /* darker red tint on hover */
}
/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .teammembercard .memberimg img { transition: none; }
}

/* ---------- RESET: koi row/column movement/background nahi ---------- */
.auditcomittee .ataglancetbldiv{
  /* hover par horizontal scrollbar ko clip karo */
  overflow-x: clip;   /* fallback: hidden */
  overflow-x: hidden;
}

.auditcomittee table.atglancetbl tbody tr{
  transform: none !important;
  box-shadow: none !important;
  /* background: #ffefef !important; */
}

/* Row ke pseudo effects hata do (spotlight/left strip/underline/badge) */
.auditcomittee table.atglancetbl tbody tr::before,
.auditcomittee table.atglancetbl tbody tr::after,
.auditcomittee table.atglancetbl tbody tr td:first-child::after,
.auditcomittee table.atglancetbl tbody tr td:nth-child(3)::before{
  content: none !important;
  background: #ffffff
}

/* ---------- ONLY TEXT COLOR CHANGE ON HOVER (per cell) ---------- */
/* Smooth transition */
.auditcomittee table.atglancetbl tbody td{
  transition: color .18s ease;
}

/* Sirf jis cell par mouse hai uska text color change hoga */
.auditcomittee table.atglancetbl tbody td:hover{
  color: #990301; /* apne theme ke hisaab se change kar sakte ho */
  cursor: pointer;
}
.prodiffcol{
    border: 1px solid #d1cccc;
    padding: 15px;
    border-radius: 20px;
    height: 100%;
   box-shadow: 0 2px 10px rgba(0,0,0,.07);
       border-bottom: 6px solid #a3a0a0cc;
}


.applic--card {
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.25);   */
  transition: transform .4s ease, box-shadow .4s ease;
  background: #fff;
}

/* Hover effect: lift + stronger shadow */
.applic--card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.205);
}

/* Image zoom */
.applicimg00 img {
  transition: transform .8s ease;
}
.applic--card:hover .applicimg00 img {
  transform: scale(1.1);
}

/* Optional: text color change on hover */
.applic--card:hover h5 {
  color: #e31b23; /* red accent */
  transition: color .3s ease;
}
.exp-card img {
  transition: transform .9s ease;
}
.exp-card:hover img {
  transform: scale(1.04);
}