@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --color-primary: #f15e22;
    --color-secondary: #1c1c1c;
    --color-text: #151515;
    --color-secondarytext: #2B2B2BB0;
    --color-muted: #96969E;
    --color-white: #fff;
    --color-bg: #ffffff;
    --color-bgsecondary: #FFFAF8;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

p {
    font-size: 16px;
    color: var(--color-text);
}

.row {
    margin: 0;
}

.mw-80 {
    max-width: 80%;
}

.py-60 {
    padding: 60px 0;
}

.bg-lightmatte {
    background-color: #101115;
    transition: all 0.4s ease;
}

.navbar .container {
    position: relative;
}

.brand-logo img {
    width: 140px;
    z-index: 1051;
    position: relative;
}

#mainNavbar .nav-link {
    font-size: 14px;
    color: #fff !important;
}

#mainNavbar {
    justify-content: end;
}

.btn-find-dev {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 6px 8px 12px;
    background-color: var(--color-bg);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}


.btn-book-consultation {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 6px 8px 12px;
    background-color: var(--color-primary);
    color: #fff;
	min-height: 44px;
}

.btn-book-consultation:hover {
    color: #fff;
}

.btn-find-dev:hover {
    color: var(--color-primary);
}

.right-menu .rig-menu-title {
    font-size: 14px;
    font-weight: 600;
    color: #101115;
}

.right-menu .desc {
    font-size: 12px;
    color: #101115;
}

.navbar-toggler span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 13px;
    transition: var(--transition);
}

.hamburger {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1051;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(43deg) translate(7px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.dropdown-toggle .fa-angle-down {
    float: right;
    margin: 0px 7px 0 4px;
    transition: transform 0.3s ease;
}

.dropdown.show .nav-link.dropdown-toggle .fa-angle-down {
    transform: rotate(180deg);
}

.list-item-title {
    font-size: 14px;
    color: #000;
    margin: 0 0 0 10px;
    font-weight: 500;
    /* display: flex;
    justify-content: space-between; */
}

/*---------------hero banner----------------*/
.hero-banner {
    position: relative;
    /* height: 500px; */
    overflow: hidden;
    background: linear-gradient(to right, rgba(255, 120, 0, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 120, 0, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    background-color: #FEFEFE;
}

.hero-content {
    padding: 46px 0;
}

.hero-content .row {
    align-items: center;
}

.text-wrapper {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 700;
}

.animated-word {
    position: absolute;
    top: 0;
    white-space: nowrap;
    animation: slideText 9s infinite;
    opacity: 0;
}

.animated-word:nth-child(1) {
    animation-delay: 0s;
}

.animated-word:nth-child(2) {
    animation-delay: 3s;
}

.animated-word:nth-child(3) {
    animation-delay: 6s;
}

@keyframes slideText {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    30% {
        transform: translateY(0);
        opacity: 1;
    }

    40% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.text-wrap-center {
    text-align: center;
}

.hero-title-tag {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: 10px 48px;
    margin: 1rem auto;
    width: fit-content;
}

.align-center {
    text-align: center;
    text-transform: capitalize;
}

.hero-banner h1 {
    font-size: 54px;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-banner p {
    font-size: 18px;
    margin: 5px 0 1rem 0;
    max-width: 80%;
}

.btn-book-consultation-bigger {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 22px 8px 26px;
    background-color: var(--color-primary);
    color: #fff;
    margin-top: 1rem;
}

.btn-book-consultation-bigger:hover {
    color: #fff;
}

.font-white {
    color: #fff !important;
}

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

.font-orange {
    color: var(--color-primary);
}

.banner-img {
    width: 500px;
}

.welcome-title{
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    padding: 10px 18px;
    width: fit-content;
    margin: 1rem 0 0 0;
}

.certified-section {
    padding-top: 3rem;
}

.certified-title {
    font-weight: 600;
}

.certified-cards {
    display: grid;
    grid-template-columns: repeat(3, 0fr);
    gap: 12px;
    margin: 20px 0;
}

.hb-align-center {
    justify-content: center;
}

.cert-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #f15e22 100%);
    border-radius: 10px;
    padding: 1px;
    width: fit-content;
    box-shadow: 0px 19px 19px 0px #0000001C;
}

.certi-card-wrap {
    background: var(--color-bg);
    width: fit-content;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certi-card-wrap img {
    width: 100px;
    height: 50px;
}

#typing-text::after {
    content: "|";
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/*----------------trusted clients---------------*/
.trusted-clients {
    padding: 42px 0;
    background: #FFFAF5;
    margin: 0 50px;
    border-radius: 10px;
}

.trusted-wrapper {
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.trusted-title {
    color: var(--color-text);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.trusted-clients .owl-stage {
    display: flex !important;
    align-items: center !important;
}


.logo-card {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 1px;
}

.logo-card img:hover {
    filter: none;
}

.logo-card-wrapper {
    min-width: 100%;
    /*height: 60px;*/
    padding: 12px 18px;
    display: flex;
    justify-content: center;
}

.logo-card img {
    /*max-height: 40px;*/
    max-width: 100%;
    filter: grayscale(1);
}

.client-logos-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.client-logos {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    overflow-y: visible;
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    scrollbar-width: none;
}

/*----------------about us------------------*/
.about-section {
    padding: 80px 0 40px 0;
}

.about-image-wrap {
    position: relative;
    border-radius: 20px;
}

.about-image-wrap .about-img {
    width: 100%;
    border-radius: 20px;
}

.review-platform {
    position: absolute;
    bottom: -36px;
    left: 10px;
    display: flex;
    justify-content: space-between;
    width: 80%;
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(9.238409996032715px);
    flex-wrap: nowrap;
}

.review-platform a {
    text-align: center;
}

.review-platform img {
    width: 90%;
}

.image-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.tech-btn {
    position: absolute;
    bottom: -18px;
    right: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #f15e22 100%);
    color: #fff;
    border: none;
    height: 47px;
    width: 67px;
    border-radius: 12px;
    padding: 1px;
    z-index: 0;
}

.tech-btn-wrapper {
    background: var(--color-bg);
    z-index: 1;
    height: 45px;
    width: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    background-color: #FFFAF5;
    padding: 1.5rem;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px 0 0px;
}

.about-list li {
    font-size: 14px;
    font-weight: 600;
    padding-left: 20px;
    margin-bottom: 10px;
    width: 50%;
    color: #222222;
    position: relative;
}

.about-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1rem;
}

.stat-card {
    flex: 1 1 calc(25% - 15px);
    background: linear-gradient(180deg, #FFFFFF 0%, #f15e22 100%);
    border-radius: 12px;
    padding: 1px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-card .stat-card-wrap {
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    height: 100%;
}

.bg-lightorange {
    background: linear-gradient(179.89deg, #FFFAF5 0.11%, #FFFAF5 91.19%);
}

.stat-card h3 {
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: var(--color-secondary);
}

/*----------------smart software-----------------*/
.smart-software {
    padding: 80px 0px;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    color: var(--color-text);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    margin-top: 60px;
}

.services-wrapper .nav-tabs {
    flex-direction: column;
    border: none;
}

.services-wrapper .nav-item {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    border-left: 3px solid #B13500 !important;
    border-bottom: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
}

.services-wrapper .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: #FFFCFB;
    padding: 1rem;
    border-radius: 8px;
    color: #2A2A2D;
    border-left: 3px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    border-top: none;
    display: flex;
    align-items: center;
}

.services-wrapper .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-left: 3px solid #B13500;
    border-bottom: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    border-top: transparent;
    background-color: var(--color-primary);
    color: #fff !important;
}

.services-wrapper .nav-link.active svg path {
    fill: #fff;
    stroke: #fff;
}

.services-wrapper .nav-link:hover svg path {
    fill: #fff;
    stroke: #fff;
}

.services-wrapper .nav-link svg {
    width: 30px;
    height: 30px;
}

.services-wrapper .icon-link {
    margin-right: 12px;
}

.tab-content {
    position: relative;
}

.services-wrapper .tab-content .tab-pane {
    min-height: 567px;
    /* height: 580px; */
    margin: auto;
    padding: 30px 20px;
    border: 1px solid #FE5B15;
    border-radius: 16px;
    background: var(--color-bg);
    color: #fff;
}

.smart-software .tab-content .tab-pane h3 {
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.smart-software .subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 32px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.tech-card {
    background: linear-gradient(180deg, #e9e9e9 10%, #999999 90%);
    border-radius: 10px;
    padding: 1px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: linear-gradient(180deg, rgba(254, 91, 21, 0.31) 0%, #FE5B15 100%);
    box-shadow: 0px 14px 25px 0px #68615E2B;
}

.tech-card-wrapper {
    background: var(--color-bg);
    padding: 24px 16px;
    border-radius: 10px;
    height: 134px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-card img {
    height: 42px;
    margin-bottom: 12px;
    filter: grayscale(1);
}

.services-wrapper .tech-card:hover .tech-icon img {
    filter: none;
}

.services-wrapper .tech-card svg {
    width: 45px;
    height: 45px;
}

.tech-card .tech-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    color: var(--color-text);
}

.smart-software .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.smart-software .footer p {
    font-size: 14px;
    color: var(--color-text);
    width: 54%;
}

.insights-cta-btn {
    font-size: 14px;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    position: absolute;
    right: -8px;
    bottom: -6px;
    border: 8px solid #fff;
}

.insights-cta-btn:hover {
    background: #f15e22;
    color: #fff;
    text-decoration: none;
}

.cta-btn img {
    width: 28px;
}

/*----------------industries----------------*/
.industry-section {
    padding: 40px 20px;
}

.industry-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.industry-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.71) 0%, rgba(73, 73, 73, 0.71) 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

.industry-card-wrap {
    background: var(--color-bg);
    border-radius: 10px;
    padding: 10px;
}

.industry-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: var(--color-bg);
}

.ind-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
}

.ind-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.industry-card:hover .ind-card-image img {
    transform: scale(1.1);
}

.ind-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180.1deg, rgba(0, 0, 0, 0) -31.4%, rgba(0, 0, 0, 0.84) 99.92%);
}

.ind-card-image h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 80%;
    text-align: center;
}

.ind-card-content {
    padding: 10px 0;
}

.ind-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6em * 3);
}

.ind-card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    margin-right: 10px;
}

.ind-card-link span {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.industry-card:hover .ind-card-link {
    color: var(--color-primary);
    transition: transform 0.3s ease;
    transform: scale(1.1);
    font-weight: 600;
}

/*--------------case studies------------------*/
.case-studies {
    padding: 40px 0px 0 0;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 20px;
}

.case-studies .desc {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    margin: 0 auto 40px;
}

.case-study-carousel {
    padding-left: 20px;
    margin-top: 3rem;
}

.cs-tech-filters .nav {
    justify-content: center;
}

.cs-tech-filters .nav a.active {
    background-color: var(--color-primary);
    color: #fff;
}

.cs-tech-filters .nav a {
    font-size: 14px;
    font-weight: 600;
    background-color: #FFFAF5;
    border: 1.2px solid #f15e2233;
    border-radius: 20px;
    padding: 4px 16px;
    display: block;
    color: var(--color-primary);
    margin: 12px 4px 0 4px;
}

.carousel {
    overflow-x: clip;
}

.swiper {
    padding: 5rem 0;
    overflow: visible;
}

.swiper .swiper-slide {
    width: 400px;
}

.single {
    position: relative;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.single img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    vertical-align: top;
    border-radius: 8px;
    pointer-events: none;
}

.slide-caption {
    text-align: center;
    padding: 0 1rem 2rem;
    min-height: 100px;
}

.slide-caption h4 {
    color: var(--color-primary);
    font-weight: 700;
    margin: 0 0 10px;
    opacity: 1;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.slide-caption p {
    color: var(--color-text);
    line-height: 1.65;
    max-width: 480px;
    margin: 20px auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.06s, transform 0.35s ease 0.06s;
}

.slide-caption.visible h2,
.slide-caption.visible p {
    opacity: 1;
    transform: translateY(0);
}

.case-studies .carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.case-studies .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    border: 1px solid #ECECEC !important;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.case-studies .nav-btn svg {
    stroke: #212529;
    fill: none;
    stroke-width: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.case-studies .nav-btn:hover {
    background-color: var(--color-primary) !important;
    border: none !important;
    box-shadow: 0px 16px 20px -6px #E96A1B30;
}

.case-studies .nav-btn:hover svg path {
    fill: #fff;
}

.pb-40 {
    padding-bottom: 40px;
}

.case-studies .swiper-wrapper{
    height: auto;
}

/*---------------tech stack---------------*/
.tech-stack {
    padding: 40px 0 60px 0;
}

.tech-stack h2 {
    text-align: center;
    margin-bottom: 20px;
}

.tech-filters .nav {
    justify-content: center;
}

.tech-filters .nav a {
    font-size: 14px;
    font-weight: 600;
    background-color: #FFFAF5;
    border: 1.2px solid #f15e2233;
    border-radius: 20px;
    padding: 4px 16px;
    display: block;
    color: var(--color-primary);
    margin: 12px 4px 0 4px;
}

.tech-filters .nav a.active {
    background-color: var(--color-primary);
    color: #fff;
}

.tech-filters .nav a.active:hover {
    text-decoration: none;
}

.tech-filters .nav a:hover {
    text-decoration: none;
}

.tech-stack .tab-content {
    margin-top: 2rem;
}

.stack-section {
    max-width: 1200px;
    margin: 40px auto;
}

.stack-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 28px;
}

.stack-row.center {
    justify-content: center;
}

.stack-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    width: 216px;
}

.stack-card:hover {
    transform: translateY(-4px);
}

.stack-card img {
    width: 136px;
    height: 48px;
    object-fit: contain;
}

/*-------------------testimonials--------------------*/
.success-logs {
    background-color: #151515;
    padding: 40px 0;
    margin: 0 50px;
    border-radius: 10px;
    /* background-image: url('../images/Option01.png'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.success-logs h2 {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.success-logs .subtitle {
    text-align: center;
    font-weight: 500;
    margin: 0 auto 40px;
    color: #fff;
}

.log-card {
    background: #151515;
    border-radius: 14px;
    padding: 10px;
    height: 100%;
    position: relative;
    z-index: 1;

    transition:
        background 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.log-card:hover .log-card-wrap {
    padding: 11px;
    border-radius: 14px;

    transition:
        background 600ms cubic-bezier(0.22, 1, 0.36, 1),
        padding 400ms ease;
}

.log-card.faded {
    opacity: 0.35;
}

.log-card.faded:hover {
    opacity: 1;
}

.log-card-wrap .user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.log-card-wrap .user img {
    width: 42px !important;
    height: 42px;
    border-radius: 50%;
}

.log-card-wrap .user h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}

.log-card-wrap .user span {
    font-size: 12px;
    color: #71717A;
}

.log-card h5 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #fff;
}

.log-card:hover h5 {
    background: linear-gradient(90deg, #1c1c1c26 0%, #f15e224a 14.4%, #1c1c1c4e 77%);
}

.log-card p {
    font-size: 12px;
    margin-bottom: 0;
    color: #ccc;
    line-height: 1.6;
}

.log-card .highlight {
    color: #ff6a00;
    font-weight: 600;
}

.logs-grid .owl-stage {
    display: flex;
}

.logs-grid .owl-item {
    display: flex;
    justify-content: center;
}

.logs-grid-bottom .owl-item {
    display: flex;
    justify-content: center;
}

.logs-grid,
.logs-grid-bottom {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 80%, transparent);
}

.scroller {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 16px;

    will-change: transform;
}

.scroller[data-animated="true"] {
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.user-logs-item {
    position: relative;
    flex: 0 0 auto;
    max-width: 320px;
    border-radius: 14px;
    overflow: hidden;
    padding: 1px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #ffffff26 0.03%, #ffffff61 75.78%) padding-box, linear-gradient(180deg, #ffffff26 0.03%, #ffffff61 75.78%) border-box;
}

.user-logs-item:hover {
    opacity: 1;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #000000 0.03%, #f15e22 75.78%) padding-box, linear-gradient(180deg, #ffffff00 0.03%, #ffffff00 75.78%) border-box;
}


.user-logs-item:hover .log-card {
    background: #151515;
}

.log-card-wrap {
    padding: 11px;
}

.user-logs-item:hover .log-card-wrap {
    background: linear-gradient(180deg,
            rgba(21, 21, 21, 0) 0%,
            rgba(254, 77, 1, 0.18) 100%);
    border-radius: 14px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--translateX));
    }
}

/*----------------global events----------------*/
.events-section {
    padding: 80px 20px 0px 20px;
}

.events-section h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 1.3;
}

.events-section h2 .highlight {
    display: block;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.event-card {
    border-radius: 14px;
    padding: 1px;
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #FFFFFF 0%, #7A7A7A 100%) border-box;
}

.event-card-wrapper {
    background-color: #fff;
    border-radius: 14px;
    padding: 10px;
}

.image-wrapper {
    position: relative;
    height: 260px;
}

.image-wrapper .event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.events-grid .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.image-text {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-text h3 {
    font-size: 20px;
    font-weight: 600;
}

.image-text .date {
    font-size: 12px;
    color: #fff;
}

.events-section .content {
    padding: 24px;
}

.location-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 10px;
}

.location {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
}

.booth {
    background: #f1f1f1;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.event-card:hover .booth {
    background: #ffe7db;
    color: var(--color-primary);
}

.content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.btn-explore {
    border: 6px solid #FFFAF5;
	min-height: 44px;
	padding: 12px 20px;
    font-size: 14px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    background-color: #000000;
    position: absolute;
    right: -4px;
    bottom: -22px;
}

.event-card:hover .btn-explore {
    background-color: #f15e22;
}

.event-card:hover {
    background: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.btn-explore:hover {
    color: #fff;
}

.event-thumbnail-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    height: 130px;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.events-grid .owl-item {
    padding-bottom: 2rem;
}

.events-grid .owl-nav.disabled {
    display: flex !important;
    justify-content: center;
}

.events-grid .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    border: 1px solid #ECECEC !important;
}

.events-grid .owl-nav button:hover {
    background-color: var(--color-primary) !important;
    border: none !important;
    box-shadow: 0px 16px 20px -6px #E96A1B30;
}

.events-grid .owl-nav-icon {
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover .owl-nav-icon svg path {
    fill: #fff;
}


/* Responsive */
@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/*----------------partnersips----------------*/
.recognitions {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.stars {
    color: #f5b301;
    font-size: 32px;
    margin-bottom: 12px;
}

.recognitions h2 {
    margin-bottom: 8px;
}

.recognitions .subtitle {
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rec-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.rec-card img {
    max-width: 90px;
    margin-bottom: 18px;
    height: 90px;
    object-fit: contain;
}

.rec-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.quote {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.small {
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media (max-width: 560px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/*----------------knowledge-section----------------*/
.knowledge-section {
    padding: 50px 20px;
    text-align: center;
}

.knowledge-section h2 {
    text-transform: uppercase;
    margin-bottom: 14px;
}

.knowledge-section .subtitle {
    max-width: 820px;
    margin: 0 auto 60px;
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 500;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.knowledge-card {
    text-align: left;
}

.knowledge-grid a {
    color: var(--color-text);
}

.image-wrap {
    border-radius: 14px;
    overflow: hidden;
    max-height: 210px;
    margin-bottom: 18px;
}

.image-wrap.light {
    background: #e6e6e6;
}

.image-wrap.dark {
    background: #cfc7c3;
}

.image-wrap img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
}

.knowledge-card .tag {
    display: inline-block;
    background: #381E2C;
    color: #F3B2D5;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.knowledge-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.knowledge-card .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.knowledge-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: max-content;
}

.knowledge-card .author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author img {
    width: 24px !important;
    height: 24px;
    border-radius: 50%;
}

.author span {
    font-size: 14px;
    font-weight: 600;
    color: #151515;
}

.knowledge-card .date {
    font-size: 12px;
    color: #96969E;
    margin-left: 12px;
}


.knowledge-grid .owl-nav.disabled {
    display: flex !important;
    justify-content: center;
    margin-top: 2rem;
}

.knowledge-grid .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    border: 1px solid #ECECEC !important;
}

.knowledge-grid .owl-nav-icon {
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.knowledge-grid .owl-nav button:hover {
    background-color: #f15e22 !important;
    border: none !important;
    box-shadow: 0px 16px 20px -6px #E96A1B30;
}

/* Responsive */
@media (max-width: 600px) {
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------faq---------------*/
.faq-section {
    padding: 40px 0 30px 0;
}

.faq-title {
    color: var(--color-primary);
    margin-bottom: 40px;
    text-transform: capitalize;
}

#faq .card {
    background-color: #fff;
    margin-bottom: 20px;
    border: 0;
    padding: 1px;
    z-index: 2;
    position: relative;
    border-radius: 7px;
    transition: all 0.35s ease;
}

#faq .faq-card.active {
    box-shadow: 0px 16px 22px 0px #00000029;
    transition: all 0.35s ease;
}

.faq-card.card.active::before {
    opacity: 1;
}

.faq-card.card.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffffff 0.03%, #FE5B15 75.78%);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
}

#faq .card .card-header {
    border: 0;
    border-radius: 2px;
    padding: 0;
    margin-bottom: -2px;
}

#faq .faq-card.active .card-header .btn-header-link {
    background-color: #fff;
    color: var(--color-primary);
}

#faq .card .card-header .btn-header-link {
    display: block;
    text-align: left;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F8F7;
    color: var(--color-text);
}

#faq .card .card-header .btn-header-link h6 {
    font-weight: 600;
    width: 85%;
    line-height: 1.5;
}

#faq .card .collapse.show {
    background: #fff;
    color: var(--color-text);
    border-radius: 0px 0px 7px 7px;
    transition: all 0.35s ease;
}

#faq .card-body {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 0;
    width: 92%;
    color: var(--color-text);
}

.btn:focus {
    box-shadow: none;
}

.faq-card.active .faq-icon-wrap {
    border: 2px solid var(--color-primary);
    transform: rotateZ(180deg);
    transition: all 0.35s ease;
}

.faq-card.active .faq-icon-wrap svg path {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}

.faq-icon-wrap {
    border: 2px solid var(--color-text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

/*------------- contact form--------------*/
.contact-section {
    padding: 60px 20px;
    background: #fff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
}

.contact-form {
    background: var(--color-primary);
    padding: 20px;
    width: 60%;
    color: #fff;
}

.form-wrapper {
    border-radius: 12px;
    background-color: #fff;
    padding: 1rem;
}

.contact-title {
    font-weight: 600;
    color: var(--color-primary);
}

.contact-subtitle {
    margin: 10px 0 30px;
    font-size: 14px;
    color: var(--color-text);

}

.contact-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--color-text);
    text-transform: uppercase;
}


.contact-section .wpcf7-not-valid{
    margin-bottom: 0px !important;
}

.contact-section .wpcf7-not-valid-tip{
    margin-bottom: 18px;
}

.contact-section #phone {
    margin-bottom: 18px !important;
}

.contact-section .iti__selected-flag {
    height: 43px !important;
}


.contact-input,
.contact-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #151515;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-info {
    background: #000;
    padding: 40px;
    width: 40%;
    color: #fff;
}

.contact-profile {
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.profile-text {
    font-size: 13px;
    margin: 16px 0 20px;
    line-height: 1.6;
    color: #fff;
}

.contact-cta {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.contact-testimonial .user-logs-item {
    max-width: 100% !important;
}

.testimonial-title {
    font-weight: 600;
    margin-top: 10px;
}

.testimonial-text {
    font-size: 13px;
    opacity: 0.85;
}

#contact-log-card{
    height: auto;
}

/*----------------footer----------------*/
.footer-contact {
    background: radial-gradient(circle at right, #1a1a1a, #000);
    padding: 2rem 0 0 0;
}

.contact-form-wrapper {
    padding: 2rem 2rem;
}

.contact-card .card-box {
    border: 1px solid #A1A1A145;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.card-box .icon-box {
    padding: 0 10px;
}

.contact-card .info-box {
    border-left: 1px solid #A1A1A145;
    padding: 5px 5px 5px 10px;
}

.contact-card .info-box p,
.info-box a {
    margin: 5px 0;
    font-size: 14px;
    color: #fff !important;
    display: block;
}

a:hover {
    text-decoration: none;
}

/* CONTENT */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 1rem;
    width: 80%;
    align-items: baseline;
    position: relative;
    z-index: 2;
}

.footer-content .column h4,
.contact-details .column h4 {
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 600;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
}

.footer-content .title-wrapper {
    position: relative;
}

.footer-content .circle-highlighter {
    top: -14px;
    left: -13px;
    background-color: #ffffff30;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    display: none;
}

.footer-content .column ul {
    list-style: none;
    padding-left: 0;
}

.footer-content .column li {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-content .column li a {
    color: #fff;
}

.site-footer {
    text-align: center;
    margin: 3rem 0 1rem 0;
    z-index: 2;
    position: relative;
}

.footer-links a {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.contact-details {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.socials span {
    width: 34px;
    height: 34px;
    border: 1px solid #444;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    cursor: pointer;
}

.socials span img {
    width: 16px;
}

.footer-wrapper {
    overflow: hidden;
}

.globe-wrapper {
    position: absolute;
    right: -174px;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    overflow: hidden;
    z-index: 1;
}

.globe-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 1) 40%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 1) 40%,
            rgba(0, 0, 0, 0) 100%);
}

/* ===== MARKER ===== */

/* Blink ONLY via opacity */
.blink {
    animation: blink 1.4s ease-in-out infinite;
}

.outer {
    fill: none;
    stroke: #fff;
    stroke-width: 0.7px;
}

.inner {
    fill: #ffffff;
}

@keyframes blink {
    0% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.35;
    }
}

/* ===== POPUP ===== */

.location-card {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #1e1e1e;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 5px;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 0.5px solid #fe5b158c;
}

.location-card strong {
    color: #fe5b15;
    font-weight: 600;
}

/*new added*/
.marker.active .blink {
    animation-play-state: paused;
    opacity: 1;
}

.marker.active .inner {
    fill: #fe5b15;
}

.marker.active .outer {
    stroke: #fe5b15;
}

.marker.active .connector {
    opacity: 1;
    animation: draw-line 0.35s ease forwards;
}

.marker.active .location-card {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.marker .connector {
    opacity: 0;
    stroke-dashoffset: 60;
}

foreignObject {
    pointer-events: auto;
    overflow: visible;
}

/**/
/* ===== CONNECTOR LINE ===== */
.connector {
    stroke: var(--color-primary);
    stroke-width: 0.7;
    fill: none;

    stroke-dasharray: 60;
    stroke-dashoffset: 60;

    opacity: 0;
    transition: opacity 0.15s ease;
}

/* Animate line ONLY when dot is hovered */
.blink:hover+.connector {
    opacity: 1 !important;
    animation: draw-line 0.35s ease forwards;
}

/* Reset when not hovered */
.blink:not(:hover)+.connector {
    stroke-dashoffset: 60;
}

/* Draw animation */
@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.globe-wrapper svg {
    overflow: visible;
}

foreignObject {
    overflow: visible;
    pointer-events: none;
}

.blink:hover .inner {
    fill: var(--color-primary);
}

.blink:hover .outer {
    stroke: var(--color-primary);
}

.blink:hover {
    animation-play-state: paused;
    opacity: 100% !important;
}

.footer-wrapper::after {
    content: '';
    background: linear-gradient(90deg, #0d0d0d17 19.21%, #15151500 89.76%);
    position: absolute;
    width: 100%;
    height: 100%;
}

/*--------------page animation css--------------*/
/* hidden before scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* visible when scrolled into view */
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/*--------------bordered-cards-----------------*/
.why-section {
    padding: 60px 0 80px 0;
    background: var(--color-bgsecondary);
}

.why-title {
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.why-section {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
}

.why-card {
    background: #fff;
    border: 1px solid #ffddce;
    border-radius: 10px;
    padding: 50px 30px 35px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 66px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ffddce;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 34px;
}

.why-card h4 {
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------gradient hover cards-------------------*/
.border-gradient {
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ffffff 0.03%, #FE5B15 75.78%) border-box;
    color: #fff;
    padding: 26px 26px 30px;
    border-radius: 8px;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
    height: 300px;
}

.border-gradient .icon {
    margin-bottom: 24px;
    text-align: left;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.border-gradient .icon img {
    width: 40px;
}

.border-gradient h4 {
    color: var(--color-text);
    margin-bottom: 5px;
    font-weight: 600;
    text-align: left;
}

.border-gradient p {
    font-size: 14px;
    line-height: 1.6;
    color: #464646;
    text-align: left;
    margin-top: 12px;
    overflow: hidden;
    transition: max-height 0.10s ease, opacity 0.9s ease, transform 0.9s ease;
    transform: translateY(0px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.border-gradient .btn-view {
    position: absolute;
    bottom: 12px;
    right: -8px;
    color: var(--color-primary);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 32px;
    opacity: 1;
    transform: translateX(-30px);
    transition: all 0.45s ease;
}

.border-gradient .arrow-icon svg path {
    stroke: var(--color-primary);
}

.border-gradient:hover .arrow-icon svg path {
    stroke: var(--color-bg);
}

.border-gradient:hover {
    border: 1px solid transparent;
    background: linear-gradient(#151515, #151515) padding-box, linear-gradient(180deg, #ffffff 0.03%, #FE5B15 75.78%) border-box;
}

.border-gradient.cta-img:hover {
    background: none;
    background-image: url('../images/ai-dev-card.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.border-gradient:hover .icon {
    transform: translateY(0px);
    opacity: 0.35;
}

.border-gradient:hover h4 {
    color: var(--color-primary);
}

.border-gradient:hover p {
    max-height: 200px;
    opacity: 1;
    transform: translateY(-6px);
    -webkit-line-clamp: unset;
    color: #fff;
}

.border-gradient:hover .btn-view {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-bg);
    background: var(--color-primary);
    padding: 12px;
    border-radius: 8px;
}

.border-gradient .blur-icon {
    position: absolute;
    top: 80%;
    left: 40px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.border-gradient:hover .blur-icon {
    top: 20px;
    opacity: .4;
    transform: scale(1.5);
}


/*--------------------------------------------------*/
/* RESPONSIVE */
@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-cta-btn {
        float: none;
        right: unset;
        left: 2px;
        bottom: -52px;
        font-size: 12px;
        border: none;
        border-radius: 4px;
    }

    .services-wrapper {
        margin-top: 40px;
        position: relative;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===== Desktop ===== */
@media (min-width: 992px) {
    .bg-lightmatte {
        background: #ffffffb3;
        transition: all 0.4s ease;
    }

    .navbar::before {
        content: "";
        position: absolute;
        inset: 0;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: -1;
    }

    .sticky-nav .container {
        margin: auto;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        border: 1px solid var(--color-primary);
        position: relative;
    }

    #mainNavbar .nav-link {
        color: #000 !important;
    }

    .logo-white {
        display: none;
    }

    /* Mega dropdown */
    .mega-dropdown {
        position: static;
    }

    .mega-menu {
        left: unset;
        box-shadow: 0px 9px 26px 0px #170F490D;
        border-radius: 10px;
        background: #ffffffb3;
        backdrop-filter: blur(42px);
        background-color:
            color-mix(in oklab, var(--color-bg) 70%, transparent);
        overflow: hidden;
        border: 1px solid transparent;
        background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ffffff 0.03%, #FE5B15 75.78%) border-box;
    }

    /* LEFT */
    .left-menu {
        background: #fff;
        padding: 0;
    }

    .middle-menu, .right-menu {
        background-color: #FFFAF5;
    }

    .left-menu li {
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        padding: 14px 20px;
        border-bottom: 1px solid #EAECF4;
    }

    .left-menu li:hover h6{
        color: var(--color-primary);
    }

    .menu-item-flex {
        display: flex;
        justify-content: space-between;
    }

    .left-menu li a {
        color: #101115;
    }

    .left-menu li a h4 {
        font-weight: 600;
        width: 40%;
        margin-bottom: 0;
    }

    .left-menu li.active h5,
    .left-menu li:hover h5 {
        color: var(--color-primary);
    }

    .left-menu .menu-list-item.active,
    .left-menu .menu-list-item:hover {
        background-color: #FFFAF5;
    }


    .menu-list-item a {
        width: 100%;
        display: block;
    }

    .menu-list-item:hover .list-item-icon path {
        fill: var(--color-primary);
    }

    .menu-list-item.active .list-item-icon path {
        fill: var(--color-primary);
    }

    .left-menu .menu-list-item.active a,
    .left-menu .menu-list-item:hover a {
        color: var(--color-primary);
        font-weight: 600;
    }

    .left-menu .menu-list-item.active .list-item-title,
    .left-menu .menu-list-item:hover .list-item-title {
        color: var(--color-primary);
        font-weight: 600;
    }


    .left-menu li.active .arrow-nav-desktop,
    .left-menu li:hover .arrow-nav-desktop {
        display: block;
    }

    .left-menu li.active .arrow-nav-desktop path,
    .left-menu li:hover .arrow-nav-desktop path {
        fill: var(--color-primary);
    }

    .arrow-nav-desktop {
        display: block;
    }

    .list-item-wrapper {
        /* padding: 14px 20px; */
        border-radius: 6px;
    }

    .left-menu span {
        /* float: right; */
    }

    /* MIDDLE */
    .middle-menu {
        padding: 14px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .submenu {
        display: none;
    }

    .submenu.active {
        display: block;
    }

    .submenu h6 {
        font-size: 18px;
        font-weight: 600;
        color: var(--color-text);
        margin-bottom: 0;
        padding: 1rem;
        border: 1px solid transparent;
        background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ffffff 0.03%, #FE5B15 75.78%) border-box;
        border-radius: 10px;
    }

    .submenu ul {
        list-style: none;
        padding: 0;
        display: grid;
        gap: 5px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        margin-top: 1rem;
    }

    .submenu ul li {
        font-size: 14px;
        font-weight: 500;
        padding: 8px 0;
    }

    .submenu ul li a:hover{
        color: var(--color-primary);
        font-weight: 600;
    }

    .submenu ul li a {
        color: #000;
    }

    .submenu-grid-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    /* RIGHT */
    .right-menu {
        background: #FFFAF5;
        padding: 16px;
        border-radius: 4px;
    }

    .right-menu span {
        color: var(--color-primary);
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    .stats .stats-card {
        background: linear-gradient(180deg, #FFFFFF 19.21%, #f15e22 89.76%);
        padding: 1px;
        text-align: center;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
    }

    .stats .bg-white {
        padding: 10px;
        border-radius: 6px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-orange {
        background: var(--color-primary);
        color: #fff;
        border-radius: 6px;
    }

    .partnership {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    .partnership-card {
        background: linear-gradient(180deg, #FFFFFF 19.21%, #f15e22 89.76%);
        padding: 1px;
        border-radius: 6px;
    }

    .partnership-card img {
        width: 80px;
    }

    .partnership-card .bg-white {
        text-align: center;
        border-radius: 6px;
    }

    .submenu-mobile {
        display: none !important;
    }

    .cust-padding {
        padding: 0rem;
    }

    .nav-item.dropdown .nav-link {
        display: flex;
        align-items: center;
        gap: 0px;
    }

    .css-caret {
        width: 16px;
        height: 16px;
        background-color: #fff;
        border-right: 1px solid var(--color-primary);
        border-bottom: 1px solid var(--color-primary);
        transform: rotate(45deg);
        transition: transform 0.25s ease;
        position: absolute;
        display: none;
        margin-top: -2px;
    }

    .nav-item.dropdown.show .css-caret {
        transform: rotate(-135deg);
        display: block;
        bottom: -27px;
        left: 43%;
        display: none;
    }

    .mega-center {
        left: 50%;
        min-width: 100%;
        max-width: 1100px;
        transform: translate(-50%, 17px);
    }

    .small-menu {
        min-width: max-content !important;
    }

    .mt2 {
        margin-top: 20px;
    }

    .list-item-title .fa-angle-down {
        display: none;
    }

    .contact-wrapper {
        max-width: 1100px !important;
        padding: 0 !important;
    }

    .cta-wrapper {
        padding: 20px 0;
    }

    .cta-wrapper .cta-content {
        background: #fff;
        border: 1px solid #D9D9D9;
        border-radius: 14px;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        max-width: 950px;
        margin: auto;
    }

    .cta-text h2 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: var(--color-text);
        text-transform: none;
    }

    .cta-wrapper .cta-text p {
        margin: 8px 0 0 0;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        max-width: 520px;
    }

    .cta-wrapper .cta-btn {
        font-size: 14px;
        background-color: var(--color-primary);
        color: #fff;
        padding: 8px 12px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 90, 0, 0.3);
    }

    .arrow {
        font-size: 18px;
    }

    .unstyled-menu-wrapper {
        display: grid;
        gap: 5px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        margin-top: 1rem;
    }

    .unstyled-submenu .submenu-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--color-text);
        margin-bottom: 0;
        padding: 1rem;
        border: 1px solid transparent;
        background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ffffff 0.03%, #FE5B15 75.78%) border-box;
        border-radius: 10px;
    }

    .unstyled-submenu {
        background-color: #FFFAF5;
        padding: 16px;
    }

    .unstyled-submenu li {
        border-bottom: none;
    }

    .unstyled-submenu .unstyled-menu-wrapper {
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .unstyled-list-item {
        padding: 12px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: -16.36px 43.15px 26.43px 0px #65656512;
    }

    .us-submenu-icon {
        width: 30px;
    }

    .unstyled-list-item h6 {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 0 16px;
        color: var(--color-text);
    }

    .unstyled-list-item p {
        font-size: 14px;
        font-weight: 400;
        color: var(--color-secondarytext);
        margin: 10px 0 0 0;
    }

    .desktop-hidden {
        display: none;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-action {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Mobile ===== */
@media(max-width:575px) {
    .footer-content {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .footer-content {
        padding-bottom: 1rem;
        padding-top: 2rem;
    }

    .globe-wrapper .globe {
        display: none;
    }

    .hero-banner h1 {
        font-size: 30px;
    }

    .tech-btn,
    .tech-btn-wrapper {
        height: 36px;
        width: 54px;
        border-radius: 4px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 0;
    }

    .footer-content h4,
    .footer-content li {
        text-align: center;
    }

    .contact-details .column h4 {
        text-align: center;
    }

    .certi-card-wrap {
        width: 94px !important;
        height: 62px !important;
    }

    .certi-card-wrap img {
        width: 78px !important;
        height: 33px !important;
    }

    .industry-section {
        padding: 50px 16px;
    }

    .industry-grid {
        grid-template-columns: 1fr !important;
    }

    .ind-card-image {
        height: 200px;
    }

    .trusted-clients {
        margin: 0 15px;
    }

    .events-section .content {
        padding: 12px 0;
    }

/*     .text-wrapper {
        height: 2.5em;
    } */

    .animated-word {
        white-space: unset;
    }
}

@media(min-width:576px) {
    .subscribe {
        width: 324px;
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        width: 540px;
        padding: 0 15px;
    }
}

@media(max-width:767px) {
    .mobile-visible {
        display: block;
    }

    .mt {
        margin-top: 16px !important;
    }

    .destop-visible {
        display: none;
    }

    .globe-wrapper .globe {
        display: none;
    }

    .subscripion-section {
        padding: 0 1rem;
    }

    .contact-card .info-box p,
    .info-box a {
        font-size: 12px;
    }

    .faq-icon-wrap {
        width: 25px;
        height: 25px;
    }

    .faq-icon-wrap svg {
        height: 10px;
    }
}

@media(min-width:768px) {
    .stats-row {
        flex-wrap: nowrap;
    }

    .contact-details {
        width: 80%;
    }

    .footer-content .custom-padding {
        padding: 0;
        padding-right: 20px;
        margin-top: 1rem;
    }

    .mobile-visible {
        display: none;
    }

    .destop-visible {
        display: block;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        max-width: 720px;
        width: 100%;
        padding: 0 15px;
    }
}

@media(max-width:768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 30px;
    }

    .swiper {
        padding: 2rem 0;
    }
}

@media (max-width: 991px) {

    .unstyled-submenu .submenu-title{
        display: none;
    }

    .unstyled-submenu .us-submenu-icon {
        width: 24px;
        height: 24px;
    }

    .unstyled-submenu .us-submenu-icon path{
        fill: #fff;
    }

    .unstyled-submenu .list-item-wrapper h6 {
        font-size: 13px;
        color: #fff;
        margin: 0 0 0 10px;
        font-weight: 600;
    }

    .unstyled-submenu .list-item-wrapper p {
        font-size: 12px;
        color: #fff;
        margin: 5px 0 0 0px;
        font-weight: 400;
    }

    .navbar .dropdown-menu {
        position: static !important;
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.35s ease;
    }

    .mega-menu .row {
        background-color: #343232;
        flex-direction: column;
    }

    .left-menu,
    .middle-menu,
    .right-menu {
        width: 100%;
        border: 0;
    }

    .left-menu li {
        font-size: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #5a5a5a;
		min-height: 44px;
    }

    .left-menu li a {
        color: #fff;
    }

    .list-item-title {
        font-size: 12px;
        color: #fff;
        margin: 0 0 0 10px;
        font-weight: 500;
    }

    .list-unstyled .fa-angle-down {
        float: right;
        margin-top: -17px;
        transition: transform 0.3s ease;
        color: #fff;
    }

    .list-unstyled li.active .fa-angle-down {
        transform: rotate(180deg);
    }

    .right-menu {
        display: none;
    }

    .submenu {
        display: none;
    }

    .list-unstyled .submenu-mobile {
        color: #fff;
        font-size: 12px;
        padding: 1rem 0 0 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        transition:
            max-height 0.45s ease,
            opacity 0.35s ease,
            transform 0.35s ease;
    }

    .submenu-mobile.active {
        display: block !important;
        max-height: 1000px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .list-unstyled li:last-child {
        border-bottom: none;
    }

    .submenu ul {
        padding-left: 20px;
    }

    .submenu .submenu-title {
        font-size: 12px;
        font-weight: 500;
    }

    .navbar .container {
        width: 100%;
    }

    .navbar-top-fixed {
        background-color: #101115;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 1060;
        padding: .5rem 0;
    }

    #mainNavbar .nav-link {
        font-weight: 600;
    }

    .submenu-desktop {
        display: none;
    }

    .arrow-nav-desktop {
        display: none;
    }

    .trusted-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    .hero-content {
        padding: 10px 0;
    }

    .hero-title-tag {
        font-size: 14px;
        padding: 10px 14px;
    }

    .welcome-title {
        margin: 1rem auto 0 auto;
    }

    .btn-book-consultation-bigger {
        font-size: 14px;
		min-height: 44px;
        padding: 12px 20px;
    }

    .certified-section {
        padding-top: 1rem;
    }

    .hero-banner p {
        font-size: 14px;
    }

   /* .hero-banner {
        height: 100%;
    }
*/
    .about-list li {
        width: 100%;
    }

    .stat-card {
        flex: 1 1 100%;
    }

    .certi-card-wrap img {
        width: 102px;
        height: 44px;
    }

    .mt {
        margin-top: 40px;
    }

    .hamburger {
        display: flex;
    }

    .navbar-collapse {
        position: fixed !important;
        inset: 0;
        background: #0f0f0f;
        padding: 90px 24px 24px;
        overflow-y: auto;
        height: 100vh;
        z-index: 1050;
        clip-path: circle(0px at var(--cx, 100%) var(--cy, 0));
        -webkit-clip-path: circle(0px at var(--cx, 100%) var(--cy, 0));
        transition: clip-path 2s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .navbar-collapse.show {
        clip-path: circle(150% at var(--cx, 100%) var(--cy, 0));
        -webkit-clip-path: circle(150% at var(--cx, 100%) var(--cy, 0));
    }

    .navbar-collapse:not(.show) {
        transition-duration: 1.5s;
    }

    .navbar-collapse.collapse {
        display: block;
         text-align: left;
    }

    .navbar-nav>.nav-item {
        opacity: 0;
        transform: translateY(12px);
        transition: all 0.35s ease;
    }

    .navbar-collapse.show .navbar-nav>.nav-item {
        opacity: 1;
        transform: translateY(0);
		min-height: 44px;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .dropdown.show .dropdown-menu {
        max-height: 1000px;
        opacity: 1;
    }

    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links.open {
        display: flex;
    }

    .bg-darkmatte {
        padding: 0 1rem !important;
    }

    .menu-list-item .list-item-icon path {
        fill: #fff;
    }

    .services-wrapper {
        margin-top: 40px;
    }

    .smart-software {
        padding: 50px 0px;
    }

    .case-study-carousel .owl-nav {
        display: flex !important;
        justify-content: center;
        margin-top: 2rem;
    }

    .success-logs {
        margin: 0 15px;
    }

    .case-study-carousel {
        padding-left: 0;
    }

    .about-content {
        padding: 1rem;
        margin-top: 2rem;
    }

    /*-------------smart-software---------------*/

    #servicesAccordion .card-header {
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    #servicesAccordion .accordion-card-header {
        margin: 1rem 0;
    }

    #servicesAccordion .btn-link {
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        background-color: #FFFCFB;
        padding: 1rem;
        border-radius: 8px;
        color: #2A2A2D;
        border-left: 3px solid var(--color-primary);
        border-bottom: 1px solid var(--color-primary);
        border-right: 1px solid var(--color-primary);
        border-top: none;
        width: 100%;
        display: flex;
        align-items: center;
    }

    #servicesAccordion .btn-link:hover {
        text-decoration: none;
    }

    #servicesAccordion .btn-link:focus {
        text-decoration: none;
    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        background-color: var(--color-primary) !important;
        color: #fff !important;
        border-left: 3px solid #B13500 !important;
        border-bottom: 1px solid var(--color-primary);
        border-right: 1px solid var(--color-primary);
    }

    #servicesAccordion .accordion-body {
        max-width: 1100px;
        margin: auto auto 1rem auto;
        padding: 20px;
        border-radius: 16px;
        background: var(--color-bg);
        border: 1px solid #FE5B15;
        color: #fff;
    }

    #servicesAccordion .footer p {
        width: 100%;
    }

    #servicesAccordion .icon-link {
        width: 26px;
        display: flex;
    }

    .accordion-body h2 {
        color: var(--color-primary);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .accordion-body .subtitle {
        font-size: 12px;
    }

    .footer-content {
        padding-top: 0;
        width: 100%;
    }

    .logo-black {
        display: none;
    }

    .logo-white {
        display: block;
    }

    .contact-wrapper {
        display: block;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: auto;
    }

    .text-wrap-left {
        text-align: center;
    }

    .text-wrap-left .certified-cards {
        justify-content: center;
    }

    .text-wrap-left p {
        margin: 5px auto 1rem auto;
    }

    .text-wrap-left .text-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .stack-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stack-card {
        width: 150px;
    }

    .stack-card img {
        width: 106px;
        height: 30px;
        object-fit: contain;
    }
}

@media (max-width: 1100px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 3px;
        padding-left: 3px;
    }
}

@media (max-width: 1200px) {
    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .globe {
        margin: auto;
    }
}

@media(max-width:1199px) {
    .cta-wrapper {
        display: none;
    }

    .submenu ul {
        row-gap: 5px;
        column-gap: 16px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 84%;
    }

    .mega-center {
        left: 50%;
        min-width: 100%;
        max-width: 1100px;
        transform: translate(-50%, 6px);
    }

    .mega-center .right-menu {
        display: block;
    }

    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:1199px) {
    .hero-banner h1 {
        font-size: 34px;
    }

    .certified-title {
        font-size: 18px;
    }

    .certi-card-wrap {
        width: 124px;
        height: 66px;
    }

    .certi-card-wrap img {
        width: 82px;
        height: 46px;
    }

    .unstyled-submenu .unstyled-menu-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(192px, 1fr)) !important;
    }
}

@media(max-width:1300px) {

    .btn-find-dev,
    .btn-book-consultation {
        font-size: 10px;
        padding: 8px 12px;
    }

    #mainNavbar .nav-link {
        font-size: 12px;
    }
}

@media(min-width:1300px) {
    .contact-details {
        width: 51% !important;
    }
}

@media (min-width: 1500px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1400px;
    }
}


/*------------CTA button animation------------------*/
.cta-trace {
    position: relative;
}

.cta-trace span {
    position: relative;
    z-index: 2;
}

.cta-trace::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(90deg,
            transparent,
            #fff,
            transparent);
    background-size: 200% 100%;
    animation: borderMove 3s linear infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* animation */
@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.cta-trace:hover::before {
    background: linear-gradient(#fff, #fff);
}



.certi-card-wrap .cmmi-badge {
    width: 130px;
     height: auto; 
}

@media (max-width: 1199px) {
    .certi-card-wrap .cmmi-badge {
        width: 108px;
         height: auto; 
    }
}

@media (max-width: 991px) {
    .certi-card-wrap .cmmi-badge {
        width: 110px;
         height: auto; 
    }
}