@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Sono:wght@200..800&display=swap');

@keyframes splitTextRotate {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
@keyframes marquee {
    100% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
}

body {
    font-family: "Plus Jakarta Sans", serif;
    overflow-x: hidden;
}
.btn-theme {
    display: inline-flex;
    padding: 16px 32px;
    line-height: 24px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.btn-blue {
    display: inline-flex;
    padding: 16px 32px;
    line-height: 24px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    background: #0083d5;
}
.btn-blue:hover {
    background: #000d15;
    color: #0083d5;
}
.btn-blue-dark {
    display: inline-flex;
    padding: 16px 32px;
    line-height: 24px;
    border-radius: 30px;
    text-decoration: none;
    background: #000d15;
    color: #0083d5;
}
.btn-blue-dark:hover {
    background: #fff;
    color: #000d15;
}
.btn-yellow {
    display: inline-flex;
    padding: 16px 32px;
    line-height: 24px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    background: #d0a100;
}
.btn-yellow:hover {
    background: #151000;
    color: #d0a100;
}
.btn-white {
    display: inline-flex;
    padding: 16px 32px;
    line-height: 24px;
    border-radius: 30px;
    color: #0083d5;
    text-decoration: none;
    background: #fff;
}
.btn-white:hover {
    background: #000d15;
    color: #0083d5;
}
.bg-blue {
    background: #0083d5 !important;
}
.creative_btn {
    display: inline-flex;
    padding: 16px 32px;
    line-height: 24px;
    padding-right: 102px;
    overflow: hidden;
    position: relative;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    background: transparent;
}
.creative_btn span {
    position: relative;
    z-index: 2;
}
.creative_btn:before {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 30px;
    background: #0083d5;
    transition: all linear 0.2s;
    transform: translateX(-70px);
    content: '';
    top: 0;
    left: 0;
}
.creative_btn:after {
    width: 58px;
    height: 100%;
    position: absolute;
    border-radius: 30px;
    background: #0083d5;
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    top: 0;
    left: auto;
    right: 0;
    border-radius: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear 0.2s;
}
.creative_btn:hover:before {
    transform: translateX(0);
}
.creative_btn:hover:after {
    width: 70px;
}
.creative_btn.white {
    color: #0083d5;
}
.creative_btn.white:before {
    background: #fff;
}
.creative_btn.white:after {
    background: #fff;
    color: #0083d5;
}
.creative_btn.white.yellow {
    color: #d0a100;
}
.creative_btn.white.yellow:before {
    background: #fff;
}
.creative_btn.white.yellow:after {
    background: #fff;
    color: #d0a100;
}
.creative_btn.yellow:before {
    background: #d0a100;
}
.creative_btn.yellow:after {
    background: #d0a100;
    color: #fff;
}
.navbar-brand img {
    max-height: 50px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 16px;
    color: #fff;
}
.header {
    transition: all ease-in-out 0.5s;
}
.header.top {
    background: #000;
}
.banner_section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background-color: #000;
    background-image: url(../images/bg-shape-01.png), url(../images/bg-shape-02.png);
    background-position: top left, bottom right;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    padding: 86px 0;
    position: relative;
}
.hero_banner {
    width: 100%;
}
.banner_section figure {
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 16/10;
    width: 50vw;
    border-radius: 5px 0 0 5px;
    opacity: 0;
    visibility: inherit;
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(-100%, 0%);
    transition: all linear 0.5s;
    transition-delay: 0.10s;
    transform-origin: left;
}
.banner_section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear 0.5s;
    transition-delay: 0.10s;
    transform-origin: left;
    translate: none;
    transform: translate(100%, 0%);
}
.banner_section h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 24px;
    width: 800px;
    z-index: 9;
    position: relative;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(100px);
    transition: all linear 0.5s;
    transition-delay: 0.10s;
}
.banner_section p {
    color: #ccc;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 24px;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(100px);
    transition: all linear 0.75s;
    transition-delay: 0.20s;
}
.hero_banner a {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(100px);
    transition: all linear 1s;
    transition-delay: 0.30s;
}
.banner_section h5 {
    font-size: 20px;
    margin: 24px 0;
    color: #fff;
    font-family: "Sono", serif;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100px);
    transition: all linear 1.25s;
    transition-delay: 0.40s;
}
.client_list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.client_list li:first-child {
    margin-left: 0;
}
.client_list li {
    display: block;
    margin-left: -15px;
    opacity: 0;
    transform: translate3d(-100px,0,0);
    transition: all ease 1.5s;
}
.client_list li img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #000d15;
    object-fit: cover;
}
.banner_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: absolute;
    bottom: 0;
    height: 70px;
    aspect-ratio: 13.049/1;
    background: url(../images/high-light-list-bg.webp) center no-repeat;
    background-size: 100% auto;
}
.banner_bottom:before {
    width: 100%;
    height: 12px;
    background: #cfa000;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 100%;
    content: '';
}
.banner_bottom:after {
    width: 100%;
    height: 12px;
    background: #cfa000;
    position: absolute;
    bottom: 0;
    left: 100%;
    content: '';
}
.banner_bottom a {
    color: #fff;
    text-decoration: none;
    font-family: "Sono", serif;
    font-size: 17px;
}
.banner_bottom a:after {
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    content: '';
    display: inline-block;
    margin-left: 30px;
    vertical-align: middle;
}
.banner_bottom a:last-child::after {
    display: none;
}
.hero_banner .swiper-slide {
    overflow: hidden;
}
.banner_section .swiper-slide-active figure {
    opacity: 1;
    translate: none;
    transform: translate(0px, 0px);
}
.banner_section .swiper-slide-active figure img {
    translate: none;
    transform: translate(0px, 0px);
}
.banner_section .swiper-slide-active h1 {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.banner_section .swiper-slide-active p {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.hero_banner .swiper-slide-active a {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.banner_section .swiper-slide-active h5 {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
.banner_section .swiper-slide-active .client_list li {
    opacity: 1;
    transform: translateZ(0);
}
.stacks_section {
    display: block;
    padding: 40px 0;
    /* background: linear-gradient(90deg,  #000d15 0%,#151000 100%); */
    background: #cfa000;
    border-radius: 0 0 0 40px;
}
.stacks_count {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin: 0 0 24px;
    color: #fff;
}
.stacks_title {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    background: #000;
    font-family: "Sono", serif;
    color: #fff;
}
.about_section {
    display: block;
    padding: 100px 0;
}
.about_section h4 {
    font-family: "Sono", serif;
    font-size: 24px;
    margin-bottom: 24px;
}
.about_section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.about_section h5 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 15px;
}
.about_subheading {
    padding: 6px 10px;
    border-radius: 4px;
    background: #000;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 24px;
    color: #fff;
}
.founder {
    display: block;
    aspect-ratio: 4/5;
    margin: 0;
    width: 100%;
}
.founder img {
    display: block;
    aspect-ratio: 4/5;
    margin: 0;
    object-fit: cover;
    border-radius: 10px;
    max-width: 100%;
}
.stamp {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
    animation: splitTextRotate 20s linear infinite;
}
.icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #0083d5;
    margin-bottom: 24px;
}
.about_section ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.about_section ul li {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 0;
}
.about_section ul li::before {
    content: "\f560";
    font-size: 1.2em;
    margin-right: 15px;
    color: #0083d5;
    font-family: 'Font Awesome 5 Pro';
}
.about_section ul li:last-child {
    margin-bottom: 24px;
}
[data-pie-index='1'] {
    position: relative;
    border-radius: 50%;
    box-shadow: inset 0 0 10px 5px #80c1ea;
    width: 62px !important;
    height: auto !important;
    aspect-ratio: 1/1;
}
[data-pie-index='1'] svg {
    width: 100%;
    height: 100%;
}
.solutions_card {
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #ccc;
}
.solutions_content h3 {
    font-size: 20px;
    margin-bottom: 4px;
    font-family: "Sono", serif;
    font-weight: 500;
}
.solutions_content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}
.service_section {
    display: block;
    padding: 100px 0;
    background: #000d15;
}
.service_section h2 {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}
.service_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #fff;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.service_item {
    padding: 24px 40px;
    display: flex;
    align-items: center;
    border: 1px solid #002740;
    color: #fff;
    text-decoration: none;
    position: relative;
    margin-bottom: -1px;
    transition: .5s;
}
.service_item h3 {
    font-size: 50px;
    font-weight: 800;
}
.service_item span {
    background: #001a2b;
    transition: .5s;
    width: 50px;
    height: 34px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid #003455;
    margin-right: 70px;
    max-width: 50px;
    flex: 0 0 50px;
}
.service_item i {
    font-size: 25px;
    margin-left: auto;
    transform: rotate(45deg);
    transition: .5s;
}
.service_image {
    z-index: 2;
    opacity: 0;
    max-width: 25%;
    position: absolute;
    left: 65%;
    top: 33%;
    transition: .5s;
    transform: translate(-50%, -50%) rotate(-50deg) scale(0);
}
.service_item:hover .service_image {
    opacity: 1;
    transform: translate(0) rotate(-10deg) scale(1);
}
.service_item:hover {
    border-color: #0083d5;
    background: #0083d5;
}
.service_item:hover i {
    transform: rotate(-45deg);
}
.service_item:hover span {
    background: #0076c0;
    border-color: #0069aa;
}
.testimonial_section {
    display: block;
    padding: 100px 0 140px;
}
.testimonial_wrapper {
    padding: 70px 0;
    border: 1px solid #031be11a;
    border-radius: 10px;
    position: relative;
    background: #fff;
}
.testimonial_wrapper h3 {
    font-size: 40px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
}
.testimonial_wrapper p {
    color: #696969;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 24px;
}
.testimonial_wrapper .slider_btn_area .slider_btn {
    background-color: #d0a100;
    border-color: #d0a100;
}
.testimonial_wrapper .slider_btn_area .slider_btn.swiper-button-disabled {
    background: #f8f8f7;
    backdrop-filter: blur(5px);
    border-color: #031be11a;
    cursor: not-allowed;
    color: #031be11a;
}
.subheading {
    font-family: "Sono", serif;
    padding: 6px 10px;
    border-radius: 4px;
    background: #000;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 24px;
    color: #fff;
}
.subheading_blue {
    font-family: "Sono", serif;
    padding: 6px 10px;
    border-radius: 4px;
    background: #0083d5;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 24px;
    color: #fff;
}
.subheading_yellow {
    font-family: "Sono", serif;
    padding: 6px 10px;
    border-radius: 4px;
    background: #d0a100;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 24px;
    color: #fff;
}
.testimonial_card {
    display: block;
    padding: 30px 50px;
    border: 1px solid #031be11a;
    border-radius: 10px;
}
.testimonial_content {
    display: block;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.testimonial_author {
    display: flex;
    align-items: center;
    gap: 24px;
}
.testimonial_author figure {
    margin: 0;
}
.testimonial_author figure img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial_author h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.testimonial_author p {
    margin: 0;
    font-size: 14px;
}
.testimonial_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial_header figure {
    margin: 0;
}
.testimonial_header figure img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.testimonial_wrapper:before, .testimonial_wrapper:after {
    content: "";
    height: 100px;
    position: absolute;
    border-radius: 10px;
    border: 1px solid #031be11a;
}
.testimonial_wrapper:before {
    left: 20px;
    z-index: -1;
    bottom: -20px;
    background: #f8f8f7;
    width: calc(100% - 40px);
}
.testimonial_wrapper:after {
    left: 40px;
    z-index: -2;
    bottom: -40px;
    background: #f2f1ef;
    width: calc(100% - 80px);
}
.testimonial_wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.blog_section {
    display: block;
    padding: 100px 0;
    /* background: #151000; */
    background: url(../images/blog.webp) top center no-repeat;
    position: relative;
}
.blog_section .container {
    position: relative;
    z-index: 1;
}
.blog_section:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: linear-gradient(135deg, rgba(0, 131, 213, 0.9) 0%, rgba(208, 161, 0, 0.9) 100%);
    backdrop-filter: blur(5px);
}
.blog_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #fff;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.blog_section h2 {
    color: #fff;
    font-weight: 800;
    /* background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-size: 32px;
}
.blog_item {
    display: flex;
    align-items: flex-start;
    padding: 30px 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: -1px;
    text-decoration: none;
    color: #fff;
    transition: .5s;
}
.blog_item h3 {
    line-height: 1.5;
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 390px;
}
.blog_item i {
    font-size: 25px;
    margin-left: auto;
    transform: rotate(45deg);
    transition: .5s;
    margin-top: 20px;
}
.blog_content {
    display: flex;
    max-height: 0;
    overflow-y: hidden;
    transition: all .3s ease-in-out;
    transition-property: all;
    transition-duration: 1.5s;
    width: 100%;
    gap: 60px;
    margin-top: -40px;
}
.blog_item .content {
    max-width: 700px;
    flex: 0 0 100%;
}
.blog_content figure {
    max-width: 260px;
    flex: 0 0 100%;
    margin: 0;
}
.blog_content figure img {
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.blog_content figcaption {
    font-weight: 400;
    line-height: 30px;
    font-size: 16px;
    color: #f1e3b3;
    margin-top: 50px;
}
.blog_item:hover .blog_content {
    max-height: 1000px;
}
.blog_item .date {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-right: 100px;
}
.date_day {
    background: rgba(255,255,255,0.1);
    transition: .5s;
    width: 50px;
    height: 50px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 11px 0;
}
.date_right {
    display: flex;
    flex-direction: column;
}
.date_month {
    font-size: 21px;
    font-weight: 600;
}
.blog_item:hover i {
    transform: rotate(-45deg);
}
.blog_item:hover {
    background: #d0a100;
    border-color: #d0a100;
}
.blog_item:hover .date_day {
    background: #bb9100;
    border-color: #a68100;
}
.progress_section {
    display: block;
    padding: 100px 0;
}
.progress_section h2 {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}
.progress_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #000;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.progress_wrapper {
    display: flex;
    border-radius: 10px;
    /* background: linear-gradient(90deg,  #000d15 0%,#151000 100%); */
    background: #e6f3fb;
    height: 400px;
    overflow: hidden;
}
.progress_item {
    flex: 1;
    border-right: 1px solid #fff;
    transition: all linear 0.5s;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.progress_item:last-child {
    border: none;
}
/* .progress_item:hover {
    flex: 2;
} */
.progress_header {
    display: flex;
    flex-wrap: wrap;
    transition: all ease-in-out 0.5s;
    padding-top: 64px;
    padding-right: 40%;
    position: relative;
    margin-bottom: 24px;
}
.progress_header .progress_icon {
    margin-bottom: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease-in-out 0.5s;
    max-width: 100%;
    flex: 0 0 100%;
}
.progress_icon img {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    filter: invert(1);
}
.progress_header figcaption span {
    font-size: 24px;
    font-weight: 800;
    color: rgba(0,0,0,0.5);
    line-height: 1;
    margin: 0;
    margin-bottom: 6px;
    display: inline-block;
}
.progress_header figcaption h5 {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin: 0;
}
.progress_item:hover .progress_header {
    padding-top: 0;
}
.progress_item:hover .progress_header .progress_icon {
    left: calc(100% - 40px);
}
.progress_item a {
    max-width: 50px;
    flex: 0 0 50px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: .5s;
    margin-top: 24px;
    color: #000;
    text-decoration: none;
}
.progress_content {
    width: 100%;
    width: 0;
    margin-top: auto;
    overflow: hidden;
    opacity: 0;
    transition: all 500ms cubic-bezier(.4,0,.2,1);
}
.progress_content img {
    width: 218.5px;
    height: auto;
    aspect-ratio: 27/17;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}
.progress_item:hover .progress_content {
    width: 218.5px;
    opacity: 1;
}
.industry_section {
    display: block;
    padding: 100px 0;
    background: #f8fbfe;
}
.industry_section h2 {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}
.industry_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #000;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.industry {
    height: 450px;
}
.industry .swiper-slide {
    height: 120px;
}
.industry_card {
    display: flex;
    padding: 10px 24px;
    border-radius: 6px;
    background: #f6f6f8;
    border: 1px solid #ccc;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    transition: all ease-in-out 0.5s;
    height: 100%;
}
.industry_card img {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    transition: all ease-in-out 0.5s;
}
.industry_card h4 {
    font-family: "Plus Jakarta Sans", serif;
    font-size: 16px;
    text-align: center;
    color: #464646;
    width: 100%;
    margin: 0;
}
.swiper-slide-thumb-active .industry_card {
    border-color: #d0a100;
    background: #d0a100;
}
.swiper-slide-thumb-active .industry_card h4 {
    color: #fff;
}
.swiper-slide-thumb-active .industry_card img {
    filter: brightness(0) invert(1);
}
.industries {
    overflow: hidden;
    height: 100%;
}
.industry_content {
    display: flex;
    height: 100%;
    width: 100%;
    background: #f6f6f8;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.industry_content figure, .industry_content figcaption {
    flex: 1;
    margin: 0;
}
.industry_content figure {
    border-radius: 4px 0 0 4px;
}
.industry_content figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 0 0 4px;
}
.industry_content figcaption {
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.industry_content figcaption a {
    margin-top: auto;
}
.industry_content figcaption h3 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 24px;
}
.industry_content figcaption p {
    color: #464646;
    font-size: 16px;
    line-height: 1.45;
}
.work_section {
    display: block;
    padding: 100px 0;
}
.work_section h2 {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    margin-bottom: 35px;
}
.work_section h2 span {
    color: #0083d5;
    -webkit-text-fill-color: #0083d5;
}
.headline_area {
    display: block;
    margin-top: -70px;
    position: relative;
    z-index: -1;
}
.headline-text {
    line-height: 1;
    font-size: 220px;
    font-weight: 700;
    color: var(--ygency-headline-color);
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}
.headline-text > span {
    padding-left: 100%;
    -webkit-animation: marquee 15s linear infinite;
    animation: marquee 15s linear infinite;
}
.headline-text > span span {
    opacity: 0.2;
    color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: white;
}
.headline-text.style-two > span span {
    opacity: 1;
    text-transform: capitalize;
    background: -webkit-radial-gradient(50.02% 64.91%, 42.25% 8948.61%, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-radial-gradient(50.02% 64.91%, 42.25% 8948.61%, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: radial-gradient(42.25% 8948.61% at 50.02% 64.91%, #000000 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: transparent;
}
.casestudy_section {
    display: block;
    background: url(../images/resource-bg-new.webp) center no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}
.casestudy_section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(286.36deg, rgba(0, 0, 0, 0) 4.86%, rgba(0, 0, 0, 0.854079) 72.14%, #000000 96.52%);
    pointer-events: none;
}
.casestudy_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #fff;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.casestudy_section .container {
    position: relative;
    z-index: 1;
}
.slider_btn_area {
    width: 136px;
    display: inline-flex;
    gap: 24px;
    margin-bottom: 8px;
}
.slider_btn {
    max-width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    background: #0083d5;
    backdrop-filter: blur(5px);
    border: 1px solid #0083d5;
    color: #fff;
    font-size: 20px;
}
.slider_btn.swiper-button-disabled {
    background-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    border-color: rgba(255,255,255,0.5);
    cursor: not-allowed;
}
.casestudy_section figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    padding: 1px;
}
.casestudy_section figure img {
    max-width: 100%;
    aspect-ratio: 4/3;
    border-radius: 9px;
    object-fit: cover;
}
.casestudy_section h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.casestudy_section h2 span {
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.casestudy_section p {
    font-size: 16px;
    line-height: 1.45;
    color: #898989;
}
.project_stat {
    display: flex;
    padding-top: 16px;
    border-top: 1px solid #d0a100;
    margin-top: 16px;
}
.project_stat ul {
    display: flex;
    width: 100%;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.project_stat ul li {
    flex: 1;
    border-right: .5px solid;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #d0a100 47%, rgba(255, 255, 255, 0) 100%) 1 100%;
}
.project_stat ul li:first-child {
    padding-right: 32px;
}
.project_stat ul li:last-child {
    padding-left: 32px;
    border: none;
}
.project_stat ul li .data {
    font-size: 2.5rem;
    color: #d9b433;
    margin: 0;
    font-weight: 800;
    line-height: 1;
}
.project_stat ul li p {
    color: #898989;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}
.tech_stack {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.tech_stack li {
    display: inline-flex;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    font-family: "Sono", serif;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}
.tech_section {
    display: block;
    padding: 100px 0;
}
.tech_section h2 {
    color: #000;
    font-weight: 800;
    font-size: 32px;
}
.tech_section h2 span {
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tech_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #000;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.tech_section ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}
.tech_section ul li {
    width: 115px;
    height: 115px;
    padding: 25px;
    background: #fff;
    text-align: center;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
    max-width: calc(33% - 20px);
    border: 1px solid #031be11a;
    box-shadow: 10px 4px 60px hsla(0, 0%, 76%, .25);
    margin: 10px;
}
.tech_section ul li img {
    width: 50px;
    height: 50px;
    object-fit: scale-down;
}
footer {
    display: block;
    background-color: #000000;
    background-image: url(../images/footer-bg-shape-two.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000d15;
    padding: 48px 0;
  flex-wrap: wrap;
}
.footer_top figure {
    margin: 0;
}
.footer_top img {
    max-height: 50px;
}
.footer_bottom {
    display: block;
}
.footer_bottom_left {
    padding-top: 48px;
}
.footer_bottom_right {
    padding: 48px;
    padding-right: 0;
    border-left: 1px solid #000d15;
}
footer h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}
.footer_nav {
    display: flex;
    justify-content: space-between;
}
.footer_nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footer_nav ul li {
    line-height: 32px;
    margin-bottom: 8px;
}
.footer_nav ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #898989;
    text-decoration: none;
}
.copyright {
    display: block;
    padding: 32px 0;
    border-left: 1px solid #000d15;
    border-top: 1px solid #000d15;
    padding-left: 48px;
    color: #898989;
}
.footer_text {
    font-size: 85px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 50px;
}
.footer_text span {
    width: 75px;
    display: inline-block;
    vertical-align: bottom;
    line-height: 0;
    margin-right: 16px;
    aspect-ratio: 1/1;
}
.footer_text span img {
    max-width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}
.footer_btn {
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    padding: 18px 50px;
    gap: 16px;
    border: 1px solid #0083d5;
    border-radius: 6px;
    margin: 16px 16px 0 0;
    text-decoration: none;
    color: #fff;
    background: #0083d5;
}
.footer_btn.outline {
    background: transparent;
}
.policy_nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    padding: 32px 0;
    gap: 24px;
}
.policy_nav li a {
    color: #898989;
    text-decoration: none;
}
.social_nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 24px;
  flex-wrap: wrap;
}
.social_nav li a {
    display: inline-flex;
    gap: 16px;
    color: #898989;
    font-size: 16px;
    text-decoration: none;
    align-items: center;
}
.inner_banner_section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #000;
    background-image: url(../images/bg-shape-01.png), url(../images/bg-shape-02.png);
    background-position: top left, bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: 50% auto, 50% auto;
    overflow: hidden;
    padding: 162px 0 86px;
    position: relative;
}
.inner_banner_section h2 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
}
.inner_banner_section h4 {
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}
ul.breadcrumb {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 24px;
}
ul.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    color: #fff;
}
ul.breadcrumb li::before {
    width: 24px;
    height: 3px;
    border-radius: 3px;
    content: '';
    background: #bb9100;
    display: inline-block;
}
ul.breadcrumb li:first-child:before {
    display: none;
}
ul.breadcrumb li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}
.aboutus_section {
    display: block;
    padding: 100px 0;
}
.aboutus_section h3 {
    font-size: 40px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.aboutus_section h4 {
    font-size: 20px;
    line-height: 1.6;
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_stats {
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #eee;
}
.about_stats:last-child {
    border-bottom: 2px solid #eee;
}
.about_stats span.count {
    background: #0083d5;
    display: inline-flex;
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    align-items: flex-end;
}
.about_stats h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.about_block {
    display: flex;
    padding: 30px;
    border-radius: 10px;
    background: #cce6f7;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    min-height: 240px;
}
.about_block figure, .about_block figcaption {
    position: relative;
    z-index: 9;
}
.about_block:after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #001a2b;
    border-radius: 10px;
    top: 110%;
    left: 0;
    transition: linear 0.2s;
    content: '';
}
.about_block:hover:after {
    top: 0;
}
.about_block p {
    margin: 0;
}
.about_block figure img {
    width: 60px;
    height: 60px;
    filter: brightness(0);
    transition: linear 0.2s;
}
.about_block:hover figure img {
    width: 40px;
    height: 40px;
    filter: none;
}
.about_block figcaption {
    transition: linear 0.2s;
}
.about_block figcaption h5 {
    transition: linear 0.2s;
}
.about_block:hover figcaption h5 {
    color: #fff;
    margin-bottom: 24px;
}
.about_block figcaption p {
    max-height: 0;
    overflow: hidden;
    transition: linear 0.2s;
}
.about_block:hover figcaption p {
    color: #fff;
    max-height: 48px;
}
.team_section {
    display: block;
    padding: 100px 0;
    position: relative;
}
.team_section:before {
    display: block;
    height: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: #001a2b;
}
.team_section .container {
    position: relative;
    z-index: 10;
}
.team_section h3 {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.team_section h3 span {
    display: inline-flex;
    align-items: center;
}
.team_section h3 figure {
    border: 5px solid #001a2b;
    margin: 0;
    border-radius: 50%;
}
.team_section h3 figure img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: #fff;
}
.team_section h3 figure + figure {
    margin-left: -15px;
}
.join_team_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background: #0083d5;
    padding: 24px;
    border-radius: 15px;
    height: 100%;
    color: #fff;
}
.join_team_block h3 {
    font-size: 24px;
}
.team_block {
    background: #cce6f7;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 15px;
}
.team_block img {
    background: #fff;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}
.team_block h4 {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}
.team_block p {
    font-size: 15px;
    text-align: center;
    margin: 0;
    font-weight: 500;
}
.about_industry_section {
    background: #2a2000;
    display: block;
    padding: 100px 0;
}
.about_industry_section h3 {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.industry_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    justify-content: center;
}
.industry_list li {
    display: inline-block;
}
.industry_list li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    border-radius: 70px;
    background: #685100;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding-right: 24px;
}
.industry_list li a figure {
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
}
.industry_list li a figure img {
    width: 50px;
    height: 50px;
    padding: 10px;
    object-fit: scale-down;
    background: #2a2000;
}
.portfolio_section {
    display: block;
    background: url(../images/resource-bg-new.webp) center no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}
.portfolio_section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(286.36deg, rgba(0, 0, 0, 0) 4.86%, rgba(0, 0, 0, 0.854079) 72.14%, #000000 96.52%);
    pointer-events: none;
}
.portfolio_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #fff;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
    margin-bottom: 24px;
}
.portfolio_section .container {
    position: relative;
    z-index: 1;
}
.portfolio_section h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}
.portfolio_block {
    position: sticky;
    top: 156px;
}
.profolio_card {
    padding: 20px;
    border-radius: 10px;
    display: block;
    background: #111;
    border: 1px solid #003455;
    margin-bottom: 24px;
}
.profolio_card figure {
    aspect-ratio: 16/9;
}
.profolio_card figure img {
    aspect-ratio: 16/9;
    max-width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.profolio_card figcaption {
    display: flex;
    align-items: center;
}
.profolio_card figcaption h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}
.profolio_card figcaption a {
    max-width: 50px;
    flex: 0 0 100%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: .5s;
    margin-top: 24px;
    color: #000;
    text-decoration: none;
    margin-left: 16px;
}
.why_section {
    display: block;
    padding: 100px 0;
}
.why_section h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 66px;
    text-transform: capitalize;
}
.why_block {
    display: flex;
    padding: 30px;
    border-radius: 10px;
    background: #cce6f7;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 24px;
}
.why_block:last-child {
    margin: 0;
}
.why_block figure {
    margin: 0;
    margin-right: 24px;
    margin-top: 5px;
}
.why_block figure img {
    width: 40px;
    height: 40px;
}
.why_block h4 {
    font-size: 20px;
    margin: 0 0 16px;
    font-weight: 500;
}
.why_block p {
    margin: 0;
}
.why_leftcontent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 55%;
}
.book_consultant {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: calc(55% - 24px);
    margin-bottom: 24px;
    background: #00426b;
    padding: 24px;
    border-radius: 15px;
}
.book_consultant h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}
.book_consultant p {
    color: rgba(255,255,255,0.7);
    margin-bottom: auto;
}
.query_block {
    display: flex;
    flex-direction: column;
    height: 45%;
    background: #685100;
    padding: 24px;
    border-radius: 15px;
    margin-top: auto;
}
.query_block h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}
.query_block p {
    color: rgba(255,255,255,0.7);
    margin-bottom: auto;
}
.user_list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.user_list li {
    display: inline-block;
    margin-left: -5px;
}
.user_list li figure {
    border: 5px solid #685100;
    margin: 0;
    border-radius: 50%;
}
.user_list li figure img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: #fff;
}
.user_list li + li {
    margin-left: -15px;
}
.user_list li a {
    border: 5px solid #685100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .5s;
    color: #000;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.user_list li a i {
    position: relative;
    z-index: 2;
}
.user_list li a:before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #d0a100;
    content: '';
    position: absolute;
    transform: translateX(-100%);
    transition: all linear 0.2s;
    top: 0;
    left: 0;
}
.query_block:hover .user_list li a:before {
    transform: translateX(0);
}
.why_choose_media {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin: 0;
}
.why_choose_media img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.casestudies {
    display: block;
    padding: 0 0 100px;
}
.casestudies h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}
.casestudies h2 span {
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.casestudies figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    padding: 1px;
}
.casestudies figure img {
    max-width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 9px;
    object-fit: cover;
}
.casestudies .tech_stack {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 24px;
}
.casestudies .tech_stack li {
    display: inline-flex;
    padding: 8px 16px;
    border: 1px solid rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.05);
    font-family: "Sono", serif;
    border-radius: 4px;
    font-size: 16px;
    color: #000;
    font-size: 14px;
    font-weight: 300;
}
.casestudy_item {
    margin-top: 100px;
}
.service_wrapper {
    display: block;
    padding: 100px 0;
}
.service_wrapper h3 {
    font-size: 40px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
}
.service_wrapper figure {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 4/3;
    margin: 0;
}
.service_wrapper figure img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.service_wrapper p {
    font-size: 16px;
    line-height: 1.4;
    margin: 24px 0 16px;
}
.service_card_content {
    display: block;
    padding: 24px;
    background: #cce6f7;
    border-radius: 10px;
}
.service_card_content h5 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 24px;
    border-bottom: 1px solid #0083d5;
    margin-bottom: 24px;
}
.service_card_content h4 {
    margin-bottom: 24px;
}
.key_outcomes ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.key_outcomes ul li {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 0;
}
.key_outcomes ul li::before {
    content: "\f560";
    font-size: 1.2em;
    margin-right: 15px;
    color: #0083d5;
    font-family: 'Font Awesome 5 Pro';
}
.key_outcomes ul li:last-child {
    margin-bottom: 24px;
}
.service_card_bottom {
    display: flex;
    justify-content: space-between;
}
.solution_stack {
    padding-left: 30px;
}
.solution_stack ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.solution_stack li {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.1);
}
.solution_stack li img  {
    width: 30px;
    height: 30px;
    object-fit: scale-down;
}
.service_card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    flex-direction: column;
}
.service_card h3 {
    font-size: 32px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
}
.service_count {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #cce6f7;
    border-radius: 50%;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
}
.service_card ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.service_card ul li {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 10px;
    border-left: 3px solid #0083d5;
    margin-bottom: 16px;
}
.provide_service {
    display: block;
    padding: 0 0 100px;
}
.industry_banner {
    display: block;
    padding: 100px 0;
}
.industry_banner figure {
    margin: 0;
    aspect-ratio: 16/10;
}
.industry_banner figure img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 10px;
}
.industry_banner h3 {
    font-size: 32px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.industry_banner h5 {
    font-size: 20px;
    margin: 24px 0;
    color: #000;
    font-family: "Sono", serif;
}
.industry_banner p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.industry_banner ul.info_list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.industry_banner ul.info_list li {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    display: flex;
}
.industry_banner ul.info_list li::before {
    content: "\f054";
    font-size: 1.2em;
    margin-right: 15px;
    color: #0083d5;
    font-family: 'Font Awesome 5 Pro';
}
.industry_wrapper {
    display: block;
    padding: 0 0 100px;
}
.industry_wrapper figure {
    width: 100%;
    aspect-ratio: 16/6;
    margin-bottom: 50px;
}
.industry_wrapper figure img {
    width: 100%;
    aspect-ratio: 16/6;
    object-fit: cover;
    border-radius: 10px;
}
.industry_wrapper h5 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
}
.industry_wrapper h3 {
    color: #000;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    margin-bottom: 24px;
}
.industry_wrapper p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.industry_wrapper p:last-child {
    margin: 0;
}
.industry_items {
    background: #001a2b;
    display: block;
    padding: 100px 0;
}
.industry_items h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}
.industry_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    border-radius: 6px;
    border: 1px solid #003455;
    background: #000d15;
    height: 100%;
}
.industry_item figure {
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}
.industry_item figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 3px;
}
.industry_item figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.industry_item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.industry_item figcaption h4 {
    margin: 0;
}
.industry_item figcaption a {
    max-width: 50px;
    flex: 0 0 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: .5s;
    color: #000;
    text-decoration: none;
    margin-left: 16px;
    overflow: hidden;
    position: relative;
}
.industry_item figcaption a:before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #d0a100;
    content: '';
    position: absolute;
    transform: translateX(-100%);
    transition: all linear 0.2s;
    top: 0;
    left: 0;
}
.industry_item:hover a:before {
    transform: translateX(0%);
}
.industry_item a i {
    position: relative;
    z-index: 1;
}
.industry_item h3 {
    margin-bottom: auto;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    line-height: 1.45;
}
.blog_wrapper {
    display: block;
    padding: 100px 0 0;
}
.blogoftheday_card {
    display: block;
    padding: 20px;
    border-radius: 10px;
    background: #d0a100;
}
.blogoftheday_card figure {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 20px;
    position: relative;
}
.blogoftheday_card figure img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 5px;
}
.blogoftheday_card .subheading {
    margin-bottom: 20px;
}
.blogoftheday_card h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogoftheday_card figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blogoftheday_card .subheading {
    margin-bottom: 20px;
}
.blog_author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author_image {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    max-width: 50px;
    flex: 0 0 50px;
}
.author_image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.author_meta h5 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}
.author_meta .date {
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.blogoftheday_card a {
    max-width: 50px;
    flex: 0 0 100%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: .5s;
    color: #000;
    text-decoration: none;
    margin-left: 16px;
}
.blogoftheday_card:hover a {
    background: #000;
    color: #fff;
    transform: rotate(0);
}
.featured_blog {
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background: #0083d5;
    align-items: center;
    height: 100%;
    gap: 20px; 
}
.featured_blog figure {
    flex: 1;
    margin: 0;
    position: relative;
    height: 100%;
}
.featured_blog figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.featured_blog h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}
.featured_blog figcaption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    flex-direction: column;
    height: 100%;
}
.featured_blog a {
    max-width: 50px;
    flex: 0 0 100%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: .5s;
    color: #000;
    text-decoration: none;
    margin-left: 16px;
}
.featured_blog:hover a {
    background: #000;
    color: #fff;
    transform: rotate(0);
}
.featured_blog p {
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    opacity: 0.8;
}
.blog_card {
    display: flex;
    flex-direction: column;
}
.blog_card figure {
    aspect-ratio: 16/9;
    border-radius: 10px 10px 0 0;
    margin: 0;
}
.blog_card figure img {
    aspect-ratio: 16/9;
    border-radius: 10px 10px 0 0;
    object-fit: cover;   
    width: 100%;
}
.blog_card figcaption {
    display: flex;
    flex-direction: column;
    background: #000d15;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    justify-content: flex-start;
    align-items: flex-start;
}
.blog_card h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog_card a {
    max-width: 50px;
    flex: 0 0 100%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: .5s;
    color: #000;
    text-decoration: none;
    margin-left: 16px;
}
.blog_card:hover a {
    background: #0083d5;
    color: #fff;
    transform: rotate(0);
}
.blog_card.yellow figcaption {
    background: #151000;
}
.blog_card.yellow:hover a {
    background: #d0a100;
    color: #fff;
    transform: rotate(0);
}
.contact_banner {
    display: block;
    padding: 100px 0;
}
.contact_banner h2 {
    font-size: 40px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.contact_banner h4 {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 16px;
}
.contact_banner h5 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}
.contact_banner h6 {
    margin-bottom: 24px;
}
.contact_banner .contact_item figure img {
    filter: invert(0);
}
.contact_banner .contact_item a {
    color: #000;
    box-shadow: inset 0 -1px 0 0 #000;
}
.contact_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact_btn:before {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0083d5 url(../images/mouse-cursor.png) center no-repeat;
    background-size: 40%;
    position: absolute;
    content: '';
}
.contact_banner svg {
    width: 150px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 5px;
    transform: rotate(var(--rotate, 0)) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1));
    animation: splitTextRotate 20s linear infinite;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;

}
.contact_banner svg path {
    vector-effect: non-scaling-stroke;
    fill: var(--path-fill, transparent);
    stroke: var(--stroke-color, transparent);
    stroke-width: var(--stroke-width, 1px);
    transition: var(--stroke-transition) stroke, var(--stroke-transition) fill;
}
.contact_banner svg text {
    --fill: #000;
    fill: #000;
    direction: var(--direction, ltr);
    transition: var(--transition) stroke, var(--transition) stroke-width, var(--transition) fill;
}
.form_area {
    display: block;
    padding: 40px;
    border-radius: 15px;
    background: #cce6f7;
}
.form_area h3 {
    font-size: 32px;
    color: #000;
    font-weight: 800;
    margin-bottom: 24px;
}
.form_label.dark {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}
.form_group p {
    margin: 0;
}
.textbox {
    display: block;
    padding: 16px;
    line-height: 24px;
    font-size: 16px;
    border: none;
    width: 100%;
    border-radius: 3px;
}
.textbox.dark {
    background: #0C0F14;
    border: 1px solid #17212E;
    color: #fff;
}
.textarea {
    display: block;
    padding: 16px;
    line-height: 24px;
    font-size: 16px;
    border: none;
    width: 100%;
    height: 120px;
    border-radius: 3px;
    resize: vertical;
}
.textarea.dark {
    background: #0C0F14;
    border: 1px solid #17212E;
    color: #fff;
}
.textbox:focus, .textarea:focus {
    outline: none;
}
.codedropz-upload-handler {
    border: 2px dashed #17212E;
}
.codedropz-upload-inner, .dnd-upload-counter {
    color: #b0b2b7;
}
.codedropz-upload-inner h3 {
    font-size: 20px;
    margin: 0;
}
.email_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border-radius: 10px;
    background: #0083d5;
    color: #FFF;
}
.email_box figure {
    display: block;
    padding: 16px;
    background: #000d15;
    border-radius: 50%;
}
.email_box figure img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: linear0.2s;
}
.call_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border-radius: 10px;
    background: #d0a100;
    margin-top: 24px;
    color: #FFF;
}
.call_box figure {
    display: block;
    padding: 16px;
    background: #151000;
    border-radius: 50%;
}
.call_box figure img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: linear0.2s;
}
.location_section {
    display: block;
    padding: 100px 0 200px;
    background: #000d15;
    position: relative;
}
.location_section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    pointer-events: none;
    background: url(../images/locate.png) center bottom no-repeat;
    background-size: 100% auto;
    z-index: 4;
}
.location_section h3 {
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
}
.location_section h3 span {
    color: #fff;
    background: linear-gradient(135deg,  rgba(0,131,213,1) 0%,rgba(208,161,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.location_section h4 {
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 35px;
}
.location_section .action {
    font-size: 0;
    color: #fff;
    text-align: center;
}
.location_section .action a {
    font-size: 20px;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
.location_section .action a img {
    max-width: 20px;
    filter: invert(1);
    display: inline-block;
    margin-right: 16px;
    vertical-align: middle;
}
.location_section .action a span {
    white-space: nowrap;
    display: inline-block;
    line-height: 23px;
    vertical-align: middle;
}
.location_section .headline_area {
    z-index: 0;
}
.location_section .container {
    position: relative;
    z-index: 2;
}
.contact_section {
    display: block;
    padding: 100px 0;
    background-color: #000;
    background-image: url(../images/bg-shape-03.png);
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.contact_section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}
.contact_section h4 {
    font-size: 20px;
    font-family: "Sono", serif;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
}
.contact_section h5 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.contact_section h6 {
    font-size: 16px;
    color: #b0b2b7;
    margin-bottom: 24px;
}
.contact_item {
    display: flex;
    margin-bottom: 10px;
    gap: 6px;
}
.contact_item figure {
    max-width: 20px;
    flex: 0 0 100%;
    margin: 0;
}
.contact_item figure img {
    max-width: 24px;
    filter: invert(1);
}
.contact_item a {
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 0 #fff;
    display: inline;
    transition: all 0.2s ease-in-out 0s;
}
.contact_item a:hover {
    color: #0083d5;
    box-shadow: inset 0 -1px 0 0 #0083d5;
}
.page_content {
    display: block;
    padding: 100px 0;
    font-size: 16px;
    line-height: 1.45;
}
.page_content h2 {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    margin-bottom: 35px;
}
.page_content p {
    margin-bottom: 24px;
}
.page_content figure {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    margin-bottom: 24px;
}
.page_content figure img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    object-fit: cover;
}
.blog_meta {
    padding: 0;
    margin: 100px 0 24px;
    list-style-type: none;
    position: sticky;
    top: 200px;
    z-index: 9;
}
.blog_meta li {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #cacaca;
}
.blog_meta li:last-child {
    border: none;
}
.blog_meta li h6 {
    font-size: 12px;
    margin-bottom: 16px;
}
.blog_meta li .share {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}
.blog_meta li a {
    height: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
.blog_meta li i {
    max-width: 20px;
    flex: 0 0 100%;
    text-align: center;
}
.blog_meta li a span {
    font-size: 14px;
    white-space: nowrap;
}


@media(max-width: 575px) {
  .banner_section h1 {
    font-size: 30px;
  }
  .banner_section figure {
    width: 100%;
  }
  .banner_bottom {
    flex-direction: column;
  }
  .about_section, .service_section, .progress_section, .industry_section, .tech_section, .casestudy_section {
    padding: 12px 0;
  }
  .service_item {
    padding: 12px 20px;
  }
  .service_item h3 {
    font-size: 24px;
  }
  .service_item span {
    margin-right: 30px;
  }
  .service_image img {
    max-width: 100%;
  }
  .progress_wrapper {
    height: auto;
    flex-direction: column;
  }
  .progress_item {
     border-right: none;
     border-bottom: 1px solid #003455;
    position: relative;
  }
  .progress_header {
    padding: 0 0 0 70px;
    margin: 0;
  }
  .progress_content {
    width: 100%;
    height: 0;
  }
  .progress_item:hover .progress_content {
    width: 100%;
    height: auto;
    opacity: 1;
  }
  .progress_item:hover .progress_header {
    margin-bottom: 24px;
  }
  .progress_item:hover .progress_header .progress_icon {
    left: 0;
  }
  .progress_content img {
    width: 100%;
  }
  .progress_item a {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: auto;
    right: 24px;
  }
  .industry_content {
    flex-direction: column;
  }
  .tech_section ul li {
    width: 100px;
    height: 100px;
  }
  .testimonial_section {
    padding: 12px 0 60px;
  }
  .testimonial_wrapper, .blog_section, .work_section {
    padding: 12px 0;
  }
  .testimonial_card {
    padding: 12px 24px;
  }
  .headline-text {
    font-size: 120px;
  }
  .headline_area {
    margin-top: -40px;
  }
  .blog_item {
    flex-wrap: wrap;
    padding: 12px 24px;
    position: relative;
  }
  .blog_content figcaption {
    margin-top: 16px;
  }
  .blog_content {
    flex-direction: column;
    gap: 16px;
  }
  .blog_item h3 {
    font-size: 20px;
  }
  .blog_item i {
    position: absolute;
    top: 10px;
    left: auto;
    right: 24px;
  }
  .copyright {
    padding: 10px 0;
    text-align: center;
    border: none;
  }
  .policy_nav {
    padding: 10px 0;
    justify-content: center;
  }
  .footer_bottom_left {
    padding-top: 16px;
  }
  .footer_text {
    font-size: 30px;
    line-height: 1.5;
    margin: 0 0 20px;
  }
  .footer_text span {
    max-width: 50px;
  }
  .footer_bottom_right {
    padding: 20px 0 0;
  }
  .footer_btn {
    margin: 10px 0 0;
    width: 100%;
    justify-content: space-between;
  }
  .footer_top {
    padding: 24px 0 0;
  }
  .footer_top figure.footer_logo {
    margin-bottom: 16px;
  }
  .banner_section h1 {
    width: 100%;
  }
  .banner_bottom {
    height: 120px;
    gap: 0;
  }
  .banner_bottom a:last-child::after {
    display: inline-block;
  }
  .banner_bottom a:before {
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(0, 131, 213, 1) 0%, rgba(208, 161, 0, 1) 100%);
    content: '';
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
  }
  .contact_section, .portfolio_section {
    padding: 12px 0;
  }
  .inner_banner_section h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  ul.breadcrumb {
    margin-bottom: 16px;
  }
  .inner_banner_section {
    padding: 100px 0 24px;
  }
  .aboutus_section, .team_section, .about_industry_section, .why_section {
    padding: 12px 0;
  }
  .query_block {
    margin-bottom: 16px;
  }
  .why_leftcontent {
    height: auto;
  }
  .query_block {
    height: auto;
  }
  .why_section h3 {
    margin-bottom: 16px;
  }
  .casestudy_item {
    margin-top: 16px;
  }
  .service_card_content {
    margin-top: 16px;
  }
  .service_card_bottom {
    flex-direction: column;
  }
  .solution_stack {
    padding: 16px 0 0;
  }
  .solution_stack ul {
    grid-template-columns: repeat(4, 1fr);
  }
  .solution_stack li img {
    width: 100%;
    height: auto;
  }
  .provide_service {
    padding-bottom: 16px;
  }
  .service_wrapper {
    padding: 12px 0;
  }
  .industry_items {
    padding: 12px 0;
  }
  .industry_wrapper {
    padding: 0 0 12px;
  }
  .industry_banner {
    padding: 12px 0;
  }
  .casestudies {
    padding: 0 0 12px;
  }
  .blog_wrapper {
    padding: 12px 0 0;
  }
  .featured_blog {
    flex-direction: column;
  }
  .contact_banner {
    padding: 12px 0;
  }
  .contact_banner h2 {
    font-size: 24px;
  }
  .form_area {
    padding: 16px;
  }
  .page_content {
    padding: 12px 0;
  }
  .blog_meta {
    margin: 0 0 12px;
  }
  .navbar-collapse {
    background-color: #000000; /* or any background class/color you want */
    padding: 1rem; /* optional */
  }
}