@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


:root{
    --font-family :"Inter", sans-serif ;
    --font-family-heading: "Space Grotesk", sans-serif;

    --primary-color: #001525;
    --secondary-color: #FF7700;
    --text-primary-color: #505050;
    --text-secondary-color: #e2e2e2;

    --bg-color:#F4F5F0;
    --bg-color-light:#F7F7F7;
    --bg-color-dark:#001525;

    --Font-size-14: 14px;
    --Font-size-16: 16px;
    --Font-size-18: 18px;
    --Font-size-20: 20px;
    --Font-size-22: 22px;
    --Font-size-24: 24px;
    --Font-size-26: 26px;
    --Font-size-28: 28px;
    --Font-size-30: 30px;
    --Font-size-32: 32px;
    --Font-size-34: 34px;
    --Font-size-36: 36px;
    --Font-size-38: 38px;
    --Font-size-40: 40px;
    --Font-size-42: 42px;
    --Font-size-44: 44px;
    --Font-size-46: 46px;
    --Font-size-48: 48px;
    --Font-size-50: 50px;
    --Font-size-52: 52px;
    --Font-size-54: 54px;
    --Font-size-56: 56px;
    --Font-size-58: 58px;

    --white:#fff;
    --red:red;

}


/********* Reset CSS *********/
*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box;}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;} article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary { display:block } audio, canvas, video { display:inline-block } audio:not([controls]) {display:none;height:0} html {-webkit-text-size-adjust: 100%;-ms-text-size-adjust:  100%;} h1,h2,h3,h4,h5,h6 {font-weight:normal;} b,strong,dt,th {font-weight: bold;} em, i { font-style:italic;} p,h1,h2,h3,h4,h5,h6, ul,ol,dd,table,fieldset,address {margin:0; padding:0;} img {-ms-interpolation-mode: bicubic;border: 0;vertical-align: middle; max-width:100%; height:auto;} figure {margin:0;}legend {white-space:normal;}q { quotes:"\201C" "\201D" "\2018" "\2019" } small { font-size:80% } sub, sup { font-size:75%; line-height:0; position:relative; vertical-align:baseline } sup { top:-0.5em } sub { bottom:-0.25em }
table{border-collapse: separate;border-spacing: 0;width: 100%; empty-cells:show; border:none;} table table { margin:0} th,td {border:none; padding:8px 10px} caption,th,td{font-weight: normal;} a {outline: 0; text-decoration:none;color:var(--primary-color); -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;} a:focus {outline: 0;}a:hover,a:active {outline: 0;} a:hover {text-decoration:none;color:var(--secondary-color);}

/********* Common Classes *********/
* { margin:0; padding:0;}
hr{display:block;height:1px;border:0; border-top:1px solid #ccc; margin:20px 0;padding:0}
body,button,input,select,textarea {font-family:var(--font-family); color:var(--text-primary-color);  font-size:var(--Font-size-18); line-height:26px; font-weight:400;}

h1 { font-family: var(--font-family-heading); font-size:52px; font-weight:700; color:var(--primary-color); margin:0 0 0 0; line-height:normal;}
h2 { font-family: var(--font-family-heading); font-size:var(--Font-size-44); font-weight:600; color:var(--primary-color); margin:0 0 20px 0; line-height:normal;}
h3 { font-family: var(--font-family-heading); font-size:var(--Font-size-26); font-weight:600; color:var(--primary-color); margin:0 0 15px 0; line-height:normal;}
h4 { font-family: var(--font-family-heading); font-size:20px; font-weight:400; color:var(--primary-color); margin:0 0 10px 0; line-height:normal;}
p { margin-bottom:25px;}

a, button { cursor: pointer;}

ul, li { list-style:none;}

/********** Form, Input & Button  **********/
::-webkit-input-placeholder { color:var(--textColorLight); font-size: var(--Fonts-size-16);}
::-moz-placeholder { color:var(--textColorLight); font-size: var(--Fonts-size-16);}
:-ms-input-placeholder { color:var(--textColorLight); font-size:  var(--Fonts-size-16);}
::placeholder { color:var(--textColorLight); font-size:  var(--Font-size-16);}

::-moz-selection { /* Code for Firefox */
  color: var(--white);
  background: var(--primary-color);
}

::selection {
  color: var(--white);
  background: var(--primary-color);
}

.cForm { width:100%; display: flex; flex-wrap: wrap;}
.cForm li { width:100%; display: flex; flex-wrap: wrap; padding: 0 8px; margin-bottom: 16px;}
.cForm li p { width:100%; margin-bottom: 0px;}
.cForm li.col2 { width: 50%;}

.cForm li label { font-size: var(--Font-size-16); font-weight: 500; color: var(--primary-color); display: block; margin-bottom: 5px; font-weight: 500;}
.cForm li label span { color: var(--red);}

.cForm li.btnCenter { text-align: center; justify-content: center; margin-bottom: 0;}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], input[type="file"], select, textarea
{ width:100%; padding:10px 14px; background:#fff; border:1px solid #D9D9D9; border-radius:2px; -webkit-transition-duration:0.5s; -moz-transition-duration:0.5s; -o-transition-duration: 0.5s; transition-duration:0.5s; font-size:var(--Font-size-20); outline:0 none;}
input[type="text"]:hover, input[type="password"]:hover, input[type="email"]:hover, input[type="tel"]:hover, input[type="number"]:hover, input[type="file"]:hover, select:hover, textarea:hover { background:rgba(255, 255, 255, 0.9);  color:var(--primaryColor); border-color: var(--primary-color);}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="file"]:focus, select:focus, textarea:focus {background:rgba(255, 255, 255, 0.8); color: var(--primary-color); }
/* input[type="submit"].btn, button.btn { background-color: var(--secondary-color); color: var(--white); padding: 12px 24px; border-radius: 6px; border: 0 none; font-size: var(--Font-size-18); font-weight: 500; transition:0.5s all ease; cursor: pointer;} 
input[type="submit"].btn:hover, button.btn:hover { background-color: var(--white); color: var(--primary-color);} */

.lightBgForm input[type="text"], .lightBgForm input[type="password"], .lightBgForm input[type="email"], .lightBgForm input[type="tel"], .lightBgForm input[type="number"], .lightBgForm input[type="file"], .lightBgForm select, .lightBgForm textarea
{ background:#f1f1f1; border:1px solid #eee;}

.btn { font-family: var(--font-family-heading); font-size: var(--Font-size-18); text-align: center; color: var(--white); font-weight: 500; background-color: var(--secondary-color); padding: 12px 26px; border-radius: 50px; text-align: center; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; outline: none; border: 0 none;}
.btn.btn-light { background-color: var(--white); color: var(--primary-color);}
.btn:hover { background-color: var(--primary-color);}
.btn.btn-light:hover { color: var(--white);}

.mb-0 { margin-bottom: 0 !important;}
.mb-10 { margin-bottom: 10px !important;}
.mb-20 { margin-bottom: 20px !important;}
.mb-30 { margin-bottom: 30px !important;}
.mb-40 { margin-bottom: 40px !important;}
.mb-50 { margin-bottom: 50px !important;}
.mb-60 { margin-bottom: 60px !important;}
.mb-70 { margin-bottom: 70px !important;}
.mb-80 { margin-bottom: 80px !important;}
.mb-90 { margin-bottom: 90px !important;}

/*================================================ Main CSS Theme Start ====================================================*/
html { scroll-behavior: smooth;}
input { -webkit-appearance: none; -moz-appearance: none; appearance: none;}

/********** Layout **********/
.fullwidth { width:100%; display: flex; flex-wrap: wrap; justify-content: center; background-color: var(--white);}
.wrap-inner { display: flex; flex-wrap: wrap; margin:0 auto; width:100%; max-width:1570px; padding:0 15px;}
.wrap-inner-full { display: flex; flex-wrap: wrap; margin:0 auto; width:100%; padding:0 15px;}
.wrap-inner-mid { display: flex; flex-wrap: wrap; margin:0 auto; width:100%; max-width:1440px; padding:0 15px;}
.wrap-inner-small { display: flex; flex-wrap: wrap; margin:0 auto; width:100%; max-width:640px; padding:0 15px;}
.wrap-inner-from { display: flex; flex-wrap: wrap; margin:0 auto; width:100%; max-width:840px; padding:0 15px;}

.boxSpace { padding: 90px 0;}
.boxSpaceT { padding: 90px 0 0 0;}
.boxSpaceB { padding:0 0 90px 0;}

.textCenter { text-align: center;}

.lightBgY { background-color: var(--bg-color);}
.lightBg { background-color: var(--bg-color-light);}
.darkBg { background-color: var(--bg-color-dark);}

.halfBg { position: relative; overflow: hidden;}
.halfBgL::before { content: ""; width: calc(50% - 50px); height: 100%; max-height: 100%; min-height: 100%; background-color: var(--bg-color-light); position: absolute; left: 0; top: 0;}


@-webkit-keyframes AnimationName {
    0%{background-position:95% 0%}
    50%{background-position:5% 100%}
    100%{background-position:95% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:95% 0%}
    50%{background-position:5% 100%}
    100%{background-position:96% 0%}
}
@keyframes AnimationName {
    0%{background-position:95% 0%}
    50%{background-position:5% 100%}
    100%{background-position:95% 0%}
}

.moreArrow { color: var(--secondary-color);}
.moreArrow:hover { color: var(--primary-color);}
.moreArrow .bi::before {font-weight: 700 !important;}




/* Header */
.header { background-color: var(--white); padding:0; position: relative; z-index: 2;}
.header .wrap-inner { max-width: 100%; padding: 0 25px; justify-content: space-between; align-items: center;}
.header .menu-toggle { cursor: pointer; display: none;}

.header .logo {position: relative; z-index: 999; padding: 10px 0;}
.header .nav { display: flex; height: 100%;}
.header .nav .nav-links { display: flex; gap: 30px;}
.header .nav .nav-links .menu-item { display: flex; height: 100%;}

.header .nav .nav-links .menu-item .mainManu,
.header .nav .nav-links .menu-item .topMenuItem { font-family: var(--font-family-heading); font-size:15px; text-transform: uppercase; color: var(--primary-color); font-weight: 600; letter-spacing: 2px; position: relative; z-index: 999; display: flex; align-items: center;}
.header .nav .nav-links .menu-item .mainManu:hover,
.header .nav .nav-links .menu-item .topMenuItem:hover  { color: var(--secondary-color);}

.header .nav .nav-links .menu-item-icon { display: flex; flex-wrap: wrap; gap: 10px;}
.header .nav .nav-links .mainManuBtn { width: 42px; height: 42px; font-size: var(--Font-size-18); color: var(--white); background-color: var(--secondary-color); padding: 8px; border-radius: 100px; position: relative; z-index: 999; display: flex; justify-content: center;align-items: center; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.header .nav .nav-links .mainManuBtn:hover { background-color: var(--primary-color);}
.header .nav .nav-links .mainManuBtn::before { display: none;}


.nav { display: flex; }
.nav-links { display: flex; align-items: center; gap: 25px; list-style: none; margin: 0; padding: 0;}
.nav-links a { text-decoration: none; font-weight: 500; position: relative; padding: 6px 0; display: inline-block; transition: color 0.3s ease; color: var(--primary-color);}
.nav-links a:hover { color: var(--secondary-color);}
.nav-links a::before { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--secondary-color); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;}
.nav-links a:hover::before {transform: scaleX(1);}

.submenu { /* width: 100%; */ display: none; position: absolute; /* left: 0; */ top: 73px; background: var(--white); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /*padding: 20px; min-width: 220px;*/ z-index: 100;}

/* .menu-item:hover > .submenu { display: flex;} */

.submenu ul li { padding: 8px 20px; border-bottom: 1px solid #ddd;}

@media only screen and (min-width: 1280px) {
    .menu-item:hover > .submenu { display: flex; }
}
  
.menu-toggle { display: none; font-size: 28px; cursor: pointer; user-select: none; z-index: 2001; }

.header .submenu label { width: 100%; display: flex; margin-bottom: 10px; font-family: var(--font-family-heading); font-size: var(--Font-size-14); color: var(--primary-color); text-transform: uppercase; font-weight: 500; letter-spacing: 2px; position: relative; padding-left: 16px; }
.header .submenu label::before { content: ""; width: 8px; height: 8px; border-radius: 100%; background-color: var(--secondary-color); position: absolute; left: 0; top: 9px;}

/* Sticky */
.header { position: absolute;  top: 0; left: 0; width: 100%; transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease; z-index: 99;}
.header.sticky { position: fixed; box-shadow: 0 6px 25px rgba(0,0,0,0.08); transform: translateY(0);}
.header {opacity: 0.95;}
.header.sticky { opacity: 1;}




/* Footer */
/* .footerTop { background-image: url(../images/footer.png); background-repeat: no-repeat; background-position: bottom right;} */
.footerTop { background-color: var(--bg-color-light);}
.getInTouchBox { width: 100%; display: flex; flex-wrap: wrap; align-items: center; gap: 80px;}
.getInTouchBox .contactUs,
.getInTouchBox .formBox { width: calc(50% - 40px);}

.getInTouchBox .formBox { background-color:#ffffffc5; padding: 40px;}
.getInTouchBox .contactUs p { max-width: 640px;}
.getInTouchBox .contactUs ul { width: 100%; display: flex; flex-wrap: wrap; gap: 20px;}
.getInTouchBox .contactUs ul li { width: 100%; display: flex; flex-wrap: wrap; align-items: center; gap: 12px;}
.getInTouchBox .contactUs ul li i { color: var(--secondary-color); font-size: var(--Font-size-22);}
.getInTouchBox .contactUs ul li a { font-family: var(--font-family-heading); font-size: var(--Font-size-18); font-weight: 600;}

.footer { padding: 40px 0; color: var(--white); border-bottom:1px solid #0F2F47;}
.footer label, .footer h3,
.footer a { color: var(--white);}
.footer p,
.footer address { color: #A5AFB8;}

.footer .companyInfo { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;}
.footer .companyInfo .social { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px;}
.footer .companyInfo .social a { width: 42px; height: 42px; background-color: #002440; display: flex; justify-content: center; align-items: center; color: var(--secondary-color); border-radius: 50px;}
.footer .companyInfo .social a:hover { background-color: var(--white);}

.footer .footerLink { width: 100%; max-width: 1024px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;}
.footer .footerLink ul { display: flex; flex-wrap: wrap; gap: 22px;}
.footer .footerLink a { font-family: var(--font-family-heading); font-size: var(--Font-size-16); font-weight: 400;}
.footer .footerLink a:hover { color: var(--secondary-color);}

.footer address { width: 100%; text-align: center; font-size: var(--Font-size-16); }
.footer:has(address) { border-bottom: 0 none;}

.footer .certified { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;}
.footer .certified ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;}
.footer .certified ul img { width: auto; height: 42px;}
/* Footer End */



/* Title */
.titleBox { width: 100%; display: flex; flex-wrap: wrap; flex-direction: column; margin-bottom: 40px;}
.titleBox label { font-family: var(--font-family-heading); font-size: var(--Font-size-16); color: var(--secondary-color); text-transform: uppercase; font-weight: 700; letter-spacing: 2px; display: block; margin-bottom: 6px;}
.titleBox h2 { width: 100%; max-width: 768px; margin-bottom: 0;}
.titleBox h2 span { color: var(--secondary-color);}
.titleBox p { width: 100%; max-width: 1024px; margin-bottom: 0; font-size: var(--Font-size-20); font-weight: 400; line-height: 28px;}
.titleBox.centerTitle { justify-content: center; align-items: center; text-align: center;}
.titleBox.centerTitle p { max-width: 960px;}
.titleBox.removeMax h2,
.titleBox.removeMax p { max-width: 100%;}
.titleBox:has(p) h2 { margin-bottom: 15px;}

/* Two Col Box */
.twoColBox { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 60px; }
.twoColBox .colTwo { width: calc(50% - 30px); position: sticky; top: 110px;}
.twoColBox .imgBox img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px;} 
.twoColBox:has(.imgBox) .cntBox { padding: 30px 0;}
.twoColBox .imgBox img.fixed { height: calc(100vh - 80px);} 

/* List */
ul.list { width: 100%; display: flex; flex-wrap: wrap; margin: 0 !important;}
ul.list li { width: 100% !important; display: block !important; position: relative; padding: 0 0 0 28px !important; margin-bottom: 14px !important;}
ul.list li::before { content: ""; width: 12px; height: 12px; background-color: var(--white); border-radius: 20px; position: absolute; left: 0; top: 8px; border: 2px solid var(--secondary-color);}
ul.list li label { width: 100%; display: block; margin-bottom: 5px; color: var(--primary-color); font-weight: 600; font-family: var(--font-family-heading);}

.link { font-family: var(--font-family-heading); font-weight: 500; display: flex; align-items: center; gap: 10px; }

/*  Icon Box */
.iconBox { width: 100%; display: flex; flex-wrap: wrap; gap: 50px;}
.iconBox li { width: calc(50% - 25px); display: flex; flex-wrap: wrap;}
.iconBox.oneCol { gap: 30px;}
.iconBox.oneCol li { width:100%;}
.iconBox.threeCol li { width: calc(33% - 33.33px);}
.iconBox li .cntBox { width: 100%; display: block;}
.iconBox li .cntBox img { margin-bottom: 18px;}

.iconBox.iconBgBox { gap: 30px;}
.iconBox.iconBgBox.threeCol li { width: calc(33.33% - 20px);}
.iconBox.iconBgBox li .cntBox { display: block; height: 100%; border: 1px solid #ddd; background-color: var(--white); padding: 40px; border-radius: 10px; box-shadow: rgba(0, 0, 0, 0) 0px 4px 12px;  -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;}
.iconBox.iconBgBox li .cntBox:hover { color: var(--text-primary-color); border: 1px solid var(--secondary-color); margin-top: -10px; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;}



/* Home Banner */
.homeBanner { min-height: calc(98vh - 74px); position: relative;  overflow: hidden; padding:120px 0; margin-top: 74px;}
.homeBanner .wrap-inner { align-items: center; justify-content: space-between; z-index:2;}
.homeBanner::before {  content:""; width: 100%; max-height: 100%; min-height: 100%; position: absolute; left:0; top: 0; z-index:1; background-color: #001525e6;}
.homeBanner .cntBox { width: 100%; max-width: 1024px;  text-align: left;}
.homeBanner .cntBox label { font-family: var(--font-family-heading); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--secondary-color); display: block; margin-bottom: 10px;}
.homeBanner .cntBox h1 { font-size: var(--Font-size-54); font-weight: 600; color: var(--white); margin-bottom: 20px;}
.homeBanner .cntBox h3 { color: var(--white); font-weight: 400; color: var(--secondary-color);}
.homeBanner .cntBox p { font-weight: 500; font-size: var(--Font-size-20); color: var(--white); margin-bottom: 50px; display: block; }
.homeBanner .imgBox { width: 320px;}

.homeBanner img.banner { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; animation: zoomInOut 12s ease-in-out infinite;}

/* Keyframes */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}



.homeServices .iconBox { gap: 30px;}
.homeServices .iconBox li { width: calc(50% - 15px);}
.homeServices .iconBox.threeCol li { width: calc(33.33% - 20px);}
.homeServices .iconBox li a { display: block; height: 100%; border: 1px solid #ddd; background-color: var(--white); padding: 45px; border-radius: 10px; box-shadow: rgba(0, 0, 0, 0) 0px 4px 12px;}
.homeServices .iconBox li a:hover { color: var(--text-primary-color); border: 1px solid var(--secondary-color); margin-top: -5px; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;}

.homeServices .iconBox li img { height: 58px;}

.homeBusinessValue .twoColBox { align-items: center;}

.homeIndustries .iconBox { gap: 30px;}
.homeIndustries .iconBox.threeCol li { width: calc(33% - 15px);}
/* .homeIndustries .iconBox.threeCol li { width: calc(25% - 23px);} */
.homeIndustries .iconBox li .cntBox { display: block; height: 100%; border: 1px solid #ddd; background-color: var(--white);  border-radius: 10px; box-shadow: rgba(0, 0, 0, 0) 0px 4px 12px;}
.homeIndustries .iconBox li .cntBox img { width: 100%; height: 320px; object-fit: cover; border-radius: 10px 10px 8px 8px;}
.homeIndustries .iconBox li .cntBox .cnt { width: 100%; display: block; padding: 10px 30px 20px 30px;}
.homeIndustries .iconBox li .cntBox .cnt p { margin-bottom: 15px;}


.homeROI .twoColBox .imgBox img { width: 90%; height: auto;}
.homeROI.halfBgL::before { border-radius:0 150px 40px 0; background-color: #00152508;}

.homeWhyBusiness .imgBox img { width: calc(100% - 20px); height: calc(100vh - 150px) !important; border-top-right-radius: 40px;}
.homeWhyBusiness .titleBox { padding-top: 40px;}

.homeWhyBusiness .iconBox { margin-top: 50px;}
.homeWhyBusiness .twoColBox:has(.imgBox) .cntBox { border-bottom: 1px solid #ddd; padding: 0 30px 30px 0; display: flex; align-items: flex-start; gap: 50px;}
.homeWhyBusiness .twoColBox .cntBox .cnt{ width: calc(100% - 0);}
.homeWhyBusiness .twoColBox .cntBox img { margin-bottom: 0; margin-top: 8px;}
.homeWhyBusiness .twoColBox .cntBox p { margin-bottom: 0;}


.caseList .iconBox { gap: 30px;}
.caseList .iconBox.threeCol li { width: calc(33% - 15px);}
.caseList .iconBox li .cntBox { display: block; height: 100%; /* border: 1px solid #ddd; */ background-color: transparent;  border-radius: 10px; box-shadow: rgba(0, 0, 0, 0) 0px 4px 12px; position: relative; -webkit-transition-duration:0.8s; -moz-transition-duration:0.8s; -o-transition-duration: 0.8s; transition-duration:0.8s; overflow: hidden;}
.caseList .iconBox li .cntBox img { width: 100%; height: 300px; object-fit: cover; border-radius: 10px 10px 8px 8px; filter: grayscale(0%); transition: filter 0.3s ease; transition: transform 0.4s ease;}
.caseList .iconBox li .cntBox .cnt { width: 100%; display: block; padding: 10px 30px 20px 30px;}
.caseList .iconBox li .cntBox .cnt p { margin-bottom: 20px;}
.caseList .iconBox li .cntBox .catLink { position: absolute; right: 12px; top: 12px; z-index: 1; background-color: var(--bg-color-light); font-family: var(--font-family-heading); font-weight: 500; font-size: var(--Font-size-16); letter-spacing: .8px; line-height: normal; padding: 6px 12px; border-radius: 4px; }
.caseList .iconBox li:hover .cntBox .catLink { background-color: var(--secondary-color); color: var(--white);} 
.caseList .iconBox li:hover .cntBox { background-color: var(--white);  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 15px;}
.caseList .iconBox li:hover .cntBox img { filter: grayscale(0%); transform: scale(1.1);}


/* .homeMethodology { background-image: url(../images/ux-designer-planning-usability-with-detailed-notes-usercentric-approach-creating-intuitive.jpg); background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed; position: relative;}
.homeMethodology::before {  content:""; width: 100%; max-height: 100%; min-height: 100%; position: absolute; left:0; top: 0; z-index:1; background-color: #001525cc;}
.homeMethodology .wrap-inner { position: relative; z-index: 2;}
.homeMethodology .titleBox h2 { color: var(--white);}
.homeMethodology .titleBox p { color:#ccc;} */

.homeMethodology .twoColBox .imgBox img { width: 90%; height: auto;}
.homeMethodology.halfBgL::before { height: 70vh; border-radius:0 100px 50px 0; background-image: url(../images/methodology.jpg); background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed; }


.listMethodology { counter-reset: step;}
.listMethodology li { position: relative; padding-left: 70px; margin-bottom: 30px; opacity: 0; transform: translateY(40px); transition: all 0.6s ease; }
/* Number circle */
.listMethodology li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 48px; height: 48px; background:#ededed; color: var(--text-primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-family-heading); font-size: var(--Font-size-20); font-weight: 800; }

.listMethodology li label { font-family: var(--font-family-heading); font-size: var(--Font-size-20); font-weight: 600; color: var(--primary-color); display: block; margin-bottom: 5px;}
.listMethodology li.show { opacity: 1; transform: translateY(0);}

.listMethodology li:nth-child(1) { transition-delay: 0.05s; }
.listMethodology li:nth-child(2) { transition-delay: 0.10s; }
.listMethodology li:nth-child(3) { transition-delay: 0.15s; }
.listMethodology li:nth-child(4) { transition-delay: 0.20s; }
.listMethodology li:nth-child(5) { transition-delay: 0.25s; }



/* .homeTransform .colTwo:has(.transformBusiness) { background-image: url(../images/enterprise-b2b-services.jpg); background-repeat: no-repeat; background-position: 200px 0; } */

.transformBusiness { width: 440px; background-color: var(--bg-color-light); padding: 50px 20px 50px 50px; border-radius: 60px 0 0 0; position: relative; /* box-shadow:4px 4px 6px rgba(0, 0, 0, 0.2); */}
.transformBusiness::before { content: ""; width: 90%; height: calc(100% - 0px); background-image: url(../images/transform-your-business.jpg); background-repeat: no-repeat; background-size: cover; background-position: center; position: absolute; left: 90%; top: 0px; z-index: -1; background-color: var(--bg-color-light); }

.transformBusiness ul { width: 100%; display: flex; flex-wrap: wrap; gap: 50px;}
.transformBusiness ul li { width: 100%; display: flex; flex-wrap: wrap; gap: 20px;}
.transformBusiness ul li .countIcon { display: flex; align-items: self-start; justify-content: center; }
.transformBusiness ul li .countIcon img { width: 48px;}
.transformBusiness ul li .countBox { width: calc(100% - 80px); padding-left: 20px;} 
.transformBusiness ul li .countBox .count { display: block; font-family: var(--font-family-heading); font-size: var(--Font-size-32); font-weight: 600; color: var(--primary-color); display: block; margin-bottom: 15px; padding-bottom: 20px; position: relative;}
.transformBusiness ul li .countBox .count::before { content: ""; width: 120px; height: 2px; background-color: var(--primary-color); position: absolute; left: 0; bottom: 0;}
.transformBusiness ul li .countBox .countCnt label { display: block; font-family: var(--font-family-heading); font-size: var(--Font-size-20); font-weight: 600; color: var(--primary-color); display: block; margin-bottom: 5px;}


.innerBanner {min-height: calc(80vh - 74px);}

.servicesProcess .imgBox img { width: calc(100% - 20px); height: calc(100vh - 150px) !important; border-top-left-radius: 40px;}


/* Contact Box */
.contactBox { width: 100%; display: flex; flex-wrap: wrap; padding: 50px; background-color: var(--primary-color); border-radius: 10px;}
.contactBox h2 { color: var(--white); font-size: var(--Font-size-42); margin-bottom: 15px;}
.contactBox p { color: var(--secondary-color); font-family: var(--font-family-heading); font-size: var(--Font-size-24); margin-bottom: 0; line-height: normal;}
.contactBox .btn:hover { background-color: var(--white);}
.contactBox h2.small { font-size: var(--Font-size-36);}
.contactBox .cnt { width:100%; margin-bottom: 40px;}
.contactBox .btnBx { width:100%; display: flex; gap: 12px;}


.accordionFaq { width: 100%; display: flex; flex-wrap: wrap; gap: 5px;}
.accordionFaq li { width: 100%; display: flex; flex-wrap: wrap; background-color: var(--bg-color-light); border: 1px solid var(--bg-color-light); border-radius: 8px; padding: 25px;}
.accordionFaq li .acclink { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; cursor: pointer;}
.accordionFaq li h3 { width: calc(100% - 46px); margin-bottom: 0;}
.accordionFaq li .accord-detail { margin-top: 20px;}

.accordion .acclink span i { -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; }
.accordion li:has(.active) .acclink span { rotate: -45deg; color: var(--secondary-color);}
.accordion li:has(.active) { background-color: var(--white); border: 1px solid var(--secondary-color);}

.benefitsCount { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px;}
.benefitsCount li { width: calc(25% - 15px); display: flex;}
.benefitsCount li .countBx { width:100%; display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 10px; text-align:center;}
.benefitsCount li .countBx span { font-family: var(--font-family-heading); font-size: var(--Font-size-42); font-weight: 800; color: var(--primary-color); line-height: normal;}
.benefitsCount li .countBx label { font-family: var(--font-family-heading); font-size: var(--Font-size-20); font-weight: 800; color: var(--secondary-color); line-height: normal;}



/* Popup */
.popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: center; z-index: 9999; }
.popupContent { background: #fff; padding: 25px; width: 400px; max-height: 90%; border-radius: 10px; overflow-y: scroll; position: relative; }
.closePopup { position: absolute; top: 8px; right: 10px; font-size: 22px; cursor: pointer;}
.popupContent .headerPop { width: 100%; display: flex;}
.popupContent .headerPop h4 { width: calc(100% + 100px); text-align: center; font-size: var(--Font-size-24); font-weight: 600; border-bottom: 1px solid #ccc; padding-bottom: 15px; margin-top: -10px; margin-bottom: 25px; margin-left: -25px; margin-right: -25px;}

.popupContent::-webkit-scrollbar {
  display: none;
}

.popupContent.letsTalkPopup { background: none;  max-width: 960px; width: 100%; display: flex; flex-wrap: wrap; padding: 0;}
.letsTalkPopup .letsTalkImg { width:560px; background-color: var(--bg-color-light); display: flex; align-items: center; padding: 20px;}
.letsTalkPopup .letsTalkForm { width:400px; background-color:#fff; padding: 30px 25px;}


.floating_btn img { width: 35px; height: 35px; }
.floating_btn { position: fixed; bottom: 10px; right: 10px; width: 100px; height: 100px; display: flex; flex-direction: column; align-items:center; justify-content:center; z-index: 1000; }
@keyframes pulsing {
to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
}
}
.floating_btn .contact_icon { background-color: #42db87; color: #fff; width: 60px; height: 60px; font-size:30px; border-radius: 50px; text-align: center; box-shadow: 2px 2px 3px #999; display: flex; align-items: center; justify-content: center; transform: translatey(0px); animation: pulse 1.5s infinite; box-shadow: 0 0 0 0 #42db87; -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); font-weight: normal; font-family: sans-serif; text-decoration: none !important; transition: all 300ms ease-in-out;}
  