.header-top-wrapper {
    display: flex;
    margin: 24px 0;
    align-items: center;
    gap: 18px;
    padding: 15px 48px;
    background: rgb(var(--secondaryColor));
    border-radius: 40px;
}

.badge-info {
    background: rgb(var(--greenColor));
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: rgb(var(--primaryColor));
    font-family: "Inter", sans-serif;
}

.header-top-wrapper p {
    font-size: 14px;
    font-weight: 500;
    color: rgb(var(--whiteColor));
    font-family: "Inter", sans-serif;
}

.header-top-wrapper a {
    font-size: 14px;
    font-weight: 500;
    color: rgb(var(--greenColor));
    font-family: "Inter", sans-serif;
}

.header-inr {
    position: absolute;
    width: 100%;
    z-index: 1000;
    transform: translateY(-15px);
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
    top: 115px;
}

.header-wrapper {
    padding: 32px 48px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-inr.header-visible {
    transform: translateY(0);
    position: fixed;
    top: 16px;
}

.header-inr.header-visible .header-wrapper {
    background: #FFFFFF;
    box-shadow: 0 4px 8px 3px #00000026;
    padding: 18px 24px;
}

.logo-wrapper p {
    font-size: 24px;
    color: rgb(var(--whiteColor));
    transition: 300ms all;
}

.header-inr.header-visible .logo-wrapper p {
    color: rgb(var(--primaryColor));
}

.logo-wrapper p strong {
    font-weight: 700;
}

.custom-btn {
    padding: 13px 16px;
    border-radius: 100px;
    border: 2px solid rgb(var(--greenColor));
    color: rgb(var(--greenColor));
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    display: inline-block;
    text-align: center;
}

.pulse-btn {
    animation: pulse 1.3s infinite;
}

.header-inr.header-visible .custom-btn {
    border: 2px solid rgb(var(--primaryColor));
    color: rgb(var(--primaryColor));
    animation: pulseActive 1.3s infinite;
}

.case-btn{
position:relative;
}

.case-count{
position:absolute;
top:-12px;
left:-12px;
background:#CB0D0D;
color:#fff;
font-size:12px;
font-weight:700;
min-width:38px;
height:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgb(var(--greenColor));
    }

    50% {
        transform: scale(0.95);
        box-shadow: 0 0 0 6px rgba(var(--primaryColor), 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(var(--primaryColor), 0);
    }
}

@keyframes pulseActive {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgb(var(--primaryColor));
    }

    50% {
        transform: scale(0.95);
        box-shadow: 0 0 0 6px rgba(var(--primaryColor), 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(var(--primaryColor), 0);
    }
}

/* hero banner */
.hero-banner-inr {
    background: rgb(var(--primaryColor));
    padding: 48px;
    border-radius: 24px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-banner-content {
    padding-top: 64px;
    max-width: 760px;
}

.hero-banner-content h1 {
    color: rgb(var(--secondaryColor));
}

.hero-banner-content p {
    color: rgb(var(--whiteColor));
    font-weight: 700;
    font-size: var(--regularFontSize);
    padding: 24px 0;
}

.hero-banner-content h3 {
    color: rgb(var(--greenColor));
}

/* .animate-content h1,
.animate-content p,
.animate-content h3, .animate-content h2, .animate-content h5, .animate-content ul {
    opacity: 0;
    transform: translateY(24px);
}

.animate-content.animate h1{
    animation: heroReveal 650ms cubic-bezier(0.22,1,0.36,1) forwards;
}

.animate-content.animate h2 {
    animation: heroReveal 650ms cubic-bezier(0.22,1,0.36,1) forwards;
}

.animate-content.animate p {
    animation: heroReveal 650ms cubic-bezier(0.22,1,0.36,1) 150ms forwards;
}

.animate-content.animate h3{
    animation: heroReveal 650ms cubic-bezier(0.22,1,0.36,1) 300ms forwards;
}

.animate-content.animate p {
    animation: heroReveal 650ms cubic-bezier(0.22,1,0.36,1) 300ms forwards;
}

.animate-content.animate ul {
    animation: heroReveal 650ms cubic-bezier(0.22,1,0.36,1) 300ms forwards;
} */


@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* profile section */
.profile-section {
    padding: 64px 0;
}

.profile-inr {
    padding: 48px;
    border-radius: 24px;
    background: rgb(var(--whiteColor));
    display: flex;
    gap: 32px;
}

.profile-content h2,
.section-head h2 {
    margin-bottom: 16px;
    color: rgb(var(--primaryColor));
}

.profile-img img {
    border-radius: 50%;
    width: 145px;
    height: 145px;
    object-fit: cover;
    display: block;
}

.profile-content p {
    font-weight: 700;
}

/* clients section */
.clients-wrapper {
    padding: 48px;
    border-radius: 24px;
    background: rgb(var(--whiteColor));
    overflow: hidden;
}

.js-marquee-wrapper {
    display: flex;
}

.js-marquee {
    display: flex;
    justify-content: center;
    gap: 130px;
    align-items: center;
}

.section-head h2 {
    text-align: center;
    margin-bottom: 32px;
}

.kaec-logo img {
    max-height: 60px;
}

/* performance section */
.performance-section {
    padding: 48px 0;
    background: rgb(var(--whiteColor));
    margin: 64px 0;
}

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

.performance-item {
    padding: 32px 16px;
    border-radius: 12px;
    background: rgb(var(--primaryColor));
}

.performance-item-inr h3 {
    font-size: 64px;
    color: rgb(var(--secondaryColor));
}

.performance-item-inr h3 small {
    font-size: 48px;
}

.performance-item-inr h4 {
    font-size: 24px;
    color: rgb(var(--greenColor));
    margin: 0 0 12px;
}

.performance-bottom p {
    color: rgb(var(--whiteColor));
    font-weight: 400;
}

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

.enterprise-item {
    padding: 48px 25px;
    border-radius: 12px;
    background: rgb(var(--whiteColor));
    border: 1px solid transparent;
    transition:
        transform 180ms ease-out,
        box-shadow 180ms ease-out,
        border-color 180ms ease-out;
}

.enterprise-item:hover,
.enterprise-item:focus {
    transform: translateY(-2px);
    border-color: #CAC4C4;
    box-shadow: 0 4px 8px 3px #00000026;
}

.enterprise-item:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.1);
    transition-duration: 180ms;
}

.enterprise-item h4 {
    font-size: 24px;
    margin: 24px 0 16px;
    color: rgb(var(--primaryColor));
}

.enterprise-item-inr p {
    color: rgb(var(--darkGrayColor));
    font-weight: 700;
}

.enterprise-img {
    height: 67px;
    display: flex;
    align-items: center;
}

/* Comfortable section */
.comfortable-content {
    padding: 48px;
    border-radius: 24px;
    background: rgb(var(--whiteColor));
    overflow: hidden;
    text-align: center;
}

.comfortable-content h2 {
    font-size: 24px;
   max-width: 930px;
    margin: 0 auto 16px;
}

.comfortable-content p {
    max-width: 1060px;
    margin: 0 auto;
}

/* portfolio section */
.portfolio-section {
    padding: 64px 0;
}

.portfolio-inr {
    padding: 48px;
    border-radius: 24px;
    background: rgb(var(--whiteColor));
    overflow: hidden;
    text-align: center;
}

.item.portfolio-holder img {
    width: auto;
    border-radius: 12px;
}

/* explore css */
.explore-inr {
    padding: 64px 48px;
    background: rgb(var(--primaryColor));
    border-radius: 24px;
}

.explore-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.explore-inr h2 {
    color: rgb(var(--secondaryColor));
}

.explore-inr h3 {
    color: rgb(var(--greenColor));
}

.explore-inr p {
    font-size: var(--regularFontSize);
    color: rgb(var(--whiteColor));
    font-weight: 700;
}

.explore-inr ul {
    list-style: disc;
    padding-left: 25px;
}

.explore-inr ul li {
    font-weight: 700;
    color: rgb(var(--whiteColor));
    line-height: 22px;
}

/* feedback section */
.feedback-section {
    padding: 64px 0;
}

.feedback-inr {
    padding: 48px;
    border-radius: 24px;
    background: rgb(var(--whiteColor));
    overflow: hidden;
    text-align: center;
}

.testimonial-slide {
    padding: 32px 24px;
    border-radius: 12px;
    background: rgb(var(--grayColor));
    height: 100%;
    text-align: left;
}

.feedback-inr .owl-carousel .owl-stage {
    display: flex;
}

.feedback-inr .owl-carousel .owl-item {
    display: flex;
}

.feedback-inr .owl-carousel .item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-slide p {
    font-weight: 700;
}

p.quote {
    font-size: 20px;
}

p.author {
    font-size: 18px;
    font-family: 'inter';
    margin-top: 25px;
}

.feedback-inr .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.feedback-inr .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.feedback-inr .owl-dots .owl-dot span {
    background: #1432C8;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 12px;
    transition: 0.3s;
}

.feedback-inr .owl-dots .owl-dot.active span {
    background: rgb(var(--greenColor));
    width: 32px;
}

.testimonial-slider .owl-stage {
    cursor: grab;
}

.testimonial-slider .owl-stage:active {
    cursor: grabbing;
}

.testimonial-slider .owl-item:focus {
    outline: 3px solid rgba(77, 163, 255, 0.6);
    outline-offset: 3px;
}

/* footer css */
.site-footer {
    padding: 64px 0 24px;
}

.footer-wrapper p {
    text-align: center;
    color: rgb(var(--primaryColor));
    font-size: 14px;
    font-family: "inter";
}

.footer-wrapper p a {
    color: rgb(var(--primaryColor));
}

.footer-wrapper p a:hover {
    color: rgb(var(--secondaryColor));
}