:root {
    --prime-blue: #3AA0D5;
    --prime-blue2: #0987C9;
    --gray: #D9D9D9;
    --gray2: #F0EFF4;
}


* {
    font-family: poppins, sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

.hero-main-container {
    background-color: var(--prime-blue);
    background: url('../assets/home_assets/herobg.svg');
    background-size: cover;
    /* background-position: bottom center; */
    background-position: 0 60% !important;
    /* background-attachment: fixed; */
    /* background-position: center; */

    /* height: 541.766px; */
    height: 600px;
    width: 97%;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-main-container::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    pointer-events: none;
    background: rgba(10, 30, 60, 0.22);
    /* deep blue overlay */
    opacity: 0.0;
    transition: opacity 0.3s;
    animation: heroBgDarkenPulse 1.8s ease-in-out infinite;
}

@keyframes heroBgDarkenPulse {

    0%,
    100% {
        opacity: 0.0;
    }

    50% {
        opacity: 0.22;
    }
}

.hero-main-container .inner-hero-container {
    /* background-color: red; */
    width: 80%;
    margin: 0 auto;
    text-align: center;

    display: flex;
    /* width: 909px; */
    height: 429px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.hero-main-container .inner-hero-container h1 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 92px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 92px */
    letter-spacing: -2.76px;
}

.hero-main-container .inner-hero-container p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: -0.48px;

}

.main-introducting-container {
    margin-top: 72px;
}

.main-introducting-container h2 {
    color: #000;
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    width: 80%;
    margin: 0 auto;
}

.main-introducting-container h2 span {
    color: var(--prime-blue2);
    font-weight: 600;
}

.indro-vid-wrapper {
    width: 90%;
    height: 40vw;
    /* background-color: var(--gray); */
    margin: 0 auto;
    border-radius: 50px;
    margin-top: 30px;
    overflow: hidden; 
}

.indro-vid-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

#youtube-player {
  width: 100%;
  height: 100%;
}

/* .indro-vid-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}

.indro-vid-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.section-holder07 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.main-introducting-container h3 {
    color: #000;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 101%;
    /* 48.48px */
    letter-spacing: -1.92px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-top: 72px;
}

.main-introducting-container h3 span {
    color: #0987C9;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 101%;
    letter-spacing: -1.92px;
}

.p-crm {
    width: 35%;
    margin: 0 auto;
    text-align: center;
    color: #000;
    text-align: center;
    font-size: 20ppx;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    padding-top: 8px;
}

.know-more {
    display: flex;
    height: 44px;
    width: fit-content;
    padding: 0px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    border: 4px solid var(--prime-blue2);
    background: transparent;
    margin-top: 15px;
    transition: all 0.2s ease-in-out;
}

.know-more:hover {
    background-color: var(--prime-blue2);
    color: white;

}

.smart-crm-wrapper {
    /* background-color: #0987C9; */
    width: 92%;
    margin: 0 auto;
}

.smart-crm-wrapper img {
    width: 100%;
    height: 100%;
}

.brand-list-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 70px;
    position: relative;
    /* height: 300px; */
}


/* =-=-=-=-= */
/* =-=-=-=-= */

.brand-container {
    display: flex;
    gap: 60px;
}

.circle {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: floatOdd 2s infinite ease-in-out;
}

.circle.even {
    animation-name: floatEven;
}

@keyframes floatOdd {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatEven {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

.circle img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}


/* .brand-list-wrapper img {
    width: 100%;
    height: 100%;
} */

.brand-container {
    justify-content: center;
    margin-top: 50px;
}

.img-allinone-wrapper {
    width: 100%;
    margin-top: -50px;
}

.img-allinone-wrapper img {
    width: 100%;
    height: 100%;
}

.padd-cust {
    padding: 40px 32px !important;
}

.cust-colr {
    /* background-color: var(--prime-blue2); */
    border-radius: 16px;
    color: black;
    transition: all 0.3s ease-in-out;
}

.cust-colr:hover {
    background-color: var(--prime-blue2);
    border-radius: 16px;
    color: white;
}

.exp-head {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.text-white-dull {
    /* color: #FFFFFF ; */
    opacity: .5;
    font-size: 16px;
    font-weight: 500;
}

.cust-colr:hover .text-white-dull {
    color: #FFFFFF !important;
    opacity: .5;
    font-size: 16px;
    font-weight: 500;
}

.me2 {
    display: none;
}

.cust-colr:hover .me2 {
    display: block;
}

.cust-colr:hover .me1 {
    display: none;
}

.expertise-head {
    color: #000;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 101%;
    letter-spacing: -1.92px;
}

.expertise-head span {
    color: #0987C9;
}

.text-muted {
    opacity: 0.5;
}


/* =-=-=-= move down cards animation start -=-=-=-=- */
/* =-=-=-= move down cards animation start -=-=-=-=- */
.scroll-section {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.scroller {
    display: flex;
    flex-direction: column;
    animation: scroll-loop 12s linear infinite;
}

/* Seamless scrolling */
@keyframes scroll-loop {
    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateY(-50%);
    }

    /* because we'll duplicate the cards */
}

.scroll-card {
    background-color: #f6f6f8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    min-height: 150px;
    text-align: center;
}

.circle-white {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #FFFFFF;
    margin: 0 auto 24px;

}

.circle-white img {
    margin-top: 12px;
    object-fit: cover;
}

.scroll-fade-top,
.scroll-fade-bottom {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    z-index: 2;
    left: 0;
}

.scroll-fade-top {
    top: 0;
    background: linear-gradient(to bottom, white, transparent);
}

.scroll-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, white, transparent);
}

/* =-=-=-= move down cards animation End -=-=-=-=- */
/* =-=-=-= move down cards animation End -=-=-=-=- */


.testimonial-marquee {
    overflow: hidden;
    /* background: #f8f9fb; */
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.marquee-row {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}

.marquee-row-2 .marquee-content {
    animation: scroll-right 40s linear infinite;
}

.testimonial-card {
    display: flex;
    width: 500px;
    padding: 46px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #F0EFF4;
}

.testimonial-card p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 137%;
    /* 30.14px */
    letter-spacing: -0.66px;
}

.author {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.stars {
    color: #0077c2;
    font-size: 25px;
    letter-spacing: 2px;
}

/* Animations */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(50%);
    }
}

/* Pause on hover */
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

.testimonial-marquee {
    margin-top: 150px;
    margin-bottom: 50px;
}

.testimonials-text-wrapper {
    width: fit-content;
    margin: 0 auto;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.testimonials-text-wrapper p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.cust-eff {

    color: #000;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 101%;
    /* 48.48px */
    letter-spacing: -1.92px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-top: 22px;
    margin-bottom: 60px;
}

.cust-eff span {
    color: var(--prime-blue2);
}

.cust-mt{
    margin-top: -15px !important;
}

@media(max-width:700px) {

    .hero-main-container {
        height: 400px;
    }

    .hero-main-container .inner-hero-container {
        width: 95%;
        height: 329px;
    }

    .hero-main-container .inner-hero-container h1 {
        font-size: 42px;
    }

    .main-introducting-container h2 {
        font-size: 30px;
        width: 95%;
    }

    .main-introducting-container h3,
    .main-introducting-container h3 span {
        font-size: 30px;
        margin-top: 38px !important;

    }

    .p-crm {
        width: 85%;
        margin-top: 10px;
    }

    .know-more {
        display: flex;
        height: 30px;
        width: fit-content;
        padding: 0px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 32px;
        border: 2px solid #0987C9;
        background: transparent;
        margin-top: 15px;
        font-size: 16px;
    }


    .indro-vid-wrapper {
        border-radius: 30px;
        height: 250px;
    }

    .expertise-head {
        font-size: 30px;
        text-align: center;
    }

    .cust-eff {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }

    .testimonials-text-wrapper p {
        font-size: 14px;
    }

    .testimonial-card {
        display: flex;
        width: 300px;
        padding: 26px 20px ;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        flex-shrink: 0;
        border-radius: 8px;
        background: #F0EFF4;
    }

    .testimonial-card p {
        font-size: 16px;
    }

    .author {
        font-size: 11px;
    }

    .stars {
        font-size: 20px;
    }

    .brand-container {
        gap: 20px;
        margin-top: -50px;
    }


    .circle {
        width: 52px;
        height: 52px;
        border-radius: 50%;
    }

    .testimonial-marquee{
        margin-top: 60px;
    }

    .cust-mobile-txt{
        margin-top: 40px;
    }

    .exp-head{
        font-size: 18px;
    }

    .scroll-card h5 strong{
        font-size: 18px;
    }

}

/* Glowing overlays for hero section corners */
.hero-glow {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    width: 220px;
    height: 140px;
    border-radius: 0 100px 120px 0 / 0 100px 120px 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(58, 160, 213, 0.45) 0%, rgba(255, 255, 255, 0.25) 60%, rgba(58, 160, 213, 0.10) 100%);
    filter: blur(18px);
    opacity: 0.7;
    animation: heroGlowPulse 1.8s ease-in-out infinite;
    transition: opacity 0.3s, filter 0.3s;
}

.hero-glow--left {
    top: 0;
    left: 0;
    border-top-left-radius: 40px 40px;
    border-bottom-right-radius: 120px 120px;
}

.hero-glow--right {
    top: 0;
    right: 0;
    border-top-right-radius: 40px 40px;
    border-bottom-left-radius: 120px 120px;
    transform: scaleX(-1);
}

@keyframes heroGlowPulse {

    0%,
    100% {
        opacity: 0.7;
        filter: blur(18px);
    }

    50% {
        opacity: 1;
        filter: blur(28px);
    }
}

.hero-main-container:hover .hero-glow {
    opacity: 1;
    filter: blur(28px) brightness(1.2);
}

@media (max-width: 700px) {
    .hero-glow {
        width: 110px;
        height: 70px;
        filter: blur(10px);
    }
}