/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    line-height: 1.4 !important;
}


h1,
h2,
h3 {
    font-family: "DM Sans", sans-serif;
}

p {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.hero {
    background: linear-gradient(180deg, #e3f2ff 0%, #B3E7F2 50%, #645BEA 100%);
    color: #000;
    overflow-x: hidden;
}


@media (max-width: 768px) {
    .hero {
        /* max-height: 100vh; */
        padding: 90px 0px;
    }
}


/* nav new */



/* ---------- */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* max-width: 900px; */
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 2.5rem;
    /* background: white; */
    color: black !important;
    /* box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10); */
    border-radius: 24px;
    /* backdrop-filter: blur(10px); */
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s cubic-bezier(.4, 0, .2, 1), max-width 0.35s cubic-bezier(.4, 0, .2, 1), padding 0.35s cubic-bezier(.4, 0, .2, 1);
    font-family: "Inter", sans-serif;
    
}

.logo-blue {
    display: none;
}
    #book-for-demo-btn {
        background-color: #645BEA;
        color: white;
        border: none;
    }

.header.scrolled {
    background: white;
    padding: 0.6rem 2rem;
    backdrop-filter: blur(10px) !important;
    color: black;
    font-family: "Inter", sans-serif;

    .nav li a {
        color: black;
    }

    .cta-button {
        color: black;
        border: 2px solid black;
    }

    #book-for-demo-btn {
        background-color: #645BEA;
        color: white;
        border: none;
    }

    .logo-white{
        display: none;
    }

    .logo-blue {
        display: block;
    }


}

.header.scrolled-narrow {
    max-width: 82%;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s;
}

.logo-link:hover {
    color: variable.$px-theme;
}

.nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li a {
    color: white;
    font-size: 1.08rem;
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 16px;
    transition: background 0.2s, color 0.2s;
}

.nav li a:hover,
.nav li a:focus,
.nav li a:active {
    background: #2e52bd0b;
    color: variable.$px-theme;
}

.cta-button {
    margin-left: 1.5rem;
    padding: 0.4rem 1.4rem;
    /* background: #3fa4c1; */
    color: #fff;
    font-size: 1.08rem;
    font-weight: 400;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #FFFFFF52;
    transition: background 0.2s;
}


/* .cta-button:hover {
    background: variable.$px-theme;
} */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 40px;
    margin-left: 1.2rem;
    cursor: pointer;
}

.hamburger .bar {
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .header {
        max-width: 98vw;
        padding: 0.5rem 1rem;
        background-color: transparent;
    }

    .nav ul {
        gap: 1.2rem;
        color: black;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        margin-left: 0.7rem;
    }
}

@media (max-width: 700px) {
    .header {
        max-width: 100vw;
        padding: 0.4rem 0.9rem;
    }

    .header img {
        width: 125px;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        background: rgb(255, 251, 251);
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        border-radius: 18px;
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.2rem 0;
        margin-top: 22px;
        z-index: 100;
    }
    
    .nav.active ul {
        display: flex;

    }

    .nav li a {
        color: #000;
    }

    .cta-button {
        display: block;
        color: black;
        border: 1px solid black;
        width: 55%;
        text-align: center;
    }

    .hamburger {
        display: flex;
        border: none;
        background-color: #2B4882;
        color: #fff;
        padding: .75rem;
        border-radius: 3.5rem;
        outline: none;
    }
}







/* nav end */





/* Hero Section */
.hero {
    padding-top: 140px;
    text-align: center;
    color: white;
    height: 100vh;
}

.tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    border-radius: 50px;
    color: #111;
    font-weight: 500;
    font-size: 18px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    animation: fadeUp 1s ease forwards;
}


@media (max-width: 768px) {
    .tagline {
        display: inline-block;
        background: rgba(255, 255, 255, 0.25);
        padding: 10px 25px;
        border-radius: 50px;
        color: #111;
        font-weight: 500;
        font-size: 16px;
        margin: 22px;
        backdrop-filter: blur(10px);
        margin-bottom: 40px;
        animation: fadeUp 1s ease forwards;
    }
}

.hero h1 {
    font-size: 62px;
    line-height: 1.2 !important;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero p {
    font-size: 20px;
    color: #f9f9f9;
    opacity: 0.9;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero .cta {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
}

.hero .btn-demo {
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 12px;
}


.harmony-logo {
    width: 140px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    height: 49px;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2 !important;
    }

    .hero p {
        font-size: 16px;
        padding: 0px 15px;
    }
}


/* horizontal scroll */


.wave-goodbye {
    background-color: #f4f4f4;
}


.clients {
    background: white;
    text-align: center;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .clients {
        background: white;
        text-align: center;
        padding: 40px 0;
    }

}

.clients h2 {
    font-size: 22px;
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .clients h2 {
        font-size: 16px;
        font-weight: 500;
        color: #1e1e1e;
        margin-bottom: 50px;
    }

}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    width: calc(250px * 12);
    /* total width = image width * total images */
    animation: scroll 25s linear infinite;
}

/* .slide-track:hover {
    animation-play-state: paused;
} */

.logo-slider img {
    width: 150px;
    height: auto;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slide-track {
        animation: scroll 18s linear infinite;
    }

    .logo-slider img {
        width: 120px;
        margin: 0 25px;
    }
}



/* stats section */

.stats-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .stats-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
        /* padding: 30px 20px; */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 15px;
    }

}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stats-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.stats-value {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.stats-label {
    font-size: 16px;
    color: #555;
}

/* Features */



/* agency section */

/* Section Styling */
.agency-section {
    padding: 80px 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .agency-section {
        padding: 10px 20px;
        align-items: center;
    }

}

.agency-heading {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .agency-heading {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 15px;
    }

}

.agency-text {
    color: #555;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Image grid */
/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Specific image sizing to match reference */
.image-grid img:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    height: 200px;
    /* Top-left*/
}

.image-grid img:nth-child(2) {
    grid-column: 1;
    grid-row: 2 / span 2;
    height: 380px;
    /* Left tall image */
}

.image-grid img:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 1;
    height: 250px;
    /* Right upper */
}

.image-grid img:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / span 1;
    height: 280px;
    /* Right lower */
}

/* Mobile responsive (disable fixed heights) */
@media (max-width: 992px) {
    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .image-grid img {
        height: auto !important;
        border-radius: 12px;
    }
}


.image-grid img.large {
    grid-column: span 2;
}

/* Animation */
.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease-out;
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Bullet list */
.agency-list {
    list-style: none;
    padding: 0;
}

.agency-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 15px;
}

.agency-list img.tick {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Responsive */
/* ✅ Fix horizontal overflow on mobile */
html,
body {
    overflow-x: hidden;
}

.agency-section,
.comparison,
.faq-section {
    overflow-x: hidden;
}

/* Ensure grid never exceeds mobile width */
@media (max-width: 992px) {
    .image-grid {
        width: 100%;
        margin-top: 10px;
        overflow-x: hidden;
    }

    .image-grid img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .slide-left {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Fix container side padding pushing out the layout */
    .container,
    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        align-items: center;
    }
}


/* features sec-2 */

.platform-section {
    padding: 20px 0;
}

.section-title {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 1.2 !important;
}

@media (max-width: 992px) {
    .section-title {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .display-desktop {
        display: none;
    }
}



.section-subtitle {
    color: #4c4c4c;
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Grid layout without boxes */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

/* Horizontal divider */
.info-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    transform: translateY(-50%);
}

/* Vertical divider */
.info-grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    transform: translateX(-50%);
}

.info-box {
    padding: 25px 30px;
    text-align: left;
}


@media (max-width: 768px) {
    .info-box {
    padding: 8px 30px;
    text-align: left;
}
}




.info-box img.icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 12px;
}

.info-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}



.info-box ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

.info-box ul li {
    position: relative;
    margin-bottom: 6px;
    color: #444;
    font-size: 1rem;
    line-height: 1.2;
}


@media (max-width: 768px) {
    .info-box ul li {
        position: relative;
        margin-bottom: 6px;
        color: #444;
        font-size: 16px;
        line-height: 1.2;
    }
}



/* Carousel Section */
.carousel-container {
    background-color: #eef3ff;
    border-radius: 20px;
    /* padding: 30px; */
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 1s ease;
}

/* Zoom on scroll */
[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

.carousel-inner img {
    width: 100%;
    border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .platform-section {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-grid::before,
    .info-grid::after {
        display: none;
    }

    /* .carousel-container {
        margin-top: 40px;
    } */
}



/* 5 P's section */


.five-p-row {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.five-p-left {
    flex: 0 0 30%;
    min-width: 200px;
}

.five-p-right {
    flex: 1 1 60%;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .five-p-row {
        flex-direction: column;
        align-items: stretch;
    }

    .five-p-left {
        min-width: auto;
    }

    .five-p-content {
        /* flex-direction: column; */
    }

}

/* Optional styling */
.five-p-left h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.five-p-right h6 {
    margin: 0 0 6px 0;
    font-weight: 600;
}

.five-p-right p {
    margin: 0;
    color: #555;
}

.five-p-section {
    padding: 30px 0;
    color: #fff;
    text-align: center;
    background-color: #2B4882;
}

@media (max-width: 768px) {
    .info-box ul li {
        position: relative;
        margin-bottom: 6px;
        color: #444;
        font-size: 16px;
        line-height: 1.2;
    }
}


.five-p-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .five-p-section h2 {
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 24px;
    }

}

/* Card container */
.five-p-card {
    background-color: #fff;
    color: #111;
    border-radius: 16px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto 60px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
    .five-p-card {
        background-color: #fff;
        color: #111;
        border-radius: 16px;
        padding: 30px;
        max-width: 900px;
        margin: 0 auto 60px auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin: 0px 20px;
    }
}

/* Tabs (top buttons) */
.five-p-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

/* Tab default style */
.five-p-tab {
    background-color: #f9f9f9;
    color: #333;
    padding: 0 28px;
    height: 55px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    transition: background-color 0.25s ease, border-color 0.25s ease, border-radius 0.25s ease;
}

/* Hover effect */
.five-p-tab:hover {
    background-color: #fff;
    border-color: #ddd;
}

/* Active tab — with gradient border & round radius */
.five-p-tab.active {
    background-color: #fff;
    color: #000;
    border: 1px solid transparent;
    /* border-image: linear-gradient(90deg, #ff4ecd, #5e42ff) 1; */
    border-radius: 8px !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.five-p-tab.active {
    position: relative;
    background-color: #fff;
    color: #000;
    border-radius: 8px !important;
    z-index: 1;
}


/* Match pseudo-element to radius */

.five-p-tab.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    /* ✅ Rounded corners applied */
    padding: 2px;
    /* ✅ thickness of border */
    background: linear-gradient(90deg, #ff4ecd, #5e42ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Tab icons */
.five-p-tab img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.22s ease;
}

.five-p-tab.active img {
    transform: translateY(-1px);
}

/* Card content */
.five-p-content {
    text-align: left;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 35px;
    padding-right: 20px;
}


@media (max-width: 992px) {
    .five-p-content {
        text-align: left;
        margin-top: 20px;
        transition: all 0.3s ease;
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
        padding: 0px 10px;
        /* padding-right: 20px; */
    }
}

.five-p-content .five-p-left {
    color: #1a1a1a;
}

.five-p-content .five-p-right {
    color: #1a1a1a;
}

.five-p-content h4 {
    font-weight: 700;
    margin-right: 226px;
}

.five-p-content h6 {
    font-weight: 600;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .five-p-content h6 {
        font-weight: 600;
        /* margin-top: 5px; */
        font-size: 16px;
    }

}

.five-p-content p {
    color: #555;
    margin-top: 8px;
    line-height: 1.6;
}

/* ===============================
       FIXED INFINITE SCROLLING TICKER
       =============================== */
.scrolling-text-container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.scrolling-wrapper {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}


@media (max-width: 992px) {
    .scrolling-wrapper {
        padding-top: 20px;
    }
}




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

    to {
        transform: translateX(-50%);
    }
}

/* text items */
.scrolling-text-container span {
    margin-right: 20px;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    white-space: nowrap;
}

/* Colorful dots beside text */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Fading edges */
.scrolling-text-container::before,
.scrolling-text-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.scrolling-text-container::before {
    left: 0;
    background: linear-gradient(to right, #2a4482 70%, transparent);
}

.scrolling-text-container::after {
    right: 0;
    background: linear-gradient(to left, #2a4482 70%, transparent);
}




/* CEO's section */


/* === Section Layout === */
.about-section {
    padding: 80px 0;
}

.about-img-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-img-container img.main-photo {
    width: 100%;
    border-radius: 16px;
    filter: grayscale(100%);
    object-fit: cover;
}

/* === Arrow Overlays === */
.arrow-link {
    position: absolute;
    display: block;
    width: 120px;
    /* adjust based on arrow image size */
}

/* Example positions — adjust visually */
.arrow-ceo {
    bottom: 20%;
    left: 15%;
}

.arrow-cpo {
    bottom: 25%;
    left: 45%;
}

.arrow-cto {
    bottom: 30%;
    right: 12%;
}

.arrow-link img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .arrow-link img {
        width: 135%;
        height: auto;
        transition: transform 0.3s ease;
    }

}

.arrow-link:hover img {
    transform: scale(1.05);
}

/* === Right Side Content === */
.about-content {
    background: linear-gradient(135deg, #c3d4ff 0%, #e4d3ff 50%, #c9ebff 100%);
    border-radius: 20px;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content h5 {
    background-color: #fff;
    color: #111;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    margin: 0 auto 15px;
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2 !important;
    font-size: 30px !important;
}

@media (max-width: 992px) {
    .about-content h2 {
        font-weight: 700;
        margin-bottom: 20px;
        color: #111;
        font-size: 24px !important;
    }
}


.about-content p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

@media(max-width:900px) {
    .about-content p {
        color: #333;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: center;
    }
}

.about-content .btn-primary {
    background-color: #645BEA;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-content .btn-primary:hover {
    background-color: #272249;
    transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 991px) {
    .about-content {
        /* margin-top: 30px; */
        text-align: center;
        padding: 40px 25px;
    }

    .about-content h5 {
        margin: 0 auto 15px;
    }

    .about-content .btn-primary {
        margin: 0 auto;
    }
}

/* Make sure the container doesn’t exceed viewport width */
.about-section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent arrows from overflowing out of their container */
.about-img-container {
    position: relative;
    overflow: hidden;
    /* this is important */
}

/* Fine-tune arrows for small screens */
@media (max-width: 768px) {
    .arrow-link {
        width: 70px;
    }

    .arrow-ceo {
        left: 8%;
    }

    .arrow-cpo {
        left: 38%;
    }

    .arrow-cto {
        right: 8%;
    }
}



.testimonials-section {
    padding: 40px 0px 50px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    background-color: #f4f4f4;
}

.testimonials-section h6 {
    color: black;
    border: none;
    padding: 8px 10px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    /* background-color: white; */
}

.testimonials-section h2 {
    font-weight: 700;
    margin-bottom: 35px;
    /* reduced */
    font-size: 30px;
}

@media(max-width:900px) {
    .testimonials-section h2 {
        font-weight: 700;
        margin-bottom: 35px;
        /* reduced */
        font-size: 24px;
    }
}

/* Testimonial cards */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    /* reduced padding */
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-text {
    font-size: 14px;
    /* reduced font */
    line-height: 1.5;
    color: #333;
}


#naveen-3dm h6 {
    width: 100%;
    line-height: 1 !important;
    padding: 0 !important;
    padding-left: 10px !important;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 16px;
        /* line-height: 1.5; */
        color: #333;
    }
}


.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Profile section */
.profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 0.3 !important;
}

.profile-info small {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
    display: block;
    padding-left: 10px;
}

.brand-icon {
    width: 130px;
    /* smaller logo */
    height: auto;
    object-fit: contain;
}

/* Stat cards */
.stat-card {
    border-radius: 10px;
    padding: 20px;
    /* reduced */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-weight: 500;
    max-width: 100%;
    margin: 0 auto;
}

.stat-card h3 {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 34px;
}

.stat-purple {
    background-color: #e9e5ff;
}

.stat-blue {
    background-color: #d8f0f7;
}

.stat-logo {
    width: 130px;
    margin-top: 10px;
    padding-top: 40px;
    /* margin-left: 70px; */
}

/* Grid spacing optimization */
.row.g-4 {
    --bs-gutter-x: 1.2rem;
    --bs-gutter-y: 1.2rem;
}

/* Responsive optimization */
@media (max-width: 991px) {
    .testimonials-section {
        height: auto;
        overflow-y: auto;
        margin: 0;
    }
}

@media (max-width: 767px) {

    .testimonial-card,
    .stat-card {
        /* text-align: center; */
        max-width: 100%;
        padding: 18px;
    }

    .testimonial-footer {
        justify-content: center;
    }

    .brand-icon {
        width: 82px;
        margin-left: 72px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .stat-logo {
        width: 130px;
        margin-top: 0px;
        padding-top: 0px;
    }
}


@media (max-width: 767px) {

    /* Override centering for text only */
    .testimonial-card .testimonial-text,
    .testimonial-card .profile-info,
    .testimonial-card p,
    .testimonial-card h6,
    .testimonial-card small {
        text-align: left !important;
    }

    /* Keep layout aligned nicely */
    .testimonial-footer {
        justify-content: flex-start;
    }
}



/* ------------------------------------------------------------------------------------ */
html,
body {
    overflow-x: hidden;
}

.agency-section,
.comparison,
.faq-section {
    overflow-x: hidden;
}

/* Ensure grid never exceeds mobile width */
@media (max-width: 992px) {
    .image-grid {
        width: 100%;
        margin-top: 10px;
        overflow-x: hidden;
    }

    .image-grid img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .slide-left {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Fix container side padding pushing out the layout */
    .container,
    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}



/* comparison section */

section.comparison {
    text-align: center;
    padding: 50px 20px;
    color: #fff;
    background-color: #2f4b88;

}

section.comparison h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
}

@media(max-width:900px) {
    section.comparison h2 {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 10px;
    }
}

section.comparison p {
    font-size: 15px;
    color: #d3d3d3;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .image-grid {
        width: 100%;
        margin-top: 10px;
        overflow-x: hidden;
    }
}

.btn-comparison {
    color: #645BEA;
    border: none;
    padding: 8px 10px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

/* .btn-comparison:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 68, 204, 0.4);
}
 */

.start-free-trial-btn-comparison {
    background-color: #645BEA;
    color: white;
    border: none;
    padding: 14px 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 195px;
    font-size: 16px;
}

.start-free-trial-btn-comparison:hover {
    background-color: #272249;
    transform: scale(1.05);

}

.comparison-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.card {
    border-radius: 20px;
    width: 350px;
    max-width: 100%;
    padding: 30px 30px 40px;
    text-align: left;
    color: #111;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.card.other {
    border: 2px solid #ddd;
    background-color: #ebe0e0;
}

.card.harmony {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #FF6B00, #FF44CC) border-box;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 68, 204, 0.25);
}

.card h3 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    font-size: 18px;
    color: #111;
}

.vs-image {
    width: 50px;
    height: auto;
    display: block;
    position: relative;
    top: 0;
    transform: translateY(-10px);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tick {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.harmony-logo {
    width: 145px;
    height: 50px;
}

@media (max-width: 900px) {
    section.comparison {
        padding: 40px 15px;
    }

    .comparison-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .card {
        width: 90%;
        max-width: 360px;
        padding: 25px 20px 30px;
        border-radius: 15px;
    }

    .comparison-list li {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .tick {
        width: 16px;
        height: 16px;
    }

    .harmony-logo {
        width: 120px;
        height: auto;
    }

    .vs-image {
        width: 55px;
        margin: 5px 0;
        transform: none;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
        /* padding: 0 10px; */
    }

    .btn-comparison,
    .start-free-trial-btn-comparison {
        /* padding: 10px 18px; */
        font-size: 14px;
        border-radius: 8px;
    }
}



/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #fff;
    overflow: hidden;
}

.faq-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
    font-size: 30px;
}

@media(max-width:900px) {
    .faq-section h2 {
        font-weight: 700;
        margin-bottom: 40px;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease-out forwards;
        font-size: 24px;
    }
}



@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    text-align: left;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: black;
    gap: 20px;
    padding: 18px 18px;
}

@media(max-width:900px) {
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 18px;
        color: black;
        gap: 20px;
        padding: 5px 0px;
    }
}



.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 16px;
    /* color: #444; */
    line-height: 1.6;
    padding: 0px 18px;
}

@media(max-width:900px) {
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
        font-size: 16px;
        /* color: #444; */
        line-height: 1.2;
        padding: 0px !important;
    }
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}

.faq-icon {
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item .faq-icon::before {
    content: "+";
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon::before {
    content: "–";
}

.faq-item:hover {
    /* background-color: #f9f9f9; */
    transition: background-color 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-column {
        margin-bottom: 30px;
        padding: 0px 20px;
    }
}

/* HERO / CTA SECTION */
.hero-cta {
    background: var(--bg-hero);
    color: #ffffff;
    padding: 56px 0 36px;
    text-align: center;
    position: relative;
}

.hero-cta .pre {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.hero-cta h1 {
    margin: 0;
    font-family: "Switzer", "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 48px);
    /* responsive */
    line-height: 1.05;
    color: var(--muted-white);
}

.hero-cta h1 .accent {
    color: var(--accent);
    font-weight: 700;
}

.hero-cta .sublist {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    /* align-items: center; */
}

.hero-cta .cta-btn {
    margin-top: 20px;
    background: #645BEA;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(123, 99, 255, 0.18);
}

.hero-cta .cta-btn:hover {
    background-color: #272249;
}


.hero-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 32px 0 0;
    opacity: 0.6;
}

/* FOOTER */
footer.site-footer {
    background: #2f4b88;
    color: #fff;
    padding: 28px 0 36px;
}

.footer-left .footer-logo {
    width: 64px;
    height: 64px;
    object-fit: cover;

}

.footer-left .desc {
    font-family: "Switzer", "Inter", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

/* email box style */
.email-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 18px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    transition: background .18s ease, transform .12s ease;
    font-weight: 600;
    min-width: 220px;
}

.email-box svg.icon-mail {
    width: 18px;
    height: 18px;
    opacity: 0.95;
}

.email-box svg.icon-arrow {
    width: 18px;
    height: 18px;
    margin-left: auto;
    opacity: 0.95;
}

.email-box:hover {
    background: #272249;
    transform: translateY(-2px);
}

.site-footer {
    background: #2f4b88;
    color: #fff;
    padding: 40px 0 30px;
    font-family: "Inter", sans-serif;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center !;
    /* vertically centers all three columns */
    flex-wrap: wrap;
    gap: 40px;
}

/* left */
.footer-left .footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-left .desc {
    font-family: "Inter-Display", "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-align: left;

}

/* email box */
.email-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 16px;
    width: fit-content;
    font-weight: 500;
    transition: all 0.2s ease;
}

.email-box:hover {
    background: #272249;
}

/* middle */
.footer-middle h6 {
    font-family: "Switzer", "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-middle a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 4px 0;
    text-align: left;
}

.footer-middle a:hover {
    opacity: 1;
}

/* right */
.footer-right h6 {
    font-family: "Switzer", "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.social-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* bottom row */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);

}

.footer-bottom .privacy {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* responsive */
@media (max-width: 767px) {
    .footer-row {
        flex-direction: row;
        text-align: center;
        align-items: center !important;
        gap: 24px;
        padding: 0px 50px;

    }

    .hero-cta {
        padding: 56px 0 0px;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        align-items: center;
    }

    .email-box {
        justify-content: center;
        width: 100%;
    }

    .logoo {
        display: flex !important;
        flex-direction: row;
    }

    .socialone {
        display: flex !important;
    }

    .hero-cta .sublist {
        flex-direction: column;
        /* text-align: left; */
        /* margin-left: 20px; */
        padding: 0px 50px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

:root {
    --bg-hero: #2f4b88;
    /* hero area background (deep blue) */
    --bg-footer: #2f4b88;
    /* same as hero for continuous look */
    --accent: #7b63ff;
    /* purple accent for CTA */
    --muted-white: rgba(255, 255, 255, 0.95);
}

/* =============================
       Growth Contact Section Styles
       ============================= */
.growth-contact-section {
    background-color: #f7f8fb;
    font-family: "Inter", sans-serif;
    padding: 80px 20px;
    align-items: center;
}

/* Equal height columns */
.growth-contact-section .row {
    align-items: stretch !important;
}

/* Left Image */
.growth-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    position: relative;
}

.growth-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transform-origin: center center;
}

/* Right Form Card */
.growth-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 40px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.growth-heading {
    font-family: "Switzer", "Inter", sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 17px;
    color: #111;
}

.growth-subtext {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Labels */
.growth-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 4px;
    display: block;
}

/* Inputs */
.growth-input {
    background-color: #f3f4f6;
    border: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.95rem;
    color: #333;
}

.growth-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00000010;
}

.growth-textarea {
    resize: none;
    min-height: 110px;
}

/* Button */
.growth-btn {
    background-color: #645BEA;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
    margin-top: 15px;
}

.growth-btn:hover {
    background-color: #272249;
    transform: scale(1.05);
    color: white;
}

/* Responsive */
@media (max-width: 767.98px) {
    .growth-form-card {
        margin-top: 16px;
        padding: 20px;
        text-align: center;
        height: auto !important;
    }

    .growth-btn {
        width: 100%;
        /* margin-left: 45px; */
    }

    .faq-section {
        padding-bottom: 0px !important;
    }

    .growth-image-wrapper {
        height: 250px;
    }

    .growth-label {
        text-align: left;
    }

    .growth-contact-section {

        padding: 25px 0px;

    }
}






:root {
    --bg: #fafafa;
    --muted: #bdbdbd;
    --text: #0a0a0a;

    /* tweak these to move arrow relative to the heading end */
    --arrow-top: -8px;
    /* negative moves arrow up */
    --arrow-right: -12px;
    /* negative moves arrow further right beyond heading end */
}

body {
    margin: 0;
    background: var(--bg);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}


/* row with zero gap so right column sits close */
.row-tight {
    column-gap: 0;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

/* LEFT heading: EXACT 46px */
.left-col {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 6px;
}

.big-title {
    font-size: 46px;
    /* requested size */
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}

.accent-lines::before,
.accent-lines::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: 2px;
    background: #111;
    border-radius: 2px;
}

.accent-lines::after {
    left: 10px;
    top: 8px;
    width: 4px;
    transform: rotate(-16deg);
}

/* ARROW: absolute inside left-col — sits above the end of the heading */
.arrow-wrap {
    position: absolute;
    top: var(--arrow-top);
    right: calc(60.093727px + var(--arrow-right, 0px));
    width: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    pointer-events: none;
    transition: transform .18s, opacity .18s, filter .18s;
}

.arrow-img {
    width: 78px;
    height: auto;
    opacity: 1;
    /* always visible on desktop */
    transform: none;
    filter: none;
    box-shadow: none;
    display: block;
}

/* RIGHT list */
.right-col {
    display: flex;
    align-items: center;
}

.right-viewport {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* add vertical space between each text */
.right-inner {
    display: flex;
    flex-direction: column;
    gap: 7px;
    /* adds space between each right-item */
    will-change: transform;
}

.right-item {
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    /* slightly more line height */
    padding: 0.25rem 0;
    /* vertical padding above & below each line */
    white-space: nowrap;
    color: var(--muted);
    opacity: 0.25;
    transition: transform 0.18s, opacity 0.18s;
    padding-left: 5px !important;
}

.right-item.active {
    opacity: 1;
    color: transparent;
    background-image: linear-gradient(90deg, #645BEA, #2B4882, #45CFF4);
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1.02);
}

.right-item.prev1,
.right-item.next1 {
    opacity: 0.72;
}

.right-item.prev2,
.right-item.next2 {
    opacity: 0.56;
}

.right-item.prev3,
.right-item.next3 {
    opacity: 0.42;
}

.right-item.prev4,
.right-item.next4 {
    opacity: 0.30;
}

/* make sure transforms don't overflow container unexpectedly */
.right-viewport,
.right-inner {
    box-sizing: border-box;
}

/* ---------- MOBILE ADJUSTMENTS (<= 767.98px) ---------- */
@media (max-width:767.98px) {

    /* Force the row to stack vertically so left (heading) is always above right (list) */
    .row-tight {
        flex-direction: column;
        align-items: stretch;
        /* make columns full width */
        row-gap: 18px;
        column-gap: 0;
    }

    /* Left & right full width and centered */
    .left-col,
    .right-col {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0 12px;
        min-height: auto;
        z-index: 5;
        /* ensure heading sits above the list */
        position: relative;
        /* create stacking context */
    }

    /* Reduce heading size and allow wrapping safely */
    .big-title {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        font-size: clamp(28px, 6.5vw, 36px);
        line-height: 1.05;
        margin: 0;
        display: block;
    }

    /* Hide arrow on small screens */
    .arrow-wrap {
        display: none;
    }

    /* Make right list centered, smaller and give top spacing so it cannot overlap the heading
         NOTE: set overflow:hidden so oversized items don't paint over the heading */
    .right-viewport {
        width: 100%;
        overflow: hidden;
        /* IMPORTANT: prevent list from drawing over the heading */
        justify-content: center;
        margin-top: 10px;
        /* safe space between heading and list */
        padding-top: 8px;
        /* small inner padding */
        box-sizing: border-box;
    }

    /* Stack and center items in the list */
    .right-inner {
        align-items: center;
        gap: 10px;
        z-index: 1;
        /* keep list behind heading */
    }

    /* Reduce the large desktop font-size so text fits on narrow screens */
    .right-item {
        font-size: clamp(20px, 7.5vw, 34px);
        /* responsive size between 20 and 34 */
        font-weight: 700;
        line-height: 1.05;
        padding: 0.15rem 0;
        white-space: nowrap;
        color: var(--muted);
        opacity: 0.25;
        transition: transform 0.18s, opacity 0.18s;
        padding-left: 5px !important;
        text-align: center;
    }

    /* active item still highlighted */
    .right-item.active {
        opacity: 1;
        color: transparent;
        background-image: linear-gradient(90deg, #5f2eea, #3ac7ff);
        -webkit-background-clip: text;
        background-clip: text;
        transform: scale(1.02);
    }

    /* ensure transforms from the list cannot draw over the heading */
    .right-inner,
    .right-item {
        z-index: 1;
    }

    /* minor tweak so large items don't overflow screen edges */
    .right-viewport,
    .right-inner {
        max-width: 100%;
        box-sizing: border-box;
    }

}

/* Scroll animation */



:root {
    --bg: #fafafa;
    --muted: #bdbdbd;
    --text: #0a0a0a;

    /* tweak these to move arrow relative to the heading end */
    --arrow-top: -15px;
    /* negative moves arrow up */
    --arrow-right: -7px;
    /* negative moves arrow further right beyond heading end */
}

/* body{
      margin:0;
      background:var(--bg);
      font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      -webkit-font-smoothing:antialiased;
      min-height:100vh;
    } */


:root {
    --ux-gap: 6px !important;
}

.main-scroll-start {
    height: 100%;
    margin: 0;
    background: #fafafa;
}

.ux-page-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .ux-page-center {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 0;
        box-sizing: border-box;
    }

}

.ux-container {
    width: 100%;
    max-width: 1200px;
}

.ux-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ux-left,
.ux-right {
    flex: 1 1 50%;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.ux-left {
    text-align: right;
    padding-right: 12px;
    padding-bottom: 30px;
}

.ux-title {
    font-size: clamp(28px, 4vw, 64px);
    font-weight: 800;
    margin: 0;
    line-height: 1;
    display: inline-block;
    position: relative;
}

.ux-tick {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}

.ux-tick span {
    background: #000;
    width: 7px;
    height: 2px;
    display: block;
}

.ux-arrow {
    position: absolute;
    right: 0;
    top: 2% !important;
    transform: translateY(-50%) !important;
    width: 132px;
    pointer-events: none;
}

.ux-arrow img {
    width: 100%;
    height: auto;
    display: block;
}

.ux-right-viewport {
    overflow: hidden;
    height: 240px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
}

.ux-stack {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--ux-gap);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.ux-item {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 40px !important;
    line-height: 1 !important;
    color: #999;
    opacity: 0.40 !important;
    transition: all .1s ease !important;
    white-space: nowrap;
    transform-origin: center;
    -webkit-font-smoothing: antialiased;
    font-family: "Inter", sans-serif;
}

/* above fading (upwards) */
.ux-above-1 {
    opacity: 0.28;
}

.ux-above-2 {
    opacity: 0.16;
}

.ux-above-3 {
    opacity: 0.02;
}

/* below graduated, mirrored */
.ux-below-1 {
    opacity: 0.82;
    color: black;
}

.ux-below-2 {
    opacity: 0.62;
    color: black
}

.ux-below-3 {
    opacity: 0.38;
    color: black
}

/* active looks stronger; extra styles (glow) will be animated by JS */
.ux-active {
    opacity: 1 !important;
    background: linear-gradient(90deg, #645BEA, #2B4882, #45CFF4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* removed scale to avoid zooming */
    font-weight: 600;
    text-shadow: 0 6px 18px rgba(106, 67, 255, 0.06), 0 2px 6px rgba(25, 176, 255, 0.04);
}

/* responsive column layout on mobile */
@media (max-width: 767px) {
    .ux-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background-color: #f4f4f4;
        padding-top: 40px;
    }

    .ux-left,
    .ux-right {
        flex: none;
        width: 100%;
    }

    .ux-left {
        text-align: left;
        padding-right: 0;
        padding-left: 12px;
    }

    .ux-right-viewport {
        height: 199px !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    .ux-arrow {
        display: none;
    }

    .ux-title {
        padding-left: 6px;
        font-size: 32px;
    }

    .ux-tick {
        left: 6px;
    }

    .ux-item {
        text-align: left;
        white-space: normal;
        font-size: 24px !important;
    }
}

@media (max-width:991px) {
    .ux-right-viewport {
        height: 220px;
    }
}

/* end mobile adjustments */



/* -------------TEST-------------- */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* ===== Video background ===== */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Hide mobile video by default */
.mobile-video {
    display: none;
}

/* Show mobile video below 768px */
@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}

/* ===== Content ===== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* subtle overlay for readability */
    z-index: 1;
}

/* Headings & text */
.hero h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero .tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

/* Button */
.hero .btn-demo {
    background: rgb(100, 91, 234);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s ease;
}

.hero .btn-demo:hover {
    background: rgb(80, 70, 220);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero .tagline {
        font-size: 14px;
        padding: 8px 18px;
    }
}