@import url('https://fonts.cdnfonts.com/css/sinteca?styles=181865');

body {
    font-family: 'Sinteca', sans-serif;
}

.contact-center {
    background: var(--White, #fff);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1111;
}

.header-child {
    width: 93%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.logo-img {
    width: 160px;
    height: 30px;
    padding-left: 20px;
}


.nav-menu {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.nav-link {
    text-decoration: none;
    color: #0D0864 !important;
    font-size: 18px;
    transition: color 0.3s ease;
    padding: 0 20px;
    font-weight: 600;
    line-height: 30px;
    align-items: center;
    font-family: 'Sinteca', sans-serif;
}

.nav-link:hover {
    color: var(--Deep-Blue, #0d0864) !important;
    /* Optional hover effect */
}

/* Default styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0D0864;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger menu styles */
.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.nav-menu.active {
    right: 0;
    /* Slide in from the right */
}

.nav-menu a {
    margin: 10px 0;
    text-decoration: none;
    color: #0D0864;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Sinteca', sans-serif;
}

.nav-menu a:hover {
    color: #0d0864;
}

/* Schedule button inside menu */
.nav-menu .schedulebt {
    height: 45px;
    width: 160px;
    border-radius: 14px;
    background-color: #0D0864;
    color: white;
    font-family: 'Sinteca', sans-serif;
    border: none;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.nav-menu .schedulebt a {
    text-decoration: none;
    color: white;
}

.integration-btn {
    border-radius: 18px;
    background: var(--Deep-Blue, #0d0864);
    color: var(--White, #fff);
    font: 600 18px/40px 'Sinteca', sans-serif;
    text-align: center;
    text-transform: capitalize;
    padding: 8px 28px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    width: 60%;
    border: none;
    color: #FFFFFF;
    text-decoration: none !important;
}

.integration-btn a {
    text-decoration: none !important;
    color: #ffffff;
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 250px;
        background-color: #ffffff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 80px;
        transition: right 0.3s ease;
        z-index: 9;
    }

    .nav-menu.active {
        right: 0;
        /* Slide in from the right */
        display: flex;
    }

    .nav-menu a {
        margin: 10px 0;
    }

    .nav-menu .schedulebt {
        margin-top: 20px;
    }

    .integration-btn {
        width: 75%;
    }

}




.hero-section1 {
    align-self: center;
    width: 90%;
    max-width: 1561px;
    margin: 10px 0 0 11px;
    /* background: var(--Deep-Blue, #0d0864); */
    color: var(--Light-Gray, #f6f6f6);
    padding: 10px 0;
    display: flex;
    gap: 80px;
    align-items: center;
    text-align: center;
    font-family: 'Sinteca', sans-serif;

}

.hero-section2 {
    align-self: center;
    max-width: 1561px;
    margin: 0px 0 0 11px;
    /* background: var(--Deep-Blue, #0d0864); */
    color: var(--Light-Gray, #0D0864);
    padding: 10px 0;
    display: flex;
    gap: 50px;
    align-items: center;
    text-align: center;
    font-family: 'Sinteca', sans-serif;

}



.scroll-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.hero-section {
    align-self: center;
    width: 90%;
    max-width: 1561px;
    margin: 150px 0 0 11px;
    display: flex;
    gap: 80px;
    font-family: 'Sinteca', sans-serif;
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1.5s ease-out forwards;

}

.hero-section3 {
    align-self: center;
    width: 90%;
    max-width: 1561px;
    margin: 150px 0 0 11px;
    display: flex;
    gap: 80px;
    font-family: 'Sinteca', sans-serif;
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1.5s ease-out forwards;

}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

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

/*
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
 
    100% {
        transform: translateX(-50%);
    }
} */

/* .scroll-content span {
    flex-shrink: 0;
} */



.hero-content {
    display: flex;
    flex-direction: column;
    width: 50%;
    font-family: 'Sinteca', sans-serif;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    /* border: 1px solid var(--AI-gradient, #4ff558); */
    /* padding: 16px; */
    font: 600 18px/1 'Sinteca', sans-serif;
    color: var(--Deep-Blue, #0d0864);
    width: 42%;
    margin-top: 20px;
    margin-bottom: 15px;
}

.ai-badge-icon {
    width: 24px;
    height: 24px;
    alt: "AI Copilot Icon";
}


.hero-title {
    color: var(--Deep-Blue, #0d0864);
    font-size: 45px;
    font-weight: 600;
    line-height: 60px;
    text-transform: capitalize;
    margin-top: 15px;
    font-family: 'Sinteca', sans-serif;
}

.hero-description {
    color: rgba(0, 0, 0, 1);
    font: 500 18px/34px 'Sinteca', sans-serif;
    margin-top: 10px;
}

.cta-button {
    border-radius: 18px;
    background: var(--Deep-Blue, #0d0864);
    color: var(--White, #fff);
    font: 600 18px/40px 'Sinteca', sans-serif;
    text-align: center;
    text-transform: capitalize;
    padding: 8px 28px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    width: 35%;
    border: none;
    color: #FFFFFF;
    text-decoration: none !important;

}


.cta-button a {
    color: #FFFFFF;
    text-decoration: none !important;

}

.cta-button a:hover {
    color: #FFFFFF;

}

.hero-image {
    width: 50%;
    aspect-ratio: 1.26;
    object-fit: contain;
    alt: "AI Contact Center Interface";
}

/* Features Section */
.features-section {
    background: var(--Deep-Blue, #0d0864);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--Light-Gray, #f6f6f6);
    text-align: center;
    text-transform: capitalize;
    padding: 55px 0;
    margin-top: 60px;
    font-family: 'Sinteca', sans-serif;
}

.features-section2 {
    background: var(--Deep-Blue, #0d0864);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--Light-Gray, #f6f6f6);
    text-align: center;
    text-transform: capitalize;
    padding: 70px 0;
    margin-top: 170px;
    font-family: 'Sinteca', sans-serif;

}

.features-title {
    background: var(--AI-gradient, linear-gradient(180deg, #4ff558 0%, #26d4d7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font: 700 45px/1 'Sinteca', sans-serif;
}

.cnt-btn {
    background: var(--AI-gradient, linear-gradient(180deg, #4ff558 0%, #26d4d7 100%));
    /* background: var(--AI-gradient, linear-gradient(180deg, #ffffff 0%, #ffffff 100%)); */
    width: 168px;
    height: 50px;
    border-radius: 16px;
    border: none;
    font-size: 20px;
}

.cnt-btn a {
    text-decoration: none;
    color: #000000;
}

.demo-btn {
    width: 168px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid #ffffff;
    background: none;
    color: #ffffff;
    font-size: 20px;
}

.demo-btn a {
    text-decoration: none;
    color: #ffffff;
}

.gradient {
    background: var(--AI-gradient, linear-gradient(180deg, #4ff558 0%, #26d4d7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-description {
    margin-top: 15px;
    width: 1032px;
    font: 500 20px/38px 'Sinteca', sans-serif;
    color: #FFFFFF;
}

/* Contact Form */
.contact-form {
    border-radius: 40px;
    /* box-shadow: 7px -2px 35px 3px rgba(0, 0, 0, 0.1); */
    border: 20px solid #F6F6F6;
    padding: 63px 72px;
    margin-top: 80px;
    width: 80%;
    max-width: 1530px;
    font-family: 'Sinteca', sans-serif;

}

.form-title {
    color: var(--Deep-Blue, #0d0864);
    font: 600 36px/56px 'Sinteca', sans-serif;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 94px;
    margin-bottom: 25px;
}

.form-field {
    flex: 1;
    min-width: 240px;
}

.form-label {
    display: block;
    color: var(--Black, #1e1e1e);
    font: 400 20px/1 'Sinteca', sans-serif;
}

.form-input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 1);
    padding: 10px;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid rgba(0, 0, 0, 1);
    padding: 10px;
    font-family: 'Sinteca', sans-serif;

}

.submit-button {
    /* width: 20%; */
    width: 160px;
    height: 50px;
    border-radius: 12px;
    background: var(--Deep-Blue, #0d0864);
    color: var(--White, #fff);
    font: 600 18px/40px 'Sinteca', sans-serif;
    border: none;
    margin-top: 40px;
}

.contact-form .form-input {
    border: none;
    border-bottom: 1px solid #000000;
    outline: none;
    padding: 8px 0;
    width: 100%;
    background: transparent;
    font-size: 16px;
    border-radius: 0px !important;
}

.contact-form .form-input:focus {
    border-bottom-color: var(--Deep-Blue, #0d0864);
    /* Change bottom border color on focus */
}

.contact-form .form-field {
    margin-bottom: 15px;
    /* Add space between form fields */
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.gradient-divider {
    width: 90%;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(180deg, #4ff558 0%, #26d4d7 100%);
    border: none;
    margin-top: 50px;
}


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

    .hero-section {
        flex-direction: column;
        margin: 100px 0 0;
    }

    .hero-section3 {
        flex-direction: column;
        margin: 20px 0 0;
    }

    .hero-section1 {
        flex-direction: column;
        margin: 40px 0 0;
    }

    .hero-section2 {
        flex-direction: column;
        margin: 40px 0 0;

    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
        line-height: 56px;
    }

    .features-section {
        margin-top: 40px;
        padding: 40px 20px;
    }

    .features-section2 {
        margin-top: 100px;
        padding: 40px 20px;
    }

    .features-title {
        font-size: 40px;
    }

    .features-description {
        width: 100%;
    }

    .contact-form {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .form-group {
        flex-direction: column;
        gap: 40px;
    }
}

.responsive-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px;
    font-family: 'Sinteca', sans-serif;

}

.box-wrapper {
    display: inline-block;
    border-radius: 24px;
    padding: 10px;
    border: 2px solid #4ff558;
}

.box {
    background-color: #FFFFFF;
    padding: 10px;
    text-align: left;
    border-radius: 22px;
    /* Apply inner border-radius to the inner box */
}


.ai-resolve-title {
    font-weight: 600;
    font-family: 'sinteca', sans-serif;
    font-size: 40px;
    text-align: start;
    color: #0D0864;
}

.integrate-title {
    font-size: 50px;
    line-height: 72px;
    text-align: center;
    color: #0D0864;
}

@media (max-width: 900px) {
    .responsive-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;

    }

    .cta-button {
        width: 50%;
        margin-bottom: 20px;
    }
}

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

    .logo-img {
        width: 140px;
        height: 28px;
        padding-left: 0px;
    }

    .hero-title {
        color: var(--Deep-Blue, #0d0864);
        font-size: 36px;
        font-weight: 600;
        line-height: 60px;
        text-transform: capitalize;
        margin-top: 15px;
        font-family: 'Sinteca', sans-serif;
    }

    .features-title {
        font-size: 36px;
        margin-bottom: 30px;
        line-height: 50px;
    }

    .ai-resolve-title {
        font-weight: 600;
        font-family: 'sinteca', sans-serif;
        font-size: 36px;
        text-align: start;
        color: #0D0864;
    }

    .integrate-title {
        font-size: 40px;
        line-height: 72px;
        text-align: center;
    }


}


.features-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    justify-content: space-between;
    gap: 10px;
    /* Adds space between the items */
    margin-top: 80px;
    padding: 30px;
}

.features-container div {
    flex: 1 1 calc(25% - 10px);
    /* Each div takes up 25% of the width minus the gap */
    padding: 10px 20px 10px 50px;
    text-align: left;
    position: relative;
    font-family: 'Sinteca', sans-serif;

}

.features-container div:not(:last-child) {
    border-right: 1px solid #ffffff;
}




/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .features-container div {
        flex: 1 1 calc(50% - 10px);
        /* On medium screens, each div takes up 50% */
    }

    .features-container {
        margin-top: 0px;
    }

    .features-container div:not(:last-child) {
        border-right: 2px solid #000;
        /* Adds vertical line between divs */
    }

    .dialog-header {
        line-height: 30px;
    }

    .dialog-content {
        line-height: 20px;
    }

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


}

@media (max-width: 480px) {
    .features-container div {
        flex: 1 1 100%;
    }

    .features-container div:not(:last-child) {
        border-right: none;
    }
}


footer {
    background-color: var(--Deep-Blue, #0d0864);
    /* Blue background */
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}


#footer-parents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 82%;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-child-left {
    text-align: left;
    display: grid;
    gap: 50px;
}

.footer-child-right {
    display: flex;
    gap: 60px;
    text-align: start;
}

.links {
    display: grid;
    gap: 15px;

}

.links a {
    text-decoration: none !important;
    color: #f6f6f6 !important;
}

#link-head {
    font-size: 22px;
    font-weight: 600;
    color: #F6F6F6;
}

/* .footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}
 
.footer-links div a {
    text-decoration: none;
    color: #ffffff;
    text-align: left;
}
 
.footer-links div {
    margin-bottom: 30px;
}
 
.footer-links div p {
    text-align: start;
    font-size: 20px;
}
 
#footer-text {
    font-size: 10x;
    display: flex;
    justify-content: center;
} */

.copy-hide {
    display: none !important;
    ;
}



@media screen and (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a,
    .footer-social a {
        margin: 5px 0;
    }

    .intigration-btn {
        width: 100%;
    }

    .copy-show {
        display: none !important;
        ;
    }

    .copy-hide {
        margin-top: 30px;
        width: 100%;
        display: flex !important;
        justify-content: center;
    }

    .footer-child-right {
        margin-top: 0px;
        display: flex;
        flex-direction: row;
        gap: 80px !important;
    }

    footer {
        padding: 15px 25px 10px 5px;
        text-align: left;
    }


    #footer-parents {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }



}


.accordion {
    border: 5px solid #F6F6F6;
    border-radius: 18px;
    overflow: hidden;
    width: 80%;
}

.accordion-item {
    border: none !important;

}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    color: #1E1E1E;
    border: 0px;
    text-align: left;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #F6F6F6;
    border-top: 1px solid #F6F6F6;
    border-radius: 10px;
    font-weight: 600;

}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #1E1E1E;
}

.accordion-content.open {
    max-height: 200px;
    padding: 15px;

}


.icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(180deg);

}

html {
    scroll-behavior: smooth;
}




.floating-tab {
    position: fixed;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0d0864;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    overflow: hidden;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tab-icon img {
    width: 20px;
    height: 20px;
}

.tab-icon:hover {
    transform: scale(1.2);
}

#button {
    display: inline-block;
    background-color: #e7e7e7;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 100px;
    position: fixed;
    bottom: 40px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    font-size: 30px;
    text-decoration: none !important;
    color: #0D0864;
    text-align: center;
    align-items: center;
}

#button img {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}

#button::after {
    content: "";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #CCCCCC;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


.content {
    width: 77%;
    margin: 50px auto;
    font-family: 'Merriweather', serif;
    font-size: 17px;
    color: #6c767a;
    line-height: 1.9;
}

@media (min-width: 500px) {
    .content {
        width: 43%;
    }

    #button {
        margin: 30px;
    }
}

.content h1 {
    margin-bottom: -10px;
    color: #03a9f4;
    line-height: 1.5;
}

.content h3 {
    font-style: italic;
    color: #96a2a7;
}




.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.scroll-content {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo1 {
    width: 75px;
    height: 46px;
}

.logo2 {
    width: 153px;
    height: 40px;
}

.logo3 {
    width: 180px;
    height: 52px;
}

.logo4 {
    width: 104px;
    height: 44px;
}

.logo5 {
    width: 190px;
    height: 42px;
}

.logo6 {
    width: 180px;
    height: 42px;
}

.integrate-body {
    font-size: 24px;
    line-height: 52px;
    text-align: center;
    color: #212529;
}


@media (max-width: 600px) {
    .scroll-container {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .scroll-content {
        display: inline-flex;
        align-items: center;
        gap: 30px;
    }

    .integrate-body {
        font-size: 18px;
        line-height: 52px;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-section2 {
        margin: 20px 0 0;

    }

    .contact-form {
        width: 90%;
    }

    .accordion {
        width: 90%;
    }

    #button {
        bottom: 60px;
    }


}

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 16px;
    transition: visibility 0s, opacity 0.5s ease-in-out;
    opacity: 0;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}


/* .custom-icon {
    list-style: none;
    padding-left: 0;
    list-style-position: inside;
    list-style-image: url('../img/Ellipse\ 2006.png');/* adjust path */
ul {
    list-style: none;
}

ul li:before {
    content: "•";
    font-size: 60px;
    /* or whatever */
    padding-right: 10px;
    color: #0D0864;
}

.color-blue {
    color: #0D0864;
}