/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    color: #2e4257;
    background-color: #f6f6f6;
    overflow-x: hidden;
}

.landing-page {
    width: 100%;
    overflow: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    min-height: 92px;
    width: 100%;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 92px;
    position: relative;
    z-index: 100;
}

.logo {
    aspect-ratio: 1.93;
    object-fit: contain;
    width: 131px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #2e4257;
    font-weight: 400;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #0b66c3;
}

.nav-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin-bottom: 4px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}

.register-btn {
    border-radius: 30px;
    background: transparent;
    border: 2px solid #2e4257;
    color: #2e4257;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font: 18px 'Lato', sans-serif
}

.register-btn:hover {
    background-color: #2e4257;
    color: #fff;
    transform: translateY(-2px);
}

.login-btn {
    border-radius: 30px;
    background-color: #0b66c3;
    border: none;
    color: #fff;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font: 18px 'Lato', sans-serif;
}

.login-btn:hover {
    background-color: #094a8a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    display: flex;
    width: 100%;
    padding-left: 100px;
    align-items: center;
    gap: 42px;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #f1f1f1;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    margin-top: 32px;
    min-width: 605px;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
}

.main-heading {
    color: #2e4257;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 600;

}

.dynamic-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 36px;
    font-weight: 600;
    margin-top: 0;
}

.with-text {
    color: #2e4257;
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 600;
}

.changing-words {
    height: 1.5em;
    overflow: hidden;
    width: 199px;
    position: relative;
    display: flex;
    font-size: 36px;
    font-weight: 600;


}

.changing-words span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    color: #0b66c3;
    animation: wordCycle 8s linear infinite;
}

/* Stagger the animation for each word */
.changing-words span:nth-child(1) {
    animation-delay: 0s;
}

.changing-words span:nth-child(2) {
    animation-delay: 2s;
}

.changing-words span:nth-child(3) {
    animation-delay: 4s;
}

.changing-words span:nth-child(4) {
    animation-delay: 6s;
}

@keyframes wordCycle {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

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

.cta-button {
    border-radius: 30px;
    background-color: #0b66c3;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f2f2f2;
    padding: 12px 32px;
    font: 18px 'Lato', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #094a8a;
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.24);
}

.cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Lato', sans-serif;
    color: #2e4257;
}

.hero-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.action-buttons {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    flex-wrap: wrap;
}

.demo-btn,
.offer-btn {
    border-radius: 30px;
    border: 2px solid #2e4257;
    background: transparent;
    color: #2e4257;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    font: 18px 'Lato', sans-serif;
}

.demo-btn:hover,
.offer-btn:hover {
    background-color: #2e4257;
    color: #fff;
    transform: translateY(-2px);
}

.feature-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e4257;
    text-align: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    font: 400 14px 'Lato', sans-serif;
}

.feature-tag {
    border-radius: 27px;
    background-color: #dde9f3;
    padding: 8px 16px;
    white-space: nowrap;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #2e4257;
    justify-content: flex-start;
    flex-wrap: wrap;
    font: 500 18px 'Lato', sans-serif;
}

.ai-badge {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: center;
    line-height: 0.8;
    padding: 3px 4px 16px;
}

.ai-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-top: -3px;
}

.ai-text {
    margin-top: 24px;
}

.ai-large {
    font-weight: 800;
    font-size: 28px;
    line-height: 24px;
    color: #2e4257;
}

.ai-small {
    font-size: 16px;
    color: #2e4257;
}

.divider {
    width: 1px;
    height: 59px;
    border: 1px solid #becfde;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    line-height: 0.8;
}

.payment-text {
    color: #2e4257;
    font: 500 16px 'Lato', sans-serif;
}

.payment-icons {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Contrail One', sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 18px;
}

.pricing-header img {
    width: 40%;
}

.pricing-icon {
    width: 43px;
    height: auto;
    object-fit: contain;
}

.pricing-text {
    width: 99px;
    font: 500 16px 'Lato', sans-serif;
}

.hero-image {

    min-width: 240px;
}

/* Solutions Section */
.solutions-section {
    background-color: #fffbf6;
    display: flex;
    min-height: 416px;
    width: 100%;
    align-items: center;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 28px 92px;
}

.solutions-content {
    flex: 1;
    min-width: 424px;
    color: #2e4257;
    font: 600 46px/60px 'Lato', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: inherit;
    line-height: 1.3;
    color: inherit;
    margin: 0;
}

.solutions-visual {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65x 65px;
    position: relative;
}

.diamond-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    height: 500px;
}

.diamond-box {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: #fff;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 24px;
    transition: all 0.3s ease;
}

.diamond-box:hover {
    transform: rotate(45deg) translate(-2.83px, -2.83px);
    box-shadow: 0px 12px 32px rgba(46, 66, 87, 0.18);
}

.diamond-box.center:hover {
    transform: translate(-50%, calc(-50% - 8px)) rotate(45deg);
    box-shadow: 0px 12px 32px rgba(46, 66, 87, 0.18);
}

.diamond-box.top-left {
    top: 30px;
    left: 30px;
}

.diamond-box.top-right {
    top: 30px;
    right: 30px;
}

.diamond-box.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 160px;
    height: 160px;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.16);
    z-index: 2;
}

.diamond-box.bottom-left {
    bottom: 30px;
    left: 30px;
}

.diamond-box.bottom-right {
    bottom: 30px;
    right: 30px;
}

.diamond-content {
    transform: rotate(-45deg);
    color: #2e4257;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.diamond-box.center .diamond-content {
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.content-wrapper {
    width: auto;
    align-self: center;
}

/* Metrics Section */
.metrics-section {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 80px;
    font-family: 'Lato', sans-serif;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 72px 92px;
}

.metrics-header {
    flex: 1;
    min-width: 343px;
    font-size: 46px;
    color: #2e4257;
    font-weight: 600;
    line-height: 60px;
}

.metrics-grid {
    flex: 1;
    min-width: 498px;
    display: flex;
    align-items: flex-start;
    gap: 36px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.metric-item {
    flex: 1;
    min-width: 210px;
}

.metric-number {
    color: #0b66c3;
    font-size: 36px;
    font-weight: 700;
}

.metric-label {
    color: #2e4257;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 9px;
}

/* Features Section */
.features-section {
    background-color: #eaf4ff;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 95px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 72px 92px;
}

.features-header {
    flex: 1;
    min-width: 343px;
    color: #2e4257;
    font: 600 46px/60px 'Lato', sans-serif;
}

.features-grid {
    flex: 1;
    min-width: 632px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.feature-card {
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0px 8px 8px rgba(153, 143, 185, 0.08);
    display: flex;
    min-height: 226px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 181px;
    padding: 21px 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 32px rgba(46, 66, 87, 0.18);
}

.feature-icon-wrapper {
    border-radius: 4px;
    background-color: #eaf4ff;
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}

.feature-icon {
    width: 44px;
    height: auto;
    object-fit: contain;
}

.feature-title {
    color: #2e4257;
    text-align: center;
    margin: 12px 0;
    font: 600 20px 'Lato', sans-serif;
}

.feature-description {
    color: #2e4257;
    text-align: center;
    font: 400 18px 'Lato', sans-serif;
    margin: 0;
}

/* Budget Section */
.budget-section {
    background-color: #eaf4ff;
    display: flex;
    min-height: 532px;
    width: 100%;
    align-items: center;
    gap: 129px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 92px;
}

.budget-content {
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.budget-text {
    flex: 1;
    min-width: 457px;
    font-family: 'Lato', sans-serif;
    color: #2e4257;
    width: 100%;
}

.budget-title {
    color: #2e4257;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.budget-description {
    color: #2e4257;
    font-size: 20px;
    line-height: 1.3em;
    margin-bottom: 32px;
}

.budget-features {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.budget-feature {
    border-radius: 27px;
    background-color: #ced7e6;
    color: #2e4257;
    padding: 8px 16px;
    white-space: nowrap;
}

.pricing-card {
    flex: 1;
    padding-top: 20px 20px;
    width: 100%;
    max-width: 320px;
    min-width: 220px;
    margin: 0 auto;
}

.pricing-content {
    border-radius: 23px;
    background: linear-gradient(135deg, #5E7485 0%, #2D4151 100%);
    display: flex;
    min-height: 120px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 18px;
    margin: 18px 0;
}

.pricing-header {
    display: flex;
    min-height: 110px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    justify-content: center;
    padding: 10px 0;
}

.pricing-label {
    font-size: 18px;
    color: #ffd299;
    font-weight: 500;
}

.pricing-amount {
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    margin-top: 7px;
}

.pricing-button {
    border-radius: 7px;
    background-color: #0b66c3;
    border: none;
    color: #fff;
    padding: 18px 18px;
    font: 600 16px 'Lato', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: #094a8a;
    transform: translateY(-2px);
}

/* Keywords Section */
.keywords-section {
    background-color: #fff;
    width: 100%;
    padding: 73px;
    font: 20px 'Lato', sans-serif;
    color: #2e4257;
}

.keywords-container {
    width: 100%;
    position: relative;
}

.keywords-category {
    margin-bottom: 30px;
    position: relative;
}

.category-title {
    color: #2e4257;
    text-transform: capitalize;
    font: 800 20px/150% 'Lato';
    margin-bottom: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    z-index: 2;
}

.scrolling-tags {
    margin-left: 236px;
    height: 58px;
    overflow: hidden;
    position: relative;
    background-color: #f6f6f6;
    border-radius: 4px;
}

.scrolling-tags::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f6f6f6 0%, transparent 10%, transparent 90%, #f6f6f6 100%);
    z-index: 1;
    pointer-events: none;
}

.designations-scroll {
    animation: scrollRight 25s linear infinite;
}

.salary-scroll {
    animation: scrollRight 30s linear infinite;
}

.industries-scroll {
    animation: scrollRight 35s linear infinite;
}

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

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

.tag-item {
    display: inline-flex;
    padding: 10px 24px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background-color: #f6f6f6;
    color: #2e4257;
    text-align: center;
    text-transform: uppercase;
    font: 600 16px/150% 'Lato';
    white-space: nowrap;
    margin-right: 10px;
}

/* Footer */
.footer {
    width: 100%;
    padding: 34px 92px;
}


.footer-links {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 100px;
    color: #2e4257;
    justify-content: space-between;
    flex-wrap: wrap;
    font: 400 16px 'Lato', sans-serif;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-link {
    color: #2e4257;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0b66c3;
}

.footer-logo {
    aspect-ratio: 1.93;
    object-fit: contain;
    width: 131px;
    height: auto;
}

.footer-bottom {
    display: flex;
    margin-top: 96px;
    width: 382px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.social-links {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
}

.copyright {
    color: #828282;
    margin-top: 30px;
    font: 600 16px 'Lato', sans-serif;
    text-align: center;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    position: relative;
}

.hamburger-bar {
    width: 28px;
    height: 3px;
    background: #2e4257;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar {
        padding: 0 20px;
        gap: 40px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 24px rgba(0, 0, 0, 0.12);
        padding: 80px 32px 32px 32px;
        gap: 32px;
        z-index: 150;
        align-items: flex-start;
        transition: transform 0.3s;
        transform: translateX(100%);
        order: 3;
    }

    .nav-menu.open {
        display: flex;
        transform: translateX(0);
    }

    .nav-item {
        flex-direction: row;
        padding: 12px 0;
        font-size: 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-icon {
        margin-bottom: 0;
        margin-right: 12px;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 32px;
    }

    .register-btn,
    .login-btn {
        width: 100%;
        text-align: center;
    }

    header>.auth-buttons {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        padding: 0 20px;
        gap: 40px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        /* Remove duplicate padding property if present */
    }

    .nav-menu {
        gap: 24px;
        font-size: 16px;
    }

    .nav-item {
        padding: 0 12px;
    }

    .auth-buttons {
        font-size: 18px;
        gap: 8px;
    }

    .hero-section {
        padding-left: 20px;
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content {
        min-width: auto;
        width: 100%;
        gap: 32px;
    }

    .hero-text {
        font-size: 36px;
        width: 100%;
        align-items: center;
    }

    .main-heading {
        font-size: 36px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .dynamic-text {
        font-size: 36px;
        flex-direction: row;
        gap: 10px;
    }

    .with-text {
        width: 400px;
        ;
    }

    .changing-words {
        height: 1.6em;
        width: 100%;
    }

    .hero-description {
        font-size: 36px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .demo-btn,
    .offer-btn {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }

    .feature-tags {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
        gap: 15px;
    }

    .divider {
        height: 40px;
    }

    .dashboard-image {
        max-width: 100%;
    }

    .solutions-section {
        padding: 20px;
        flex-direction: column;
        min-height: auto;
    }

    .solutions-content {
        min-width: auto;
        text-align: center;
        font-size: 36px;
        line-height: 1.2;
    }

    .solutions-visual {
        padding: 10px 20px;
    }

    .diamond-container {
        max-width: 500px;
        height: 400px;
    }

    .diamond-box {
        width: 150px;
        height: 150px;
    }

    .diamond-box.center {
        width: 170px;
        height: 170px;
    }

    .diamond-box.top-left,
    .diamond-box.bottom-left {
        left: 40px;
    }

    .diamond-box.top-right,
    .diamond-box.bottom-right {
        right: 40px;
    }

    .diamond-content {
        font-size: 14px;
        padding: 15px;
        line-height: 20px;
    }

    .diamond-box.center .diamond-content {
        font-size: 16px;
        padding: 20px;
        line-height: 22px;
    }

    .metrics-section {
        padding: 40px 20px;
        gap: 40px;
        flex-direction: column;
    }

    .metrics-header {
        min-width: auto;
        font-size: 36px;
        line-height: 1.2;
        text-align: center;
    }

    .metrics-grid {
        min-width: auto;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .metric-item {
        min-width: 300px;
    }

    .metric-number {
        font-size: 34px;
    }

    .features-section {
        padding: 40px 20px;
        gap: 40px;
        flex-direction: column;
    }

    .features-header {
        min-width: auto;
        font-size: 36px;
        line-height: 1.2;
        text-align: center;
    }

    .features-grid {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .feature-card {
        max-width: 200px;
        flex: none;
    }

    .ai-capabilities-section {
        height: auto;
        min-height: 600px;
        padding: 40px 20px;
        flex-direction: column;
    }

    .ai-content {
        width: 100%;
        max-width: 560px;
        position: static;
    }

    .ai-title {
        font-size: 36px;
    }

    .ai-description {
        font-size: 18px;
    }

    .ai-button {
        position: static !important;
        width: 280px !important;
        margin: 10px auto !important;
        left: auto !important;
        top: auto !important;
    }

    .background-image {
        width: 400px;
        height: 400px;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }

    .budget-section {
        padding: 40px 20px;
        gap: 40px;
        flex-direction: column;
        min-height: auto;
    }

    .budget-text {
        min-width: auto;
        width: 100%;
    }

    .budget-title {
        font-size: 36px;
    }

    .budget-description {
        font-size: 20px;
    }

    .budget-features {
        justify-content: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 300px;
        padding-top: 40px;
    }

    .pricing-amount {
        font-size: 48px;
    }

    .keywords-section {
        padding: 40px 20px;
    }

    .keywords-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .category-title {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: auto;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .scrolling-tags {
        margin-left: 0;
        height: 50px;
        animation: scrollRightMobile 25s linear infinite !important;
    }

    .tag-item {
        padding: 8px 16px;
        font-size: 16px;
        margin-right: 8px;
    }

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

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

    .footer {
        padding: 40px 20px;
    }

    .footer-links {
        gap: 40px;
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        gap: 20px;
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 40px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-text {
        font-size: 32px;
        align-items: center;
        width: 100%;
    }

    .main-heading {
        font-size: 32px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .with-text {
        font-size: 32px;
    }

    .dynamic-text {
        font-size: 32px;
    }

    .hero-description {
        font-size: 20px;
    }

    .dynamic-text {
        height: 50px;
        width: 100%;
        flex-direction: row;
        font-size: 32px;
    }

    .changing-words {
        height: 1.5em;
        width: 100%;
        align-items: flex-start;
        font-size: 32px;
    }

    .solutions-content {
        font-size: 24px;
    }

    .diamond-container {
        flex-direction: column;
        position: static;
        gap: 24px;
        height: auto;
    }

    .diamond-box {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        padding: 24px;
        border-radius: 16px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .diamond-content {
        transform: none !important;
        padding: 0 !important;
        font-size: 16px !important;
        line-height: 24px !important;
        text-align: center;
    }

    .metrics-header {
        font-size: 28px;
    }

    .metrics-grid {
        gap: 26px;
    }

    .metric-item {
        min-width: 100px;
    }

    .features-header {
        font-size: 28px;
    }

    .feature-card {
        min-width: 100%;
    }

    .ai-title {
        font-size: 28px;
    }

    .ai-description {
        font-size: 16px;
    }

    .ai-button {
        width: 100% !important;
        font-size: 16px !important;
        padding: 15px 25px !important;
    }

    .background-image {
        width: 300px;
        height: 300px;
    }

    .budget-title {
        font-size: 28px;
    }

    .budget-text {
        text-align: center;

    }

    .budget-content {
        gap: 0px;
    }

    .budget-description {
        font-size: 18px;
    }

    .scrolling-tags {
        height: 45px;
        animation: scrollRightMobile 20s linear infinite !important;
    }

    .tag-item {
        padding: 6px 12px;
        font-size: 14px;
        margin-right: 6px;
    }

    .category-title {
        font-size: 16px;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #0b66c3;
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.main-footer {
    background-color: rgba(10, 46, 76, 1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    padding: 34px 134px 68px;
}

@media (max-width: 991px) {
    .main-footer {
        padding: 46px 60px;
    }
}

.footer-content {
    display: flex;
    width: 100%;
    align-items: start;
    font-family: Lato, -apple-system, Roboto, Helvetica, sans-serif;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .footer-content {
        max-width: 100%;
    }
}

.footer-navigation {
    display: flex;
    min-width: 240px;
    gap: 24px;
    justify-content: start;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .footer-navigation {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-navigation {
        margin-bottom: 28px;
    }
}

.company-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 213px;
}

@media (max-width: 991px) {
    .company-section {
        width: 213px;
    }
}

.community-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 213px;
}

.integrations-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 240px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 231px;
}

.nav-links {
    align-self: start;
    margin: 24px 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    color: var(--background-color-1, #dde9f3);
    font-weight: 400;
}

.nav-links li {
    margin-top: 12px;
}

.nav-links li:first-child {
    margin-top: 0;
}

.footer-link {
    color: var(--background-color-1, #dde9f3);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: none;
}

.contact-info {
    align-self: start;
    margin: 24px 0 0 0;
    font-size: 18px;
    color: var(--background-color-1, #dde9f3);
    font-weight: 400;
    font-style: normal;
}

.contact-link {
    color: var(--background-color-1, #dde9f3);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: none;
}

.email-link {
    color: var(--background-color-1, #dde9f3);
    margin-top: 12px;
}

.company-logo {
    aspect-ratio: 1.93;
    object-fit: contain;
    object-position: center;
    width: 131px;
    flex-shrink: 0;
}

.footer-bottom {
    align-self: center;
    display: flex;
    margin-top: 72px;
    width: 488px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

@media (max-width: 991px) {
    .footer-bottom {
        margin-top: 40px;
    }
}

.social-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

@media (max-width: 640px) {
    .social-follow {
        gap: 4px;
    }
}

.follow-text {
    color: rgba(196, 196, 196, 1);
    text-align: center;
    width: 100%;
    align-self: center;
    font: 500 20px Lato, -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

@media (max-width: 991px) {
    .follow-text {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .follow-text {
        text-align: center;
        font-size: 16px;
    }
}

.social-icons {
    display: flex;
    margin-top: 16px;
    align-items: start;
    gap: 32px;
    justify-content: start;
}

@media (max-width: 640px) {
    .social-icons {
        gap: 20px;
    }
}

.social-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 32px;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.copyright-text {
    color: rgba(196, 196, 196, 1);
    margin: 86px 0 0 0;
    font: 400 18px Lato, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .copyright-text {
        margin-top: 40px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .copyright-text {
        text-align: center;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .community-section .nav-links {
        white-space: initial;
    }
}

.community-section .nav-links {
    white-space: nowrap;
}

.explore {
    display: inline-block;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
}

.explore-text {
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #3D91FF 0%, #A96FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.explore-text:hover {
    background: linear-gradient(90deg, #A96FFF 0%, #3D91FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
}

/* AI Capabilities Section */
.ai-capabilities-section {
    min-height: 623px;
    background: linear-gradient(105deg, #164062 0%, #000102 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ai-background-image {
    width: 896px;
    height: 535px;
    opacity: 0.5;
    margin-top: 36px;
}

.background-svg {
    width: 100%;
    height: 1083px;
    opacity: 0.5;
    position: absolute;
    top: -104px;
}

.ai-content {
    display: flex;
    width: 560px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    text-align: center;
}

.ai-title {
    background: linear-gradient(87deg, #a1e4ff 0.52%, #d0b1ff 98.92%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font: 700 41px 'Lato', sans-serif;
    margin: 0;
}

.ai-description {
    color: #f4f4f4;
    font: 400 20px 'Lato', sans-serif;
    margin: 0;
    width:95%;
}

.ai-button {
    display: flex;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border-radius: 24px;
    background: linear-gradient(72deg, #3d91ff 26.48%, #a96fff 57.3%);
    border: none;
    color: #fff;
    font: 400 16px 'Lato', sans-serif;
    transition: all 0.3s ease;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.ai-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(61, 145, 255, 0.4);
}

.ai-button-1 {
    top: 110px;
    margin-left: -99px;
}

.ai-button-2 {
    top: 479px;
    margin-left: -118px;
}

.ai-button-3 {
    margin-left: -675px;
    top: 110px;
}

.ai-button-4 {
    margin-left: -749px;
    top: 479px;
}

.star-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.footer-section-title {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 1rem 0rem;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .ai-capabilities-section {
        padding: 40px 20px;
        min-height: auto;
        height: auto;
        flex-direction: column;
    }

    .ai-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ai-title {
        font-size: 36px;
    }

    .ai-description {
        font-size: 18px;
    }

    .ai-background {
        display: none;
    }

    /* Button container for mobile */
    .ai-capabilities-section::after {
        content: '';
        display: table;
        clear: both;
    }

    .ai-button {
        position: relative;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 15px auto;
        width: 100% !important;
        max-width: 400px;
        display: block;
    }
}

@media (max-width: 768px) {
    .ai-title {
        font-size: 30px;
    }

    .ai-description {
        font-size: 16px;
    }

    .ai-button {
        padding: 15px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ai-title {
        font-size: 26px;
    }

    .ai-description {
        font-size: 15px;
    }

    .ai-button {
        padding: 12px 20px;
        font-size: 15px;
    }

    .star-icon {
        width: 28px;
        height: 28px;
    }
}

.ai-background-image-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-bottom: 100px;
    }
}

@media (max-width: 800px) {
    .atndnz-modal-content {
        padding: 10px;
        max-width: 98vw;
    }

    .atndnz-modal-title {
        font-size: 18px;
    }

    .atndnz-modal-description {
        font-size: 13px;
    }

    .atndnz-feature-image {
        max-width: 120px;
    }

    .atndnz-modal-features-wrapper {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .atndnz-modal-grid {
        flex-direction: column;
        gap: 10px;
    }
}

.atndnz-section {
    background-color: #fffbf6;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
}

@media (max-width: 991px) {
    .atndnz-section {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .atndnz-section {
        margin-bottom: -9px;
        padding: 42px 0;
    }
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1192px;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 991px) {
    .content-wrapper {
        max-width: 100%;
    }
}

.header-content {
    align-self: center;
    margin-left: 24px;
    width: 840px;
    max-width: 100%;
    font-family: Lato, -apple-system, Roboto, Helvetica, sans-serif;
    color: var(--brand-color-2, #2e4257);
    font-weight: 600;
    text-align: center;
}

.text-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

@media (max-width: 991px) {
    .text-container {
        max-width: 100%;
    }
}

.main-title {
    color: var(--brand-color-2, #2e4257);
    font-size: 36px;
    margin: 0;
    font-weight: 600;
    margin-top: 100px;
}

@media (max-width: 991px) {
    .main-title {
        max-width: 90%;
        font-size: 40px;
        line-height: 59px;
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 28px;
        line-height: 38px;
        margin-top: 0px;
    }
}

.description {
    color: var(--brand-color-2, #2e4257);
    font-size: 24px;
    line-height: 31px;
    margin: 20px 0 0 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .description {
        max-width: 90%;
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .description {
        font-size: 18px;
        line-height: 26px;
    }
}

.features-layout {
    margin-top: 94px;
}

@media (max-width: 991px) {
    .features-layout {
        max-width: 100%;
        margin: 40px 0;
    }
}

.layout-container {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .layout-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.image-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 50%;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .image-column {
        width: 100%;
    }
}

.image-wrapper {
    margin: 0;
}

.feature-image {
    aspect-ratio: 1.01;
    object-fit: contain;
    object-position: center;
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
    max-width: 557px;
}

@media (max-width: 991px) {
    .feature-image {
        max-width: 358px;
        margin-top: 23px;
        width: 100%;
    }
}

.features-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 50%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .features-column {
        width: 100%;
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    align-items: flex-start;
    width: 94%;
    height: auto;
    flex-grow: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 32px;
}

@media (max-width: 991px) {
    .feature-list {
        max-width: 90%;
        margin-top: 40px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emoji-icon {
    font-size: 25px;
    line-height: 1;
    flex-shrink: 0;
}

.svg-icon {
    flex-shrink: 0;
    margin-right: 9px;
    margin-left: 2px;
}

.feature-text {
    color: var(--brand-color-2, #2e4257);
    font: 600 25px/1.2 Lato, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .feature-text {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .feature-text {
        font-size: 18px;
    }
}

.awards-section {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fffbf6;
}

.background-image {
    aspect-ratio: 1.63;
    object-fit: cover;
    object-position: center;
    width: 877px;
    position: absolute;
    top: 8px;
    left: 304px;
    height: 616px;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
    min-height: 20px;
    min-width: 20px;
}

.award-badge {
    display: flex;
    height: 75px;
    padding: 13.018px 26.035px;
    justify-content: flex-end;
    align-items: center;
    gap: 8.136px;
    flex-shrink: 0;
    border-radius: 17.086px;
    border: 1.416px solid #d87110;
    position: absolute;
    right: 72px;
    top: 65px;
    background-color: #fff5d9;
}

.trophy-container {
    margin-right: auto;
}

.trophy-icon {
    width: 47px;
    height: 47px;
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    width: 22.4px;
    height: 22.4px;
}

.award-winner-text {
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(81deg, #d86d0d -16.15%, #deb546 107.78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font: 700 16px Lato;
    margin: 0;
}

.client-main-heading {
    color: #2e4257;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 73px;
    width: 100%;
    height: 52px;
    font: 600 36px/130% Lato;
    margin: 0;
}

.award-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 58.3px;
    position: relative;
    top: 160px;
    width: auto;
    height: 234px;
    flex-wrap: wrap;
}

.award-image-wrapper {
    display: flex;
    width: 234px;
    height: 234px;
    justify-content: center;
    align-items: center;
    border-radius: 27.154px;
    box-shadow: 0 19.966px 19.167px -3.993px rgba(64, 59, 42, 0.16);
    position: relative;
    background-color: #fff;
    margin: 10px;
}

.award-image-right {
    width: 188px;
    height: 175px;
    flex-shrink: 0;
    position: absolute;
    left: 23px;
    top: 30px;
    object-fit: contain;
}

/* Media Queries */
@media (max-width: 1199px) {
    .award-badge {
        right: 40px;
        top: 50px;
    }

    .client-main-heading {
        top: 130px;
        font-size: 32px;
    }

    .award-images-container {
        top: 220px;
    }

    .awards-section {
        height: 556px;
    }
}

@media (max-width: 991px) {
    .awards-section {
        padding: 40px 20px;
        height: auto;
    }

    .background-image {
        left: -116px;
        top: -41px;
    }

    .award-badge {
        position: static;
        margin: 0 auto 30px auto;
    }

    .client-main-heading {
        position: static;
        font-size: 32px;
        text-align: center;
        width: 100%;
        top: 0;
    }

    .award-images-container {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
        align-items: center;
        height: auto;
        top: 0;
        margin-top: 30px;
    }

    .award-image-left {
        width: 200px;
        height: 200px;
    }

    .award-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .award-image-right {
        width: 160px;
        height: 150px;
        left: 20px;
        top: 25px;
    }
}

@media (max-width: 640px) {
    .awards-section {
        padding: 30px 15px;
    }

    .background-image {
        left: -253px;
        top: 92px;
    }

    .award-badge {
        width: 220px;
        height: 65px;
        padding: 10px 20px;
    }

    .award-winner-text {
        font-size: 14px;
    }

    .client-main-heading {
        font-size: 24px;
        line-height: 120%;
    }

    .award-image-left {
        width: 180px;
        height: 180px;
    }

    .award-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .award-image-right {
        width: 120px;
        height: 110px;
        left: 20px;
        top: 25px;
    }
}

@media (max-width: 768px) {
    .award-images-container {
        gap: 25px;
        padding: 0 15px;
    }

    .award-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .award-image-right {
        width: 140px;
        height: 130px;
        left: 20px;
        top: 25px;
    }
}

@media (max-width: 480px) {
    .award-images-container {
        gap: 15px;
        padding: 0 10px;
    }

    .award-image-wrapper {
        width: 140px;
        height: 140px;
        border-radius: 20px;
    }

    .award-image-right {
        width: 100px;
        height: 90px;
        left: 20px;
        top: 25px;
    }
}

@media (max-width: 320px) {
    .award-images-container {
        gap: 10px;
    }

    .award-image-wrapper {
        width: 120px;
        height: 120px;
        border-radius: 15px;
    }

    .award-image-right {
        width: 80px;
        height: 70px;
        left: 20px;
        top: 25px;
    }
}

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

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

.clients-section {
    width: 100%;
    padding: 54px 0 77px 0;
    background-color: #fff;
}

/* Section title */
.client-section-title {
    color: var(--brand-color-2, #2e4257);
    text-align: center;
    margin-bottom: 80px;
    font: 600 36px/130% Lato, sans-serif;
}

/* Carousel container with fade gradients */
.clients-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.clients-carousel::before,
.clients-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Logos container with animation */
.logos-container {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

/* Individual logo items */
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

/* Standard logo images */
.logo-image {
    flex-shrink: 0;
}



/* Stacked logo styles */
.stacked-logo {
    display: flex;
    width: 117px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    height: 104px;
}

.stacked-logo-main {
    width: 98px;
    height: 83px;
}

.stacked-logo-text {
    height: 21px;
    width: 100%;
}

/* Cloud logo specific styling */
.cloud-logo {
    width: 116px;
    height: 116px;
    margin-left: -4px;
}

/* Healthcare logo special styling */
.healthcare-logo {
    flex-direction: column;
    gap: 3px;
    padding: 18px 9.199px 24px 9.801px;
    width: 128px;
    height: 134px;
}

.healthcare-icon {
    width: 78px;
    height: 72px;
}

.healthcare-text {
    color: #000;
    text-align: center;
    width: 109px;
    height: 17px;
    font: 800 12px/150% Lato, sans-serif;
}

.logo-item:nth-child(16) .logo-image {
    width: 212px;
    height: 42px;
}

.logo-item:nth-child(17) .logo-image {
    width: 162px;
    height: 87px;
}

.logo-item:nth-child(18) .logo-image {
    width: 107px;
    height: 107px;
}

/* Tablet responsive styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 80px;
    }

    .logos-container {
        gap: 60px;
        animation: scroll 45s linear infinite;
    }

    .logo-item {
        width: auto !important;
        min-width: 120px;
        max-width: 200px;
        height: 100px !important;
        padding: 10px !important;
    }

    .logo-image {
        max-width: 100% !important;
        max-height: 80px !important;
        width: auto !important;
        height: auto !important;
    }

    .stacked-logo {
        height: 80px !important;
    }

    .stacked-logo-main {
        width: 70px !important;
        height: 60px !important;
    }

    .stacked-logo-text {
        height: 15px !important;
    }

    .healthcare-text {
        font-size: 10px !important;
    }
}

/* Mobile responsive styles */
@media (max-width: 640px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .logos-container {
        gap: 40px;
        animation: scroll 30s linear infinite;
    }

    .logo-item {
        width: auto !important;
        min-width: 100px;
        max-width: 150px;
        height: 80px !important;
        padding: 8px !important;
    }

    .logo-image {
        max-width: 100% !important;
        max-height: 60px !important;
        width: auto !important;
        height: auto !important;
    }

    .stacked-logo {
        height: 60px !important;
    }

    .stacked-logo-main {
        width: 50px !important;
        height: 45px !important;
    }

    .stacked-logo-text {
        height: 12px !important;
    }

    .healthcare-icon {
        width: 45px !important;
        height: 40px !important;
    }

    .healthcare-text {
        font-size: 8px !important;
        width: 80px !important;
    }
}

.atndnz-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.atndnz-modal.active {
    opacity: 1;
    visibility: visible;
}

.atndnz-modal-content {
    background-color: #efeff9;
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: atndnzModalFadeIn 0.3s ease-out;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    padding: 20px;
}

.atndnz-modal.active .atndnz-modal-content {
    transform: scale(1);
}

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

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

.atndnz-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2E4257;
    transition: color 0.2s;
}

.atndnz-modal-close:hover {
    color: #1a2a3a;
}

.atndnz-modal-title {
    color: #2E4257;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
    width: 85%
}

.atndnz-modal-description {
    color: #2E4257;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.atndnz-modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.atndnz-modal-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #2E4257;
    font-size: 15px;
}

.atndnz-modal-icon {
    margin-right: 10px;
    font-size: 20px;
}

.atndnz-modal-button {
    background-color: #128BDB;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 0 auto;
    transition: background-color 0.3s;
}

.atndnz-modal-button:hover {
    background-color: #1a2a3a;
}

.atndnz-modal-grid {
    display: flex;
    gap: 20px;
    align-items: center;
}

.atndnz-modal-image {
    flex: 1;
}

.atndnz-modal-features-wrapper {
    flex: 1;
}

.atndnz-feature-image {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .atndnz-modal-grid {
        flex-direction: column;
    }
}

.feature-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

