body,h1,h2,h3,h4,h5,h6 {
    font-family: "Poppins", sans-serif;
    color: #000;
}
img,video{
    max-width: 100%;
}
a{
    text-decoration: none;
}
ul{
    margin-bottom: 0;
    padding-left: 0;
}
ul li{
    display: inline-block;
    vertical-align: middle;
}
h2{
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1;
}
h2 br{
    display: none;
}
h2 span{
    color: #FFC10E;
    font-weight: 700;
}
h3{
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
    font-size: 20px;
}
h3.enlarged-text{
    font-size: 22px;
    letter-spacing: 4px;
    line-height: 1.2;
}
h3.enlarged-text br{
    display: none;
}
h3 strong{
    font-weight: bold;
}
h4{
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
}
h6{
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 2px;
}
p{
    font-weight: 300;
    line-height: 1.2;
    margin-bottom:1em;
}
.bg-cover {
    background-size: cover;
}
.bg-center {
    background-position: center;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}
.custom-cta{
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 10px;
    display: inline-block;
    margin: 1em 0;
}
.custom-cta img{
    width: 25px;
    position: relative;
    top: -10px;
    margin-left: 10px;
    animation: smoothBounce 2s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: transform;
}
@keyframes smoothBounce {
    0%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-6px);
    }
    40% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(-3px);
    }
    80% {
        transform: translateY(0);
    }
}
.custom-cta span{
    width: max-content;
    display: inline-block;
    line-height: 1;
    vertical-align: text-bottom;
}
.tag{
    background: #FFC10E;
    color: #000000;
    font-size: 14px;
    padding: 2px 12px;
    font-weight: 300;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 5px;
}
.bg-custom {
    background-color: #F6F5F3;
}
.bg-custom-with-gradient{
    background: linear-gradient(to bottom,#000 0%,#000 75%,#fff 75%,#fff 100%);
}
.bg-black{
    background-color: #000000;
}
.custom-spacing{
    padding: 6em 0;
}
.header {
    /* padding: 20px 40px; */
    background: transparent;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 99999;
}
.menu {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    margin-right: 2em;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.3s ease;
}
.menu.active {
    pointer-events: auto;
}
.menu li {
    letter-spacing: 2px;
    cursor: pointer;
}
.menu li a {
    position: relative;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
}
.menu li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.header.scrolled .menu li a::before{
    background: #000;
}
.menu li a:hover::before {
    width: 100%;
}
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    flex-flow: column;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    border-radius: 10px;
    width: 25px;
}
.menu-toggle span:nth-child(2){
    width: 30px;
}
.menu-toggle span:nth-child(3){
    width: 20px;
}
.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header.scrolled .menu li a {
    color: #000;
}
.header.scrolled .menu-toggle span {
    background: #000;
}
.header .sticky-logo{
    display: none;
}
.header.scrolled .fixed-logo{
    display: none;
}
.header.scrolled .sticky-logo{
    display: inline-block;
}
.hero{
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-slider{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slide{
    height: 100vh;
}
.hero-slide img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hero-slider .slick-list,
.hero-slider .slick-track{
    height: 100%;
}
.top-gradient,
.bottom-gradient{
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.top-gradient{
    top: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.6),
        transparent
    );
}
.bottom-gradient{
    bottom: 0;
    height: 80%;
    background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 0%));
    z-index: 9;
}
.home-hero .bottom-gradient{
    z-index: -1; 
}
.hero-content{
    position: absolute;
    inset: 0;
    z-index: 99;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    pointer-events: none;
}
.home-hero .hero-content{
    z-index: 3;
}
.hero-content a,
.hero-content button{
    pointer-events: auto;
}
.hero-title{
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    color: #fff;
}
.hero-sub{
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}
.hero-list{
    list-style: none;
    padding: 0;
}
.hero-list li{
    display: inline-block;
    background: #FFC10E;
    color: #000;
    padding: 4px 12px;
    font-size: 14px;
    letter-spacing: 2px;
}
.hero-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 6px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
}
.hero-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}
.hero-slider .slick-dots li button {
    position: relative;
    width: 40px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 50px;
    background: rgba(255, 193, 14, 0.25); 
    overflow: hidden;
    transition: all 0.4s ease;
}
.hero-slider .slick-dots li button::before {
    display: none;
}
.hero-slider .slick-dots li.slick-active button{
    background: rgba(255, 193, 14, 0.35);
}
.hero-slider .slick-dots li.slick-active button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #FFC10E; 
    border-radius: 50px;
    transform: translateX(-100%);
    animation: dotProgress 5s linear forwards;
    box-shadow: 0 0 10px rgba(255, 193, 14, 0.8);
}
@keyframes dotProgress {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}
.hero-slider .slick-dots li button:hover {
    background: rgba(255,255,255,0.55);
}
.counters div{
    font-family: "Michroma", sans-serif;
    font-size: 2.25em;
}
.counter {
    display: inline-block;
    transition: transform 0.3s ease;
}
.counters.active .counter {
    animation: pulseCounter 0.6s ease;
}
@keyframes pulseCounter {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}
.why-item{
    cursor: pointer;
}
.why-item img{
    height: 38px;
    width: auto;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}
.why-item:hover img{
    transform: scale(1.15);  
}
.why-item h6{
    transition: transform 0.4s ease;
}
.why-item:hover h6{
    transform: scale(1.1);
}
.img-bg-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.img-bg-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all .5s ease-in-out;
    will-change: transform;
}
.img-bg-wrapper:hover .img-bg-img {
    transform: scale(1.05);
    filter: brightness(1.05);
}
.services-slider-wrapper {
    position: relative;
    margin: 0 0 3em;
}
.services-slider .services-slider-item {
    position: relative;
    cursor: pointer;
    padding: 0 1em 3em;
    cursor: pointer;
}
.services-slider .services-slider-item::after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: calc(100% - 2em);
    height: 2px;
    left: 1em;
    bottom: 0;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.services-slider .slick-current .services-slider-item::after {
    transform: scaleX(1);
}
.services-slider-item img{
    height: 50px;
    margin-bottom: 1em;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.services-slider-item:hover img{
    transform: scale(1);
}
.services-slider-item h6{
    transition: transform 0.4s ease;
}
.services-slider-item:hover h6{
    transform: scale(1.1);
}
.page-bottom .bottom-logo{
    margin-bottom: 4em;
    display: inline-block;
}
.page-bottom .bottom-logo img{
    width: 200px;
}
.page-bottom .media-lists li{
    margin-right: 10px;
}
.page-bottom .media-lists li:last-child{
    margin-right: 0;
}
.page-bottom .media-lists li img{
    width: 30px;
}
.page-bottom .footer-menu-lists{
    margin-bottom: 2.5em;
}
.page-bottom .footer-menu-lists li{
    display: block;
    margin-bottom: 5px;
}
.page-bottom .footer-menu-lists li a{
    color: #000;
    font-weight: 300;
    font-size: 15px;
}
.page-bottom form{
    border: 1px solid #363636;
}
.page-bottom form input{
    padding: 10px;
    border: 0;
    font-size: 14px;
    font-weight: 300;
    width: 100%;
}
.page-bottom form p{
    margin-bottom: 0;
}
.page-bottom .wpcf7-spinner{
    display: none;
}
.page-bottom form input:placeholder{
    color: #303030;
}
.page-bottom form input:focus{
    outline: none;
}
.page-bottom form input[type="submit"]{
    color: #000;
    background:transparent;
    text-transform: uppercase;
    text-align: right;
}
.page-bottom address{
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
}
#copyright p{
    margin-bottom: 0;
    font-size: 14px;
}
#copyright a{
    color: #000;
}
/* About Page */
.approach-item{
    cursor: pointer;
}
.approach-item img{
    height: 50px;
    margin-bottom: 1em;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.approach-item:hover img{
    transform: scale(1);
}
.approach-item h6{
    font-weight: 400;
    transition: transform 0.4s ease;
}
.approach-item:hover h6{
    transform: scale(1.1);
}
.approach-item p{
    font-size: 15px;
    transition: transform 0.4s ease;
}
.approach-item p br{
    display: none;
}
.approach-item:hover p{
    transform: scale(1.1);
}
.legacy-bg {
    height: 100vh;
    background-image: url(/wp-content/uploads/2026/05/Our-Legacy.jpg.jpeg);
}
.legacy-img{
    height: 100%;
}
.legacy-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.legacy-right {
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 0 4em;
}
.tech-tab-wrapper{
    position: relative;
}
.tech-tab-wrapper .accordion-body{
    padding: 0;
}
.tech-tab-wrapper .accordion-item{
    border:0;
}
.tech-tab-wrapper .tabs-title-wrapper{
    position: absolute;
    bottom: 10px;
    z-index: 9;
    width: 100%;
}
.tech-tab-wrapper .tabs-title-wrapper .nav-link{
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    padding: 0 0 5px;
    border: 0;
    line-height: 1;
    letter-spacing: 1px;
    font-size: 16px;
}
.tech-tab-wrapper .tabs-title-wrapper .nav-tabs{
    border: 0;
}
.tech-tab-wrapper .tabs-title-wrapper .nav-tabs .nav-item{
    padding-right: 10px;
}
.tech-tab-wrapper .tabs-title-wrapper .nav-tabs .nav-item.show .nav-link, 
.tech-tab-wrapper .tabs-title-wrapper .nav-tabs .nav-link.active{
    background: transparent;
    color: #FFC10E;
    font-weight: 700;
    border: 0;
    position: relative;
}
.tech-tab-wrapper .tabs-title-wrapper .nav-tabs .nav-item.show .nav-link:after, 
.tech-tab-wrapper .tabs-title-wrapper .nav-tabs .nav-link.active:after{
    position: absolute;
    content: "";
    background-color: #FFC10E;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -5px;
}
.commerical-lists li{
    margin-bottom: 20px;
    position: relative;
    padding-left: 12px;
    font-weight: 300;
    line-height: 1.2;
}
.commerical-lists li:before{
    position: absolute;
    content: "";
    background: #FFC10E;
    width: 1px;
    height: 55px;
    left: 0;
    top: 2px;
}
.project-item img{
    height: 185px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 15px;
}
.bordered-left{
    position: relative;
    padding-left: 12px;
}
.bordered-left:before{
    position: absolute;
    content: "";
    background: #FFC10E;
    width: 1px;
    height: 50px;
    left: 0;
    top: 2px;
}
/* .hero.contact-hero {
    height: 75vh;
} */
.contact-form h3{
    font-weight: 500;
    letter-spacing: 1px;
}
.contact-form form{
    margin:2em 0 0;
}
.contact-form label{
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    margin-bottom: 5px;
}
.contact-form input{
    background: transparent;
    border: 1px solid #757575;
    padding: 15px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    margin-bottom: 15px;
}
.contact-form input[type="submit"]{
    width: auto;
    display: block;
    margin: auto;
    background: #FFC10E;
    border: 1px solid #FFC10E;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    color: #000;
    padding: 15px 50px;
}
.contact-form input:placeholder{
    color: #fff;
}
.office-details h3{
    font-weight: 500;
    letter-spacing: 1px;
}
.office-details address{
    color: #000;
    font-weight: 300;
    font-size: 15px;
}
.office-details address strong{
    font-weight: 400;
}
.office-details img{
    height: 30px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}
.details-item{
    margin-bottom: 25px;
    font-size: 15px;
}
.details-item a{
    color: #2C2C2C;
}
.slide-btn {
    background: #000;
    width: auto;
    height: auto;
    display: flex;
    flex-flow: column;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 99;
    padding: 15px;
    align-items: center;
    gap: 10px;
}
.slide-btn .btn-arrow {
    width: 20px;
}
.slide-btn .btn-text {
    width: 10px;
}
.notfound-page {
    background: #000;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.notfound-page img{
    padding: 2em;
}
.notfound-page p{
    margin:1em 0 0;
}
.notfound-page h4{
    margin-bottom: 15px;
}
.notfound-page p a{
    color: #f9a21b;
    text-decoration: underline;
}
.privacy-contents h4{
    margin: 15px 0 10px;
}
.privacy-contents p{
    line-height: 1.5;
}
.privacy-contents p a{
    color: #000;
}
.privacy-contents p a:hover{
    text-decoration:underline;
}
.privacy-contents ul,
.privacy-contents ol{
    margin: 1em 0 0;
    padding-left: 0;
}
.privacy-contents ul li,
.privacy-contents ol li{
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
    display: block;
}
.privacy-contents ul li:before,
.privacy-contents ol li:before{
    position: absolute;
    content: "";
    background: #000;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 5px;
    top: 6px;
}
.wpcf7 form .wpcf7-response-output{
    text-align: center;
}
#speak-to-team .wpcf7 form .wpcf7-response-output{
    color: #fff;
}
#footer .wpcf7-not-valid-tip{
    font-size: 14px;
    padding-left: 10px;
}
.slide-contact-wrap{
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 9999;
}
.slide-contact-content{
    position: absolute;
    right: 100%;
    height: 223px;
    top: 0;
    width: 250px;
    background: #000;
    padding: 20px;
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: all .45s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}
.slide-contact-wrap.active .slide-contact-content{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.contact-line{
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    transition: all .3s ease;
    margin: 12px 0 0;
}
.contact-line i{
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #FFC10E;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.contact-line span{
    font-size: 13px;
    font-weight: 300;
}
.contact-line:hover{
    transform: translateX(5px);
}
.contact-line:hover span{
    color: #FFC10E;
}
.close-slide{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FFC10E;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    transition: all .35s ease;
}
.close-slide:hover{
    transform: rotate(90deg);
    background: #fff;
}
.tech-tab-wrapper .accordion-body .bottom-gradient{
    z-index: 9;
}
.tech-tab-wrapper .accordion-body .hero-content{
    z-index: 9;
}
.tech-tab-wrapper .accordion-body h2{
    margin-bottom: 30px;
}
.commerical-hero h2,
.commerical-hero ul{
    position: relative;
    z-index: 99;
}
.commerical-hero ul{
    margin-top: 10em;
}
.commerical-hero h2 br{
    display: block;
}
.commerical-hero .hero-content{
    align-items: center;
    padding-bottom: 0;
}
.commerical-hero .top-gradient,
.commerical-hero .bottom-gradient{
    height: 50%;
}
.commerical-hero .top-gradient{
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
}
.commerical-hero .bottom-gradient{
    background: linear-gradient(to top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
}
.sectors-hero{
    background-position: bottom;
}
.yellow-band{
    background: #FFC10E;
    padding: 3em 0;
}
.yellow-band p,
.yellow-band h6{
    margin-bottom: 0;
    display: inline-block;
}
.band-border{
    border-left: 2px solid #fff;
}
.wtc-block p{
    letter-spacing: 2px;
}
.client-list-item .client-list-icon{
    display: inline-block;
    vertical-align: top;
    width: 20%;
}
.client-list-item img{
    margin-bottom: 0;
    height: auto;
}
.client-list-item .client-list-contents {
    display: inline-block;
    width: 72%;
    vertical-align: top;
    padding-left: 15px;
}
.wtc-logo{
    display: block;
}
.wtc-logo img{
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.wtc-logo:hover img{
    transform: scale(1);
}
.sub-title_awards{
    font-weight: lighter;
}
.awards-section{
    margin-bottom: 4.75em;
}
/* Home Page New Section Starts */
:root {
    --gold:      #D4A017;
    --gold-light:#F0C040;
    --white:     #FFFFFF;
    --off-white: #E8E8E8;
    --dark:      #0A0A0A;
    --dark-mid:  #111111;
    --grey-dim:  #555555;
    --bar-bg:    #1E1E1E;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --yellow:#f3b500;
    --text:#111;
    --line:#444;
}
.section-label {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    line-height: 1;
}
.section-label .accent {
    display: block;
    font-weight: 800;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-top: 4px;
}
.word-cloud-wrap {
    max-width: 820px;
    width: 100%;
    margin: 40px auto 0;
    min-height: 340px;
    position: relative;
}
.wc-word {
    position: absolute;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 1s ease;
    cursor: default;
    line-height: 1;
}
.wc-word.visible { 
    opacity: 1; 
}
.wc-word:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 28px rgba(212,160,23,0.5);
}
.wc-xl { font-size: clamp(52px, 9.5vw, 88px); }
.wc-lg { font-size: clamp(28px, 5.2vw, 48px); }
.wc-md { font-size: clamp(17px, 3.0vw, 28px); }
.wc-sm { font-size: clamp(12px, 2.1vw, 20px); }
.wc-xs { font-size: clamp(10px, 1.5vw, 14px); }
.wc-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
.word-cloud{
    text-transform:uppercase;
}
/* Home Page New Section Ends */
/* About Page New Section */
.legacy-title{
    font-weight: 700;
}
.timeline-wrapper{
    position:relative;
    max-width:1600px;
    margin:80px auto 0;
}
.timeline-desktop{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    position:relative;
    gap:10px;
    min-height:320px;
}
.timeline-desktop::before{
    content:"";
    position:absolute;
    left:10px;
    right:10px;
    top: 50%;
    height:1px;
    background:var(--line);
}
.timeline-item{
    position:relative;
    min-width:0;
}
.timeline-content{
    width:100%;
}
.timeline-content.top{
    padding-bottom:90px;
}
.timeline-content.bottom{
    padding-top:240px;
}
.timeline-dot{
    position:absolute;
    left:0;
    top:48%;
    width:20px;
    height:20px;
    background:var(--yellow);
    border-radius:50%;
    z-index:2;
    animation:pulseDot 1s ease-in-out infinite;
}
.timeline-dot::after{
    content:"";
    position:absolute;
    width:10px;
    height:10px;
    background:#000;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
@keyframes pulseDot{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(243,181,0,0.5);
    }
    50%{
        transform:scale(1.12);
        box-shadow:0 0 0 10px rgba(243,181,0,0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(243,181,0,0);
    }
}
.year{
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 8px;
    color: #000;
}
.timeline-text{
    max-width: 250px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    min-height: 125px;
}
.timeline-mobile{
    display:none;
}
.our-values{
    overflow:hidden;
}
.text-yellow{
    color: #FFC10E;
}
.info-block {
    padding: 3em 5em 0 0;
}
.info-block p{
    letter-spacing: 1px;
}
.values-wrapper{
    position:relative;
    width:700px;
    height:700px;
    margin:auto;
}
.center-hex{
    position:absolute;
    width:360px;
    height:420px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:url('https://aureyademo.analyseddigital.in/wp-content/uploads/2026/06/hexagon-bg.svg')
               center/contain no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
}
.value-list{
    list-style:none;
    padding:0;
    margin:0;
}
.value-item{
    color:#222;
    font-weight:700;
    margin:8px 0;
    cursor:pointer;
    transition:all .4s ease;
    display: block;
    letter-spacing: 1px;
    position: relative;
}
.value-item .g{
    color: #6ba443;
}
.value-item .v{
    color: #6155a3;
}
.value-item .g,
.value-item .v{
    display: inline-block;
    transition: all .3s ease;
}
.value-item:hover .g,
.value-item:hover .v{
    transform: scale(1.2);
}
.icon-box{
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.icon-box img{
    width: 60px;
    transition: all .4s ease;
    margin: 0 0 10px;
}
.icon-box.active img{
    transform: scale(1.35);
    margin-bottom: 20px;
}
.icon-box.active img{
    animation: glowPulse 2.5s ease-in-out infinite;
}
.icon-box h6 {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}
@keyframes glowPulse{
    0%{
        filter:
            drop-shadow(0 0 4px rgba(255,193,7,.35))
            drop-shadow(0 0 10px rgba(255,193,7,.20));
    }

    50%{
        filter:
            drop-shadow(0 0 8px rgba(255,193,7,.55))
            drop-shadow(0 0 16px rgba(255,193,7,.35))
            drop-shadow(0 0 24px rgba(255,193,7,.15));
    }

    100%{
        filter:
            drop-shadow(0 0 4px rgba(255,193,7,.35))
            drop-shadow(0 0 10px rgba(255,193,7,.20));
    }
}
.top-left{
    top:70px;
    left:180px;
}
.top-right{
    top:70px;
    right:180px;
}
.middle-left{
    left: 10%;
    top: 45%;
}
.middle-right{
    right:10%;
    top:45%;
}
.bottom-left{
    left:180px;
    bottom:70px;
}
.bottom-right{
    right:180px;
    bottom:70px;
}
/* About Page New Section */
/* Dropdown */
.premium-dropdown{
    position: absolute;
    top: 100%;
    right: 30px;
    width: 220px;
    background: #000;
    border: 1px solid rgba(255, 193, 14, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: .4s ease;
    z-index: 999;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}
.premium-dropdown.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.menu-card{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    border-radius:14px;
    text-decoration:none;
    color:#fff;
    transition:.35s;
}
.menu-card:hover{
    background:rgba(255,193,14,.08);
    color:#fff;
    transform:translateX(8px);
}
.menu-icon{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #FFC10E;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.menu-info h4{
    font-size: 13px;
    margin-bottom: 0;
    color: #FFC10E;
    text-transform: uppercase;
}
@media(min-width:1400px){
    .timeline-text{
        max-width:250px;
    }
    .year{
        font-size:54px;
    }
}
@media(min-width: 992px){
    .awards-img-slider-item{
        padding: 2em;
    }
}
@media(max-width:991px){
    .icon-box h6{
        display: none;
    }
    .timeline-desktop{
        display:none;
    }
    .timeline-mobile{
        display:block;
        position:relative;
        padding-left:35px;
        margin-top:50px;
    }
    .timeline-mobile::before{
        content:"";
        position:absolute;
        left:8px;
        top:0;
        bottom:0;
        width:1px;
        background:var(--line);
    }
    .timeline-mobile-item{
        position:relative;
        padding-bottom:50px;
    }
    .timeline-mobile-dot{
        position:absolute;
        left: -36px;
        top:0;
        width:20px;
        height:20px;
        background:var(--yellow);
        border-radius:50%;
        z-index:2;
        animation:pulseDot 1s ease-in-out infinite;
    }
    .timeline-mobile-dot::after{
        content:"";
        position:absolute;
        width:10px;
        height:10px;
        background:#000;
        border-radius:50%;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
    }
    .timeline-mobile .timeline-text{
        max-width:100%;
        min-height: auto;
    }
    .timeline-mobile .timeline-mobile-item:last-child{
        padding-bottom: 0;
    }
    .values-wrapper{
        width:100%;
        max-width:500px;
        height:500px;
    }
    .value-item{
        margin: 2px 0;
        letter-spacing: 0;
        font-size: 12px;
    }
    .center-hex{
        width:220px;
        height:250px;
    }
    .icon-box{
        width:65px;
        height:65px;
    }
    .icon-box img{
        width:28px;
    }
    .top-left{
        left: 12%;
        top: 15%;
    }
    .top-right{
        right: 12%;
        top:15%;
    }
    .middle-left{
        left: -10%;
        top: 40%;
    }
    .middle-right{
        right: -10%;
        top: 40%;
    }
    .bottom-left{
        left:12%;
        bottom:15%;
    }
    .bottom-right{
        right: 12%;
        bottom:15%;
    }
    .values-block{
        overflow: hidden;
        padding-bottom: 0!important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .awards-img-slider-item{
        padding: 0.85em;
    }
}
@media (max-width: 767px) {
    .info-block{
        padding: 1em 0 0;
    }
    .awards-slider .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }
    .awards-slider .slick-dots{
        margin :1em auto 0;
    }
    .awards-slider .slick-dots li button {
        padding: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 0;
        background: #FFC10E;
        color: transparent;
        margin-top: 1em;
        opacity: .4;
    }
    .awards-slider .slick-dots li.slick-active button {
        background: #FFC10E;
        opacity: 1;
    }
    .awards-slider .awards-img-slider-item {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .awards-slider .slick-track {
        display: flex;
        align-items: center;
    }
    .awards-img-slider-item img {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        padding: 0 3em;
        width   :280px;
    }
}
@media (min-width: 1400px) {
    .custom-spacing {
        padding: 8em 0;
    }
}
@media (max-width: 992px) {
    .tab-content>.tab-pane {
        display: block;
        opacity: 1;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .menu li a{
        letter-spacing: .5px;
        font-size: 10px;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
@media (max-width: 767.98px) {
    .band-border{
        border-left: 0;
    }
    .tech-tab-wrapper .accordion-body h2{
        margin-bottom: 10px;
    }
    .mbl-menu{
        padding: 5px;
        border-radius: 5px;
    }
    .menu {
        flex-direction: column;
        padding: 20px;
    }
    .menu-toggle span{
        width: 16px;
    }
    .menu-toggle span:nth-child(2){
        width: 22px;
        margin: 2px 0;
    }
    .header.scrolled .menu-toggle span{
        background: #fff;
    }
    .logo img{
        width: auto;
    }
    .btn-close{
        filter: invert(1) !important;
    }
    .menu{
        margin-right: 0;
        padding: 0;
    }
    .offcanvas-header{
        display: block;
    }
    .header.scrolled .menu li a{
        color: #fff;
    }
    .hero{
        height: 85vh;
    }
    .hero-slide{
        height: 85vh;
    }
    .hero-slide img{
        height: 85vh;
    }
    .home-hero .hero-content{
        padding-bottom: 3em;
    }
    .hero-content{
        bottom: 0;
        padding-bottom: 1em;
    }
    .hero-title{
        font-size: 1.65em;
        letter-spacing: 2px;
        padding-right: 1em;
    }
    .hero-sub{
        font-size: 1em;
        letter-spacing: 1px;
    }
    .hero-list li{
        padding: 2px 5px;
        margin-bottom: 2px;
    }
    .hero-sub br, p br, h2 br{
        display: none;
    }
    .custom-spacing{
        padding: 3em 0;
    }
    .custom-cta{
        margin: 10px 0;
    }
    p{
        font-size: 15px;
    }
    .counters div{
        font-size: 1.5em;
    }
    .services-slider-wrapper{
        margin: 2em 0;
    }
    .services-slider .services-slider-item{
        padding: 0 0 2em;
    }
    .img-bg-img{
        height: 100%;
    }
    .sustain-block .custom-cta,.tech-block  .custom-cta{
        margin-bottom: 1em;
    }
    .services-slider .services-slider-item::after {
        left: 0;
    }
    .page-bottom .bottom-logo{
        margin-bottom: 1em;
    }
    .media-lists{
        margin-bottom: 1em;
    }
    .page-bottom{
        text-align: center;
    }
    .page-bottom .footer-menu-lists{
        margin-bottom: 1.5em;
    }
    .page-bottom form{
        margin-bottom: 1em;
    }
    .page-bottom h4{
        font-size: 17px;
        letter-spacing: 1px;
    }
    .page-bottom .footer-menu-lists li{
        margin-bottom: 5px;
    }
    .page-bottom .footer-menu-lists li a{
        font-size: 14px;
    }
    h6{
        font-size: 14px;
        letter-spacing: 1px;
    }
    .legacy-bg {
        background-image: linear-gradient(
            to top,
            rgb(0 0 0 / 80%) 0%,
            rgb(0 0 0 / 80%) 40%,
            transparent 40%
        ),
        url(/wp-content/uploads/2026/05/Our-Legacy.jpg.jpeg);
        padding-bottom: 0;
        padding-left: 1em;
        height: 80vh;
    }
    .legacy-img {
        height: auto;
    }
    .legacy-right{
        padding: 1em;
    }
    h3.enlarged-text{
        font-size: 17px;
        letter-spacing: 1px;
    }
    .tech-tab-wrapper .accordion-button:not(.collapsed){
        color: #fff;
        background-color: #000;
        box-shadow: none;
    }
    .tech-tab-wrapper  .accordion-item:first-of-type>.accordion-header .accordion-button{
        border-top-left-radius:0;
        border-top-right-radius:0;
    }
    .tech-tab-wrapper .accordion-button:not(.collapsed)::after{
        filter: invert(1);
    }
    .tech-tab-wrapper .accordion-body .hero-content{
        bottom: 1em;
        padding-bottom: 0;
    }
    .contact-form input{
        padding: 10px;
        margin-bottom: 5px;
    }
    .contact-form input[type="submit"]{
        font-size: 18px;
        padding: 12px 30px;
    }
    .notfound-page img{
        padding: 1em;
    }
    .slide-btn{
        padding: 5px;
    }
    .sectors-hero{
        background-image: url(/wp-content/uploads/2026/05/Sector-mob.jpg.jpeg)!important;
    }
    .commerical-hero{
        background-image: url(/wp-content/uploads/2026/05/Sector-subsection.jpg.jpeg)!important;
        height: 100vh;
    }
    .about-hero{
        background-image: url(/wp-content/uploads/2026/05/about-mbl-banner.jpeg)!important;
    }
    .about-hero.awards-hero{
        background-image: url(/wp-content/uploads/2026/06/Awards-Mob.jpg.jpeg)!important;
    }
    .tech-hero{
        background-image: url(/wp-content/uploads/2026/05/tech-mbl-banner.jpeg)!important;
    }
    .sus-hero{
        background-image: url(/wp-content/uploads/2026/05/Sustainability.jpg.jpeg)!important;
    }
    .services-hero{
        background-image: url(/wp-content/uploads/2026/05/service-mbl-banner.jpeg)!important;
    }
    .commerical-hero .hero-content{
        align-items: flex-start;
        padding-top: 2em;
    }
    .contact-hero{
        background-image: url(/wp-content/uploads/2026/05/Contact-Us-mob.jpg-1-1.jpeg)!important;
    }
    .commerical-hero ul{
        margin-top: 0;
    }
    .wtc-logo{
        text-align: center;
    }
    .wtc-logo img{
        margin:10px 0;
    }
    .client-list-item .client-list-icon{
        width: 15%;
    }
    .client-list-item .client-list-contents {
        width: 75%;
    }
}
/* @media(max-width:576px){
    .values-wrapper{
        height:420px;
    }
    .center-hex{
        width:180px;
        height:210px;
    }
    .value-item{
        font-size: 12px;
        letter-spacing: 0;
        margin: 2px 0;
    }
    .icon-box{
        width:55px;
        height:55px;
    }
    .icon-box img{
        width:22px;
    }
    .top-left{
        left:90px;
        top:20px;
    }
    .top-right{
        right:90px;
        top:20px;
    }
    .middle-left{
        left:0;
        top:180px;
    }
    .middle-right{
        right:0;
        top:180px;
    }
    .bottom-left{
        left:90px;
        bottom:20px;
    }
    .bottom-right{
        right:90px;
        bottom:20px;
    }
} */



