@import url("globle.css");


/* Header CSS */

.header{
    background: var(--blue);
    padding: var(--fs20) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.header .container-fluid{
    max-width:96%;
}

.mainMenu > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fs30);
}
.mainMenu > ul > li > a{
    font-size:14px;
    font-weight:500;
    letter-spacing:0.5px;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--inter);
}
.mainMenu > ul > li > a:hover{
    color: var(--green);
}


.shrtitems{
    gap: var(--fs24);
}

.hSearch{
    position: relative;
    width: 360px;
}
.hSearch input{
    width: 100%;
    height: auto;
    line-height: var(--fs46);
    border-radius: var(--fs50);
    border: 0px;
    padding: 0px var(--fs16) 0px var(--fs44);
    font-size: var(--fs14);
    font-weight: 500;
}
.hSearch span {
    position: absolute;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: var(--fs22);
}
.hSearch input:focus{
    outline:none;
}
.lang{
    cursor: pointer;
}
.lang > div{
    color: var(--white);
    font-size: var(--fs14);
    letter-spacing:1px;
}
.lang > div img{
    border-radius:4px;
}
.lang svg{
    height: var(--fs14);
}
.lang svg path{
    fill: rgba(255,255,255,0.50);
}

.lang {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--fs10);
}



.language-dropdown{
    position: relative;
    width: fit-content  ;
}
 
.dropdown-btn{
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    color: var(--white);
    border-radius:0px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 0px;
    cursor: pointer;
}
 
.selected-flag{
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.selected-flag img{
    border-radius: 2px;
    height: 100%;
}
 
.selected-text{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}
 
.arrow{
    margin-left: auto;
    font-size: 13px;
    transition: transform .3s ease;
    opacity: 0.7;
    color: #fff;
}
.dropdown-btn.open .arrow{
    transform: rotate(180deg);
}
 
.customDropdown-menu{
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background: #191a3d;
    border-radius: 12px;
    overflow: hidden;
    display: none;
    z-index: 100;
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
 
.customDropdown-menu.active{
    display: block;
}
 
.dropdown-item{
    color: white;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
 
.dropdown-item:hover{
    background: rgba(255,255,255,1
    );
}





.megaMenu {
    position: absolute;
    top:150px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 1s ease-in-out;
    max-width: 53%;
}
.mainMenu > ul > li:hover .megaMenu{
    top: 94px;
    z-index: 99;
    visibility:visible;
    opacity: 1;
    transition: all 1s ease-in-out;
}
.megaMenu .row {
    background: var(--white);
    border-radius: var(--fs24);
    padding: var(--fs34) var(--fs14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.megaMenu h5{
    text-transform: uppercase;
    font-size: var(--fs14);
    font-family: var(--inter);
    letter-spacing:0.5px;
    font-weight:600;
    margin-bottom: var(--fs24);
}

ul.subMenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(var(--fs10) + 2px);
}

ul.subMenu li {
    line-height: normal;
}

ul.subMenu li a {
    color: var(--text);
    line-height: normal;
    display: inline-block;
    font-size: var(--fs14);
    font-family: var(--inter);
    font-weight: 500;
}
ul.subMenu li a:hover{
    color: var(--blue);
}

.hamburger {
    background: transparent;
    height: var(--fs28);
    width: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-left: var(--fs16);
    margin-left: var(--fs16);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hamburger span {
    color:var(--white);
    font-size:var(--fs40);
}

.serIcon {
    display: none;
    padding: 0px var(--fs20);
    margin: 0px var(--fs20);
    border-width: 0px 1px 0px 1px;
    border-style: solid;
    border-color: rgba(255,255,225,0.40);
}

.serIcon span {
    color: #fff;
}
.serIcon:hover{
    opacity: 1;
}





/* Mobile Menu */

/* ---------- demo trigger button (delete in production) ---------- */
.demoBar{
    background: var(--blue);
    padding: 18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.demoBar img{ height:26px; }
.openMenuBtn {
    background: transparent;
    border: 0;
    color: #fff;
    font-size:var(--fs24);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    display: none;

}
/* ---------- overlay ---------- */
.menuOverlay {
    position: fixed;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    background: rgba(25, 26, 61, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(25px);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity .35s ease;
}
.menuOverlay.active{ opacity:1; visibility:visible; }

/* ---------- off-canvas panel ---------- */
.mobileMenu{
    position: fixed;
    top:0; 
    left:-100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    background: #191A3D;
    background: linear-gradient(180deg, rgba(25, 26, 61, 1) 38%, rgba(0, 171, 117, 1) 100%);
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;

}
.mobileMenu.active{ left:0; transition: all 0.3s ease-in-out;}

.mobileMenuHead{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:var(--fs24);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    position: sticky;
    top:0;
    background: var(--blue);
    z-index: 2;
}
.mobileMenuHead img{ height:auto; }
.menuClose{
    color:#fff;
    font-size: var(--fs18);
    cursor:pointer;
    line-height:1;
    background:transparent;
    border:0;
    opacity: 0.5;
}
.menuClose:hover{
    opacity: 1;
}

/* ---------- level 1 ---------- */
.mmList{ list-style:none; margin:0; padding: 0px; }
.mmList > li{
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mmTop,
.mmTop a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding: var(--fs14) var(--fs24);
    color:#fff;
    font-family: var(--tight);
    font-weight:500;
    font-size: var(--fs14);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration:none;
    cursor:pointer;
    background:transparent;
    border:0;
}

/* mmTop now contains <a> + <i> side by side, so let the <a> take its own space
   instead of stretching to full width/justify-content */
.mmTop{
    padding: 0;
}
.mmTop a{
    flex: 1;
    padding: var(--fs14) var(--fs24);
    justify-content: flex-start;
}
.mmTop > [data-toggle]{
    padding: var(--fs14) var(--fs24);
    cursor: pointer;
}
.mmTop i{
    font-size: 13px;
    transition: transform .3s ease;
    color: rgba(255,255,255,0.5);
}
.mmList > li.open > .mmTop i{
    transform: rotate(180deg);
    color: var(--green);
}

/* ---------- level 1 panel (category list) ---------- */
.mmPanel{
    max-height:0;
    overflow:hidden;
    transition: max-height .4s ease;
    
}
.mmList > li.open > .mmPanel{
    max-height: 2000px;
}

.mmCatList{ list-style:none; margin:0; padding: 4px 0 10px; }
.mmCatList > li{
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mmCatList > li:first-child{ border-top:0; }

/* ---------- level 2: category header ---------- */
.mmCat{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding: 0;
    color: rgba(255,255,255,0.85);
    font-family: var(--inter);
    font-weight:400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing:.2px;
    cursor:pointer;
    background:transparent;
    border:0;
}
.mmCat a{
    flex: 1;
    display:block;
    padding: 14px 24px 14px 38px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--inter);
    font-weight:400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing:.2px;
}
.mmCat a:hover{ color: var(--green); }
.mmCat > [data-toggle]{
    padding: 14px 24px 14px 10px;
    cursor: pointer;
}
.mmCat i{
    font-size: 11px;
    transition: transform .3s ease;
    color: rgba(255,255,255,0.4);
}
.mmCatList > li.open > .mmCat i{
    transform: rotate(180deg);
    color: var(--green);
}

/* ---------- level 3: links ---------- */
.mmLinksWrap{
    max-height:0;
    overflow:hidden;
    background:transparent;
    transition: max-height .35s ease;
}
.mmCatList > li.open > .mmLinksWrap{
    max-height: 600px;
}
.mmLinks{ list-style:none; margin:0; padding:8px 0px; }
.mmLinks li a {
    display: block;
    padding: var(--fs10) 24px var(--fs10) 50px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--inter);
    font-size: 14px;
    text-decoration: none;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.mmLinks li a::before{
    content:"";
    position:absolute;
    left:38px; top:50%;
    width:4px; height:4px;
    border-radius:50%;
    background: var(--green);
    transform: translateY(-50%);
}
.mmLinks li a:hover{ color:var(--green); }

/* plain top-level links (Resources / News / About / Contact) */
.mmList > li.plain > a{
    display:block;
    padding: var(--fs18) var(--fs24);
    color:#fff;
    font-family: var(--tight);
    font-weight:400;
    font-size: var(--fs14);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration:none;
}


.brandlogo{display:flex; align-items: center;}

.mblhreTxt{display: none;}

/* Home Page */

.casestudies .caseItem{
    display:flex;
    flex-direction: column;
    gap: var(--fs24);
}
.casestudies .caseItem .img{
    border-radius: var(--fs24);
    overflow: hidden;
}
.casestudies .caseItem a{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--fs24);
    width: 100%;
}
.casestudies .caseItem h4{
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.casestudies .caseItem p{
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.casestudies .caseItem a span{
    color: var(--blue);
}


.headCard {
    background-image: url(../img/case/casebg.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    border-radius: var(--fs24);
    padding: var(--fs40);
    padding-bottom: 56px;
    padding-right: 35px;
    height: 100%;
}
.headCard .heading h2, .headCard p{
    color: var(--white);
}
.headCard p{
    font-size: var(--fs16);
    line-height: var(--fs26);
    letter-spacing: 0.3px;
    padding-right: var(--fs50);
}
.headCard button{
    margin-top: var(--fs30);
    width: fit-content;
}

.cardItem .img{
    transform: scale(1.0);
    overflow: hidden;
}
.cardItem .img img{
    transform: scale(1.0);
    transition: all 1.5s ease-in-out;
    width: 100%;
    display: block;
}
.cardItem:hover .img img{
    transform: scale(1.1);
    transition: all 1.5s ease-in-out;
}

.technical .cardImItem .newsTxt{
    padding: var(--fs20);
    background: var(--white);
}
.technical .cardImItem .newsTxt ul{
    padding-left: var(--fs20);
    display: flex;
    flex-direction: column;
    gap: var(--fs10);
}
.technical .cardImItem .newsTxt ul li{
    list-style: outside;
    color: var(--text);
    line-height: normal;
    font-size: var(--fs16);
}


/* Banner */

.hero{
    background-image: url(../img/banner.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    position: relative;
   
}
.hero:before{
    position: absolute;
    left: 0;
    bottom: 0;
    background-image:url(../img/herobluebg.svg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center left;  
    width:100%;
    height: 100%;
    content: "";
}
.hero .container{
     height:700px;
     display: flex;
     align-items: center;
     justify-content: flex-start;
}
.heroText {
    position: relative;
    max-width: 670px;
    z-index: 9;
}

.heroText label{
    color: rgba(255,255,255,0.80);
    font-size: var(--fs16);
    letter-spacing: 1px;
    font-weight: 500;
}
.heroText h1{
    font-weight:600;
    font-size: var(--fs64);
    line-height: var(--fs70);
    color: var(--white);
    margin-bottom: var(--fs24);
}
.heroText p {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    font-size: var(--fs20);
    line-height: var(--fs30);
    margin-bottom: var(--fs40);
    font-weight: 300;
}





/* Stats */

.stats{
    position: relative;
    background: #191A3D;
    background: linear-gradient(125deg, rgba(25, 26, 61, 1) 21%, rgba(43, 229, 115, 1) 100%);
}
.stats:before {
    background-image: url(../img/stats/statsbg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}
.stats .container{
    position: relative;
    z-index: 9;
}
.stats .row > div{
    display: flex;
    justify-content: center;
    border-right:1px solid rgba(255, 255, 255, 0.30);
}
.stats .row > div:last-child{
    border-right: 0px;
}
.sItem{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--fs24);
}
.sItem .number{
    font-size: var(--fs36);
    font-weight:600;
    color: var(--white);
    letter-spacing: 1px;
    line-height: var(--fs38);
    margin-bottom: calc(var(--fs10) - 5px);
}
.sItem label{
    font-size: var(--fs16);
    color:var(--white);
    font-family: var(--inter);
    margin-bottom: 0px;
}



/* Solutions */

.solutions{
    position: relative;
}
.solutions:before {
    position: absolute;
    content: "";
    width: 45%;
    height:40%;
    background-image: url(../img/solutionwave.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.solutions .container{
    position: relative;
    z-index: 9;
}

.solutions .heading + p{
    padding-right:10%;
    margin: 0px;
}

.solutions button{
    margin-top: var(--fs24);
}

.solutions .cardItem .itemText{
    padding: var(--fs20);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(25, 26, 61, 0.36);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
.solutions .cardItem .itemText h4{
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}




/* Footer */

.footer{
    background: #191A3D;
    position: relative;
}
.footer:after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../img/waveline3.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}
.tpFt{
    position: relative;
    z-index: 2;
}
.btFt{
    border-top: 1px solid rgba(255,255,255,0.10);
    position: relative;
    z-index: 2;
}
.btFt p{
    margin: 0px;
    font-size: var(--fs16);
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
    margin: 0px;
}

.socialmedia{
    gap: calc(var(--fs10) - 5px);
}
.socialmedia a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--fs38);
    height: var(--fs38);
    border-radius: var(--fs50);
    border:1px solid rgba(255,255,255,0.60);
    color: rgba(255,255,255,0.60);
    transition: all 0.4s ease-in-out;
}
.socialmedia a:hover{
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.getintouch button{
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.2);
}


.shrtinfo a{
    display: inline-block;
    margin-bottom: var(--fs30);
}
.shrtinfo a img{
    max-width:none;
    height:var(--fs26);
}
.shrtinfo p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs16);
    line-height: var(--fs24);
    letter-spacing: 0.3px;
    font-weight: 300;
    margin-bottom: 0px;
}
.certification{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:var(--fs10);
    margin-top: var(--fs20);
}
.certification a{
    font-size: var(--fs12);
    font-weight: 600;
    border-radius: var(--fs40);
    color: rgba(255,255,255,0.65);
    border:1px solid rgba(255,255,255,0.65);
    padding:3px var(--fs10) 2px;
    letter-spacing: 0.5px;
    margin:0px !important;
}
.certification a:hover{
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.fLinks h4{
    color: var(--white);
    font-weight: 500;
    font-size: var(--fs24);
    margin-bottom: var(--fs24);
}
.fLinks > div{
    display: flex;
    flex-direction: column;
    gap: var(--fs16);
}
.fLinks > div a{
    font-size: var(--fs16);
    color: rgba(255,255,255,0.70);
    display: inline-block;
    line-height:normal;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}
.fLinks > div a:hover{
    color: var(--green);
    transition: all 0.4s ease-in-out;
}


.solItem h4{
    font-size:var(--fs20);
    letter-spacing: 0.5px;
    font-weight: 600;
}


.fSearch {
    padding: 16px 20px;
    width: 100%;
    height: auto;
    position: fixed;
    top: 60px;
    z-index: 99;
    background: #fff;
    display: none;
}

.fSearch input {
    width: 80%;
    line-height: normal;
    border: 0px;
    font-size: 15px;
    font-family: var(--tight);
    padding-left: 32px;
}
.fSearch input:focus{
    outline: none;
}

.fSearch > span {
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--blue);
    font-size: 22px;
}

.cls {
    position: absolute;
    right: 28px;
    top: 16px;
    opacity: 0.5;
    cursor: pointer;
}








/* About Us */

.hisInfo {
    border-radius: var(--fs24);
    overflow: hidden;
   position: relative; 
}
.hisInfo img{
    width: 100%;
    height: auto;
    display: block;
}

.hisText {
    position: absolute;
    left: var(--fs40);
    bottom: var(--fs40);
    background: #191A3D;
    background: linear-gradient(115deg, rgba(25, 26, 61, 0.65) 0%, rgba(0, 171, 117, 0.65) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: var(--fs24);
    padding: var(--fs40);
    max-width: 45%;
}

.hisText .subtitle{
    color: var(--white);
}

.hisText h2{
    color: var(--white);
    font-size: var(--fs28);
    line-height: normal;
}
.hisText p{
    color: var(--white);
}
.hisText p:last-child{
    margin-bottom: 0px;
}

.hrCrItems{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs50);
    margin-bottom: var(--fs24);
}

.hrCrItems:last-child{
    margin-bottom: 0px;
}
.hrCrItems .hrText{
    padding-left: var(--fs50);
}
.hrCrItems:nth-child(2n) .hrText{
    padding-left: 0px;
    padding-right: var(--fs50);
}
.hrCrItems .img{
    border-radius:var(--fs24);
    overflow: hidden;
}

.excellStats{
    position: relative;
    background: #191A3D;
    background: linear-gradient(125deg, rgba(25, 26, 61, 1) 21%, rgba(43, 229, 115, 1) 100%);
}
.excellStats:before {
    background-image: url(../img/stats/statsbg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}
.excellStats .container{
    position: relative;
    z-index: 9;
}
.excellStats .heading label, .excellStats .heading p, .excellStats .heading h2{
    color: var(--white);
}
.excellStats .heading h2{
    color: var(--white);
    margin-bottom: var(--fs16);
}
.excellStats .heading p{
    margin-bottom: 0px;
}


.excItem{
    border-left:1px solid rgba(255,255,255,0.40);
    padding-left: var(--fs24);
}
.excellStats .row > div:first-child .excItem{
    padding-left: 0px;
    border-left: 0px;
}

.excItem h4{
    color: var(--white);
    letter-spacing:1px;
    margin-top: var(--fs24);
    margin-bottom:calc(var(--fs10) - 3px);
}
.excItem p{
    margin-bottom: 0px;
    letter-spacing: 0.4px;
    color: var(--white);
    font-weight: 300;
    font-size: calc(var(--fs14) + 2px);
}


.relLinks .heading h2{
    margin: 0px;
} 



/* Contact Page */

.cntItem{
    display: flex;
    gap: var(--fs30);
    padding: var(--fs48) 0;
    border-bottom: 1px solid var(--border);
}

.cntSec .row > div:last-child .cntItem{
    border-bottom: 0px;
}

.cntItem div a{
    color: var(--text);
    font-size: var(--fs20);
    display: inline-block;
    line-height: normal;
    transition: all 0.2s ease-in-out;
}

.cntItem div a:hover{
    color: var(--green);
    transition: all 0.2s ease-in-out;
}

.git{
    padding-right: var(--fs64);
    border-right: 1px solid var(--border);
}
.cntfrm{
    padding-left: var(--fs48);
}

.frmfield{
    margin-top: var(--fs16);
}
.formGroup label{
    font-size: var(--fs16);
    font-weight: 500;
    color: var(--black);
    line-height: auto;
    display: block;
    margin-bottom:calc(var(--fs10) - 4px);
}
.formGroup input{
    border:1px solid var(--border);
    border-radius: var(--fs10);
    padding: 0px var(--fs16);
    line-height: var(--fs50);
    font-size: var(--fs16);
    line-height: auto;
    background: var(--white);
}
.formGroup input:focus{
    outline: none;
    box-shadow: none;
    border-color: var(--green);
}

.formGroup textarea{
    border:1px solid var(--border);
    border-radius: var(--fs10);
    padding: var(--fs16);
    line-height:normal;
    font-size: var(--fs16);
    background: var(--white);
    height:calc(var(--fs20) * 4);
}
.formGroup textarea:focus{
    outline: none;
    box-shadow: none;
    border-color: var(--green);
}

.dropZone{
    border: 1.5px dashed var(--border);
    padding: var(--fs24);
    border-radius: var(--fs10);
    background: rgba(246, 241, 236, 0.36);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dropZone img{
    margin-bottom: var(--fs10);
}
.dzTitle{
    font-size: var(--fs16);
    color: var(--black);
    font-weight: 500;
    margin-bottom: 5px;
}
.dzSub{
    font-size: var(--fs14);
    color: var(--text);
}


/* consent */
.consentRow{
    display:flex;
    align-items:flex-start;
    gap:var(--fs10);
}
.consentRow input[type="checkbox"]{
    appearance:none;
    -webkit-appearance:none;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1.5px solid var(--border);
    background: var(--white);
    flex-shrink:0;
    margin-top: 1px;
    cursor:pointer;
    position:relative;
}
.consentRow input[type="checkbox"]:checked{
    background: var(--green);
    border-color: var(--green);
}

.consentRow input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6.5px;
    top: 2.2px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.consentRow label{
    font-size: var(--fs14);
    color: var(--text);
    cursor:pointer;
}

.heading .head p{
    margin-bottom: 0px;
    margin-top: var(--fs10);
}

.supAllItems{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.supAllItems .excItem h4{
    font-size: 20px;
}
.supAllItems .excItem{
    width: 20%;
    padding-right: var(--fs30);
}
.supAllItems .excItem:first-child{
    border-left: 0px;
    padding-left: 0px;
}

.lclcnt .heading h2{
    margin-bottom: var(--fs16);
}
.lclcnt .heading p{
    margin-bottom: 0px;
}
.lclcnt .newsTxt{
    background: var(--white);
}
.lclcnt .newsTxt h4{
    margin-bottom: calc(var(--fs10) - 5px);
}
.lclcnt .newsTxt p{
    margin-bottom: 0px;
    font-size: var(--fs16);
    color: var(--green);
}

.lclcnt .newsTxt ul{
    margin-top: var(--fs24);
    display: flex;
    flex-direction: column;
    gap: var(--fs10);
}

.lclcnt .newsTxt ul li{
    letter-spacing: 0.2px;
    font-size:var(--fs16);
    color: var(--text);
    line-height: normal;
    position: relative !important;
    padding-left: var(--fs30);
}

.lclcnt .newsTxt ul li:before{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 16px;
    height: 16px;
    content: "";
    left: 0;
    top: 2px;
    position: absolute;
}

.lclcnt .newsTxt ul li:first-child:before{
    background-image: url(../img/icons/map.png);
}
.lclcnt .newsTxt ul li:nth-child(2):before{
    background-image: url(../img/icons/enve.png);
}
.lclcnt .newsTxt ul li:nth-child(3):before{
    background-image: url(../img/icons/call.png);
}


/* Blog CSS */

.artCardItem{
    padding: var(--fs20);
}
.artCardItem h4{
    font-size: var(--fs24);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0px;
}
.artCardItem p {
    font-size: var(--fs16);
    line-height: var(--fs22);
    margin: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px;
}
.dteRead > span{
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text);
    font-size: var(--fs14);
}
.dteRead > div{
    font-size: var(--fs16);
    font-weight: 600;
    color: var(--blue);
}

.dteRead > div span{
    font-size: var(--fs20);
    height: var(--fs18);
}

.filterSec{
    padding: var(--fs20);
    border-radius:var(--fs16);
    border: 1px solid var(--border);
}

.serch{
    position: relative;
}
.serch input{
    line-height:var(--fs50);
    border: 1px solid var(--border);
    border-radius: var(--fs10);
    padding: 0px 0px 0px var(--fs50);
    background: #F5F5F5;
}
.serch input:focus{
    outline: none;
    box-shadow: none;
    border-color: var(--green);
    background: var(--white);
}
.serch span{
    position: absolute;
    left: 0;
    top: 0;
    width: var(--fs50);
    height: var(--fs50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select{
    position:relative;
    width:100%;
}

.custom-select select{
    width:100%;
    height:50px;
    padding:0 45px 0 15px;
    font-size:16px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    background:#F5F5F5;
    color:#333;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    outline:none;
    transition:.3s;
}

.custom-select select:focus{
    border-color:var(--green);
    background: var(--white);
    box-shadow:none;
    outline: none;
}

.custom-select::after{
    content:"";
    background-image: url(../img/selectArrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width:10px;
    height: 6px;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
}

.filterSec + .nav-tabs{
    border: 0px;
    gap: var(--fs10);
}

.filterSec + .nav-tabs li button{
    padding: 0px var(--fs20);
    line-height: var(--fs32);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--black);
    font-weight: 500;
    font-size: var(--fs14);
}
.filterSec + .nav-tabs li button:hover{
    border-color: var(--green);
    color: var(--green);
}
.filterSec + .nav-tabs li button.active{
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.ttlCount{
    font-size: var(--fs18);
    font-weight: 400;
    color: var(--text);
}
.ttlCount span{
    color: var(--black);
    font-weight: 500;
}

.artinfo li{
    font-size: var(--fs16);
    font-weight:400;
    color: var(--text);
}
.artinfo li:after {
    background: var(--text);
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: var(--fs20);
    margin: 0px var(--fs16);
    position: relative;
    top: -2px;
}
.artinfo li:last-child:after{
    content: none;
}

.artText h4{
    margin-top: var(--fs24);
    margin-bottom: var(--fs16);
    line-height: normal;
}
.artText h5{
    font-size: var(--fs18);
    font-weight: 600;
}
.artText p{
    line-height: var(--fs26);
}
.artText ul{
    margin: var(--fs24) 0;
    padding-left: var(--fs20);
    display: flex;
    flex-direction: column;
    gap: var(--fs10);
}
.artText ul li{
    list-style: outside;
    line-height: normal;
    font-size: var(--fs16);
    color: var(--text);
}
.artText img{
    border-radius: var(--fs24);
}


.relatedArticles{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs30);
}

.relatedArticles > h4{
    padding-bottom: var(--fs24);
    margin-bottom: var(--fs24);
    border-bottom: 1px solid var(--border);
}
.relItem{
    padding-bottom: var(--fs24);
    margin-bottom: var(--fs24);
    border-bottom: 1px solid var(--border);
}
.relItem:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}
.relItem a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: var(--fs24);
}
.relItem a .img{
    width: 38%;
    border-radius: var(--fs16);
    overflow: hidden;
}
.relItem .img img{
    transform: scale(1.0);
    transition: all 1s ease-in-out;
}
.relItem:hover .img img
{
    transform: scale(1.1);
    transition: all 1s ease-in-out;
}
.relItem a .relText{
    width:calc(62% - 24px);
}
.relItem a .relText h4{
    margin-bottom: 0px;
    font-size:var(--fs16);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--fs16);
}
.relItem a .relText span{
    color: var(--text);
    font-weight: 500;
    font-size: var(--fs14);
    text-transform: uppercase;
}
.relItem:hover .relText h4{
    color: var(--green);
}




.authorInfo{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs30);
    background: var(--lightbg);
}
.authorInfo img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
}
.authorInfo h4{
    font-size: var(--fs20);
    margin-bottom:calc(var(--fs10) - 2px);
}
.authorInfo label{
    color: var(--green);
    font-size:var(--fs16);
}


.authorInfo ul {
    display: flex;
    flex-direction: column;
    gap: var(--fs12);
}

.authorInfo ul li {
    color: var(--text);
    font-size: var(--fs16);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: var(--fs16);
    position: relative;
    padding-left: var(--fs30);
}
.authorInfo ul li:before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 16px;
    height: 16px;
    content: "";
    left: 0;
    top: 5px;
    position: absolute;
}
.authorInfo ul li:first-child:before{
    background-image: url(../img/icons/enve.png);
}
.authorInfo ul li:nth-child(2):before{
    background-image: url(../img/icons/call.png);
}

.expIndus .itemText h4{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.expIndus .itemText p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.relprod .img{
    border:1px solid var(--border);
    border-radius: var(--fs16);
    display: flex;
    align-items: center;
    justify-content: center;
}


.relprod .relItem a .relText div{
    font-size: var(--fs16);
    font-weight: 500;
    color: var(--blue);
}
.relprod .relItem a .relText div span{
    font-size: var(--fs22);
}



.middCTA{
    background: #191A3D;
    background: linear-gradient(120deg, rgba(25, 26, 61, 1) 35%, rgba(0, 171, 117, 1) 100%);
    border-radius: var(--fs24);
    padding: var(--fs40);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.mngrnorl > div{
    width: 100%;
}

.mngrnorl > p{
    font-size: var(--fs20);
    font-weight:500;
    color: var(--white);
    line-height: var(--fs32);
    padding-right:5%;
    letter-spacing: 0.5px;
    margin: 0px;
}
.mngr {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mngr h4{
    font-size: var(--fs20);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-top: 0px;
}
.mngr label{
    text-transform: capitalize;
    color: var(--white);
    font-size: var(--fs18);
    letter-spacing: 0.3px;
    text-align: end;
}


.caseTble{
    border-radius: var(--fs24);
    border: 1px solid var(--border);
    margin: var(--fs30) 0 var(--fs24);
}
.caseTble tr{
    border-bottom: 1px solid var(--border);
}

.caseTble tr th{
    background: rgba(217,217,217,0.20);
    color: var(--text);
    font-size: var(--fs16);
    font-weight: 500;
    padding: var(--fs16) var(--fs48) var(--fs16) var(--fs24);
    width:150px;
    vertical-align: middle;
    border: 0px;
}
.caseTble tr td{
    vertical-align: middle;
    color: var(--text);
    font-size: var(--fs16);
    font-weight: 400;
    padding: var(--fs16) var(--fs24) var(--fs16) var(--fs24);
    border: 0px;
}
.supplies .newsTxt{
    background: var(--white);
}
.supplies .newsTxt h4{
    font-size: var(--fs20);
}

.supplies .newsTxt ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: var(--fs16);
}

.supplies .newsTxt ul li{
    font-size: var(--fs14);
    color: var(--text);
    font-family: var(--inter);
    font-weight:400;
    text-transform: capitalize;
}
.supplies .newsTxt ul li:after {
    border-right: 1px solid var(--border);
    margin: 0 var(--fs16);
    display: inline-block;
    content: "";
    width: 1px;
    height: 14px;
    position: relative;
    top: 2px;
}
.supplies .newsTxt ul li:last-child:after{
    content: none;
}

.overview h2{
    margin-bottom: var(--fs14);
}
.overview h5{
    font-size: var(--fs20);
    margin-bottom: var(--fs16);
}
.overview p{
    font-size: var(--fs18);
    line-height: var(--fs30);
}

.subCatPage .heroPageText{
    max-width: 100%;
}

.filterList {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
.filterList li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px;
    font-family: var(--inter);
    font-size: var(--fs14);
}
 
.filterItem{
    display:flex;
    align-items:center;
    gap: var(--fs14);
    cursor:pointer;
    flex:1;
    min-width:0;
}
 
/* custom checkbox */
.filterItem input[type="checkbox"]{
    appearance:none;
    -webkit-appearance:none;
    width: var(--fs20);
    height:var(--fs20);
    flex-shrink:0;
    border-radius: 6px;
    border: 1px solid var(--green);
    background:var(--white);
    cursor:pointer;
    position:relative;
    transition: background .2s ease, border-color .2s ease;
}
.filterItem input[type="checkbox"]:checked{
    background: var(--green);
    border-color: var(--green);
}
.filterItem input[type="checkbox"]:checked::after{
    content:"";
    position:absolute;
    left:6px; top:2px;
    width:6px; height:11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
 
.filterItem span.label{
    font-size: var(--fs14);
    color:var(--text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
.filterList .count{
    font-size: var(--fs14);
    color: var(--text);
    font-weight: 400;
    flex-shrink:0;
    padding-left: 12px;
    opacity: 0.95;
}


.sd_filter{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs24);
}

.sd_filter > h4{
    font-size: var(--fs24);
    font-weight: 500;
    color: var(--blue);
    padding-bottom: var(--fs20);
    margin-bottom: var(--fs20);
    border-bottom: 1px solid var(--border);
}
.f_card{
    padding-bottom: var(--fs24);
    margin-bottom: var(--fs24);
    border-bottom: 1px solid var(--border);
}
.f_card:last-child{
    padding-bottom:0;
    margin-bottom:0;
    border-bottom: 0px solid var(--border);
}
.f_card > h5{
    font-size: var(--fs18);
    font-weight: 500;
    margin-bottom: var(--fs16);
    text-transform: capitalize;
}

.cmpred {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--fs16) var(--fs20);
    border-top: 1px solid #d9d9d9;
}

.cmpre{
    font-size: var(--fs14);
    color: var(--text);
    font-weight:400;
    font-family: var(--inter);
    cursor: pointer;
}
.cmpre:hover{
    color: var(--green);
}
.cmpred > a{
    font-size: var(--fs14);
    font-weight: 500;
    font-family: var(--inter);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--fs10) - 2px);
}
.cmpred > a span{
    font-size: var(--fs22);
}
.cmpred > a:hover{
    color: var(--green);
}
.prdText{
    border-top: 1px solid var(--border);
}
.prdText h4{
    font-size: var(--fs22);
    line-height: var(--fs30);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prdText p{
    margin: 0px;
    font-size: calc(var(--fs14) + 1px);
    line-height: var(--fs22);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.serFil{
    border: 1px solid var(--border);
    border-radius: var(--fs16);
    padding: var(--fs20);
}
.rtftr{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--fs24);
}



.rtftr .lyttpe > a {
    width: 29px;
    height: 29px;
}
.rtftr .lyttpe > a:hover img{
   filter: brightness(0) saturate(100%) invert(9%) sepia(30%) saturate(2618%) hue-rotate(213deg) brightness(93%) contrast(96%);
}

.rtftr > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--fs10);
}
.rtftr > div label{
    font-size: var(--fs16);
    color: var(--text);
    font-family: var(--inter);
    white-space: nowrap;
}


/* List View */

.allprdcts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fs24);
}

.showList .allprdcts{
    grid-template-columns: repeat(1, 1fr);
}
.showList .allprdcts .cardImItem{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
}
.showList .allprdcts .cardImItem .img{
    width: 40%;
    border-right: 1px solid var(--border);
}

.showList .prdText{
    border-top: 0px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.showList .prdText .cmpred{
    width: 100%;
    padding:var(--fs10) var(--fs20);
}
.showList .prdText > div:first-child{
    width: 100%;
}



.docArea .nav-tabs{
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs24);
    gap: var(--fs14);
}

.docArea .nav-tabs button{
    padding: var(--fs18) var(--fs18);
    background: rgba(0,171,117,0.07);
    border: 1px solid rgba(0,171,117,0.05);
    width: 100%;
    text-align: start;
    border-radius: var(--fs10);
    font-size: var(--fs18);
    line-height: normal;
    font-weight:400;
    color: var(--text);
}
.docArea .nav-tabs button:hover{
    border-color: var(--green);
}
.docArea .nav-tabs button.active{
    background:var(--green);
    border-color: var(--green);
    color: var(--white);
    font-weight: 500;
}
.pdfCards{
    margin-top: var(--fs48);
}
.pdfCards > h4{
    margin-bottom: var(--fs20);
}
.pdfItem{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs24);
}
.pdfItem:hover{
    border-color: var(--green);
}
.pdfItem h4{
    font-size: var(--fs18);
    font-weight: 500;
    color: var(--black);
    line-height: var(--fs24);
    margin-bottom: var(--fs10);
    max-width: 75%;
}
.pdfItem p{
    margin-bottom: 0px;
}
.dwnld{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dwnld span{
    letter-spacing: 0.3px;
    font-weight: 500;
    color: var(--text);
    font-size: var(--fs14);
}
.vdbtn{
    display: flex;
    align-items: center;
    gap: 8px;
}
.vdbtn button{
    line-height: var(--fs42);
    padding: 0px var(--fs16);
}

.projTags{
    padding: var(--fs24) 0;
    margin: var(--fs28) 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);

    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--fs10) - 2px);
}

.projTags li{
    color:rgba(255,255,255,0.80);
    font-family: var(--inter);
    width: 100%;
}
.projTags li span{
    font-weight: 500;
    color: var(--white);
}


.futreProj .row{
    border-radius: var(--fs24);
    overflow: hidden;
}
.futreProj .row > div{
    padding: 0px;
}
.futreProj .img{
    height: 100%;
}
.futreProj .img img{
    width: 100%;
    display: block;
    height: 100%;
}

.pfProDet{
    background: #191A3D;
    background: linear-gradient(129deg, rgba(25, 26, 61, 1) 11%, rgba(0, 171, 117, 1) 100%);
    height: 100%;
    padding: var(--fs48);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pfProDet .heading h2{
    color: var(--white);
    margin-bottom: 0px;
    font-size: var(--fs38);
    line-height: var(--fs48);
}
.pfProDet p{
    color: var(--white);
    margin-bottom: var(--fs30);
}

.futreProj .row > div:nth-child(2){
    position: relative;
}


.simprd .relItem a {
    background: var(--white);
    border: 1px solid #d9d9d9;
    border-radius: 24px;
    padding: 16px;
}

.simprd .relItem a .img{
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simprd .relItem a .relText h4{
    font-size: var(--fs20);
    line-height: var(--fs28);
}
.simprd .relItem a .relText .prdId{
    color: var(--text);
    font-size: var(--fs16);
    font-weight: 500;
}
.simprd  .relItem a .relText .prdId span{
    font-weight: 400;
}


.simprd  .cardImItem{
    background: var(--white);
}




/* Product Gallery */

.gallery{ width:100%; max-width:900px; }

  /* ---------- Main viewer ---------- */
  .main-viewer{
    position:relative;
    background:linear-gradient(135deg,var(--card-bg1),var(--card-bg2) 60%,#ffffff);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:0px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:auto;
    overflow:hidden;
  }

  .main-viewer img{
    max-height:100%;
    max-width:100%;
    object-fit:contain;
    user-select:none;
    -webkit-user-drag:none;
    transition:opacity .25s ease;
    cursor:zoom-in;
  }

  .nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border-radius:50%;
    border:2px solid var(--accent);
    background:#fff;
    color:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:20px;
    z-index:5;
    transition:background .2s, color .2s, transform .2s;
  }
  .nav-btn:hover{ background:var(--accent); color:#fff; transform:translateY(-50%) scale(1.08); }
  .nav-prev{ left:16px; }
  .nav-next{ right:16px; }

  /* ---------- Thumbnails ---------- */
  .thumb-strip-wrap{ position:relative; margin-top:18px; }

  .thumb-strip{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:6px 2px 12px 2px;
    scrollbar-width:thin;
    scrollbar-color:var(--accent) transparent;
  }
  .thumb-strip::-webkit-scrollbar{ height:6px; }
  .thumb-strip::-webkit-scrollbar-thumb{ background:#cfd6dc; border-radius:10px; }
  .thumb-strip::-webkit-scrollbar-thumb:hover{ background:var(--accent); }

  .thumb{
    flex:0 0 auto;
    width:130px;
    height:101px;
    background:linear-gradient(135deg,var(--card-bg1),var(--card-bg2));
    border-radius:14px;
    border:2px solid transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    overflow:hidden;
    transition:border-color .2s, transform .2s, box-shadow .2s;
  }
  .thumb img{ max-width:100%; max-height:100%; object-fit:contain; pointer-events:none; }
  .thumb:hover{ transform:translateY(-2px);}
  .thumb.active{ border-color:var(--blue);  }

  .scroll-btn{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    color:#555;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    z-index:4;
    font-size:15px;
  }
  .scroll-btn:hover{ color:var(--accent); border-color:var(--accent); }
  .scroll-left{ left:-14px; }
  .scroll-right{ right:-14px; }

  /* ---------- Lightbox ---------- */
  .lightbox{
    position:fixed;
    inset:0;
    background:rgba(15,20,25,.88);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:100;
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
  }
  .lightbox.open{ opacity:1; pointer-events:auto; }
  .lightbox img{ max-width:88vw; max-height:82vh; object-fit:contain; border-radius:8px; user-select:none; }
  .lightbox .nav-btn{ border-color:#fff; background:rgba(255,255,255,.08); color:#fff; }
  .lightbox .nav-btn:hover{ background:var(--accent); border-color:var(--accent); }

  .lightbox-close{
    position:absolute;
    top:24px;
    right:28px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:2px solid #fff;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s;
  }
  .lightbox-close:hover{ background:var(--accent); border-color:var(--accent); }

  .lightbox-counter{
    position:absolute;
    bottom:22px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
    font-size:14px;
    letter-spacing:.5px;
    opacity:.85;
  }



.moreInfo{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
}
.moreInfo .accordion-item{
    background: transparent;
    border-bottom: 1px solid var(--border);
}
.moreInfo .accordion-button{
    padding: var(--fs20) var(--fs24);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--fs24);
    background: transparent;
}

.moreInfo .accordion-button h4{
    font-size: var(--fs20);
    font-weight:600;
    color: var(--black);
    margin-bottom: 5px;
}
.moreInfo .accordion-button p{
    font-size: var(--fs16);
    color: var(--text);
    margin-bottom: 0px;
}

.moreInfo .accordion-flush .accordion-item .accordion-button{
    border: 0px;
    box-shadow: none;
}

.moreInfo .accordion-body{
    padding: var(--fs16) var(--fs24) var(--fs30) var(--fs24);
}

.prdsText h1{
    font-size: var(--fs42);
    line-height: var(--fs52);
    font-weight: 500;
    margin-bottom: var(--fs24);
}
.prdsText > p{
    line-height: var(--fs26);
    margin-bottom: 0px;
}

.techSpetn{
    margin: var(--fs40) 0;
}
.techSpetn  > h4{
    font-weight: 500;
    margin-bottom: var(--fs16);
}

.techSpetn .table-responsive{
    border-radius: var(--fs24);
    border: 1px solid var(--border);
}
.techSpetn .table tr{
    border-bottom: 1px solid var(--border);
}
.techSpetn .table tr:last-child{
    border-bottom: 0px;
}
.techSpetn .table tr td{
    background: transparent;
    border: 0px;
    padding: var(--fs20);
    line-height: normal;
    vertical-align: middle;
    font-size: var(--fs14);
    letter-spacing: 0.3px;
}
.techSpetn .table tr td:first-child{
    color: var(--text);
    font-weight: 500;
}
.techSpetn .table tr td:nth-child(2){
    font-weight: 600;
    color: var(--black);
    text-align: end;
}
.techSpetn .table tr td:nth-child(3){
    width:var(--fs60);
    color: var(--green);
    cursor: pointer;
}
.techSpetn .table tr td:nth-child(3):hover{
    color: var(--blue);
}

.pmr .heading .l_head h2 + p{
    margin-bottom: 0px;
}

.fppage .cardImItem .newsTxt p{
    text-transform: capitalize;
}

.ahcItem{
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    padding: var(--fs48);
}
.ahcText blockquote{
    font-size: var(--fs18);
    color: var(--black);
    font-weight:400;
    line-height: var(--fs30);
    font-family: var(--inter);
}

.ahcText h2{
    font-size: var(--fs34);
}
.ahcText p{
    font-size: var(--fs18);
    line-height: var(--fs30);
}

.ahcItem .img{
    border-radius: var(--fs24);
    overflow: hidden;
}
.ahcItem .img img{
    border-radius: var(--fs24);
}
.inddetpge .cardImItem .newsTxt{
    background: #fff;
}
.crdStats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--fs24);
    margin-top: var(--fs24);
}

.crdStats > div{
    background: var(--lightbg);
    padding: var(--fs24);
    border: 1px solid var(--border);
    border-radius: var(--fs24);
    width: calc(50% - 24px);
}

.crdStats > div span{
    display: block;
    font-size: var(--fs24);
    font-weight: 600;
    color: var(--green);
    margin-bottom:5px;
    line-height: normal;
}

.crdStats > div label{
    display: block;
    margin-bottom: 0px;
    font-size: var(--fs14);
    letter-spacing: 0.5px;
    color: var(--text);
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
}



.iwsItem{
    background: var(--white);
    border-radius: var(--fs24);
    padding: var(--fs30);
    border: 1px solid var(--border);
}
.iwsItem:hover{
    border-color: var(--blue);
}
.iwsItem img{
    width: var(--fs50);
    height: var(--fs50);
    border-radius: var(--fs50);
    margin-bottom: var(--fs24);
}

.iwsItem h4{
    margin-bottom: var(--fs10);
    line-height: normal;
}
.iwsItem p{
    font-size: var(--fs18);
    margin-bottom: 0px;
}


.indpage .cardItem .img img{
    max-height: 535px;
}

.indpage .cardItem .itemText a > div{width: 92%;}