* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif !important;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.5px;
}

html,
body {
    overflow-x: hidden !important;
}

/* Default Wrapper for 1920px and above */
.wrapper {
    width: 1350px;
    margin: 0 auto;
}

a,
a:visited,
a:link {
    text-decoration: none;
    color: #000;
}

/* banner-section start */
.banner-section {
    position: relative;
    padding: 40px 0;
    border-bottom-left-radius: 72px;
    border-bottom-right-radius: 72px;
    background: #EAF1FF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.back-to-top-btn img {
    width: 32px;
}

.banner-section .container {

    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.logo-img {

    margin-bottom: 30px;
}

.banner-inner {
    position: relative;
    z-index: 1;
}

.banner-content {
    display: grid;
    gap: 36px;
}

.banner-heading {
    display: grid;
    width: 580px;
}

.banner-heading h1 {
    font-size: 42px;
    font-weight: 800;
}

.banner-heading p {
    font-size: 16px;
    margin-top: 15px;
    width: 500px;
}

.blue-gradient {
    background: linear-gradient(106.49deg, #1654ff 0%, #204cc7 99.96%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recognized-wrap {
    margin-top: 80px;
    display: grid;
    gap: 18px;
}

.recognized-wrap p {
    letter-spacing: 2px;
}

.second-wrap {
    display: none;
}

.publisher-logo-wrap {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.publisher-logo {
    display: block;
    width: 100%;
    max-width: 95px;
    filter: brightness(0);
}

.main-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-form form {
    width: 100%;
}

.fields-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-bottom: 35px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.label-field {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.extra-space {
    margin-bottom: 27px;
}

.fields-input {
    width: 100%;
    padding: 12px 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    color: #626262;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    background: transparent;
    transition: all 0.3s ease;
}

.fields-input:focus {
    outline: none;
    border-color: #0066ff;
    background: white;
}

.dropdown-wrapper,
.help-you {
    position: relative;
}

/* Select base look */
.dropdown-select {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    color: #626262;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

/* Option styling */
.dropdown-select option {
    margin: 0;
    padding: 0.5rem 1rem;
    border: 0;
    color: #495057;
    background: transparent;
    transition: box-shadow 0.2s;
    border-radius: 0;
}

.error-class {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.error-class.show {
    display: block;
}

.custom-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.input-checked {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0066ff;
}

.label-checkbox {
    font-size: 13px;
    color: #222;
    line-height: 1.5;
    cursor: pointer;
}

.button-header {
    display: flex;
    justify-content: center;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-content{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.submit-btn {
    background: #0040bd;
    color: white;
    border: none;
    margin-top: 35px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #00339c;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-btn img {
    width: 20px;
    height: 20px;
}

/* banner-section ends */

/* clients-section starts */

.clientele-section {
    padding: 100px 0px;
}

.clientele-section .carousel-container {
    margin-top: 45px !important;
    gap: 30px !important;
}

.clientele-slider .section-heading {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    font-weight: 800;
    /* line-height: 50px; */
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 13px;
    text-transform: capitalize;
}

.blue-text {
    color: #204cc7;
}

.new-blue-gradient-bg {
    background: linear-gradient(180deg, #003EF1 0%, #648BE4 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-container {
    display: grid;
    place-items: center;
    gap: 20px;
    position: relative;
}

.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-slide img {
    width: 115px;
    height: 101px;
    margin: 0 15px;
}

/* clients-section ends */

/* what we do starts */

.platform-section {
    padding: 90px 0;
}

.platform-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-content-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-content-inner .section-heading {
    font-size: 32px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    text-align: left;
    color: #fff;
}

.section-content-inner p {
    max-width: 670px;
    color: #fff;
    font-size: 14px;
    line-height: 150%;
}

.gradient-border {
    position: relative;
    padding: 2px;
}

.gradient-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(119.36deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.platform-item {
    box-shadow: 0px 8px 16px 0px #204cc70a;
    background: #3365d4;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 290px;
    position: relative;
    z-index: 1;
}

.platform-item .platform-content {
    display: grid;
    gap: 12px;
}

.platform-content h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #fff;
}

.platform-content p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #fff;
    line-height: 170%;
}

.platform-item img {
    display: block;
    width: fit-content;
}

/* what we do ends */

/* testimonials-section starts */
.testimonial-section {
    padding: 80px 0px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.testimonial-title {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 13px;
    text-transform: capitalize;
}

.testimonial-navigation {
    display: flex;
    gap: 16px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: #ECF2FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonial-carousel-container {
    position: relative;
    /* overflow: hidden; */
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

.testimonial-card {
    min-width: 42%;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eff0f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 40px;
}

.testimonial-text {
    /* max-height: 175px; */
    overflow-y: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #0c0e2c;
    padding-right: 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-position {
    font-size: 14px;
    color: #666;
}

.testimonial-floating-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.testimonial-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(66, 133, 244, 0.4);
}

.testimonial-phone-icon {
    width: 28px;
    height: 28px;
    fill: #4285f4;
}

/* testimonials-section ends */

/* footer-section starts */
footer {
    padding: 20px 0px;
    background: #000;
    /* margin-top: -80px; */
}

.footer-logo {
    display: block;
    max-width: 240px;
}

.footer-credit-bar {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.footer-credit p:first-child {
    color: #fff;
}

.footer-social,
.footer-credit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    gap: 24px;
}

.border-left {
    border-left: 1px solid #fff;
    align-self: stretch;
}


.footer-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;

    .footer-column {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 856px;
        flex: 1 0 auto;
        justify-content: space-between;
    }

    .footer-menu-wrap {
        width: 100%;
        max-width: 248px;
        display: flex;
        gap: 24px;
        align-items: start;
        flex-direction: column;

    }
}

.footer-row>.footer-menu-wrap {
    max-width: 294px;
}

.footer-menu {
    display: grid;
    gap: 16px;
}

.footer-menu-heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.footer-menu-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    text-align: left;
    text-decoration: none;
    color: #46515C80;
}

.footer-menu-link:hover {
    color: #0040BD;
}

.footer-menu-wrapper {
    display: grid;
    gap: 48px;
}

.footer-inner {
    display: grid;
    gap: 48px;
}

.horizontal-divider {
    border: 1px solid #38383826
}

.subscribe-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}

.send-field {
    padding: 12px 22px 12px 22px;
    border-radius: 12px 0px 0px 12px;
    border-style: solid;
    border-color: #00000033;
    border-right: 0px;
    background: transparent;
    display: block;
    width: 100%;
    border-width: 1px;
}

.send-button {
    padding: 12px 22px 12px 22px;
    border-radius: 0px 12px 12px 0px;
    background: #204cc7;
    border: none;
}


.footer-credit a {
    color: #fff;
    text-decoration: none;
}

.footer-credit a:hover {
    color: #204cc7;
    text-decoration: none;
}

/* footer-section ends */

/* back to top */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;

    &:hover {
        opacity: 1;
        transform: translateY(-5px);
    }

    .back-to-top-btn {
        background-color: #fff;
        border: none;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin: 0 auto;
        box-shadow: -1px 0px 40px rgb(32 76 199 / 60%), 0 8px 22px rgb(0 0 0 / 30%), 0 0 0 8px rgb(32 76 199 / 20%);
        transition: box-shadow 0.3s ease, background-color 0.3s ease;

        &:hover {
            box-shadow:
                0 18px 55px rgba(32, 76, 199, 0.5),
                0 10px 25px rgba(0, 0, 0, 0.12),
                0 0 0 10px rgba(32, 76, 199, 0.06);
            background-color: #f9faff;
        }

        svg {
            pointer-events: none;
        }
    }
}

/* back to top */

/* media-queries starts */

/* For screens between 1440px and 1919px */
@media (max-width: 1920px) and (min-width: 1440px) {
    .wrapper {
        width: 1295px;
    }

    .testimonial-carousel-container {
        /* overflow: hidden; */
    }
}

/* For screens between 1280px and 1439px */
@media (max-width: 1439px) and (min-width: 1280px) {
    .wrapper {
        width: 1100px;
    }

    .banner-section {
        height: 100%;
    }

    .platform-section-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* For screens between 1024px and 1279px */
@media (max-width: 1279px) and (min-width: 1024px) {
    .wrapper {
        width: 900px;
    }

    .banner-section {
        height: 100%;
    }

    .flip {
        display: flex;
        flex-direction: column;
    }

    .form-section {
        margin-top: 30px;
    }

    .first-wrap {
        display: none;
    }

    .second-wrap {
        display: block;
    }

    .recognized-wrap {
        margin-top: 40px;
    }

    .second-wrap p.text-uppercase {
        text-align: center;
        margin-bottom: 40px;
    }

    .publisher-logo-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }

    .clientele-section .carousel-container {
        overflow: hidden;
    }

    .platform-section-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* For screens between 768px and 1023px */
@media (max-width: 1023px) and (min-width: 768px) {
    .wrapper {
        width: 700px;
    }

    .banner-section {
        height: 100%;
    }

    .flip {
        display: flex;
        flex-direction: column;
    }

    .form-section {
        margin-top: 30px;
    }

    .first-wrap {
        display: none;
    }

    .second-wrap {
        display: block;
    }

    .recognized-wrap {
        margin-top: 40px;
    }

    .second-wrap p.text-uppercase {
        text-align: center;
        margin-bottom: 40px;
    }

    .publisher-logo-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }

    .clientele-section .carousel-container {
        overflow: hidden;
    }

    .logos {
        white-space: wrap;
    }

    .section-content-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 18px;
    }

    .platform-section-inner {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .testimonial-card {
        min-width: 50%;
    }
}

/* For screens below 768px (mobile devices) */
@media (max-width: 767px) {
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }

    .banner-section {
        height: 100%;
    }

    .flip {
        display: flex;
        flex-direction: column;
    }

    .banner-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-heading {
        width: 100%;
        text-align: center;
    }

    .banner-heading h1 {
        font-size: 22px;
    }

    .banner-heading p {
        width: 100%;
        font-size: 12px;
    }

    .form-section {
        margin-top: 30px;
    }

    .fields-row {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .extra-space {
        margin-bottom: 0px !important;
    }

    .first-wrap {
        display: none;
    }

    .second-wrap {
        display: block;
    }

    .recognized-wrap {
        margin-top: 40px;
    }

    .second-wrap p.text-uppercase {
        text-align: center;
        margin-bottom: 40px;
    }

    .publisher-logo-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }

    .clientele-slider .section-heading {
        font-size: 22px;
    }

    .clientele-section .carousel-container {
        overflow: hidden;
        margin-top: 20px !important;
        gap: 20px !important;
    }

    .logos {
        white-space: nowrap;
    }

    .logos-slide img {
        width: 85px;
        height: 80px;
    }

    .section-content-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 18px;
    }

    .section-content-inner .section-heading {
        font-size: 22px;
    }

    .section-content-inner p {
        font-size: 12px;
    }

    .platform-section-inner {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonial-header .testimonial-title {
        font-size: 22px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .footer-credit-bar {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-credit{
        gap: 30px;
    }

    .footer-credit p, .footer-credit a{
        font-size: 12px;
    }
}

/* media-queries ends */