        @import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}

.mx-container {
    max-width: 1536px !important;
    margin: 0 auto;
}

.custom-btn {
    font: 16px Roboto, sans-serif;
    color: #c8550a;
    display: flex;
    height: 44px;
    padding: 1rem 2rem;
    width: fit-content;
    border-radius: 35px;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.4px;
    border: 1px solid #c8550a;
    cursor: pointer;
    text-align: center;
    background-color: transparent;
    transition: all ease-in-out 0.3s;
}

.custom-btn:hover {
    background-color: #e25e46ed;
    color: #fff;
    border: 1px solid #bc260a !important;
}

@media screen and (max-width:576px) {
    .custom-btn {
        padding: 0.7rem 1.4rem;
        height: 38px;
    }
    .testimonial-head {
        font-size: 1.9rem;
    }
    .latest-blog-container>.heading-teams h2 {
        font-size: 1.9rem !important;
    }
    .our-team-container>.heading-teams h2 {
        font-size: 1.9rem !important;
    }
    .faq-left h2 {
        font-size: 1.9rem !important;
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    position: relative;
    min-height: auto;
    width: 100%;
    font-family: Roboto, sans-serif;
    padding: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    z-index: -1;
    pointer-events: none;
}

.contact-info {
    position: relative;
    align-self: normal;
    display: flex;
    /* margin-right: 24px; */
    width: 64%;
    max-width: 100%;
    gap: 20px;
    color: #fff;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 0.8rem;
}

.contact-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    gap: 8px;
}

.contact-item a {
    text-decoration: none;
    /*color: inherit;*/
    color: #fff;
    transition: all ease 0.7s;
}

.contact-item a:hover {
    /*color: #ffa800;*/
    color: #c23211;
}

.contact-text {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 0.938rem;
}

.social-icons a {
    text-decoration: none;
    /*color: inherit;*/
    color: #2b6c78;
    transition: all ease 0.7s;
}

.social-icons a:hover {
    /*color: #ffa800;*/
    color: #c23211;
}

.divider-top {
    position: relative;
    align-self: end;
    margin-top: 16px;
    width: 1120px;
    max-width: 100%;
    height: 1px;
    border: 1px solid #4b4b4b;
}

.nav-container {
    position: relative;
    display: flex;
    /* margin-top: 18px; */
    width: 100%;
    /*  */
    gap: 20px;
    font-size: 1rem;
    color: #f8f9ff;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo {
    aspect-ratio: 3.18;
    object-fit: contain;
    object-position: center;
    width: 153px;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    margin: auto 0;
}

.nav-links {
    display: flex;
    align-items: start;
    gap: 40px 50px;
    justify-content: start;
    flex-wrap: wrap;
}

.nav-links li {
    list-style-type: none;
}

.nav-links>li>a {
    text-decoration: none;
    /*color: #fff;*/
    color: #c23211;
    font-weight: 600;
    font-size: 1rem;
}

.nav-links>li>a:hover {
    /*color: #fcb85e;*/
    color: #2b6c78;
}

.nav-border>a.active {
    color: #fcb85e;
    font-weight: 500;
}

.nav-active {
    color: #fcb85e;
}

.nav-indicator {
    border-radius: 3px;
    background-color: #fcb85e;
    display: flex;
    margin-left: 12px;
    width: 25px;
    height: 3px;
}

.nav-border {
    position: relative;
    /* Needed for positioning the dropdown */
}

@media screen and (min-width:767px) {
    .service-nav>img {
        display: inline-block;
        height: 16px;
        content: url('../images/caret-down.svg');
    }
    .service-dropdown {
        display: none;
        position: absolute;
        top: 35px;
        background-color: #fff;
        min-width: 200px;
        /* Set a minimum width */
        z-index: 999;
        opacity: 1;
        border-radius: 10px;
        border-right: 6px solid #ffa800;
        border-bottom: 6px solid #ffa800;
    }
    .service-dropdown img {
        content: url('../images/black-right.svg');
        float: right;
        margin-right: 20px;
        margin-top: -32px;
        vertical-align: text-top;
        transition: transform 0.3s ease;
    }
    .nav-border:hover .service-dropdown {
        display: block;
        animation: fadeIn 0.6s forwards;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .service-dropdown a {
        color: black;
        /* Text color */
        padding: 12px 16px;
        /* Padding */
        text-decoration: none;
        /* No underline */
        display: block;
        /* Make links block elements */
        font-size: 1rem;
        transition: all 0.5s ease;
    }
    .service-nav a:first-child {
        padding-bottom: 1rem;
    }
    .service-dropdown a:hover {
        color: #ffa800;
        display: inline-block;
        width: 100%;
    }
    .sub-service-dropdown {
        position: absolute;
        width: 240px;
        left: 95%;
        top: 0;
        display: none;
        opacity: 1;
        margin-left: 16px;
        background-color: #fff;
        color: #000;
        animation: fadeIn 0.6s forwards;
        transition: all 0.3s ease;
        margin-bottom: 0;
        border-radius: 10px;
    }
    .service-dropdown a:hover .sub-service-dropdown {
        display: block;
        opacity: 1;
    }
    #web-dropdown {
        top: 40px;
    }
    #uiux-dropdown {
        top: 100px;
    }
    #app-dropdown {
        top: 140px;
    }
    #brand-dropdown {
        top: 180px;
    }
    #cloud-dropdown {
        top: 220px;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.burger-menu {
    display: none;
    /* Hide by default */
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 37px;
    top: 5px;
}

.burger-icon {
    width: 30px;
    height: 5px;
    /*background-color: #f2eeee;*/
    background-color: #c23211;
    display: block;
    margin: 7px auto;
    border-radius: 4px;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: start;
}

.get-cta-btn {
    background: linear-gradient(135deg, #f58220 0%, #e45d25 50%, #c8550a 100%);
    padding: 10px 22px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 0 #943306, 0 8px 18px rgba(200, 85, 10, 0.28);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.get-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #943306, 0 12px 24px rgba(200, 85, 10, 0.38);
    color: #ffffff;
}

.get-cta-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #943306, 0 4px 10px rgba(200, 85, 10, 0.2);
    color: #ffffff;
}

.hero-title {
    position: relative;
    /* color: #fff; */
    text-align: center;
    text-transform: uppercase;
    align-self: center;
    margin-top: 4.375rem;
    font: 400 5.125rem Anton, sans-serif;
}

.gradient-bg {
    background: linear-gradient(175.09deg, rgb(236 1 130) -1.37%, #ed9b76 57%, #F5F3FF 79.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-two {
    margin-top: 1rem;
}

.hero-title-two p {
    display: inline-block;
    font: 400 5.125rem Anton, sans-serif;
}

.hero-title-two span {
    background-color: #e80186;
    color: #fff;
    padding-left: 1.313rem;
    padding-right: 1.313rem;
    display: inline-block;
    font: 400 5.125rem Anton, sans-serif;
    height: 103px;
    line-height: 1.3;
    transform: rotate(-8deg);
}

.hero-content {
    position: relative;
    align-self: center;
    display: flex;
    width: 614px;
    max-width: 100%;
    gap: 36px;
    flex-wrap: wrap;
    margin: 49px 0 -30px;
}

.action-button {
    border-radius: 30px;
    background-color: #e25f45;
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 1rem;
    color: #f8f9ff;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: all ease-in-out 0.4s;
}

.action-button:hover {
    background-color: #f2391d;
    color: #fff;
}

.button-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 10px;
    margin: auto 0;
}

.hero-description {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.45px;
    flex-grow: 1;
    width: 388px;
    flex-basis: auto;
}

.closebtn {
    display: none;
}

@media screen and (max-width: 576px) {
    .sidenav .nav-links>li>a {
        color: #ffffff;
    }
}


/* Mobile styles */

@media (max-width: 768px) {
    .ServiceTitle {
        margin: 0.5rem 0px !important;
    }
    .logo {
        width: 128px;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
    }
    .nav-container {
        margin-top: 0;
    }
    .cta-container a {
        display: none;
    }
    .burger-menu,
    .closebtn {
        display: block;
    }
    .hero-title,
    .hero-title-two p {
        font-size: 2.813rem;
        line-height: 67px;
    }
    .hero-title-one {
        margin-top: 3rem;
    }
    .hero-title-two {
        margin-top: 0;
    }
    .hero-title-two:last-of-type {
        margin-top: 0.7rem;
    }
    .hero-title-two span {
        font-size: 2.813rem;
        background-color: #ffa800;
        height: unset;
    }
    .hero-content {
        flex-direction: column-reverse;
        justify-content: center;
        margin-top: 1rem;
    }
    .action-button {
        gap: 10px;
        font-size: 1rem;
        font-weight: 600;
        padding: 9px 16px;
        margin: auto;
        margin-top: -1rem;
        width: fit-content;
    }
    .hero-description {
        font-size: 1rem;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: -1px;
        flex-grow: 1;
        width: 97%;
        text-align: center;
        flex-basis: auto;
    }
    .hero-background {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
        z-index: -1;
        pointer-events: none;
    }
    /* Mobile Sidenav managed in nav_header.php */
    .nav-indicator {
        display: none;
    }
    .contact-info {
        padding-left: 1rem;
    }
    .contact-details {
        gap: 5px;
    }
    .contact-item {
        justify-content: flex-start;
        align-items: center;
    }
    .contact-item a,
    .social-icons a {
        font-size: 1rem;
        color: #ffa800;
    }
    .social-icons {
        display: flex;
        margin-left: -9px;
    }
    /* service dropdown in mobile 767px */
    .service-dropdown a {
        color: #fff;
        padding: 12px 16px;
        /* Padding */
        text-decoration: none;
        /* No underline */
        display: block;
        /* Make links block elements */
        font-size: 0.875rem;
        transition: all 0.5s ease-in-out;
    }
    .service-dropdown a:hover {
        background-color: transparent;
        color: #ffa800;
        display: inline-block;
        width: 100%;
    }
    .service-nav {
        width: 100%;
    }
    .service-nav>img {
        float: right;
        margin-right: 20px;
        vertical-align: text-top;
        transition: transform 0.3s ease;
    }
    .service-dropdown {
        position: relative;
        display: none;
        opacity: 0;
        margin-left: 16px;
        background-color: transparent;
        color: #fff;
        animation: fadeIn 0.6s forwards;
        transition: opacity 0.5s ease, transform 0.5s ease;
        margin-bottom: -20px;
    }
    .service-dropdown>img {
        float: right;
        margin-right: 20px;
        margin-top: -25px;
        vertical-align: text-top;
        transition: transform 0.3s ease;
    }
    .service-dropdown.show {
        display: block;
        opacity: 1;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .sub-service-dropdown {
        position: relative;
        display: none;
        opacity: 0;
        margin-left: 16px;
        background-color: transparent;
        color: #fff;
        animation: fadeIn 0.6s forwards;
        transition: opacity 0.5s ease, transform 0.5s ease;
        margin-bottom: 0;
    }
    .sub-service-dropdown.show {
        display: block;
        opacity: 1;
    }
}

@media screen and (max-width:445px) {
    .hero-container {
        min-height: auto;
    }
}

@media screen and (min-width:445px) and (max-width:767px) {
    .hero-background {
        height: 520px;
    }
    .hero-container {
        min-height: auto;
    }
    .hero-description {
        width: 70%;
        margin: auto;
    }
}

@media screen and (min-width:767px) and (max-width:1100px) {
    .contact-text {
        font-size: 0.875rem;
    }
    .nav-container {
        flex-wrap: nowrap;
        gap: 12px;
    }
    .logo {
        width: 100px;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links>li>a {
        font-size: 0.875rem;
    }
    .get-cta-btn {
        font-size: 0.875rem;
        width: auto;
        padding: 8px 16px;
    }
    .hero-title,
    .hero-title-two p {
        font-size: 3.2rem;
        line-height: 77px;
    }
    .hero-title-one {
        margin-top: 3rem;
    }
    .hero-title-two {
        margin-top: 0;
    }
    .hero-title-two:last-of-type {
        margin-top: 0;
    }
    .hero-title-two span {
        font-size: 3.2rem;
        height: unset;
    }
    .hero-content {
        flex-direction: column-reverse;
        justify-content: center;
        margin-top: 1rem;
    }
    .action-button {
        gap: 10px;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 9px 16px;
        margin: auto;
        margin-top: -1rem;
        width: fit-content;
    }
    .hero-description {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0px;
        flex-grow: 1;
        width: 65%;
        margin: auto;
        text-align: center;
        flex-basis: auto;
    }
    .hero-background {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
        z-index: -1;
        pointer-events: none;
    }
    .hero-container {
        min-height: auto;
    }
    .service-dropdown a {
        font-size: 0.875rem;
    }
}

@media (max-width: 991px) {
    .nav-links {
        gap: 20px;
    }
    .contact-info {
        justify-content: space-between;
        width: 72%;
    }
}

@media screen and (min-width:850px) and (max-width:1100px) {
    .contact-info {
        justify-content: space-between;
        width: 86%;
    }
}

@media screen and (max-width:445px) {
    .hero-container {
        min-height: auto;
    }
    .contact-text {
        font-size: 0.875rem;
    }
    .nav-container {
        flex-wrap: nowrap;
        gap: 20px;
    }
    .logo {
        width: 158px;
    }
    .nav-links {
        gap: 20px;
    }
    .nav-links>li>a {
        font-size: 1rem;
    }
    .get-cta-btn {
        font-size: 0.95rem;
        width: auto;
        text-align: center;
        padding: 9px 20px;
    }
    .hero-title,
    .hero-title-two p {
        font-size: 3.6rem;
        line-height: 80px;
    }
    .hero-title-one {
        margin-top: 3rem;
    }
    .hero-title-two {
        margin-top: 0.7rem;
    }
    .hero-title-two:last-of-type {
        margin-top: 0.7rem;
    }
    .hero-title-two span {
        font-size: 3.6rem;
        height: unset;
    }
    .hero-content {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        width: 500px;
    }
    .action-button {
        gap: 10px;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 9px 16px;
        margin: auto;
        margin-top: 0;
        width: fit-content;
    }
    .hero-description {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0px;
        flex-grow: 1;
        width: 40%;
        text-align: center;
        flex-basis: auto;
    }
    .hero-background {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
        z-index: -1;
        pointer-events: none;
    }
    .contact-info {
        justify-content: flex-end;
        gap: 3rem;
    }
}


/*-- Model get a qoutes form */

#quoteForm input[type="text"],
#quoteForm input[type="email"],
#quoteForm input[type="number"],
#quoteForm textarea,
#quoteForm select {
    background-color: #FFF7E9;
    outline: none;
    resize: none;
    outline: none;
    box-shadow: none;
}

#quoteForm input::placeholder,
#quoteForm textarea::placeholder {
    color: #696969;
    opacity: 1;
}

#quoteForm select {
    color: #696969;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}


/*########## Exp(list of services) ############### */

.expertise-section {
    margin-top: 4rem;
    background-blend-mode: normal;
    display: flex;
    flex-direction: column;
    color: #f1f8fb;
    font: 500 16px/1.2 "Roboto Slab", sans-serif;
    padding: 0 13%;
}

.expertise-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;
}

.expertise-item {
    border-radius: 30px;
    background-color: #282828;
    display: flex;
    gap: 11px;
    padding: 8px 16px;
}

.expertise-item h3 {
    font-size: 1.125rem;
    font-family: "Roboto slab" sans-serif;
    margin-bottom: 0;
}

.expertise-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 12px;
    margin: auto 0;
}

.expertise-secondary-list {
    align-self: center;
    display: flex;
    margin-top: 16px;
    width: 508px;
    max-width: 100%;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.exp-a {
    display: flex;
    align-self: center;
}

@media screen and (max-width: 1333px) {
    .expertise-section {
        padding: 0 8%;
    }
}

@media screen and (max-width:767px) {
    .expertise-item h3 {
        font-size: 0.875rem;
        margin-bottom: 0;
    }
    .expertise-list {
        gap: 12px;
    }
    .expertise-item {
        padding: 6px 12px;
        gap: 8px;
    }
    .expertise-icon {
        width: 8px;
    }
}

@media screen and (max-width:767px) {
    .expertise-item h3 {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .expertise-list {
        gap: 12px;
    }
    .expertise-item {
        padding: 7px 16px;
        gap: 8px;
    }
    .expertise-icon {
        width: 8px;
    }
}


/*######## client company code #################*/

.clients-section {
    margin: 3% auto;
    padding: 4% 0;
}

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

.users-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 19%;
    margin-left: 0;
}

.users-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.avatar-group {
    align-self: flex-start;
    display: flex;
    align-items: flex-start;
    color: #fff;
    text-align: center;
    font: 400 16px/1 Inter, sans-serif;
}

.user-avatar {
    aspect-ratio: 0.85;
    object-fit: contain;
    object-position: center;
    width: 48px;
    border-radius: 47px;
    margin-left: -12px;
}

.add-user-btn {
    border-radius: 24px;
    background-color: #e80186;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: -12px;
    border: none;
}

.trust-message {
    color: #040404;
    margin-top: 25px;
    font: 600 16px/22px "Roboto Slab", -apple-system, Roboto, Helvetica, sans-serif;
}

.graph-column {
    width: 81%;
    overflow: hidden;
}

.graph-column .graph-inner-box {
    display: flex;
    gap: 32px;
    flex-direction: row;
    line-height: normal;
    width: 100%;
    margin-left: 20px;
    overflow: hidden;
    position: relative;
    /*animation: scroll 8s linear infinite; */
}

.stats-graph {
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
    width: auto;
}

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

@media screen and (max-width: 767px) {
    .clients-container {
        flex-direction: column;
    }
    .users-column {
        width: 100%;
        margin-top: 1.8rem;
    }
    .graph-column {
        width: 100%;
        margin-left: 0;
    }
    .avatar-group {
        align-self: center;
    }
    .user-avatar {
        margin-right: 4px;
    }
    .user-avatar:last-of-type {
        margin-right: 1px;
    }
    .trust-message {
        text-align: center;
        margin-top: 14px;
        font: 600 14px/22px "Roboto Slab", -apple-system, Roboto, Helvetica, sans-serif;
        letter-spacing: -1px;
    }
}

@media screen and (max-width: 767px) {
    .users-column {
        width: 38%;
    }
    .trust-message {
        font-size: 14px;
        margin-top: 10px;
        letter-spacing: -1px;
    }
}

@media screen and (max-width: 767px) {
    .users-column {
        width: 30%;
    }
    .trust-message {
        margin-top: 10px;
        font-size: 14px;
        letter-spacing: -1px;
    }
}

@media screen and (max-width: 767px) {
    .users-column {
        width: 25%;
    }
    .trust-message {
        margin-top: 10px;
        font-size: 14px;
    }
}


/*################# latest trend ##########################*/

.marketing-container {
    background-color: #fff8eb;
    align-self: stretch;
    margin-top: 66px;
    width: 100%;
    /* padding: 3px 0 3px 70px; */
    padding: 0 5%;
    padding-top: 2rem;
}

.content-wrapper {
    gap: 20px;
    display: flex;
    padding-top: 3%;
    justify-content: space-between;
}

.info-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 46%;
    margin-left: 0;
}

.info-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    font: 500 18px Roboto, sans-serif;
}

.intro-text {
    color: #4f4f4f;
    font: 15px/23px Roboto, sans-serif;
    letter-spacing: -0.38px;
}

.accordion-item {
    margin-bottom: 0.8rem;
    border: none;
}

.accordion-button {
    background-color: #ffa800;
    color: #fff;
    border: none;
    border-radius: 8px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-collapse {
    transition: height 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #ffa800;
    color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#collapseOne,
#collapseTwo,
#collapseThree {
    border: 2px solid #ffa800;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff1d5;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
}

.accordion-button::after {
    color: #fff !important;
}


/* Optional: Change arrow color on hover */

.accordion-button:hover::after {
    color: #fff !important;
    /* Yellow arrow on hover */
}


/* Optional: Change arrow color when active */

.accordion-button:not(.collapsed)::after {
    color: #fff !important;
    /* Orange arrow when active */
}

.trend-btn {
    left: 0;
    top: 406px;
}

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

.hero-section {
    display: flex;
    flex-direction: column;
    position: relative;
    /* min-height: 686px; */
    margin-top: -5px;
    flex-grow: 1;
    font-family: Roboto Slab, sans-serif;
}

.feature-image {
    aspect-ratio: 1.56;
    object-fit: contain;
    width: 592px;
    border-radius: 10px;
    align-self: flex-end;
    /* margin-top: 56px; */
    max-width: 100%;
    height: auto;
}

.trend-hero-background {
    inset: 0;
    height: 600px;
    width: 100%;
    background: url("../images/trend-bg.svg") bottom no-repeat;
    background-size: cover;
    object-fit: cover;
    background-color: #FFF8EB;
}

.market-trend-head .section-label {
    position: relative;
    color: #550096;
    font: 17px Roboto Slab, sans-serif;
    text-align: center;
    width: 100%;
}

.market-trend-head .section-title {
    position: relative;
    color: #000;
    font: 600 45px/1.3 Roboto Slab, sans-serif;
    font-size: 2.4rem;
    letter-spacing: -1.13px;
    margin-top: 0.7rem;
    display: flex;
    justify-self: center;
}

@media screen and (min-width:1100px) and (max-width:1250px) {
    .marketing-container {
        margin-top: 13px;
    }
    .market-trend-head .section-title {
        font-size: 1.9rem;
        text-align: center;
        width: 80%;
        margin-top: 0.8rem;
    }
    .content-wrapper {
        flex-direction: column-reverse;
    }
    .info-column,
    .image-column {
        width: 100%;
        align-self: center;
    }
    .image-column {
        margin-left: 0;
        align-self: center;
    }
    .info-column {
        /* min-height: 400px; */
    }
    .feature-image {
        object-fit: cover;
        /* aspect-ratio: 0.8; */
    }
    .trend-hero-background {
        height: auto;
        background-image: none;
    }
    .intro-text {
        font-size: 14px;
    }
    .accordion-body {
        padding: 0.5rem 0.3rem;
        font-size: 0.875rem;
    }
    .accordion-item {
        margin-bottom: 0.7rem;
    }
}

@media screen and (max-width:424px) {
    .trend-btn {
        top: 430px;
    }
}

@media screen and (min-width:576px) and (max-width:767px) {
    .feature-image {
        object-fit: cover;
        aspect-ratio: unset;
        width: 100%;
    }
}

@media screen and (min-width:1100px) and (max-width:1250px) {
    .marketing-container {
        margin-top: 28px;
    }
    .content-wrapper {
        padding-top: 2%;
        min-height: 425px;
    }
    .info-column {
        width: 52%;
    }
    .accordion-item {
        margin-bottom: 0.6rem;
    }
    #collapseOne,
    #collapseTwo,
    #collapseThree {
        padding: 0;
    }
    .trend-btn {
        left: 0;
        top: 424px;
    }
    .image-column {
        margin-left: 0;
        min-height: 370px;
        width: 47%;
    }
    .feature-image {
        aspect-ratio: unset;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .trend-hero-background {
        height: auto;
        background: url("../images/trend-bg.svg") right no-repeat;
        background-size: cover;
    }
}

@media screen and (max-width:424px) {
    .trend-btn {
        top: 400px;
    }
}

@media screen and (min-width:1100px) and (max-width: 1250px) {
    .trend-hero-background {
        height: 630px;
        background: url("../images/trend-bg.svg") bottom no-repeat;
        background-size: cover;
    }
    .trend-btn {
        top: 425px;
    }
    .accordion-button {
        padding: 0.7rem 1rem;
    }
    .image-column {
        margin-left: 3%;
        width: 47%;
    }
}


/*############## Our service #########################*/

.our-services-sec {
    padding: 43px 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    /* align-items: center; */
    /* margin-top: 3rem; */
    background: black;
}

.our-services-intro {
    /* width: 33%; */
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 2rem;
}

.our-services-intro span {
    color: #f25643;
    font: 1.063rem Roboto Slab, sans-serif;
    text-align: left;
    width: 100%;
}

.our-services-intro h2 {
    color: #ffffff;
    font: 2.4rem Roboto Slab, sans-serif;
    letter-spacing: -2.5px;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.our-services-intro p {
    color: #000;
    text-align: left;
    font-size: 1rem;
    width: 80%;
    margin-top: 1rem;
}

.our-services-intro a {
    position: static;
    display: inline-flex;
    width: max-content;
    transition: all ease-in-out 0.3s;
    margin-top: 1rem;
}

.our-services-intro a:hover {
    background-color: #e58f51d4;
    color: #fff;
}

.our-services-type {
    /*width: 67%;*/
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.seo-card {
    border-radius: 10px;
    box-sizing: border-box;
    background-color: rgba(247, 237, 255, 1);
    display: flex;
    /*  */
    width: 47%;
    flex-direction: column;
    align-items: start;
    font: 500 16px/1 "Roboto Slab", sans-serif;
    padding: 6px 24px 15px 24px;
    /*border: 1px solid rgba(85, 0, 150, 1);*/
    box-shadow: inset 0px 0px 11px #ec663985;
}

.seo-header {
    align-self: stretch;
    display: flex;
    /* gap: 20px; */
    /* font: 500 1.5rem "Roboto Slab", sans-serif; */
    align-items: center;
    justify-content: space-between;
}

.seo-header #seo-title {
    font-weight: 500;
    color: #000;
    font-size: 18px;
    line-height: 1.25;
    padding-right: 1rem;
    font-family: "Roboto Slab", sans-serif;
}

.seo-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 60px;
    border-radius: 60px;
    /* padding: 10px; */
}

.seo-icon {
    transition: transform 0.5s ease-in-out;
    transform-origin: center;
}

.seo-card:hover .seo-icon {
    transform: rotateY(180deg);
}

.seo-card:not(:hover) .seo-icon {
    transform: rotateY(0deg);
}

.seo-description {
    color: rgba(66, 66, 66, 1);
    width: 82%;
    margin: 18px 0 0;
    margin-top: 0;
    font: 400 15px/22px Roboto, sans-serif;
}

.seo-link {
    color: rgba(85, 0, 150, 1);
    font-size: 1rem;
    font-family: "Roboto Slab", sans-serif;
    line-height: 1;
    letter-spacing: 0.8px;
    margin-top: 33px;
    text-decoration: none;
    cursor: pointer;
}

.seo-link:hover,
.seo-link:focus {
    text-decoration: underline;
    /* color: #666; */
}

@media screen and (max-width: 768px) {
    .our-services-sec {
        padding: 30px 0;
        flex-direction: column;
        /* margin-top: 2rem; */
    }
    .content-wrapper {
        padding-bottom: 2rem !important;
    }
    .our-services-intro {
        width: 100%;
        text-align: center;
    }
    .our-services-intro span,
    .our-services-intro h2,
    .our-services-intro p {
        text-align: start;
        width: 100%;
    }
    .our-services-intro a {
        position: relative;
        margin: 1rem auto 0;
    }
    .our-services-type {
        flex-direction: column;
        align-items: center;
    }
    .seo-card {
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 10px 20px;
    }
    .seo-header {
        flex-direction: column;
        align-items: center;
    }
    .seo-header #seo-title {
        text-align: center;
        padding-right: 0;
    }
    .seo-description {
        width: 100%;
    }
}


/*################ Our services --Mobile view css ###################*/

@media screen and (max-width: 576px) {
    .custom-width-12 {
        width: 100%;
    }
    .trend-hero-background {
        padding-bottom: 0px;
    }
    .custom-width-6 {
        width: 50%;
    }
    .our-services-intro h1,
    .our-services-intro p {
        width: 100%;
    }
    .our-services-intro a {
        position: static;
        margin-top: 1rem;
        padding: 7px 25px;
    }
    .our-services-intro {
        margin-bottom: 1rem;
    }
    .our-services-sec {
        /* margin-top: 7rem; */
    }
    .our-services-intro h1 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 41px;
    }
    .our-services-intro p {
        font-size: 1rem;
    }
    .seo-header #seo-title {
        font-size: 1.5rem;
        font-weight: 500;
    }
    .seo-link {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .custom-width-12 {
        width: 100%;
    }
    .custom-width-6 {
        width: 50%;
    }
    .our-services-intro h1,
    .our-services-intro p {
        width: 100%;
    }
    .our-services-intro a {
        position: static;
        margin-top: 1rem;
    }
    .our-services-intro {
        margin-bottom: 1rem;
    }
    .our-services-sec {
        /* margin-top: 7rem; */
    }
    .our-services-intro h1 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 41px;
    }
    .our-services-intro p {
        font-size: 1rem;
    }
    .seo-header #seo-title {
        font-size: 1.5rem;
        font-weight: 500;
    }
    .seo-link {
        margin-top: 1rem;
    }
    .our-services-type {
        flex-direction: row;
    }
    .seo-card {
        width: 48%;
    }
    .seo-description {
        width: 100%;
    }
}

@media screen and (min-width:767px) and (max-width:992px) {
    .seo-description {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .our-services-sec {
        margin-top: 4rem;
    }
    .our-services-intro h1 {
        font-size: 2.5rem;
        width: 100%;
    }
    .seo-card {
        padding: 30px 30px 30px 13px;
    }
}


/*################# how it work-section #######################*/


/*.step-card {*/


/*  border-radius: 10px;*/


/*  background-color: rgba(255, 239, 207, 1);*/


/*  display: flex;*/


/*  width: 100%;*/


/*  flex-direction: column;*/


/*  align-items: flex-start;*/


/*  color: rgba(0, 0, 0, 1);*/


/*  margin: 0 auto;*/


/*  padding: 20px;*/


/*  border: 1px solid rgba(255, 168, 0, 1);*/


/*  height:160px;*/


/*  overflow:hidden;*/


/*}*/


/*.step-header {*/


/*  display: flex;*/


/*  gap: 20px;*/


/*  white-space: nowrap;*/


/*  font: 400 20px/1.2 "Roboto Slab", sans-serif;*/


/*}*/


/*.step-header h2 {*/


/*  font: 500 1.5rem/1.2 "Roboto Slab", sans-serif;*/


/*}*/


/*.step-description {*/


/*  margin-top: 18px;*/


/*  font: 400 16px/22px Roboto, sans-serif;*/


/*}*/

@media screen and (max-width: 576px) {
    /*  .work-heading .w-section-title {*/
    /*    font-size: 2rem;*/
    /*    font-weight: 700;*/
    /*    line-height: 3rem;*/
    /*    text-align: center;*/
    /*  }*/
    /*  .process-steps {*/
    /*    flex-direction: column;*/
    /*    align-items: stretch;*/
    /*    gap: 0;*/
    /*  }*/
    /*  .process-step {*/
    /*    width: 100%;*/
    /*    margin-left: 0;*/
    /*  }*/
    /*  .seo-header h2 {*/
    /*    font-size: 1.5rem;*/
    /*    font-family: 500;*/
    /*    line-height: 28.8px;*/
    /*  }*/
    /*  .step-description {*/
    /*    font-size: 1rem;*/
    /*    font-weight: 400;*/
    /*    width: 100%;*/
    /*  }*/
    /*  .step-card{*/
    /*    padding: 22px;*/
    /*  }*/
    /*}*/
    @media screen and (min-width: 576px) and (max-width: 767px) {
        /*  .work-heading .w-section-title {*/
        /*    font-size: 2rem;*/
        /*    font-weight: 700;*/
        /*    line-height: 3rem;*/
        /*    text-align: center;*/
        /*  }*/
        /*  .process-steps {*/
        /*    flex-direction: row;*/
        /*    flex-wrap: wrap;*/
        /*    margin-top: 1rem;*/
        /*    align-items: stretch;*/
        /*    gap: 20px;*/
        /*  }*/
        /*  .process-step {*/
        /*    width: 48%;*/
        /*    margin-top: 0;*/
        /*    margin-left: 0;*/
        /*  }*/
        /*  .seo-header h2 {  */
        /*    font-size: 1.5rem;*/
        /*    font-family: 500;*/
        /*    line-height: 28.8px;*/
        /*  }*/
        /*  .step-description {*/
        /*    font-size: 1rem;*/
        /*    font-weight: 400;*/
        /*    width: 100%;*/
        /*  }*/
        /*}*/
        @media screen and (min-width: 767px) and (max-width: 991px) {
            /*  .process-step {*/
            /*    width: 48%;*/
            /*    margin-top: 0;*/
            /*    margin-left: 0;*/
            /*  }*/
            /*}*/
            @media screen and (min-width: 900px) and (max-width: 1100px) {
                /*  .step-description{*/
                /*    margin-top: 18px;*/
                /*  }*/
                /*  .step-card{*/
                /*    padding: 22px 18px;*/
                /*  }*/
                /*}*/
                /*################ Why choos us section #################*/
                .choose-section {
                    /* margin-top: 3rem; */
                    margin-bottom: 4rem;
                    height: 600px;
                    width: 100%;
                    background: url("../images/trend-bg.svg") center no-repeat;
                    background-color: #000000eb;
                    background-size: cover;
                    object-fit: cover;
                    padding: 5%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    /* gap: 50px; */
                }
                .result-sec {
                    background: url("../images/result.png") center no-repeat;
                    background-size: cover;
                    object-fit: cover;
                    width: 48%;
                    height: 100%;
                }
                .features-container {
                    /*  */
                    overflow: hidden;
                }
                .features-grid {
                    display: flex;
                    /* gap: 20px; */
                    margin-top: 34%;
                    justify-content: center;
                    align-items: center;
                }
                .feature-column {
                    display: flex;
                    flex-direction: column;
                    line-height: normal;
                    width: 45%;
                }
                .feature-card {
                    border-radius: 10px;
                    display: flex;
                    flex-grow: 1;
                    flex-direction: column;
                    border: 1px solid #282828c2;
                }
                .feature-content {
                    border-radius: 10px;
                    background-color: #282828c2;
                    display: flex;
                    width: 100%;
                    flex-direction: column;
                    padding: 21px;
                    border: 1px solid rgb(40, 40, 40);
                }
                .feature-header {
                    display: flex;
                    gap: 20px;
                    color: rgb(255, 255, 255);
                    justify-content: space-between;
                    font: 500 20px/24px "Roboto Slab", -apple-system, Roboto, Helvetica, sans-serif;
                }
                .feature-header h2 {
                    font-size: 1.4rem;
                }
                .feature-icon {
                    aspect-ratio: 1;
                    object-fit: contain;
                    object-position: center;
                    width: 50px;
                }
                .feature-description {
                    color: rgb(241, 248, 251);
                    margin-top: 17px;
                    font: 400 16px/22px Roboto, sans-serif;
                }
                .feature-column-right {
                    margin-left: 20px;
                }
                .skills-container {
                    width: 48%;
                }
                .skills-container {
                    display: flex;
                    max-width: 50%;
                    /* padding: 0 29px 0 0; */
                    flex-direction: column;
                    overflow: hidden;
                    /* align-items: flex-start; */
                    color: #fff;
                    font: 400 16px/1.2 "Roboto Slab", sans-serif;
                }
                .highlight-text {
                    color: #ffa800;
                    font-size: 17px;
                    z-index: 10;
                    /* margin: -4px 0 0; */
                    /* margin-top: 3rem; */
                }
                .main-title {
                    font-size: 2.2rem;
                    line-height: 40px;
                    /* width: 80%; */
                    font-weight: 400;
                    align-self: stretch;
                    margin-top: 0.5rem;
                }
                .description {
                    color: #f1f8fb;
                    font-family: Roboto, sans-serif;
                    line-height: 22px;
                    margin: 15px 0 0;
                    width: 86%;
                }
                .skill-title {
                    font-size: 18px;
                    font-weight: 500;
                    margin: 2rem 0 0;
                    width: 84%;
                    display: flex;
                    align-items: center;
                }
                .skill-title img {
                    vertical-align: middle;
                    padding-right: 1.5rem;
                }
                @media screen and (max-width: 1245px) {
                    .main-title {
                        width: 100%;
                    }
                    .feature-content {
                        padding: 22px;
                    }
                    .features-grid {
                        margin-top: 39%;
                    }
                }
                /*@media screen and (min-width:900px) and (max-width:1200px) {*/
                .choose-section {
                    margin-top: 4rem;
                    flex-direction: column-reverse;
                    height: unset;
                }
                .skills-container {
                    max-width: 100%;
                    width: 100%;
                    padding-bottom: 3rem;
                }
                .skills-container .skill-title {
                    font-size: 17px;
                }
                .skills-container .main-title {
                    width: 85%;
                    font-size: 1.9rem;
                    font-weight: 700;
                    font-family: "Roboto Slab";
                    margin-top: 0.5rem;
                }
                .skills-container .description {
                    width: 100%;
                }
                .result-sec {
                    width: 100%;
                }
                .skills-container .skill-title {
                    width: 100%;
                    margin-top: 1rem;
                    display: flex;
                }
                .skills-container .skill-title img {
                    padding-right: 1rem;
                    height: 20px;
                }
                .skills-container .skill-title span {
                    font-weight: 600;
                }
                .result-sec {
                    aspect-ratio: 1.85;
                    border-radius: 7px;
                    margin-bottom: 370px;
                }
                .features-grid {
                    flex-direction: column;
                    position: absolute;
                    z-index: 9999;
                    left: 2.5%;
                    margin-top: 58%;
                    right: 2.5%;
                }
                .feature-column {
                    width: 100%;
                }
                .feature-card {
                    border: 1px solid #e2a938;
                    margin-bottom: 1rem;
                }
                .feature-column-right {
                    margin-left: 0;
                }
                .feature-description {
                    margin-top: 0;
                    font-size: 1rem;
                    width: 85%;
                }
                .feature-header h2 {
                    font-size: 1.25rem;
                }
            }
            @media screen and (max-width: 1245px) {
                .features-grid {
                    flex-direction: row;
                    gap: 20px;
                    margin-top: 20%;
                }
                .feature-column {
                    width: 46%;
                }
                .feature-column-right {
                    width: 46%;
                }
                .result-sec {
                    margin-bottom: 0;
                }
            }
            @media screen and (max-width: 1245px) {
                .features-grid {
                    flex-direction: column;
                    gap: 20px;
                    margin-top: 34%;
                }
                .feature-column {
                    width: 90%;
                }
                .feature-column-right {
                    width: 90%;
                    margin-left: 0;
                }
                .main-title {
                    font-size: 2rem;
                }
                .skill-title img {
                    /* width: 24px; */
                    height: 20px;
                    padding-right: 0.8rem;
                }
            }
            @media screen and (min-width:576px) and (max-width:767px) {
                .result-sec {
                    margin-bottom: 406px;
                }
            }
            /*############### -- Feature portfolio - ###############*/
            .portf-section {
                padding: 0 5%;
            }
            .services-grid {
                margin-top: 2%;
                display: flex;
                flex-direction: column;
                overflow: hidden;
            }
            .services-row {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                /* gap: 20px; */
                width: 100%;
            }
            .service-column {
                display: flex;
                flex-direction: column;
                width: 32%;
                /* margin-left: 20px; */
            }
            .service-column:first-child {
                margin-left: 0;
            }
            .service-card {
                border-radius: 10px;
                display: flex;
                width: 100%;
                flex-direction: column;
                /* align-items: center; */
                padding: 9px 9px 21px;
                border: 1px solid #ffa800;
                margin-top: 20px;
            }
            .card-header {
                display: flex;
                gap: 20px;
                justify-content: space-between;
            }
            .service-image-wrapper {
                display: flex;
                flex-direction: column;
                border-radius: 10px;
                position: relative;
                aspect-ratio: 1.484;
                /* width: 371px; */
                max-width: 100%;
                overflow: hidden;
                margin: 4px 12px 0;
            }
            .service-image {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
            .service-tag {
                /* position: absolute;
  bottom: 1.2rem;
  left: 25%; */
                position: relative;
                bottom: 3rem;
                width: fit-content;
                align-self: center;
                border-radius: 30px;
                background-color: #000;
                padding: 7px 14px;
                color: #ffa800;
                font: 400 16px/1.4 Roboto, sans-serif;
                z-index: 1;
                text-align: center;
            }
            .service-content {
                border-radius: 10px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                margin: 20px 12px 0;
                padding: 20px;
                border: 1px solid #ffa800;
                background-color: #ffefd1;
            }
            .service-title {
                color: #000;
                font: 500 1.5rem/29px "Roboto Slab", -apple-system, Roboto, Helvetica, sans-serif;
            }
            .service-description {
                color: #000;
                margin-top: 22px;
                font: 400 16px/22px Roboto, sans-serif;
            }
            .service-footer {
                align-self: stretch;
                display: flex;
                margin-top: 7px;
                gap: 20px;
                justify-content: space-between;
            }
            .divider {
                border-top: 1px solid #000;
                align-self: flex-end;
                margin-top: 47px;
                width: 240px;
                height: 1px;
            }
            .icon {
                aspect-ratio: 0.88;
                object-fit: contain;
                /* width: 44px; */
            }
            .icon-right {
                padding: 15px;
                background-color: #ffa800;
                color: #000;
                border-radius: 50%;
            }
            .icon-right:hover {
                background-color: #e2a938;
            }
            @media screen and (max-width:680px) {
                .work-heading .w-section-label {
                    font-size: 1.063rem;
                }
                .work-heading .w-section-title {
                    font-size: 2rem;
                    line-height: 3rem;
                }
                .service-card {
                    margin-top: 0;
                }
                .service-tag {
                    /* position: absolute; */
                    left: 5%;
                }
                .service-content .section-title {
                    font-size: 1.5rem;
                }
                .service-content .service-description {
                    font-size: 1rem;
                }
                .services-row {
                    flex-direction: column;
                    gap: 20px;
                }
                .service-column {
                    width: 100%;
                }
            }
            @media screen and (min-width:680px) and (max-width:992px) {
                .services-row {
                    flex-direction: row;
                    gap: 20px;
                }
                .service-column {
                    width: 48%;
                }
            }
            /*########## Testimonial sectionn #############*/
            .image-gallery {
                display: flex;
                gap: 10px;
                margin-bottom: 1rem;
            }
            .review-btn {
                object-fit: contain;
                object-position: center;
                font-size: 0.7rem;
                padding: 4px;
                width: 23px;
                text-align: center;
                background-color: #e80186;
                border-radius: 50%;
                border: none;
                color: #fff;
            }
            .review-btn:hover {
                background-color: #9f1d69c4;
                cursor: pointer;
            }
            .dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background-color: gray;
                /* Inactive dot color */
                display: inline-block;
                margin: 0 5px;
                cursor: pointer;
            }
            .dot.active {
                background-color: #e80186;
                /* Active dot color */
            }
            .testimonial-sec {
                display: flex;
                padding: 0 5%;
                justify-content: center;
                align-items: flex-start;
                gap: 20px;
                margin-top: 4rem;
                padding-bottom: 2rem;
            }
            .testi-content {
                width: 50%;
            }
            .testi-content span {
                color: #550096;
            }
            .testi-content h2 {
                /*font-size: 2.813rem;*/
                font-weight: 600;
                font-family: "Roboto Slab";
                width: 86%;
            }
            .testi-content>p {
                padding-top: 1rem;
                width: 65%;
            }
            .test-user-conntent {
                width: 50%;
            }
            .test-user-content {
                border: 3px solid #e80186;
                padding: 20px;
                border-radius: 12px;
                box-shadow: 0 4px 8px rgba(232, 1, 134, 0.3);
                background: linear-gradient(135deg, #ffe0f0, #fff);
                transition: all 0.3s ease-in-out;
            }
            .test-user-content:hover {
                border-color: #c60070;
                /* Darker border on hover */
                box-shadow: 0 6px 12px rgba(198, 0, 112, 0.4);
                /* Stronger shadow */
            }
            .test-user-content div {
                margin-top: 1rem;
            }
            @media screen and (max-width: 1240px) {
                .testi-content h1 {
                    width: 100%;
                    font-size: 2.34rem;
                }
            }
            @media screen and (max-width: 1240px) {
                .testi-content {
                    width: 100%;
                }
                .choose-section {
                    margin-top: 4rem !important;
                    margin-bottom: 4rem !important;
                    padding-bottom: 50px;
                    padding-top: 30px;
                }
                .how-it-work {
                    padding: 0px 0px !important;
                }
                .testimonial-sec {
                    flex-direction: column;
                }
                .testi-content span {
                    font-size: 1.063rem;
                    font-family: cursive;
                }
                .testi-content h1 {
                    font-size: 2rem;
                    font-weight: 700;
                }
                .testi-content p {
                    font-size: 1rem;
                    width: 100%;
                }
                .image-gallery {
                    margin-bottom: 20px;
                }
                #client-name {
                    width: 70%;
                }
            }
            @media screen and (max-width: 1240px) {
                .testi-content {
                    width: 70%;
                }
                .testi-content h1 {
                    font-size: 2rem;
                }
            }
            @media screen and (max-width: 1240px) {
                .testi-content h1 {
                    font-size: 2rem;
                }
            }
            /*################ Our team ###################**/
            .our-team-container {
                background-color: #ffefdb;
                padding: 3% 5%;
                margin-top: 3rem;
            }
            .our-team-container>span {
                color: #550096;
                display: inline-block;
                width: 100%;
                text-align: left;
            }
            .our-team-container>.heading-teams {
                display: flex;
                justify-content: space-between;
            }
            .our-team-container>.heading-teams h2 {
                font-size: 2.2rem;
                margin-top: 0.5rem;
                /* width: 30%; */
            }
            .our-team-container>.heading-teams a {
                width: unset;
            }
            .our-team-container>p {
                width: 35%;
                margin-bottom: 1.5rem;
            }
            .our-team-container>.team-list-container {
                display: flex;
                margin-top: 3.3rem;
                gap: 30px;
                overflow: hidden;
                position: relative;
                width: 100%;
                box-sizing: border-box;
            }
            .team-list-container .member-box {
                position: relative;
                border-radius: 20px;
                width: 24%;
                /* min-width: 310px; */
                width: 100%;
                flex: 0 0 calc(25% - 30px);
                height: 360px;
                border: 3px solid #ffb22bd1;
                overflow: hidden;
                box-sizing: border-box;
                margin-top: 2.3rem;
                transition: All 0.7s ease-in;
                cursor: pointer;
            }
            .team-list-container .member-box img {
                width: -webkit-fill-available;
                height: auto;
                max-width: 100%;
                user-select: none;
                vertical-align: middle;
                filter: grayscale(100%);
                /* transition: filter 0.3s; */
                transition: All 0.5s ease-in;
            }
            .member-box .team-degination {
                position: absolute;
                bottom: -4px;
                width: 100%;
                text-align: center;
                padding: 1rem;
                border: 1px solid rgba(255, 255, 0, 0.1);
                transition: all 0.3s ease-in;
                color: #000000;
                background-color: #ffb22bd1;
                border-radius: 20px;
                opacity: 0;
            }
            .team-degination h4.team-name {
                font-size: 1.5rem;
                font-family: "Roboto Slab";
                font-weight: 500;
                text-transform: capitalize;
                line-height: 1.4;
            }
            .team-degination h5.team-position {
                text-transform: capitalize;
                font-size: 1rem;
                font-family: "Roboto Slab";
                font-weight: 500;
            }
            .team-list-container .member-box:not(.active) {
                background-color: #ddd;
            }
            .team-list-container .member-box.active {
                background-color: #4CAF50;
                margin-top: 0rem;
                margin-left: 1rem;
                color: white;
                animation-delay: 0.3s;
                animation-name: fadeIn;
            }
            .team-list-container .member-box:hover .team-degination {
                opacity: 1;
            }
            .team-list-container .member-box:hover img {
                filter: grayscale(0%);
            }
            .team-list-container .member-box.active img {
                filter: grayscale(0%);
                transform: scale(1.15);
            }
            .team-list-container .member-box.active .team-degination {
                opacity: 1;
            }
            .hook-box {
                width: 30%;
                position: relative;
            }
            .hooker-svg {
                transform: translateX(151%);
                z-index: 9999;
                position: absolute;
                right: 170px;
                animation: slide 3.5s infinite linear;
            }
            @keyframes slide {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-100%);
                }
            }
            .member-btn-mob {
                display: none;
            }
            @media screen and (max-width:576px) {
                .our-team-container {
                    padding-bottom: 3rem;
                    margin-top: 2rem;
                    /* text-align: justify; */
                }
                .our-team-container .heading-teams {
                    flex-direction: column;
                    align-items: center;
                }
                .our-team-container .heading-teams h1 {
                    width: 100%;
                    text-align: center;
                    font-size: 2rem;
                    font-family: "Roboto Slab";
                }
                .member-btn-mob {
                    display: flex;
                }
                .member-btn-desk {
                    display: none;
                }
                .our-team-container .heading-teams a,
                .member-btn-mob {
                    width: 170px;
                    text-align: center;
                }
                .our-team-container p {
                    width: 100%;
                    text-align: justify;
                }
                .our-team-container>span {
                    text-align: start;
                }
            }
            /* for display team member animation */
            @media screen and (max-width: 576px) {
                .our-team-container>.team-list-container {
                    display: flex;
                    margin-top: 3.2rem;
                    overflow: hidden;
                    position: relative;
                    width: 100%;
                    gap: 0;
                }
                .team-list-container .member-box {
                    position: relative;
                    border-radius: 20px;
                    min-width: unset;
                    width: 100%;
                    flex: 0 0 100%;
                    height: 430px;
                    border: 3px solid #ffb22bd1;
                    overflow: hidden;
                    box-sizing: border-box;
                    margin-top: 2.8rem;
                    transition: All 0.7s ease-in;
                    margin-top: 0;
                }
                .team-list-container .member-box.active {
                    margin-left: 0;
                }
                .hook-box {
                    width: 60%;
                }
                .hooker-svg {
                    transform: translateX(151%);
                    right: 0;
                }
            }
            @media screen and (max-width:576px) {
                .our-team-container {
                    padding-bottom: 3rem;
                }
                .our-team-container>.team-list-container {
                    gap: 30px;
                }
                .team-list-container .member-box {
                    width: 50%;
                    min-width: unset;
                    flex: 0 0 calc(50% - 30px);
                    height: 300px;
                }
                .hook-box {
                    width: 42%;
                }
                .hooker-svg {
                    transform: translateX(151%);
                    right: 0;
                }
                .our-team-container>span {
                    text-align: left;
                }
            }
            @media screen and (min-width:576px) and (max-width:767px) {
                .our-team-container>.heading-teams h1 {
                    width: 50%;
                }
                .our-team-container>p {
                    width: 50%;
                }
            }
            @media screen and (max-width:576px) {
                .our-team-container {
                    padding-bottom: 3rem;
                }
                .our-team-container>.team-list-container {
                    gap: 30px;
                }
                .team-list-container .member-box {
                    /* width: 50%;  */
                    min-width: unset;
                    flex: 0 0 calc(33.3% - 30px);
                    height: 270px;
                }
                .hook-box {
                    width: 27%;
                }
                .hooker-svg {
                    transform: translateX(151%);
                    right: 0;
                }
                .our-team-container>span {
                    text-align: left;
                }
            }
            @media screen and (max-width:480px) {
                .team-list-container .member-box {
                    height: 300px;
                }
            }
            /*################# FAQ section ###################*/
            :root {
                --faq-ink: #1b0f14;
                --faq-rose: #d64550;
                --faq-orange: #f2874b;
                --faq-gold: #ffb238;
                --faq-cream: #fff3e6;
            }
            .faq-container {
                margin-top: 100px;
                padding: 80px 0;
                background: linear-gradient(135deg, var(--faq-ink) 0%, var(--faq-rose) 45%, var(--faq-orange) 100%);
                width: 100%;
                position: relative;
                overflow: hidden;
            }
            .background-image-bg::before {
                content: none;
            }
            .faq-container::before {
                content: "";
                position: absolute;
                top: -20%;
                right: -10%;
                width: 55%;
                height: 140%;
                background: radial-gradient(circle, rgba(255, 178, 56, 0.25) 0%, rgba(255, 178, 56, 0) 70%);
                pointer-events: none;
                z-index: 0;
            }
            .faq-left {
                display: flex;
                flex-direction: column;
                width: 32%;
                position: sticky;
                top: 100px;
                z-index: 2;
            }
            .faq-left div {
                display: inline-flex;
            }
            .faq-left div .line-blog {
                display: none;
            }
            .faq-left div span {
                color: var(--faq-ink);
                background: var(--faq-cream);
                font-weight: 700;
                font-size: 0.8rem;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                padding: 6px 16px;
                border-radius: 30px;
                width: fit-content;
            }
            .faq-left h2 {
                color: var(--faq-cream);
                width: 100%;
                margin-top: 1.1rem;
                font-family: "Anton", sans-serif;
                font-weight: 400;
                text-transform: uppercase;
                font-size: 2.6rem;
                line-height: 1.05;
                letter-spacing: -0.5px;
            }
            .faq-left p {
                color: var(--faq-cream);
                opacity: 0.82;
                margin-top: 1.1rem;
                font-size: 0.95rem;
                line-height: 1.6;
                width: 90%;
            }
            .faq-right {
                display: flex;
                width: 62%;
                flex-direction: column;
                align-items: stretch;
                z-index: 2;
                max-height: none;
                background: none;
                padding: 0;
                justify-content: flex-start;
                border-radius: 0;
            }
            /* FAQ Responsive Media Queries */
            @media screen and (max-width: 767px) {
                .faq-container {
                    margin-top: 50px;
                    padding: 50px 0;
                }
                .faq-left {
                    width: 100% !important;
                    position: relative !important;
                    top: 0 !important;
                    align-items: flex-start !important;
                    margin-bottom: 24px !important;
                }
                .faq-left h2 {
                    font-size: 2rem !important;
                    width: 100% !important;
                }
                .faq-left p {
                    width: 100% !important;
                    text-align: left !important;
                }
                .faq-right {
                    width: 100% !important;
                }
            }
            @media screen and (min-width: 768px) and (max-width: 991px) {
                .faq-left {
                    width: 38% !important;
                }
                .faq-right {
                    width: 58% !important;
                }
            }
            @media screen and (min-width: 992px) {
                .faq-left {
                    width: 32% !important;
                }
                .faq-right {
                    width: 62% !important;
                }
            }
            /*############### Latest blog ####################*/
            .latest-blog-container {
                padding: 0 5%;
                margin-top: 3rem;
                margin-bottom: 2.5rem;
            }
            .latest-blog-container>span {
                color: #550096;
            }
            .latest-blog-container>.line-blog {
                width: 40px;
                border: 1px solid #550096;
                display: inline-block;
                margin-bottom: 7px;
            }
            .latest-blog-container>.heading-teams {
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                margin-top: 0.7rem;
                margin-bottom: 0.5rem;
            }
            .latest-blog-container>.heading-teams h2 {
                font-size: 2.2rem;
                /* margin-top: 0.5rem !important; */
                /* width: 30%; */
            }
            .latest-blog-container>.heading-teams .blog-btn {
                width: 10%;
                margin-top: 0;
            }
            .latest-blog-container>p {
                width: 40%;
                margin-bottom: 1.5rem;
                color: #4F4F4F;
            }
            .blog-btn-mob {
                display: none;
            }
            .blog-grid-container {
                width: 100%;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1.1rem;
            }
            .blog-box {
                width: 23%;
                height: 335px;
                /*border: 1px solid #FFA800;*/
                background-color: #FFFAF1;
                border-radius: 10px;
                padding: 1rem;
                display: flex;
                flex-direction: column;
                box-shadow: 0px -3px 2px #df9c337d;
            }
            .blog-box .blog-img {
                width: -webkit-fill-available;
                height: 250px;
                overflow: hidden;
                margin-bottom: 0.85rem;
            }
            .blog-box .blog-img img {
                width: 100%;
                height: 100%;
                object-fit: auto;
                border-radius: 10px;
            }
            .blog-box .blog-heading {
                font-size: 1.125rem;
                font-weight: 500;
                font-family: "Roboto Slab";
                width: 90%;
                margin-bottom: 0.85rem;
            }
            .blog-box .blog-content {
                font-size: 0.875rem;
                font-family: "Roboto";
                width: 90%;
                margin-bottom: 0.85rem;
            }
            .blog-box a {
                font-family: "Roboto Slab";
                font-size: 0.875rem;
                color: #550096;
            }
            /* Mobile View */
            @media screen and (max-width: 576px) {
                .latest-blog-container>.line-blog {
                    display: none;
                }
                .latest-blog-container span {
                    font-size: 17px;
                    line-height: 21.2px;
                }
                .latest-blog-container .heading-teams {
                    flex-direction: column;
                    margin-top: 0;
                    margin-bottom: 0.6rem;
                    margin-top: 0.5rem !important;
                }
                .latest-blog-container .heading-teams h1 {
                    width: 100%;
                    font-size: 2rem;
                    font-weight: 700;
                    font-family: "Roboto Slab";
                }
                .latest-blog-container .heading-teams .blog-btn {
                    width: auto;
                }
                .latest-blog-container>p {
                    width: 100%;
                    margin-bottom: 0.8rem;
                    line-height: 24px;
                }
                .blog-btn-desk {
                    display: none;
                }
                .blog-btn-mob {
                    display: flex;
                    margin-bottom: 0.8rem;
                }
                .blog-grid-container {
                    flex-direction: column;
                }
                .blog-box {
                    width: 100%;
                }
                .blog-box a {
                    font-size: 12px;
                }
                .contact-info {
                    align-self: start;
                    width: 100%;
                }
            }
            /* Tab View  */
            @media screen and (min-width:576px) and (max-width:767px) {
                .latest-blog-container>.line-blog {
                    width: 30px;
                }
                .latest-blog-container>.heading-teams h1 {
                    font-size: 2rem;
                    width: 70%;
                }
                .latest-blog-container>p {
                    width: 70%;
                }
                .blog-box {
                    width: 48%;
                }
                .blog-box .blog-img {
                    height: 200px;
                }
                .blog-box .blog-img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 10px;
                }
                .blog-box .blog-content {
                    width: 90%;
                }
            }
            @media screen and (min-width:576px) and (max-width:992px) {
                .blog-box .blog-img {
                    height: 250px;
                }
            }
            @media screen and (min-width:576px) and (max-width:992px) {
                .blog-box .blog-img {
                    height: 160px;
                }
                .blog-box .blog-content {
                    width: 100%;
                }
                .blog-box .blog-heading {
                    width: 100%;
                    font-size: 1rem;
                }
            }
            /* ########## ScrollBar code */
            ::-webkit-scrollbar {
                width: 12px;
                height: 12px;
            }
            ::-webkit-scrollbar-track {
                background: #dadad9;
                border-radius: 6px;
            }
            ::-webkit-scrollbar-thumb {
                background: #550096;
                border-radius: 6px;
                transition: all 0.25s ease-in;
                cursor: pointer;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #5500965a;
            }
            ::-webkit-scrollbar-thumb:active {
                background: #5500965a;
            }
            .learn-more {
                display: inline-flex;
                align-items: center;
                text-decoration: none;
                font-size: 16px;
                font-weight: 600;
                color: #333;
                transition: color 0.3s ease;
            }
            .learn-more i {
                margin-left: 8px;
                transition: transform 0.3s ease;
            }
            .learn-more:hover {
                color: #007bff;
            }
            .learn-more:hover i {
                transform: rotate(-40deg);
            }
            /* Common styles for both links */
            .learn-more,
            .seo-link {
                display: inline-flex;
                align-items: center;
                text-decoration: none;
                font-size: 16px;
                font-weight: 600;
                color: #333;
                transition: color 0.3s ease;
            }
            .learn-more i,
            .seo-link i {
                margin-left: 8px;
                transition: transform 0.3s ease;
            }
            /* Hover Effect */
            .learn-more:hover,
            .seo-link:hover {
                color: #282828;
                /* Change to your preferred color */
            }
            .learn-more:hover i,
            .seo-link:hover i {
                transform: rotate(-40deg);
                /* Rotate to point upwards */
            }
            .seo-card {
                background-color: #ffffff;
                /* Default background color */
                transition: background-color 0.3s ease-in-out;
            }
            .seo-card:hover {
                background-color: #f4a261;
                /* Change to your preferred color */
            }
            .seo-card:hover {
                background-color: #da3d6514;
                /* Change background color */
                /* color: #ffffff; */
            }
            /* .seo-card:hover h2,
.seo-card:hover p,
.seo-card:hover .seo-link {
    color: #ffffff; 
} */
            /* Styling the section */
            .how-it-work {
                text-align: center;
                padding: 50px 0;
            }
            /* Heading styles */
            .work-heading .w-section-title {
                font-size: 24px;
                font-weight: bold;
                margin-bottom: 20px;
            }
            /* Process steps container */
            .process-steps {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }
            /* Individual step card */
            .step-card {
                background: #fff;
                padding: 20px;
                border-radius: 10px;
                text-align: center;
                width: 250px;
                box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                position: relative;
            }
            /* Large step numbers */
            .step-number {
                font-size: 80px;
                font-weight: bold;
                position: absolute;
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
                color: transparent;
                -webkit-text-stroke: 2px #ff6600;
                /* Outline */
            }
            /* Add colors to step numbers */
            .step-card:nth-child(1) .step-number {
                -webkit-text-stroke-color: #ff6600;
            }
            /* Orange */
            .step-card:nth-child(2) .step-number {
                -webkit-text-stroke-color: #ff3366;
            }
            /* Pink */
            .step-card:nth-child(3) .step-number {
                -webkit-text-stroke-color: #33ccff;
            }
            /* Blue */
            .step-card:nth-child(4) .step-number {
                -webkit-text-stroke-color: #9933ff;
            }
            /* Purple */
            /* Step Header */
            .step-header h2 {
                font-size: 20px;
                margin-top: 60px;
                font-weight: bold;
            }
            /* Step Description */
            .step-description {
                font-size: 14px;
                color: #666;
                margin-top: 10px;
            }
            /*########## banners url for all banner css  #################*/
            /* ============================================================
   GLOBAL TYPOGRAPHY STANDARDIZATION (H2 & P)
   ============================================================ */
            /* Standardizing all Section Headings */
            h2,
            .ara-heading,
            .our-expertise-title,
            .seo-right h2,
            .testimonial-head,
            .awt-testi-heading,
            .hiw-title,
            .clients-title,
            .faq-left h2,
            .heading-teams h2,
            .display-4 {
                font-family: "Roboto Slab", sans-serif !important;
                font-weight: 700 !important;
                font-size: 36px !important;
                line-height: 1.3 !important;
            }
            /* Standardizing all Section Paragraphs */
            .ara-lead,
            .seo-right p,
            .our-services-intro p,
            .awt-testi-subtext,
            .hiw-sub,
            .faq-left p,
            p.lead {
                font-family: "Roboto", sans-serif !important;
                font-weight: 400 !important;
                font-size: 16px !important;
                line-height: 1.65 !important;
            }
            /* Mobile Adjustments for Headings */
            @media (max-width: 768px) {
                h2,
                .ara-heading,
                .our-expertise-title,
                .seo-right h2,
                .testimonial-head,
                .awt-testi-heading,
                .hiw-title,
                .clients-title,
                .faq-left h2,
                .heading-teams h2,
                .display-4 {
                    font-size: 28px !important;
                    line-height: 1.3 !important;
                }
                .ara-lead,
                .seo-right p,
                .our-services-intro p,
                .awt-testi-subtext,
                .hiw-sub,
                .faq-left p,
                p.lead {
                    font-size: 15px !important;
                }
            }
            .ara-lead,
            .seo-right p,
            .our-services-intro p,
            .awt-testi-subtext,
            .hiw-sub,
            .faq-left p,
            p.lead {
                font-family: "Roboto", sans-serif !important;
                font-weight: 400 !important;
                font-size: 16px !important;
                line-height: 1.65 !important;
            }
        }
        @media screen and (max-width: 445px) {
            .hero-background {
                height: 285px;
            }
        }
        @media screen and (min-width: 446px) and (max-width: 767px) {
            .hero-background {
                height: 520px;
            }
        }
        @media screen and (min-width: 768px) and (max-width: 991px) {
            .hero-background {
                height: 555px;
            }
        }
        @media screen and (min-width: 992px) and (max-width: 1099px) {
            .hero-background {
                height: 580px;
            }
        }