@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

:root {
    --gradient: linear-gradient(90deg, rgb(73 8 76) 62%, rgba(240, 181, 1, 1) 100%);
    --theme: #bc32c3;
    --theme-dark: #1c1b1b;
    --light-gradient: linear-gradient(94deg, #890209 27.74%, #1212124a 63.14%);
}

body {
    word-break: break-word;
    font: 15px/25px "Roboto", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-size: 17px;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Roboto';
    margin-bottom: 10px;
}

/***** Font Files *****/

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Roboto", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Roboto", sans-serif;
    font-size: 43px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
    margin: 0 0 20px;
}

h3 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css */

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 40px;
    cursor: pointer;
    display: block;
    height: calc(4px * 3 + 11px * 2);
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffffff;
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

/***** Tornado Animation *****/

.bar--top {
    bottom: calc(50% + 9px + 4px/ 2);
    transition-property: bottom, transform;
    transition-delay: calc(0s + 0.35s) * .6;
}

.bar--middle {
    top: calc(50% - 4px/ 2);
    transition-property: opacity, transform;
    transition-delay: calc(0s + 0.35s * .3);
    width: 70%;
    margin-left: auto;
}

.bar--bottom {
    top: calc(50% + 8px + 4px/ 2);
    transition-property: top, transform;
    transition-delay: 0s;
}

#checkbox:checked+.toggle .bar--top {
    transform: rotate(-135deg);
    transition-delay: 0s;
    bottom: calc(50% - 4px/ 2);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
    transform: rotate(-135deg);
    transition-delay: calc(0s + 0.35s * .3);
}

#checkbox:checked+.toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(-225deg);
    transition-delay: calc(0s + 0.35s * .6);
}

header {
    position: absolute;
    width: 100%;
    padding: 15px 0px;
    z-index: 99;
    border-bottom: 1px solid #ffffff5c;
    background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, 0) 100%);
    transition: 0.3s ease-in-out;
}

header>.container-fluid {
    padding: 0 40px;
}

header a.logo_here {
    display: block;
}

header a.logo_here>img {
    width: 160px;
    filter: brightness(0) invert(1);
}

header ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.btn1 {
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

header ul div#menuToggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

header ul div#menuToggle>span {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-bg-gradient_overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #BC32C3;
    background: #7d1782;
    background: linear-gradient(90deg, rgb(125 23 130 / 84%) 62%, rgb(240 181 1 / 62%) 100%);
}

.banner {
    position: relative;
    padding-top: calc(100px + 6rem);
    padding-bottom: 3rem;
    min-height: 90vh;
    height: unset;
    z-index: 1;
    background: #121212;
    overflow: hidden;
}

.hero-bg-gradient_overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 30%;
    height: 40%;
    width: 30%;
    background-color: #89020985;
    -webkit-box-shadow: 0 0 20em 20em #89020985;
    box-shadow: 0 0 20em 20em #89020985;
    border-radius: 50%;
    opacity: .9;
}

.banner .banner_textt>span {
    color: #fff;
    font-size: 23px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}

.banner .banner_textt>h1 {
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: bold;
    font-size: 80px;
    margin-bottom: 20px;
}

.banner .banner_textt>p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.btn2 {
    text-transform: uppercase;
    background: #fff;
    position: relative;
    display: block;
    width: fit-content;
    transition: 0.5s ease-in-out;
}

.btn2:after {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(94deg, #ffffff -2.26%, #000000 63.14%);
    -webkit-filter: blur(9px);
    filter: blur(9px);
    z-index: -1;
    pointer-events: none;
}

.btn2>.btn_inn:before {
    content: "";
    position: absolute;
    background: var(--gradient);
    z-index: 1;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    border-radius: 100%;
    pointer-events: none;
    width: 100%;
    height: 100%;
    left: 0;
    transition: all .3s !important;
    z-index: -1;
}

.btn2>.btn_inn {
    overflow: hidden;
    letter-spacing: .9px;
    display: flex;
    width: fit-content;
    line-height: 1;
    align-items: center;
    gap: 5px;
    padding: 0 25px;
    height: 55px;
    font-size: 20px;
    position: relative;
    -webkit-transition: all .3s !important;
    transition: all .3s !important;
    font-weight: 700;
    z-index: 1;
    color: #bc32c3;
    padding-right: 20px;
}

.btn2:hover .btn_inn:before {
    transform: translateY(0%);
    border-radius: 0;
}

.btn2:hover .btn_inn:before {
    color: #fff;
}

.btn2:hover {
    color: #fff;
}

.btn2:hover>.btn_inn {
    color: #fff;
}

.btn2>.btn_inn>span {
    width: 19px;
    height: 15px;
    background: #bc32c3;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    transition: 0.3s ease-in-out;
}

.btn2:hover>.btn_inn>span {
    background: #fff;
}

.banner .banner_textt>ul.rating_wrp {
    margin: 0;
    display: flex;
    gap: 70px;
    margin-top: 40px;
    align-items: flex-start;
}

.banner .banner_textt>ul.rating_wrp>li:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.banner .banner_textt>ul.rating_wrp>li:first-child>div>ul {
    display: flex;
    align-items: center;
    gap: 3px;
}

.banner .banner_textt>ul.rating_wrp>li:first-child>div>ul>li>i {
    color: #ecc80d;
}

.banner .banner_textt>ul.rating_wrp>li span {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}

.banner .banner_textt>ul.rating_wrp>li:first-child:after {
    position: absolute;
    content: "";
    display: block;
    right: -35px;
    width: 1px;
    height: 70px;
    top: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(30%, #fff), color-stop(70%, #fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 30%, #fff 70%, rgba(255, 255, 255, 0) 100%);
    -webkit-transform: rotate(30deg);
    transform: rotate(20deg);
}

.banner_slider_wrpr {
    position: absolute;
    top: 0;
    display: flex;
    gap: 20px;
    transform: rotate(15deg);
    z-index: -2;
    right: 0;
}

.banner_slider {
    width: 420px;
}

.banner_slider img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    opacity: 1;
}

.banner_slider .slick-list {
    overflow: visible;
}

.banner_slider .slick-track {
    display: flex;
    flex-direction: column;
}

.banner_slider2 {
    transform: scaleY(-1);
}

.banner_slider2 img {
    transform: scaleY(-1);
}

header .row {
    align-items: center;
}

/* logos sec */

.logos_secc {
    background: var(--theme-dark);
    padding: 30px 0px;
}

.logos_secc .logos_slider img {
    width: 90px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.logos_secc .logos_slider .slick-slide {
    opacity: 1;
}

.all-sec {
    padding: 70px 0px;
}

.creative_web_sec {
    background: #1c1b1b;
}

.creative_web_sec .creative_web_textt>h2 {
    margin-bottom: 30px;
}

.creative_web_sec .creative_web_textt>p {
    margin: 0;
}

.creative_web_sec .creative_web_textt>ul {
    margin: 45px 0px;
}

.creative_web_sec .creative_web_textt>ul>li {
    margin-bottom: 30px;
    font-size: 24px;
    color: #ffff;
    line-height: 1.2;
}

.creative_web_sec .creative_web_textt>ul>li>i {
    margin-right: 10px;
    color: var(--theme);
}

.creative_web_sec .creative_web_textt>ul>li>span {
    color: #fff;
    font-weight: bold;
}

.creative_web_sec .vid_wrpr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    margin-top: 30px;
}

.creative_web_sec .vid_wrpr>.vid_box {
    position: relative;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative_web_sec .vid_wrpr>.vid_box>video {
    width: 100%;
}

.creative_web_sec .vid_wrpr>.vid_box>a {
    position: absolute;
    background: var(--theme-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    border: 3px solid #fff;
    z-index: 1;
}

.creative_web_sec .vid_wrpr>.vid_box>a:after {
    border-radius: 50%;
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(94deg, #850f0f -2.26%, #000000 63.14%);
    -webkit-filter: blur(10px);
    filter: blur(5px);
    z-index: -2;
    pointer-events: none;
    left: 0;
    top: 0;
}

.creative_web_sec .vid_wrpr:before {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 100vw;
    height: 100px;
    left: 0;
    z-index: -1;
}

.creative_web_sec .vid_wrpr>.vid_textt>h3 {
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 20px;
}

.creative_web_sec .vid_wrpr>.vid_textt>span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
}

.portfolio_sec {
    background: var(--gradient);
    position: relative;
}

.theme_heading>span {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.theme_heading>p {
    font-size: 20px;
}

.portfolio_sec ul.tabs_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0px 50px;
}

.portfolio_sec ul.tabs_list>li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    min-width: 110px;
}

.portfolio_sec ul.tabs_list>li>i {
    color: #fff;
    font-size: 20px;
}

.portfolio_sec ul.tabs_list>li>span {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    width: 15px;
    height: 15px;
    background: var(--theme);
    transform: rotate(90deg);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.portfolio_sec ul.tabs_list>li.curr-tab {
    background: #fff;
    color: var(--theme);
}

.portfolio_sec ul.tabs_list>li.curr-tab>i {
    color: var(--theme);
}

.portfolio_sec ul.tabs_list>li.curr-tab>span {
    opacity: 1;
}

.portfolio_sec>.container-fluid {
    padding: 0 40px;
}

.portfolio_sec a.port_wrp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.portfolio_sec a.port_wrp>img {
    width: 100%;
    height: auto;
}

.portfolio_sec a.port_wrp>span {
    position: absolute;
    width: 150px;
    text-align: center;
    background: #00000082;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 50%;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.6;
    transition: 0.3s ease-in-out;
    transform: scale(0);
}

.portfolio_sec a.port_wrp:hover>span {
    transform: scale(1);
}

.cus-tabs {
    display: none;
}

.cus-tabs.curr-tab {
    display: block;
}


.full_services_sec {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.full_services_sec:before {
    content: "";
    position: absolute;
    left: -10%;
    right: 30%;
    top: -30%;
    bottom: -30%;
    background: radial-gradient(ellipse at center, #bc32c3 0, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: .45;
    z-index: 1;
}

.full_services_sec:after {
    content: "";
    position: absolute;
    right: -10%;
    left: 30%;
    top: -70%;
    bottom: -40%;
    background: radial-gradient(ellipse at center, #bc32c3 0, rgba(149, 54, 229, 0) 74%, rgba(149, 54, 229, 0) 100%);
    opacity: .45;
    z-index: 0;
}

.full_services_sec .container {
    z-index: 1;
    position: relative;
}

/* Section */
.partners-section {
    position: relative;
    z-index: 1;
    padding: 50px 0 70px;
}

.partners-logos {
    margin: 0 -12px 40px;
}

.partners-logos .slick-track {
    display: flex;
    align-items: center;
}

.partners-logos .slick-slide {
    padding: 12px;
}

/* Partner card */
.partners-section .partner {
    max-width: 100%;
    text-align: center;
    position: relative;
    padding: 14px 16px;
    opacity: 1;
}

/* Background / border effect */
.partners-section .partner::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    mask-image: linear-gradient(135deg,
            #000 0%,
            #000 22%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(135deg,
            #000 0%,
            #000 22%,
            rgba(0, 0, 0, 0) 100%);
}

/* Logo container (replaces .m-slide__media) */
.partners-section .partner img {
    width: 80%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
}



.partners-section .partners-cta {
    margin-top: 28px;
    text-align: center;
}

/* Brand name */
.partners-section .partner span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 170%;
    opacity: 0.7;
    color: #fff;
}




.c-btn.-glow {
    --btn-padding-top-bottom: 0.75em;
    --btn-padding-left-right: 20px;
    --btn-primary-border: 3px;
    --btn-font-weight: 700;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: var(--btn-font-weight);
    /* text-decoration: none; */
    border: var(--btn-primary-border) solid;
    border-image-slice: 1;
    border-image-source: var(--gradient);
    color: #fff;
    padding: 0;
    transition: all 0.3s;
    font-size: 20px;
}



.c-btn.-glow>span {
    transition: all 0.3s;
}

.c-btn.-glow>span:first-child {
    display: inline-flex;
    padding: var(--btn-padding-top-bottom, 10px) var(--btn-padding-left-right, 20px);
    padding-right: calc(var(--btn-padding-left-right, 20px) + 20px);
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 100%;
}

/* Shine effect on hover */
.c-btn.-glow>span:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s, transform 0.6s;
    transform: rotate(30deg) translate(-210px, 180px);
    height: 350px;
    width: 150%;
    mix-blend-mode: multiply;
}

.c-btn.-glow>span>span {
    display: block;
    transition: all 0.5s;
}

/* Arrow icon */
.c-btn.-glow .c-btn__ico {
    max-width: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.c-btn.-glow .c-btn__ico i {
    transition: all 0.2s;
    margin-right: 0;
    font-size: 20px;
    color: var(--theme);
}

/* Pulsing glow effect */
.c-btn.-glow::after {
    content: "";
    position: absolute;
    inset: -6px;
    /* border: 8px solid; */
    border-image-slice: 1;
    /* border-image-source: linear-gradient(to left, rgb(137 2 9), rgb(0 0 0 / 30%)); */
    filter: blur(5px);
    pointer-events: none;
    opacity: 0.6;
    animation: pulse-btn 2.1s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-btn {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Hover effects */
.c-btn.-glow:hover {
    border-image-source: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
}

.c-btn.-glow:hover>span:first-child {
    width: 100%;
    background: radial-gradient(83.83% 83.83% at 24.85% 6.89%, #b371ea 0, #9536e5 16.15%, #470083 60.42%, #009cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-btn.-glow:hover>span:first-child::before {
    transform: rotate(30deg) translate(-40%, -10%);
    opacity: 1;
    transition: opacity 0.1s, transform 0.7s;
}

.c-btn.-glow:hover>span>span {
    transform: scale(1.05);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-btn.-glow:hover .c-btn__ico {
    transform: translateY(-50%) translateX(5px) scale(1.05);
}

.c-btn.-glow:hover .c-btn__ico i {
    color: var(--theme);
}


/* Section Container */
.web-services-section {
}

/* Background Gradient Effects */
.web-services-section::before {
}

.web-services-section::after {
}

.web-services-section .container {
    position: relative;
    z-index: 1;
}

.web-services-section .container::before {
}

/* Main Content (Left Column) */
.main-content {
    position: sticky;
    top: 100px;
    padding-top: 40px;
}

.section-heading {
    margin-bottom: 40px;
}

.pre-title {
}

.section-title {
}

.section-description p {
}

.main-image {
    margin-bottom: 40px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Wrapper (Right Column) */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Service Card */
.service-card {
}

.service-card>* {
}

/* Card Background Effect */
.service-card::before {
}

/* Card Expander */
.card-expander {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

.card-expander img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
}

/* Service Icon */
.service-icon {
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: hue-rotate(117deg) saturate(1.2) brightness(0.9) drop-shadow(0 0 20px rgba(137, 2, 9, 0.3));
}

/* Service Title */
.service-title {
}

/* Service Description */
.service-description {
}

.service-description p {
    font-size: 20px;
    margin: 0;
}

/* Service Image */
.service-image {
}

.service-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* new css */

.case_studies_secc {
    position: relative;
    background: linear-gradient(180deg, #cb1f203d, transparent);
    z-index: 1;
    height: 900px;
}

.case_studies_secc>img {
    display: none;
}

.case_studies_secc .theme_heading>h2 {
    background: var(--gradient);
    background: linear-gradient(90deg, #fff 52%, var(--theme) 50%);
    color: #00000000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: normal;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    padding-left: 70px;
}

.case_studies_secc .theme_heading>p {
    text-align: right;
    color: #000;
    font-size: 24px;
    margin: 0;
}

.case_studies_secc ul.cs_tabs_list {
    margin: 0;
}

.case_studies_secc ul.cs_tabs_list>li {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    cursor: pointer;
}

.case_studies_secc ul.cs_tabs_list>li>img {
    filter: brightness(0) invert(1);
    transition: 0.3s ease-in-out;
}

.case_studies_secc ul.cs_tabs_list>li:hover>img {
    transition: 0.2s ease-in-out;
    filter: none;
}

.case_studies_secc ul.cs_tabs_list>li:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 60%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.case_studies_secc ul.cs_tabs_list>li:hover:after {
    width: 100%;
    background: var(--theme);
    height: 4px;
}

.case_studies_secc .cs__details_wrp {
    position: relative;
    margin-top: 40px;
    z-index: 1;
}

.case_studies_secc .cs__details_wrp>img.cs_bg_img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    top: -60px;
    z-index: -1;
    opacity: 0.05;
    object-fit: contain;
    height: 190px;
}

.case_studies_secc .cs__details_wrp>ul.csub_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
}

.case_studies_secc .cs__details_wrp>ul.csub_box>li>p {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom:
        20px;
}

.case_studies_secc .cs__details_wrp>ul.csub_box>li:first-child {
    width: 50%;
}

.case_studies_secc .cs__details_wrp>ul.csub_box>li:last-child {
    width: 50%;
    margin-left: auto;
}

.case_studies_secc .cs__details_wrp>ul.csub_box>li>p:last-child {
    margin: 0;
}

.case_studies_secc .cs__details_wrp>ul.csub_box>li>img {
    width: 100px;
    object-fit: contain;
}

.case_studies_secc .cs__details_wrp>ul.csub_box:after {
    position: absolute;
    content: "";
    background: #000;
    width: 33%;
    height: 2px;
    left: 120px;
}

.case_studies_secc .cs__details_wrp h3 {
    color: var(--theme);
    line-height: 1;
    font-size: 147px;
    font-weight: bold;
}

.case_studies_secc .cs__details_wrp h3>span {
    font-size: 50px;
    line-height: 1;
}

.case_studies_secc .cs__details_wrp .col-lg-4.col-md-6>p {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    width: 80%;
    margin-left: auto;
}

.case_studies_secc .cs__details_wrp ul.cs_btns {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-top: 40px;
    gap: 20px;
}

.case_studies_secc .theme_heading>p>a {
    color: var(--theme);
    font-weight: 500;
}

.case_studies_secc .c-btn.-glow>span>span {
    color: var(--theme);
}

.case_studies_secc ul.cs_tabs_list>li.curr-tab>img {
    filter: none;
    transition: 0.2s ease-in-out;
}

.case_studies_secc ul.cs_tabs_list>li.curr-tab:after {
    width: 100%;
    background: var(--theme);
    height: 4px;
}

.case_studies_secc>.cs-f-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 35vw;
    height: 900px;
    object-fit: cover;
    z-index: -1;
    transition: 0.5s ease-in-out;
    filter: brightness(0.5);
}

.case_studies_secc>img.cus-tabs.curr-tab.cs-f-img {
    opacity: 1;
    display: block;
}

.case_studies_secc>img.cus-tabs.cs-f-img {
    opacity: 0;
    display: block;
}

.testi_sec {
    background: var(--theme-dark);
}

.testi_sec .row {
    align-items: center;
}

.testi_sec .testi_left_cards {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--gradient);
    padding: 50px 20px;
    justify-content: center;
}

.testi_sec .testi_left_cards>img {
    width: 190px;
    filter: brightness(80.5);
}

.testi_sec .testi_left_cards>div>h3 {
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
    font-size: 20px;
}

.testi_sec .testi_left_cards>div>p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
    text-transform: uppercase;
}

.testi_sec .slick-slide {
    opacity: 1;
    margin: 10px 0px;
}

.testi_sec .testi_left_wrpr {
    position: relative;
    width: 90%;
    z-index: 1;
}

.testi_sec .testi_left_wrpr>.bg-card-color {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 100%;
    height: 210px;
    left: 0;
    top: 180px;
    z-index: -1;
}

.testi_sec .testi_left_wrpr:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 38%;
    z-index: 1;
    /* background-image: linear-gradient(to bottom, #0a0a0a 35%, transparent 75%); */
}

.testi_sec .testi_left_wrpr:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    /* background-image: linear-gradient(to bottom, #0a0a0a 35%, transparent 75%); */
    transform: rotate(180deg);
}

.testi_sec .testi_left_wrpr>ul.tsliderBtn {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    right: -50px;
    top: 42%;
}

.testi_sec .testi_left_wrpr>ul.tsliderBtn>li>span {
    background: var(--theme);
    width: 30px;
    height: 30px;
    display: block;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    transform: rotate(-90deg);
}

.testi_sec .testi_left_wrpr>ul.tsliderBtn>li:last-child>span {
    transform: rotate(90deg);
}

.testi_sec .testi_left_wrpr>ul.tsliderBtn>li {
    cursor: pointer;
}

.testi_sec .slick-arrow {
    display: block !IMPORTANT;
}

.testi_sec .testi_right_textt>span {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
}

.testi_sec .testi_right_textt>h4 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
}

.testi_sec .testi_right_textt>h4>strong {
    color: var(--theme);
}

.testi_sec .testi_right_textt {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi_sec .testi_right_wrpr {
    position: relative;
    z-index: 1;
}

.testi_sec .testi_right_wrpr>i {
    position: absolute;
    font-size: 300px;
    z-index: -1;
    line-height: 1;
    top: -10px;
    left: 40%;
    background: linear-gradient(94deg, #890209 -2.26%, #ff0000 63.14%);
    color: #00000000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .6;
    background-image: linear-gradient(to bottom, #732776, #57215b, #3d1b41, #251327, #0d040e);
}

.btn3 {
    font-size: 20px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s ease-in-out;
}

.btn3>span {
    width: 19px;
    height: 15px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    display: block;
    transition: 0.3s ease-in-out;
}

section.full_services_sec.all-sec .c-btn.-glow .c-btn__ico i {
    color: #fff;
}

section.full_services_sec.all-sec .c-btn.-glow:hover .c-btn__ico i {
    color: var(--theme);
}

.btn3:hover>span {
    transform: translate(10px, 0px);
}

.btn3:hover {
    color: #fff;
}

.cms_platform_secc .cms_plat_left_wrpr {
    padding-top: 70px;
    position: sticky;
    top: 0;
}

.cms_platform_secc {
    background: linear-gradient(180deg, #bc32c352, transparent);
    position: relative;
}

.cms_platform_secc .cms_plat_left_wrpr>h2 {
    color: #000;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cms_platform_secc .cms_plat_left_wrpr>p {
    color: #000;
    font-size: 18px;
    margin-bottom: 40px;
}

.cms_platform_secc .cms_plat_right_box {
    padding: 30px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    border-left: 8px solid #3b7bce;
    position: relative;
}

.cms_platform_secc .cms_plat_right_box>.cms_plat_right_box_textt>h3 {
    color: #000;
    font-size: 28px;
    margin-bottom: 15px;
}

.cms_platform_secc .cms_plat_right_box>.cms_plat_right_box_textt>p {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}


.cms_platform_secc .cms_plat_right_box>.cms_plat_right_box_textt>a {
    background: var(--gradient);
    transition: 0.3s ease-in-out;
    display: none;
}

.cms_plat_right_box_textt .c-btn.-glow .c-btn__ico i {
    color: #ffff;
}

.cms_plat_right_box_textt .c-btn.-glow:hover .c-btn__ico i {
    color: #000;
}

.cms_platform_secc .cms_plat_right_box>.cms_plat_right_box_textt:hover>a {
    transform: translate(0px, 0px);
    opacity: 1;
}

.cms_platform_secc .cms_plat_right_box>.cms_plat_right_box_textt:hover>a {
    opacity: 1;
}

.cms_platform_secc .cms_plat_right_box.shopify-box {
    border-color: #5e8e3e;
}

.cms_platform_secc .cms_plat_right_box.magento-box {
    border-color: #f26322;
}

.cms_platform_secc .cms_plat_right_box:hover>.cms_plat_right_box_textt>a {
    display: block;
    width: fit-content;
}

.cms_platform_secc .cms_plat_right_box.wp-box:hover {
    background: linear-gradient(270deg, #3b7bce 0, #a1caff 87.41%);
}

.cms_platform_secc .cms_plat_right_box.shopify-box:hover {
    background: linear-gradient(270deg, #95bf47 0, #dbff8d 87.41%);
}

.cms_platform_secc .cms_plat_right_box.magento-box:hover {
    background: linear-gradient(270deg, #f26322 0, #ffb593 87.41%);
}

.website_design_process {
    background: var(--gradient);
}

.website_design_process .theme_heading>p {
    width: 65%;
    margin: 0 auto;
}

.website_design_process .theme_heading>p>a {
    color: #fff;
    font-weight: 600;
}
.website_design_process .wdp_box>img {
    display: block;
    margin-bottom: 60px;
        width: 40%;
}

.website_design_process .wdp_box>h3 {
    color: #fff;
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.website_design_process .wdp_box>p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.wdp_box:last-child {
  /* margin-right: 100vw; */
}
.pin-wrap {
  padding-right: 4vw;
}


.website_design_process .wdp_box>ul>li {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.website_design_process .wdp_box>ul>li>span {
    display: block;
    background: #fff;
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
}

.website_design_process .wdp_box {
    position: relative;
}

.website_design_process .wdp_box>span {
    color: rgba(255, 255, 255, .05);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .2);
    font-family: Roboto;
    font-size: clamp(70px, 9vw, 180px);
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
    display: block;
    margin-top: 0px;
}

/*  */

.website_design_process {
    position: relative;
    overflow: hidden;
}

.pin-wrap {
    /*display: flex;*/
    /*flex-wrap: nowrap;*/
    /*will-change: transform;*/
    margin: 0 10px;
}

.wdp_box {
    width: calc(100% / 2);
    flex-shrink: 0;
    padding: 40px 0;
    width: 100%;
}


.website_design_process .wdp_box>span.act_dot {
    width: 15px;
    height: 15px;
    display: block;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-bottom: 40px;
}

.progress-bar-wrap {
    position: absolute;
    top: 37.2%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #1ec8ff;
}

.website_design_process .wdp_box.active .act_dot {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 36px 11px #fff;
    background: #fff;
}

.website_design_process .wdp_box>ul>li:last-child {
    margin: 0;
}

.each_client_secc {
    position: relative;
    padding: 70px 0px;
    z-index: 1;
    padding-bottom: 0;
}

.each_client_secc>img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.each_client_secc:after {
    position: absolute;
    content: "";
    background: #000000a1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.each_client_secc .theme_heading>p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 500;
}

.each_client_secc .theme_heading>p>span {
    color: var(--theme);
}

.each_client_secc .theme_heading>a.btn2 {
    margin: 0 auto;
}

.each_client_secc .theme_heading {
    margin-bottom: 70px;
}

.each_client_secc .each_client_textt {
    text-align: center;
    padding: 0 20px;
    position: relative;
    height: 100%;
    padding-bottom: 60px;
}

.each_client_secc .each_client_textt>h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
}

.each_client_secc .each_client_textt>p {
    font-size: 17px;
    font-weight: 400;
    margin: 0;
}

.each_client_secc .each_client_textt:before {
    position: absolute;
    content: "";
    background: linear-gradient(94deg, rgba(59, 123, 206, 0) -2.27%, var(--theme) 30.87%);
    width: 1px;
    height: 100%;
    left: -10px;
    bottom: 0;
}

.each_client_secc .each_client_textt.last_linne:after {
    position: absolute;
    content: "";
    background: linear-gradient(94deg, rgba(59, 123, 206, 0) -2.27%, var(--theme) 30.87%);
    width: 1px;
    height: 100%;
    right: -10px;
    bottom: 0;
}

.redesign_portfolio .theme_heading>span {
    color: var(--theme);
    line-height: 1;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.redesign_portfolio .theme_heading>h2 {
    color: #000;
}

.redesign_portfolio .theme_heading>p {
    color: #000;
}

.redesign_portfolio .theme_heading>p:last-child {
    font-size: 25px;
}

.redesign_portfolio ul.rp_tabs_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 40px 0px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
}

.redesign_portfolio ul.rp_tabs_list>li>img {
    width: 150px;
    object-fit: contain;
    height: 90px;
}

.redesign_portfolio ul.rp_tabs_list>li {
    cursor: pointer;
    border-left: 1px solid #dedede;
    height: 100%;
    position: relative;
    padding: 0 30px;
    z-index: 1;
}

.redesign_portfolio ul.rp_tabs_list>li:last-child {
    border-right: 1px solid #dedede;
}

.redesign_portfolio ul.rp_tabs_list>li:after {
    position: absolute;
    content: "";
    background: #000;
    width: calc(100%);
    height: 5px;
    left: 0;
    bottom: -20px;
    z-index: 1;
    opacity: 0;
}

.redesign_portfolio ul.rp_tabs_list>li:last-child:after {
    width: 100%;
}

.redesign_portfolio ul.rp_tabs_list>li.curr-tab:after {
    opacity: 1;
}

.redesign_portfolio ul.rp_tabs_list>li:before {
    position: absolute;
    content: "";
    background: #000;
    width: 20px;
    height: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -30px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    opacity: 0;
}

.redesign_portfolio ul.rp_tabs_list>li.curr-tab:before {
    opacity: 1;
}

.redesign_portfolio>.container-fluid {
    padding: 0 50px;
}

.redesign_portfolio>.container-fluid ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.redesign_portfolio>.container-fluid ul>li {
    color: #000;
    font-size: 22px;
    font-weight: 500;
}

.redesign_portfolio>.container-fluid ul>li>img {
    transform: rotateY(180deg);
    width: 40px;
}

.redesign_portfolio .redesign_port_img {
    height: 500px;
}

.redesign_portfolio .redesign_port_img>img {
    display: block;
    margin: 0 auto;
    width: fit-content;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.redesign_portfolio .redesign_port_img>a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--theme);
    font-weight: 600;
    gap: 10px;
}

.redesign_portfolio .redesign_port_img>a>span.btn_ar {
    width: 20px;
    height: 17px;
    background: var(--theme);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    transform: rotate(90deg);
    margin-top: -8px;
}

.redesign_portfolio .redesign_port_img.show-img {
    height: auto;
}

/* menu */

.menu_box {
    position: fixed;
    right: 0;
    z-index: 999;
    width: 50%;
    background: var(--gradient);
    height: 100%;
    padding: 50px;
    padding-top: 140px;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.3s ease-in-out;
    transform: translateX(100%);
}

.menu_box>img {
    display: none;
}

.menu_box>ul {
    margin: 0;
}

.menu_box>ul>li>a {
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.menu_box>ul>li {
    margin-bottom: 20px;
}

.menu_box>ul>li:last-child {
    margin: 0;
}

.menu_box>ul>li>a.toggle_drop>span {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    width: 30px;
    height: 25px;
    display: block;
    background: #fff;
    transform: rotate(90deg);
    margin-top: -20px;
}

.menu_box>ul>li>a.toggle_drop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu_box>ul>li>.toggle_listing {
    margin-top: 20px;
    display: none;
}

.menu_box>ul>li>.toggle_listing>a.view_all {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.menu_box>ul>li>.toggle_listing a.title_linkss {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.menu_box>ul>li>a:hover {
    transition: 0.3s ease-in-out;
    color: var(--dark-theme);
}

.menu_box>ul>li>.toggle_listing ul {
    margin: 0;
}

.menu_box>ul>li>.toggle_listing ul>li>a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}

.menu_box>ul>li>.toggle_listing ul>li>a>i {
    transform: rotate(30deg);
    transition: 0.3s ease-in-out;
}

.menu_box>ul>li>.toggle_listing ul>li>a:hover>i {
    transform: rotate(0deg);
}

.menu_box>ul>li>.toggle_listing ul>li>a:hover {
    transition: 0.3s ease-in-out;
}


.menu_box::-webkit-scrollbar-track {
    background-color: transparent;
}

.menu_box::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
}

.menu_box::-webkit-scrollbar-thumb {
    background-color: var(--theme);
}

header.sticky {
    z-index: 9999;
    background: #0a0a0a87;
    position: fixed;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    padding: 10px 0px;
}

.menu_box.open_menu {
    transform: translateX(0);
}

body.show_layer {
    overflow: hidden;
    position: relative;
}

body.show_layer:after {
    position: absolute;
    content: "";
    background: #000000bd;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.menu_box>ul>li>a.toggle_drop.arr>span {
    transform: rotate(450deg);
    transition: 0.3s ease-in-out;
}

.menu_box>ul>li>.toggle_listing.show-list {
    display: block;
}

/* rayan css */

/* Section */
.partners-section {
    position: relative;
    z-index: 1;
    padding: 50px 0 70px;
}

.partners-logos {
    margin: 0 -12px 40px;
}

.partners-logos .slick-track {
    display: flex;
    align-items: center;
}

.partners-logos .slick-slide {
    padding: 12px;
}

/* Partner card */
.partners-section .partner {
    max-width: 100%;
    text-align: center;
    position: relative;
    padding: 14px 16px;
    opacity: 1;
}

/* Background / border effect */
.partners-section .partner::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    mask-image: linear-gradient(135deg,
            #000 0%,
            #000 22%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(135deg,
            #000 0%,
            #000 22%,
            rgba(0, 0, 0, 0) 100%);
}

/* Logo container (replaces .m-slide__media) */
.partners-section .partner img {
    width: 80%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
}



.partners-section .partners-cta {
    margin-top: 28px;
    text-align: center;
}

/* Brand name */
.partners-section .partner span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 170%;
    opacity: 0.7;
    color: #fff;
}

.c-btn.-glow>span {
    transition: all 0.3s;
}

@keyframes pulse-btn {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Hover effects */
.c-btn.-glow:hover {
    border-image-source: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
}

.c-btn.-glow:hover>span:first-child {
    width: 100%;
    background: radial-gradient(83.83% 83.83% at 24.85% 6.89%, #b371ea 0, #9536e5 16.15%, #470083 60.42%, #009cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-btn.-glow:hover>span:first-child::before {
    transform: rotate(30deg) translate(-40%, -10%);
    opacity: 1;
    transition: opacity 0.1s, transform 0.7s;
}

.c-btn.-glow:hover>span>span {
    /* transform: scale(1.05); */
    /* background: radial-gradient(83.83% 83.83% at 24.85% 6.89%, #b371ea 0, #9536e5 16.15%, #470083 60.42%, #009cff 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

.c-btn.-glow:hover .c-btn__ico {
    transform: translateY(-50%) translateX(5px) scale(1.05);
}

.c-btn.-glow:hover .c-btn__ico i {
    /* color: #6418a5; */
}


/* Section Container */
.web-services-section {
    position: relative;
    overflow-x: clip;
    padding: 80px 0 120px;
    background-color: #0a0a0a;
}

/* Background Gradient Effects */
.web-services-section::before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 50vw;
    bottom: 60%;
    left: -20%;
    border-radius: 100%;
    background: radial-gradient(ellipse at center, rgba(137, 2, 9, 0.6) 0%, rgba(137, 2, 9, 0) 70%);
    opacity: 0.3;
    pointer-events: none;
}

.web-services-section::after {
    content: "";
    position: absolute;
    width: 50vw;
    height: 80vw;
    border-radius: 100%;
    top: 10%;
    right: -25%;
    background: radial-gradient(ellipse at center, rgb(240 181 1 / 52%) 0%, rgba(220, 38, 38, 0) 60%);
    opacity: 0.4;
    pointer-events: none;
}

.web-services-section .container {
    position: relative;
    z-index: 1;
}

.web-services-section .container::before {
    content: "";
    position: absolute;
    width: 70vw;
    height: 70vw;
    top: 25%;
    left: 24%;
    border-radius: 100%;
    /* background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.4) 0%, rgba(185, 28, 28, 0) 70%); */
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

/* Main Content (Left Column) */
.main-content {
    position: sticky;
    top: 100px;
    padding-top: 40px;
}

.section-heading {
    margin-bottom: 40px;
}

.pre-title {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-description p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.main-image {
    margin-bottom: 40px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Wrapper (Right Column) */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Service Card */
.service-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 66px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(118deg, rgba(137, 2, 9, 0.08) 32.88%, rgba(137, 2, 9, 0) 100%);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.service-card>* {
    position: relative;
    z-index: 2;
}

/* Card Background Effect */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    z-index: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Card Expander */
.card-expander {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

.card-expander img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
}

/* Service Icon */
.service-icon {
    width: 90px;
    height: 90px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: hue-rotate(117deg) saturate(1.2) brightness(0.9) drop-shadow(0 0 20px rgba(137, 2, 9, 0.3));
}

/* Service Title */
.service-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Service Description */
.service-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.service-description p {
    font-size: 20px;
    margin: 0;
}

/* Service Image */
.service-image {
    position: absolute;
    inset: 0 10px auto 50%;
    width: auto;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.service-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* testimonials.css */

:root {
    --body-bg-alt: #0a0a0a;
    --secondary-color6: #009cff;
}

.client-testimonials {
    background-color: var(--body-bg-alt);
    color: #fff;
    overflow: hidden;
    padding: 60px 0;
}

.client-testimonials .container {
    padding: 100px 0;
    overflow: hidden;
}



/* Left Side - Client Info Slider */
.gallery-top {
    position: relative;
    background-image: linear-gradient(-132deg, #009cff 0, #9536e5 100%);
    box-shadow: 0 4px 37px rgba(117, 81, 224, 0.49);
    border-radius: 8px;
    max-height: 175px;
    height: 175px;
}

.gallery-top::before,
.gallery-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 20;
    pointer-events: none;
}

.gallery-top::before {
    top: 0;
    transform: translateY(-100%);
    background-image: linear-gradient(to bottom, var(--body-bg-alt) 35%, transparent 75%);
}

.gallery-top::after {
    bottom: 0;
    transform: translateY(100%);
    background-image: linear-gradient(to top, var(--body-bg-alt) 35%, transparent 75%);
}

.client-slider .slick-slide {
    height: 175px;
}

.gallery-top__item {
    height: 175px;
    width: 100%;
    padding: 10px 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}



.client-testimonials__logo img {
    max-width: 60px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}


.client-testimonials__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}



.client-testimonials__position {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3;
    opacity: 0.9;
}



/* Right Side - Testimonial Quotes Slider */
.gallery-bottom {
    position: relative;
    padding-left: 30px;
}


.gallery-bottom::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 194' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='.3' fill-rule='evenodd' clip-rule='evenodd' d='M253.391 132.796c-1.757-5.377-4.767-10.325-8.987-14.759-4.407-4.657-10.199-8.274-17.394-10.865-7.161-2.585-16.391-3.915-27.78-3.915h-15.45c1.855-19.0065 8.628-35.1997 20.314-48.5867 11.686-13.3592 27.904-25.0901 48.619-35.165L240.163.00001C212.867 11.6339 189.537 28.6448 170.164 51.1365c-19.394 22.4918-29.032 44.7895-29.032 66.9005 0 23.752 5.584 42.378 16.868 55.834C169.285 187.32 185.434 194 206.474 194c13.312 0 24.915-4.435 34.754-13.338C251.081 171.758 256 161.343 256 149.46c0-5.71-.879-11.287-2.609-16.664Zm-141.132 0c-1.743-5.377-4.774-10.325-8.973-14.759-4.4215-4.657-10.2197-8.274-17.3808-10.865-7.1888-2.585-16.4184-3.915-27.8001-3.915H42.6759c1.8404-19.0065 8.6071-35.1997 20.3-48.5867 11.6999-13.3592 27.8902-25.0901 48.6191-35.165L99.0237 0C71.7424 11.6339 48.4048 28.6448 29.0249 51.1365 9.64501 73.6283-.00002 95.926-.00002 118.037c0 23.752 5.59737 42.378 16.87522 55.834C28.1461 187.32 44.2948 194 65.3353 194c13.3397 0 24.9221-4.435 34.7607-13.338 9.853-8.904 14.772-19.319 14.772-31.202 0-5.71-.858-11.287-2.609-16.664Z' fill='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='256' y1='194' x2='53.3143' y2='-45.1797' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23009CFF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%239536E5'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    position: absolute;
    width: 138px;
    height: 104px;
    left: 2rem;
    top: 0;
    transform: translateY(-40%);
    filter: drop-shadow(0 0 0 #4396fc) brightness(1.4);
    z-index: 1;
}


.testimonial-slider .slick-slide {
    height: auto;
    min-height: 200px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.client-testimonials__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color6);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.client-testimonials__quote {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 750px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.client-testimonials__quote strong {
    color: var(--secondary-color6);
}



/* Navigation Arrows */
.client-testimonials__arrows {
    position: absolute;
    width: 30px;
    height: 100%;
    left: -2px;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    z-index: 10;
}

.arrow-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.arrow-btn:hover {
    opacity: 0.7;
}

.arrow-btn.prev-btn {
    transform: rotate(90deg);
}

.arrow-btn.next-btn {
    transform: rotate(-90deg);
}

.arrow-btn svg {
    width: 18px;
    height: 18px;
}



/* Client Reviews Section */
.client-reviews {
    display: flex;
    gap: 20px;
    margin: 3rem 0 0 30px;
    align-items: center;
}



/* DesignRush Widget Styling */
.designrush-widget {
    max-width: 188px;
}

.widget-link {
    position: relative;
    display: block;
    width: 188px;
    height: 74px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    text-decoration: none;
    padding: 10px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-count {
    position: absolute;
    top: 10.5px;
    right: 11.5px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.on-text {
    position: absolute;
    top: 24px;
    right: 11.5px;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.06em;
    color: #fff;
}

.on-text strong {
    font-weight: 700;
    margin-left: 3px;
}

.rating {
    display: flex;
    position: absolute;
    top: 41.5px;
    right: 11.5px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    white-space: nowrap;
    align-items: center;
    gap: 7px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 2px;
}

/* View Reviews Button */
.view-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--secondary-color6);
    color: var(--secondary-color6);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-reviews-btn:hover {
    background: var(--secondary-color6);
    color: #fff;
}

.view-reviews-btn svg {
    width: 18px;
    height: 18px;
}



/* Hide default slick arrows */
.slick-prev,
.slick-next {
    display: none !important;
}

/* Slick dots customization (optional) */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    color: var(--secondary-color6);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

/* style.css */
footer.site-footer {
    background: var(--gradient);
}

.footer-top {
    color: #fff;
    padding: 80px 0;
}

.footer-heading h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 55px;
}

.footer-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-widget {
    position: relative;
    font-size: 2rem;
    font-weight: 300;
    line-height: 180%;
    border-left: 1px solid var(--theme);
    padding: 0 30px;
    margin-bottom: 24px;
    height: 100%;
}

.footer-widget::before {
    content: "";
    position: absolute;
    background: #fff;
    pointer-events: none;
    left: -1px;
    width: 2px;
    height: 30px;
}

.widget-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 24px;
    margin-bottom: 0;
    margin-top: -2px;
}

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

.footer-menu li {
    margin-bottom: 8px;
    line-height: 1;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
    font-size: 18px;
}

.footer-menu li a:hover {
    text-decoration: underline;
}


/* footer-bottom.css */

.footer-bottom {
    color: #fff;
    padding: 10px 0 0;
    font-size: 16px;
    position: relative;
}

/* CTA Box */
.box-cta {
    position: fixed;
    bottom: 61px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    border-radius: 12px;
    padding: 20px 60px 20px 30px;
    z-index: 1000;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.box-cta-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.box-cta-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.box-cta-wrap {
    text-decoration: none;
    color: #fff;
    display: block;
}

.box-cta-pre {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    opacity: 0.9;
}

.box-cta-title {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.box-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer Break */
.footer-break {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-break::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 245px);
    height: 1px;
    background-color: #575757;
    pointer-events: none;
}

.footer-logo {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

/* Offices Grid */
.offices-grid {
    justify-content: space-between;
    border-bottom: 1px solid #575757;
    padding-bottom: 6vmin;
    margin-bottom: 0;
}

.offices-grid-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.city-abbreviation {
    font-size: 70px;
    line-height: 1;
    font-weight: 900;
    opacity: 0.15;
    padding-right: 15px;
    border-right: 1px solid;
    margin-right: 15px;
}

.office-address {
    padding-top: 5px;
}

.office-city {
    font-weight: 600;
    margin-bottom: 5px;
}

.office-address-text {
    font-size: 14px;
    line-height: 1.2;
}

/* Copy Privacy Section */
.copy-privacy {
    font-size: 14px;
    padding-top: 40px;
    padding-bottom: 20px;
    position: relative;
    gap: 6vmin;
}

.footer-col {
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #6f6f6f;
}

.copyright {
    font-weight: 400;
}

/* Navigation Button */
.nav-footer-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.nav-footer-btn:hover .burger-line {
    background-color: #575757;
}


/* footer-menu.css */

.burger-footer-menu {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 700px;
    z-index: 89;
    background: rgb(43 15 17);
    backdrop-filter: blur(11px);
    border-radius: 10px 0 0 0;
    padding: 5vmin;
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
    transform-origin: bottom right;
    pointer-events: none;
}



.burger-footer-menu.menu-open {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Navigation Container */
.burger-footer-nav {
    max-height: 77vh;
    overflow-y: auto;
    position: relative;
    overflow-x: hidden;
}

/* Custom Scrollbar */
.burger-footer-nav::-webkit-scrollbar {
    width: 6px;
}

.burger-footer-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.burger-footer-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.burger-footer-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Navigation List */
.burger-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Navigation Item */
.burger-nav-item {
    width: 100%;
    margin-bottom: 16px;
}



/* Menu Title */
.burger-menu-title {
    width: 100%;
    font-weight: 700;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 1.2rem 15px;
    border-radius: 4px;
}



.burger-menu-title:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Arrow Icon */
.burger-arrow-icon {
    width: 24px;
    height: 25px;
    position: absolute;
    left: 0;
    opacity: 0;
    top: 50%;
    transform: translate(-20px, -50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Submenu List */
.burger-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}



/* Submenu Item */
.burger-submenu-item {
    margin-bottom: 10px;
}

.burger-submenu-item a {
    display: block;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.burger-submenu-item a:hover {
    color: var(--theme);
}




/* Contact Section */
.contact-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(125, 23, 130, 1) 62%, rgba(240, 181, 1, 1) 100%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* Left Column - Text */
.contact-text-col {
    color: #ffffff;
}

.contact-heading {
    margin-bottom: 50px;
}

.contact-pretitle {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

/* Social Column */
.social-col {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-heading {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.social-heading span {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.social-heading::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
    margin-right: 20px;
    width: 80px;
}

.social-list {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.social-list-item {
    display: inline-block;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Right Column - Form */
.contact-form-col {
    padding-left: 30px;
}

.contact-form-wrapper {
    position: relative;
}

.form-heading {
    margin-bottom: 30px;
}

.form-title {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .form-group label {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    font-size: 0;
    z-index: 10;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    filter: brightness(40.5);
}

.contact-form .form-group.field-message label {
    top: 14px;
    transform: none;
}

/* Icon for Name field */
.contact-form .field-name label {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 13 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.899 9.4c-2.6 0-4.6-2.1-4.6-4.6 0-2.6 2.1-4.6 4.6-4.6 2.6 0 4.6 2.1 4.6 4.6.1 2.5-2 4.6-4.6 4.6zm0-8.8c-2.3 0-4.1 1.8-4.1 4.1s1.8 4.1 4.1 4.1 4.1-1.8 4.1-4.1c.1-2.2-1.8-4.1-4.1-4.1z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M5.9 9.5c-2.6 0-4.7-2.1-4.7-4.7C1.2 2.1 3.3 0 5.9 0s4.7 2.1 4.7 4.7c.1 2.6-2 4.8-4.7 4.8zm0-9.3c-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5c.1-2.5-2-4.5-4.5-4.5zm0 8.8C3.6 9 1.7 7.1 1.7 4.7 1.7 2.4 3.6.5 5.9.5c2.3 0 4.2 1.9 4.2 4.2C10.2 7.1 8.3 9 5.9 9zm0-8.3c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4c.1-2.2-1.7-4-4-4z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M11.7 18.999H.4c-.1 0-.3-.1-.3-.3v-3.9c0-3.3 2.7-6 6-6s6 2.7 6 6v3.9c-.1.2-.2.3-.4.3zm-11.1-.5h10.9v-3.7c0-3-2.4-5.4-5.4-5.4-3 0-5.4 2.4-5.4 5.4v3.7H.6z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M11.7 19.1H.4c-.2 0-.4-.2-.4-.4v-3.9c0-3.3 2.7-6.1 6.1-6.1 3.4 0 6.1 2.7 6.1 6.1v3.9c-.1.2-.3.4-.5.4zM6.1 9C2.9 9 .2 11.6.2 14.9v3.9c0 .1.1.2.2.2h11.4c.1 0 .2-.1.2-.2v-3.9C11.9 11.6 9.3 9 6.1 9zm5.4 9.6H.6c-.1 0-.1 0-.1-.1v-3.7c0-3 2.5-5.5 5.5-5.5s5.5 2.5 5.5 5.5v3.8c.1-.1 0 0 0 0zM.7 18.4h10.7v-3.6c0-2.9-2.4-5.3-5.3-5.3S.8 11.9.8 14.8v3.6H.7z' fill='%231b398f'%3E%3C/path%3E%3C/svg%3E");
}

/* Icon for Company field */
.contact-form .field-company label {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 19 19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.43 9.772c.095.094.19.094.285.094.095 0 .19-.094.19-.094.095-.093.095-.186.095-.28v-.186L9.785.259C9.733.21 9.624.185 9.52.19a.28.28 0 00-.21.068V.26L.095 9.306a.264.264 0 00-.072.192.599.599 0 00.072.274c.095.094.38.094.475 0l1.9-1.865v9.979c0 .187.19.373.38.373h4.37c.19 0 .38-.186.38-.373v-6.249h3.8v6.156c0 .186.19.373.38.373h4.465c.19 0 .285-.093.475-.28V8.094l1.71 1.678zM7.503 17.91a.144.144 0 00.002-.023v-6.341 6.342a.172.172 0 01-.002.022zm8.753.164a.475.475 0 00.187-.085l.075-.045c-.028.071-.103.13-.178.13h-.084zM15.96 7.348L9.5 1.006 3.218 7.172a.3.3 0 01.012.082v10.259h3.705v-6.155c0-.187.19-.373.38-.373h4.56c.19 0 .38.186.38.373v6.155h3.705V7.347z' fill='%231b398f'%3E%3C/path%3E%3C/svg%3E");
}

/* Icon for Email field */
.contact-form .field-email label {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 19 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.774 13.638H.373c-.093 0-.28-.093-.28-.28V.704c0-.093.094-.28.28-.28h17.401c.093 0 .28.094.28.28v12.749c-.093.093-.186.186-.28.186zM.56 13.172h16.936V.89H.56v12.283z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M17.774 13.732H.372A.4.4 0 010 13.36V.704A.4.4 0 01.372.332h17.402a.4.4 0 01.372.372v12.749c-.093.093-.186.279-.372.279zM.372.518a.2.2 0 00-.186.186v12.749a.2.2 0 00.186.186h17.402a.2.2 0 00.186-.186V.704a.2.2 0 00-.186-.186H.372zm17.122 12.749H.558c-.093 0-.093 0-.093-.093V.89c0-.093 0-.093.093-.093h16.936c.093 0 .093 0 .093.093l-.093 12.377c.093-.093.093 0 0 0zM.651 13.08h16.75V.983H.651v12.098z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M9.027 8.987c-.093 0-.093 0-.186-.093L.093.891a.283.283 0 010-.372.283.283 0 01.372 0l8.562 7.91 8.56-7.91a.283.283 0 01.373 0 .283.283 0 010 .372L9.213 8.894c-.093.093-.093.093-.186.093z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M9.026 9.08c-.093 0-.186 0-.186-.094L.093.983C0 .89 0 .797 0 .704 0 .611 0 .518.093.425.186.332.279.332.279.332c.093 0 .186 0 .28.093l8.467 7.817L17.494.425c.094-.093.187-.093.28-.093.093 0 .186 0 .279.093.093.093.093.186.093.28 0 .092 0 .185-.093.278L9.306 8.986c-.093 0-.186.093-.28.093zM.372.517C.28.518.28.518.28.611v.093s0 .093.093.093L9.12 8.8c.093.093.186.093.186 0L18.053.797l.093-.093V.611l-.093-.093h-.093l-8.561 7.91h-.093L.744.518H.372z' fill='%231b398f'%3E%3C/path%3E%3C/svg%3E");
}

/* Icon for Phone field */
.contact-form .field-phone label {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 19 19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.857 13.552l-.006-.003c-.16-.08-.422-.23-.758-.457a11.83 11.83 0 01-1.741-1.444 11.819 11.819 0 01-1.443-1.74 7.276 7.276 0 01-.454-.752l-.004-.008c-.38-.66-.253-1.588.287-2.128l1.384-1.384a.577.577 0 00.16-.382.585.585 0 00-.123-.396L4.252 1.305a.389.389 0 00-.277-.15.38.38 0 00-.291.118L1.493 3.465c-.183.182-.29.437-.342.732-.052.296-.05.643-.005 1.024.092.763.362 1.686.761 2.656.798 1.94 2.123 4.101 3.619 5.597 1.496 1.496 3.656 2.82 5.597 3.619.97.399 1.893.669 2.656.76.381.046.728.048 1.024-.004.295-.052.55-.16.732-.341l2.191-2.192a.38.38 0 00.12-.29.388.388 0 00-.152-.278l-3.552-2.907a.585.585 0 00-.397-.123.577.577 0 00-.38.16l-1.385 1.384c-.538.538-1.461.663-2.123.29zm8.579 2.474l-2.192 2.191c-.447.448-1.157.65-2.053.632-.894-.02-1.95-.259-3.06-.668-2.22-.818-4.622-2.304-6.315-3.997C3.123 12.491 1.637 10.09.819 7.87.409 6.759.17 5.703.15 4.809c-.019-.896.184-1.606.632-2.054L2.974.564A1.37 1.37 0 015.03.67l2.907 3.552c.506.62.46 1.56-.104 2.123L6.448 7.73a.782.782 0 00-.204.446.757.757 0 00.08.475c.036.07.065.125.112.207a7.763 7.763 0 00.306.489c.35.52.79 1.06 1.32 1.591.53.53 1.071.97 1.593 1.321a7.743 7.743 0 00.651.395.86.86 0 00.51.098.759.759 0 00.454-.2l1.384-1.384a1.607 1.607 0 012.123-.104l3.553 2.907c.649.531.698 1.463.106 2.055z' fill='%231b398f'%3E%3C/path%3E%3C/svg%3E");
}

/* Icon for Message field */
.contact-form .field-message label {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19.2h-.1c-.1 0-.2-.1-.2-.2v-4.1H.3c-.1 0-.3-.1-.3-.3V.4C0 .3.1.1.3.1H19c.1 0 .3.1.3.3v14.2c0 .1-.1.3-.3.3H9.7l-4.6 4.3H5zM.6 14.3H5c.1 0 .3.1.3.3v3.7l4.3-3.9s.1-.1.2-.1h9.1V.7H.7v13.6H.6z' fill='%231b398f'%3E%3C/path%3E%3Cpath d='M5 19.3h-.1c-.1-.1-.2-.2-.2-.3v-4H.4c-.2 0-.4-.2-.4-.4V.4C0 .2.2 0 .4 0h18.7c.2 0 .4.2.4.4v14.2c0 .2-.2.4-.4.4H9.9l-4.6 4.2c-.1 0-.2.1-.3.1zM.4.3C.3.3.2.4.2.5v14.2c0 .1.1.2.2.2h4.4c.1 0 .1 0 .1.1v4.1c0 .1 0 .1.1.2h.2L9.8 15h9.4c.1 0 .2-.1.2-.2V.6c0-.1-.1-.2-.2-.2H.4V.3zm4.9 18.1c-.1 0-.1 0 0 0-.1 0-.1 0 0 0l-.1-3.8c0-.1-.1-.2-.2-.2H.6c-.1 0-.1 0-.1-.1V.7C.5.6.5.6.6.6h18.2c.1 0 .1 0 .1.1v13.6c0 .1 0 .1-.1.1H9.6l-4.3 4zM.7 14.2H5c.2 0 .4.2.4.4v3.5l4.1-3.8c.1-.1.2-.1.2-.1h9V.8H.7v13.4z' fill='%231b398f'%3E%3C/path%3E%3C/svg%3E");
}

/* Form Input Styles */
.contact-form .form-control {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 10px 10px;
    padding-left: 52px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 52%);
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #555;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #fff;
}

.contact-form .form-control::-webkit-input-placeholder {
    color: #fff;
}

.contact-form .form-control::-moz-placeholder {
    color: #fff;
}

.contact-form .form-control:-ms-input-placeholder {
    color: #fff;
}

.contact-form .form-control::-ms-input-placeholder {
    color: #fff;
}

.contact-form textarea.form-control {
    height: 70px;
    min-height: 60px;
    padding-top: 13px;
    resize: vertical;
}

/* Submit Button */
.form-submit {
    margin-top: 25px;
    text-align: right;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #04e4ff 0%, #4992f3 50%, #9536e5 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(149, 54, 229, 0.4);
}

.btn-submit span:first-child {
    position: relative;
    z-index: 1;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

/* Spinner Gradient Background */
.spinner {
    overflow: hidden;
    z-index: 1;
    filter: hue-rotate(135deg);
}

.spinner-inn {
    position: relative;
    width: 80%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinnerRotate 60s linear infinite;
}

.spinner-inn img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Dark overlay for better text readability */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}

/* Sign Up Section */
.signup-section {
    background-color: #181515;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Glow effect */
.signup-glow {
    content: "";
    position: absolute;
    left: -60%;
    right: 70%;
    top: -30%;
    bottom: -30%;
    background: radial-gradient(ellipse at center, #f0b501 0, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: 0.45;
    z-index: 1;
}

.signup-section .container {
    position: relative;
    z-index: 2;
}

.signup-section .row {
    align-items: center;
}

/* Heading Column */
.heading-col {
    color: #ffffff;
}

.signup-heading {
    margin-bottom: 0;
}

.signup-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
}

/* Form Column */
.form-col {
    width: 100%;
    max-width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Triangle decoration */
.newsletter-form::after {
    top: -16px;
    left: -1px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(1, 175, 233, 0);
    border-bottom-color: var(--theme);
    border-width: 16px;
    transform: rotate(-45deg);
    transform-origin: bottom;
}

/* Form Input */
.form-input-wrap {
    flex: 1 1 50%;
    margin-bottom: 0;
}

.newsletter-form .form-control {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 25px;
    background: transparent !important;
    border: none;
    border-bottom: none !important;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    border-radius: 0;
    outline: none;
    text-align: left;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: transparent !important;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Submit Button */
.form-submit-wrap {
    flex: 1 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 3px;
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--gradient);
    background-size: 200% 200%;
    background-position: 0% 50%;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    max-width: 200px;
    width: 100%;
    height: 100%;
}

.btn-signup:hover {
    background-position: 100% 50%;
}

.experts-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 180px;
    background: var(--gradient);
    color: #ffffff;
}

.experts-section .container {
    position: relative;
    z-index: 2;
}

.spinner {
}

.spinner-inn {
    width: 170%;
    max-width: 2100px;
    animation: spin 80s linear infinite;
}

.spinner-inn img {
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.experts-pretitle {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff !IMPORTANT;
    font-size: 22px;
}

.experts-title {
    margin: 0;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    /* text-shadow: 0 0 28px rgba(255, 255, 255, 0.32); */
}

.experts-tabs {
    margin-top: 52px;
}

.tabs-nav {
    position: relative;
    display: inline-flex;
    gap: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 14px;
    width: 100%;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 6px;
    cursor: pointer;
    transition: color 0.25s ease;
    flex: 1;
    font-size: 22px;
    text-transform: uppercase;
}

.tab-btn:hover,
.tab-btn.active {
    color: #ffffff;
}

.tab-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    width: 0;
    background: #fff;
    transition: left 0.25s ease, width 0.25s ease;
}

.tabs-content {
    margin-top: 36px;
    min-height: 220px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.45s ease;
}

.tab-panel.active {
    display: block;
}

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

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

.logos-row {
    margin-top: 8px;
}

.logo-tile {
    padding: 16px;
    background: transparent;
    border-radius: 12px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.logo-tile img {
    max-height: 110px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.logo-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
}

.expertise-row {
    margin-top: 8px;
}

.expertise-col {
    padding: 16px 18px;
    border-radius: 14px;
    height: 100%;
}

.expertise-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-col li {
    padding: 10px 0;
    color: #f8fbff;
    font-size: 18px;
    list-style: disc;
}

.expertise-col li:last-child {
    border-bottom: none;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    margin-top: 38px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a0636;
    background: linear-gradient(135deg, #04e4ff 0%, #4992f3 50%, #9536e5 100%);
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
    color: #0a0636;
}


.tab-underline:before {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    background: #fff;
    bottom: 1px;
    transform: rotate(45deg);
}

.logo-flash {
    position: absolute;
    width: 90%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    filter: grayscale(1) invert(1) brightness(100);
    opacity: 0.2;
    z-index: 0;
    height: 154px;
    display: flex;
    align-items: end;
    overflow: hidden;
}

.logo-flash img {
    width: 100%;
    filter: blur(6px);
}


.faq-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background: #000000;
    color: #ffffff;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.spinner {
}

.spinner-inn {
    width: 170%;
    max-width: 2100px;
    animation: spin 90s linear infinite;
}

.spinner-inn img {
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.faq-pretitle {
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 18px;
}

.faq-title {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    /* text-shadow: 0 0 28px rgba(255, 255, 255, 0.32); */
    color: var(--theme);
}

.faq-accordion {
    margin-top: 48px;
    border-radius: 18px;
}

.faq-item+.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #000;
    padding: 22px 22px 22px 16px;
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 12px;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    position: relative;
    font-size: 30px;
    border-bottom: 1px solid #ffffff69;
    margin-bottom: 20px;
}

.faq-count {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--theme);
}

.faq-text {
    font-size: 30px;
    line-height: 1.4;
}

.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
    width: 2px;
    height: 18px;
    top: 0;
}

.faq-icon::after {
    height: 2px;
    width: 18px;
    top: 8px;
}

.faq-item.active .faq-icon::before {
    transform: scaleY(0);
    opacity: 0;
}

.faq-answer {
    padding: 0 22px 0 88px;
    color: #f8fbff;
    font-size: 16px;
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer p {
    color: var(--theme);
    font-size: 18px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    margin-top: 36px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a0636;
    background: linear-gradient(135deg, #04e4ff 0%, #4992f3 50%, #9536e5 100%);
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
    color: #0a0636;
}


.locations-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background: var(--gradient);
    color: #ffffff;
    margin-top: 50px;
}

.locations-section .container {
    position: relative;
    z-index: 2;
}

.spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.4;
}

.spinner-inn {
    width: 170%;
    max-width: 2100px;
    animation: spin 90s linear infinite;
    display: none;
}

.spinner-inn img {
    width: 100%;
    display: block;
    filter: blur(2px);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.locations-pretitle {
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e5f5ff;
    font-size: 18px;
}

.locations-title {
    margin: 0;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 0 28px rgba(255, 255, 255, 0.32);
}

.locations-subtitle {
    margin: 12px 0 0;
    color: #e8efff !IMPORTANT;
    font-size: 20px;
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    display: flex;
    gap: 16px;
    width: 100%;
}

.location-card {
    position: relative;
    background: rgba(0, 0, 0, 0.14);
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    flex: 1;
    min-width: 163px;
}

.location-card:hover {
    box-shadow: -20px 0px 15px -10px #121212, 20px 0px 15px -10px #7b040a;
}

.location-card.active {
    border-color: rgba(4, 228, 255, 0.7);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
    max-height: none;
    align-items: stretch;
    width: 600px;
    flex: 600px;
    transition: 0.3s all;
}

.location-media {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.location-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.location-card:hover .location-media img,
.location-card.active .location-media img {
    transform: scale(1.02);
}

.location-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: start;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
    padding: 20px;
}

.overlay-number {
    color: var(--theme);
    font-weight: 800;
    font-size: 60px;
    line-height: 1;
}

.overlay-number strong {
    font-size: 25px;
    color: #fff;
    display: block;
    margin-top: 10px;
}

.location-card.active .location-overlay {
    display: none;
}

.location-body {
    padding: 40px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.location-card:not(.active) .location-body {
    opacity: 0;
}

.location-head {
    margin-bottom: 20px;
}

.location-number {
    color: #ffffff75;
    font-weight: 800;
    font-size: 80px;
    line-height: 1;
}

.location-city {
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.location-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(4, 228, 255, 0.18);
    color: #eaffff;
}

.location-text {
    margin: 6px 0 30px;
    color: #f1f7ff !IMPORTANT;
    font-size: 20px;
    line-height: 1.55;
}

.location-clients {
    display: flex;
    gap: 6px;
    align-items: baseline;
    font-size: 20px;
    color: #dfe8ff;
    margin-bottom: 32px;
}

.clients-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9adfff;
}

.location-links {
    display: flex;
    gap: 6px;
    background: #fff;
    padding: 20px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme);
    text-decoration: none;
    font-weight: 600;
    flex: 1;
    font-size: 18px;
    line-height: 1.2;
}

.location-link:hover {
    text-decoration: underline;
}

.icon {
    height: 45px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    margin-top: 42px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a0636;
    background: linear-gradient(135deg, #04e4ff 0%, #4992f3 50%, #9536e5 100%);
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
    color: #0a0636;
}

.location-card.active:before {
    content: '';
    position: absolute;
    background: linear-gradient(55deg, rgba(1, 7, 36, .86) 1.47%, rgba(1, 7, 36, .74) 51.17%, rgba(0, 0, 0, .45) 100%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.location-link:last-child {
    font-size: 30px;
    justify-content: end;
}

.location-link:last-child .icon {
    top: 10px;
    position: relative;
}

.location-card.active .location-body {
    transition: 0.5s all;
    transition-delay: 0.3s;
}

section.contact-section .c-btn.-glow>span>span {
    color: var(--theme);
}

/* New Css */


/* Portfolio Css Start */
ul.cust-content-nav {
    padding: 35px 30px;
    background: #ffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
}

ul.cust-content-nav img {
    width: 100%;
}

ul.cust-content-nav li {
    cursor: pointer;
    position: relative;
    z-index: 1;
}

ul.cust-content-nav li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    z-index: -1;
    transition: all 0.3s ease;
}

ul.cust-content-nav li.curr-tab::after {
    left: calc(100% + 4px);
}

ul.cust-content-nav li:after {
    left: 90%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: var(--theme);
    border-width: 10px;
    margin-top: -5px;
    z-index: -2;
    -webkit-transition: all .3s;
    transition: all .3s;
}

ul.cust-content-nav li:hover::before {
    transform: translate(4px, 4px);
}

ul.cust-content-nav li.curr-tab::before {
    transform: translate(6px, 6px);
}

.cust-content-wrap-image {
    height: 950px;
    overflow: scroll;
    margin-right: -18px;
    overflow-x: hidden;
    cursor: n-resize;
    scrollbar-width: none;
    z-index: 5;
    position: relative;
    width: 100%;
}

.cust-content-box {
    position: relative;
    z-index: 1;
}

.cust-content-box::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    height: 6px;
    left: 0;
    right: 0;
    background: var(--gradient);
    z-index: 2;
}

.cust-content-bg-bx {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.cust-content-bg-bx::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    height: 100%;
    left: 0;
    background: #0a0a0a7a;
    z-index: 0;
    width: 100%;
}

img.cust-content-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-nav-box {
    height: 100%;
    align-items: end;
    display: flex;
}

a.close-btn {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: var(--theme-dark);
}

a.close-btn i {
    font-size: 37px;
    color: #fff;
    font-weight: 600;
}

.cust-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.btn4 {
    font-size: 20px;
    color: var(--theme);
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s ease-in-out;
}

.btn4>span {
    width: 19px;
    height: 15px;
    background: var(--theme);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    display: block;
    transition: 0.3s ease-in-out;
}

.cust-content-logo img {
    width: 150px;
    margin: 0 auto;
    display: block;
    height: 150px;
    object-fit: contain;
}

.cust-content-main-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

.cust-content-text-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    background: var(--theme-dark);
}


.cust-content-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cust-content-top * {
    margin: 0;
}

.cust-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 0 0;
    border-top: 1px solid #ffffff33;
}

.cust-content-box {
    display: none;
}

.cust-content-box.curr-tab {
    display: block;
}

.cust-content-wrap {
    width: 100%;
}

.cust-content-wrap-image img {
    width: 100%;
}

/*.cus-inner-tabs.hidden {
    display: none;
}
*/
.load-more-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
}

img.port_wrp_logo {
    position: absolute;
    bottom: 20px;
    left: 80px;
    width: 180px !important;
    height: 180px !important;
    object-fit: contain;
}

.height-nav {
    height: 950px;
    overflow-y: scroll;
    margin-right: -18px;
    overflow-x: hidden;
    cursor: n-resize;
    scrollbar-width: none;
    z-index: 5;
    position: relative;
    width: 100%;
    display: block;
}

.height-nav li {
    cursor: n-resize !important;
}

/* Portfolio Css End */

/* Faq Css Start */

.wrapped-sections {
    padding: 80px 0 80px 0;
    position: relative;
    z-index: 1;
}

/* Heading Section */
.c-heading {
    margin-bottom: 30px;
}

.c-heading__pre p {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--theme);
}

.c-heading__title {
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    color: #0a0a0a;
    line-height: 1.1;
}

/* Intro Section */
.exerpt .c-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.c-block__col {
    flex: 1;
    min-width: 300px;
}

.c-block__col.-emphasized p {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme);
    line-height: 1.4;
}

.c-block__col:not(.-emphasized) p {
    font-size: 16px;
    color: #575757;
}

/* Table of Contents */
.toc-container {
    margin: 40px 0 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border: 1px solid #eee;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.toc-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-dark);
    margin: 0;
}

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

.toc-list li {
    margin: 0;
}

.toc-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--theme-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px 10px 10px;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 12;
    border-top: 1px solid #89020970;
}

.toc-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient);
    z-index: 11;
    transition: all 0.4s ease;
    z-index: -1;
}

.toc-list a:hover::before {
    width: 100%;
}

.toc-list a:hover {
    color: #fff;
}

.toc-list a:hover i {
    color: #fff;
}

.toc-list a i {
    margin-right: 12px;
    font-size: 14px;
    color: var(--theme);
}

/* Content Sections */
.content-single {
    margin: 0 auto;
}

.content-section {
    padding: 10px 30px;
    margin: 10px 0;
}

.content-section h2,
.content-section h3 {
    color: var(--theme-dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 35px;
}

.content-section p {
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
}

.wp-block-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.wp-block-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.wp-block-list strong {
    color: var(--theme-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .c-heading__title {
        font-size: 40px;
    }

    .c-block__col {
        flex: 100%;
    }
}

.faq-para-right p {
    color: var(--theme-dark);
}

.faq-para-left h6 {
    color: var(--theme-dark);
    font-size: 20px;
    line-height: 1.5;
}

ul.wp-block-list li {
    position: relative;
    z-index: 1;
}

ul.wp-block-list li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent var(--theme);
}

.content-section a {
    color: var(--theme);
    font-weight: 500;
    text-decoration: underline;
    text-transform: capitalize;
}

.wrapped-sections p {
    color: #000;
}

/* Faq Css End */


/* Professional Design Css Start */
.gradient_text {
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.professional_design_company_heading h2 {
    color: #000;
    font-size: 58px;
    font-weight: 800;
}

section.professional_design_company {
    padding: 80px 0;
}

.why_choose_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.why_choose_list img {
    position: absolute;
    width: 45%;
    right: -10px;
    top: -150px;
}

.why_choose_box {
    display: flex;
    width: 48%;
    position: relative;
    padding: 40px 25px;
    box-shadow: 1px 1px 22px #0000002e;
    border-radius: 10px;
    align-items: center;
}

.why_choose_box span {
    display: block;
    width: 10%;
    font-size: 30px;
    font-weight: 900;
    margin-top: 6px;
    background: #430a46;
    color: #fff;
    height: 50px;
    width: 50px;
    border-radius: 60px;
    -webkit-text-fill-color: white;
    line-height: 41px;
    text-align: center;
    font-size: 16px;
    position: relative;
    left: -10px;
    top: -10px;
    border: 4px solid #ad003b;
}

.why_choose_box_content {
    width: 95%;
}

.why_choose_box_content p {
    color: #000;
    font-size: 13px;
}

.why_choose_box_content h4 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.why_choose_box:nth-child(even) {
    /* border-bottom: 1px solid red; */
    position: relative;
}

.why_choose_box:nth-child(even)::after {
    content: '';
    position: absolute;
    width: 205%;
    height: 2px;
    /* background: #000000; */
    bottom: -10px;
}


/* Professional Design Css End */


/* Stay Ahead Css Start */
.stay_ahead_section {
    padding: 100px 0;
    background: linear-gradient(90deg, rgb(67 10 70) 62%, rgba(240, 181, 1, 1) 100%);
}

.stay_ahead_image img {
    max-width: 120%;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.stay_ahead_newsletter h2 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stay_ahead_newsletter p {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0;
}

.stay_ahead_newsletter_form form input {
    width: 100%;
    height: 70px;
    border: 1px solid #fff;
    background: transparent;
    padding-left: 20px;
    font-size: 20px;
    color: #fff;
}

.stay_ahead_newsletter_form form input::placeholder {
    color: lightgray;
}

.stay_ahead_newsletter_form form {
    position: relative;
}

.stay_ahead_newsletter_form form button {
    position: absolute;
    right: 4px;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    padding-left: 20px;
    top: 5px;
    background: #000000;
}

.stay_ahead_newsletter_form form button span {
    width: 19px;
    height: 15px;
    background: #890209;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    transition: 0.3s ease-in-out;
    width: 23px;
    height: 17px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    transform: rotate(90deg);
    margin-top: -8px;
}

.stay_ahead_newsletter_form form button small {
    display: flex;
    width: 70px;
    height: 62px;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
    margin-left: 20px;
}

.stay_ahead_newsletter_form form::before {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #000;
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
}
.faq-section:after {
    content: "";
    position: absolute;
    right: -10%;
    left: 30%;
    top: -70%;
    bottom: -40%;
    background: radial-gradient(ellipse at center, #0d040e 0, rgba(149, 54, 229, 0) 74%, rgba(149, 54, 229, 0) 100%);
    opacity: .45;
    z-index: 0;
}

.faq-section * {
    color: #fff !important;
}

section.wrapped-sections::before {
    content: "";
    position: absolute;
    left: -10%;
    right: 30%;
    top: -30%;
    bottom: -30%;
    background: radial-gradient(ellipse at center, #bc32c3 0, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: .45;
    z-index: 0;
}

/* Stay Ahead Css End */

/* Inner Page Custom Web Design Css Start */
.banner-style2 .banner_textt>h1 {
    text-transform: capitalize;
}


.banner-style2-image-box .vid_wrpr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    margin-top: 30px;
}

.banner-style2-image-box .vid_wrpr>.vid_box {
    position: relative;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-style2-image-box .vid_wrpr>.vid_box>video {
    width: 100%;
}

.banner-style2-image-box .vid_wrpr>.vid_box>a {
    position: absolute;
    background: var(--theme-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    border: 3px solid #fff;
    z-index: 1;
}

.banner-style2-image-box .vid_wrpr>.vid_box>a:after {
    border-radius: 50%;
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(94deg, #850f0f -2.26%, #000000 63.14%);
    -webkit-filter: blur(10px);
    filter: blur(5px);
    z-index: -2;
    pointer-events: none;
    left: 0;
    top: 0;
}

.banner-style2-image-box .vid_wrpr:before {
    position: absolute;
    content: "";
    background: linear-gradient(94deg, #890209 -2.26%, #000000 63.14%);
    width: 100vw;
    height: 100px;
    left: 0;
    z-index: -1;
}

.banner-style2-image-box .vid_wrpr>.vid_textt>h3 {
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 20px;
}

.banner-style2-image-box .vid_wrpr>.vid_textt>span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
}

ul.bread-crumbs {
    display: flex;
    align-items: center;
    gap: 35px;
}

ul.bread-crumbs li a {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    display: flex;
    align-items: end;
    gap: 10px;
}

ul.bread-crumbs li a i {
    color: #fff;
    font-size: 24px;
    margin: -10px 0 3px 0;
}

ul.bread-crumbs li a::before {
    content: '\f054';
    color: #fff;
    top: 0;
    right: 110%;
    position: absolute;
    font-size: 16px;
    font-family: 'FontAwesome';
}

ul.bread-crumbs li {
    position: relative;
    z-index: 1;
}

ul.bread-crumbs li:first-child a:before {
    display: none;
}

ul.list li h6 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

ul.list li {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px 0;
    padding: 15px 0 15px 20px;
    position: relative;
    z-index: 1;
}

ul.list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #ffff;
    transform: translateY(-50%);
}

/* Inner Page Custom Web Design Css End */


.banner ul.ban_list {
    margin: 20px 0px;
}

.banner ul.ban_list > li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}

.banner ul.ban_list > li > span {
    display: block;
    width: 19px;
    height: 15px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    transition: 0.3s ease-in-out;
}

/* rayyan */

.banner-style2 .banner_textt>h1 {
    text-transform: capitalize;
}

.c-icon-scroll {
    display: none;
}

@media (min-width: 1113px) {
    .c-icon-scroll {
        display: block;
        position: absolute;
        left: 2vw;
        top: 68vh;
        width: 20px;
        pointer-events: none;
    }
}

@media (min-width: 1113px) and (min-width: 1661px) {
    .c-icon-scroll {
        left: 6vw;
        top: 75vh;
    }
}

@media (min-width: 1113px) {
    .hero .c-icon-scroll {
        left: 2vw;
        top: 65vh;
        z-index: 2;
    }
}

@media (min-width: 1113px) and (min-width: 1661px) {
    .hero .c-icon-scroll {
        left: 4vw;
    }
}

@media (min-width: 1113px) and (max-width: 1439px) {
    .hero .c-icon-scroll {
        display: none;
    }
}

@media (min-width: 1113px) {

    .c-icon-scroll img,
    .c-icon-scroll svg {
        width: 20px;
    }
}


.hero .projects {
    position: relative;
}

.seo-page .hero:after {
    content: "Featured Work";
    color: #fff;
    opacity: 0.1;
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    white-space: nowrap;
    position: absolute;
    right: 10px;
    top: 17vmin;
}

@media (min-width: 1113px) and (min-width: 1661px) {
    .seo-page .hero:after {
        top: 30%;
        font-size: 50px;
        right: 10px;
    }
}

.banner-style2-image-box {
    position: relative;
}

.banner-style2-image-box {
    position: relative;
}

.banner-style2-hero-img {
    text-align: right;
    margin-bottom: 20px;
}

.banner-style2-hero-img img {
    max-width: 100%;
}

.banner-hero-caption {
    margin-top: 10px;
    text-align: right;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-style2-image-box .vid_wrpr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    margin-top: 30px;
}

.banner-style2-image-box .vid_wrpr>.vid_box {
    position: relative;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-style2-image-box .vid_wrpr>.vid_box>video {
    width: 100%;
}

.banner-style2-image-box .vid_wrpr>.vid_box>a {
    position: absolute;
    background: var(--theme-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    border: 3px solid #fff;
    z-index: 1;
}

.banner-style2-image-box .vid_wrpr>.vid_box>a:after {
    border-radius: 50%;
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(94deg, #850f0f -2.26%, #000000 63.14%);
    -webkit-filter: blur(10px);
    filter: blur(5px);
    z-index: -2;
    pointer-events: none;
    left: 0;
    top: 0;
}

.banner-style2-image-box .vid_wrpr:before {
    position: absolute;
    content: "";
    background: linear-gradient(94deg, #890209 -2.26%, #000000 63.14%);
    width: 100vw;
    height: 100px;
    left: 0;
    z-index: -1;
}

.banner-style2-image-box .vid_wrpr>.vid_textt>h3 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-style2-image-box .vid_wrpr>.vid_textt>span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
}

ul.bread-crumbs {
    display: flex;
    align-items: center;
    gap: 35px;
}

ul.bread-crumbs li a {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    display: flex;
    align-items: end;
    gap: 10px;
    line-height: 1;
}

ul.bread-crumbs li a i {
    color: #fff;
    font-size: 19px;
    margin: -10px 0 3px 0;
}

ul.bread-crumbs li a::before {
    content: '\f054';
    color: #fff;
    top: 0;
    right: calc(100% + 11px);
    position: absolute;
    font-size: 16px;
    font-family: 'FontAwesome';
}

ul.bread-crumbs li {
    position: relative;
    z-index: 1;
}

ul.bread-crumbs li:first-child a:before {
    display: none;
}

ul.list li h6 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

ul.list li {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px 0;
    padding: 5px 0 5px 20px;
    position: relative;
    z-index: 1;
}

ul.list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #ffff;
    transform: translateY(-50%);
}

.seo-page .banner-style2-image-box .vid_wrpr {
    justify-content: end;
}

.seo-page .banner-style2-image-box .vid_wrpr:before {
    display: none;
}

.banner-style2-image-box .vid_wrpr>.vid_textt>h3 span {
    font-size: 35px;
    display: block;
}

/* ========================================
   SEO Services Section (seo-svcs-)
   ======================================== */

.seo-svcs-sec {
    background: #77777703;
    padding: 80px 0 70px;
    position: relative;
}

.seo-svcs-layout {
    --columns-ratio: calc(50% - 15px);
}

.seo-svcs-block {
    display: flex;
    align-items: flex-start;
    gap: 0 30px;
    flex-wrap: wrap;
}

/* Left Column: Content with Sticky */
.seo-svcs-content {
    flex: 0 0 var(--columns-ratio);
    max-width: var(--columns-ratio);
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 1113px) {
    .seo-svcs-content {
        position: sticky;
    }
}

/* Gradient bar behind content */
.seo-svcs-content::after {
    content: "";
    width: 100%;
    height: 40%;
    max-height: 140px;
    left: 0;
    bottom: 0;
    position: absolute;
    background-image: var(--gradient);
    z-index: 0;
    transform: translate(-120px, 0);
}

@media (min-width: 1113px) {
    .seo-svcs-content::after {
        transform: translateY(-140px);
        margin-left: calc(0px - (100vw - 1140px) / 2);
        width: 30vw;
        max-height: 211px;
    }
}

.seo-svcs-heading {
    margin-bottom: 60px;
    max-width: 710px;
    position: relative;
    z-index: 1;
}

.seo-svcs-heading h2 {
    font-size: 58px;
    color: var(--theme);
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-svcs-heading p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Service Items - Accordion Style with Left Border */
.seo-svcs-item {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    border-left: 3px solid #dde0e7;
    padding-left: 45px;
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: column;
    z-index: 1;
    min-height: 90px;
}

@media (max-width: 767px) {
    .seo-svcs-item {
        padding-left: 20px;
    }
}

/* Active indicator bar */
.seo-svcs-item::before {
    content: "";
    left: -3px;
    top: 40%;
    bottom: 40%;
    width: 3px;
    position: absolute;
    display: block;
    background-color: var(--theme);
    transition: all 0.3s ease;
    opacity: 0;
}

/* Arrow indicator */
.seo-svcs-item::after {
    left: 0;
    top: 50%;
    border: 0 solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left-color: var(--theme);
    margin-top: -6px;
    transition: all 0.4s ease;
}

/* Active State */
.seo-svcs-item.is-active::before {
    top: 0;
    bottom: 0;
    opacity: 1;
}

.seo-svcs-item.is-active::after {
    border-width: 6px;
}

.seo-svcs-item-header {
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
}

.seo-svcs-item-header h3 {
    font-size: 34px;
    color: var(--theme);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.seo-svcs-item-header h3 span {
    color: var(--theme);
}

.seo-svcs-item-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.seo-svcs-item-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1em;
}

/* Expand content on hover */
.seo-svcs-item:hover .seo-svcs-item-content,
.seo-svcs-item.is-active .seo-svcs-item-content {
    max-height: 400px;
    opacity: 1;
}

/* Desktop Image */
.seo-svcs-image {
    margin-top: 10vmin;
    position: relative;
    z-index: 1;
}

.seo-svcs-image img {
    max-width: 100%;
}

/* Right Column: Sticky Form */
.seo-svcs-form-col {
    flex: 0 0 var(--columns-ratio);
    max-width: var(--columns-ratio);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.seo-svcs-sticky-form {
    background: #fff;
    border-radius: 4px;
    padding: 40px 50px;
    position: sticky;
    top: 100px;
    margin-left: auto;
    box-shadow: 0 14px 24px 0 rgba(0, 0, 0, .05);
}

.seo-svcs-form-heading {
    text-align: left;
    margin-bottom: 25px;
}

.seo-svcs-form-heading span {
    color: var(--theme);
    font-size: 34px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.seo-svcs-form-heading h4 {
    font-size: 32px;
    color: #000;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.seo-svcs-form-group {
    margin-bottom: 12px;
}

.seo-svcs-form-group input,
.seo-svcs-form-group textarea {
    width: 100%;
    height: 60px;
    padding: 0 10px;
    border: 1px solid rgba(27, 57, 143, 0.3);
    font-size: 18px;
    color: #1b398f;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Roboto', sans-serif;
    box-shadow: none;
    outline: none;
}

.seo-svcs-form-group input:focus,
.seo-svcs-form-group textarea:focus {
    border-color: var(--theme);
    box-shadow: 0 0 0 3px rgba(137, 2, 9, 0.1);
}

.seo-svcs-form-group input::placeholder,
.seo-svcs-form-group textarea::placeholder {
    color: #7a8bb3;
}

.seo-svcs-form-group textarea {
    height: 100px;
    padding: 15px 20px;
    resize: vertical;
}

.seo-svcs-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.seo-svcs-submit-btn span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.seo-svcs-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(137, 2, 9, 0.4);
}

/* Responsive */
@media (max-width: 1112px) {
    .seo-svcs-block {
        flex-direction: column;
    }

    .seo-svcs-content,
    .seo-svcs-form-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .seo-svcs-content {
        max-width: 550px;
        margin: 0 auto;
        padding-top: 0;
    }

    .seo-svcs-content::after {
        display: none;
    }

    .seo-svcs-form-col {
        margin-top: 40px;
    }

    .seo-svcs-sticky-form {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {
    .seo-svcs-sec {
        padding: 60px 0 70px;
    }

    .seo-svcs-heading h2 {
        font-size: 36px;
    }

    .seo-svcs-heading p {
        font-size: 18px;
    }

    .seo-svcs-item-header h3 {
        font-size: 24px;
    }

    .seo-svcs-item-content p {
        font-size: 18px;
    }

    .seo-svcs-sticky-form {
        padding: 30px 20px;
    }

    .seo-svcs-form-heading h4 {
        font-size: 24px;
    }

    .seo-svcs-form-group input,
    .seo-svcs-form-group textarea {
        height: 50px;
        font-size: 16px;
    }

    .seo-svcs-form-group textarea {
        height: 90px;
    }
}

/* ========================================
   End SEO Services Section
   ======================================== */

/* ========================================
   Experience SEO Services Section (seo-exp-)
   ======================================== */

.seo-exp-sec {
    background: hsl(357deg 100% 50% / 5%);
    padding-top: 20px;
    position: relative;
}

@media (min-width: 1113px) {
    .seo-exp-sec {
        padding-top: 8vmin;
    }
}

/* Section Header */
.seo-exp-header {
    margin-bottom: 4rem;
}

.seo-exp-pretitle {
    display: inline-block;
    color: var(--theme);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.seo-exp-header h2 {
    font-size: 42px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-exp-header p {
    font-size: 20px;
    color: #4a5568;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tabs Navigation */
.seo-exp-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.seo-exp-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 3.5rem 15px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 auto;
}

/* White card background for active tab */
.seo-exp-tab-item::after {
    content: "";
    position: absolute;
    inset: 0 0 -25px;
    background: #fff;
    box-shadow: 0 0 33px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.seo-exp-tab-item.is-active::after {
    opacity: 1;
}

.seo-exp-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.seo-exp-tab-icon img,
.seo-exp-tab-icon svg {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.seo-exp-tab-item.is-active .seo-exp-tab-icon img,
.seo-exp-tab-item.is-active .seo-exp-tab-icon svg {
    filter: hue-rotate(132deg) brightness(2);
}

.seo-exp-tab-label {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    text-align: center;
    position: relative;
    z-index: 2;
    white-space: normal;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.seo-exp-tab-item.is-active .seo-exp-tab-label {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-exp-tab-item:hover .seo-exp-tab-label {
    color: var(--theme);
}

/* Arrow indicator */
.seo-exp-tab-arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-exp-tab-arrow i {
    font-size: 30px;
    color: var(--theme);
}

.seo-exp-tab-item.is-active .seo-exp-tab-arrow {
    opacity: 1;
}

/* Tab Panels */
.seo-exp-panels {
    background: #fff;
    border-top: 2px solid rgb(127 3 10 / 20%);
    padding: 70px;
}

@media (max-width: 1112px) {
    .seo-exp-panels {
        padding: 20px 0;
    }
}

.seo-exp-panel {
    display: none;
}

.seo-exp-panel.is-active {
    display: block;
}

.seo-exp-panel-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.seo-exp-panel-content h3 {
    font-size: 36px;
    color: var(--theme);
    font-weight: 500;
    margin-bottom: 10px;
}

.seo-exp-panel-content p {
    font-size: 22px;
    color: #4a5568;
    line-height: 1.7;
}

.seo-exp-panel-image {
    position: relative;
}

.seo-exp-panel-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1112px) {
    .seo-exp-tabs-nav {
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 10px;
    }

    .seo-exp-tab-item {
        padding: 15px 20px;
    }

    .seo-exp-tab-item::after {
        inset: 0;
    }

    .seo-exp-header h2 {
        font-size: 36px;
    }

    .seo-exp-panel-content h3 {
        font-size: 30px;
    }

    .seo-exp-panel .row {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .seo-exp-sec {
        padding-top: 40px;
    }

    .seo-exp-tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .seo-exp-tab-item {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        gap: 15px;
        padding: 12px 20px;
    }

    .seo-exp-tab-item::after {
        inset: 0;
        bottom: 0;
    }

    .seo-exp-tab-icon {
        height: auto;
        margin-bottom: 0;
    }

    .seo-exp-tab-icon img,
    .seo-exp-tab-icon svg {
        max-height: 40px;
    }

    .seo-exp-tab-arrow {
        display: none;
    }

    .seo-exp-header h2 {
        font-size: 28px;
    }

    .seo-exp-header p {
        font-size: 16px;
    }

    .seo-exp-panel-content h3 {
        font-size: 24px;
    }

    .seo-exp-panel-content p {
        font-size: 16px;
    }

    .seo-exp-panel-image {
        margin-top: 30px;
    }
}

.seo-page .partners-section {
    padding-bottom: 0;
}

.seo-svcs-form .c-btn.-glow>span>span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-svcs-form .c-btn.-glow .c-btn__ico i {
    color: var(--theme);
}

.seo-svcs-form .c-btn.-glow:hover .c-btn__ico i {
    color: #fff;
}

.seo-svcs-form .c-btn.-glow:hover>span>span {
    color: #fff;
    background-image: linear-gradient(45deg, #fff, #fff);
}

.seo-svcs-form .c-btn.-glow>span:first-child::before {
    background: var(--gradient);
}

.seo-exp-panel-image:before {
    content: " ";
    background: var(--gradient);
    top: 15px;
    left: -15px;
    width: 100%;
    max-width: 689px;
    height: 100%;
    position: absolute;
    z-index: 0;
}

.seo-analysis {
    position: relative;
    padding: 70px 0 90px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    overflow: hidden;
    text-align: center;
}

.seo-analysis .m-banner__container {
    position: relative;
    z-index: 1;
    min-height: auto;
}

.seo-analysis__text h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 12px;
}

.seo-analysis__text h2 span {
    background: linear-gradient(131.8deg, #009cff 0, #9536e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-left: 6px;
    font-style: italic;
}

.seo-analysis__text p {
    color: #e6edff;
    font-size: 18px;
    margin-bottom: 22px;
}

.seo-analysis-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #fff;
    color: #0b0f1c;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.seo-analysis-btn .c-btn__ico {
    display: inline-flex;
}

.seo-analysis-btn i {
    font-size: 14px;
}

.seo-analysis-btn:hover {
    color: #0b0f1c;
    opacity: 0.9;
}

.seo-best-sec {
    --tabs-slider-top-padding: 4vmin;
    --tabs-slider-bot-padding: 9vmin;
    padding: var(--tabs-slider-top-padding) 0 var(--tabs-slider-bot-padding);
    background: #fff;
    color: #e6edff;
}

@media (max-width: 766px) {
    .seo-best-sec {
        --tabs-slider-top-padding: 20px;
        --tabs-slider-bot-padding: 20px;
    }
}

@media (min-width: 1112px) and (max-width: 1660px) {
    .seo-best-sec {
        --tabs-slider-top-padding: 4vmin;
        --tabs-slider-bot-padding: 7vmin;
    }
}

.seo-best-heading {
    text-align: center;
    margin-bottom: 30px;
}

.seo-best-pretitle {
    color: var(--theme);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
}

.seo-best-heading h2 {
    color: var(--theme);
    font-size: 58px;
    margin-bottom: 12px;
}

.seo-best-heading p {
    margin: 0;
    color: #000;
    font-size: 24px;
}

.seo-best-slider {
    overflow: hidden;
    position: relative;
}

.seo-best-tabs {
    position: relative;
    margin: 30px 0 40px;
    overflow: hidden;
    display: flex;
}

.seo-best-tab {
    padding: 14px 10px;
    text-align: center;
    font-weight: 600;
    color: #e6edff;
    cursor: pointer;
    position: relative;
}

.seo-best-tab.is-active {
    color: #01afe9;
}

.seo-best-tabs .seo-best-tab {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    color: #5f6568;
    position: relative;
    font-size: 22px;
    text-transform: uppercase;
    border-bottom: 3px solid #e3e3e3;
    margin: 0;
    flex: 1;
}

.seo-best-tabs .seo-best-tab.is-active {
    color: var(--theme);
    border-color: var(--theme);
}

.seo-best-tabs .seo-best-tab.is-active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    background: var(--theme);
    height: 5px;
    width: 5px;
    margin: 0 auto;
    transform: rotate(45deg);
}

.seo-best-tab-underline {
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 3px;
    width: 33.333%;
    background: linear-gradient(135deg, #009cff 0%, #9536e5 100%);
    transition: 0.3s ease;
}

.seo-best-wrap {
    display: grid;
    gap: 18px;
}

.seo-best-pane {
    display: none;
}

.seo-best-pane.is-active {
    display: block;
}

.seo-best-pane-inner {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-direction: row-reverse;
}

.seo-best-pane-text h3 {
    color: #000;
    font-size: 45px;
    margin-bottom: 10px;
    font-weight: 700;
}

.seo-best-pane-text p {
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-size: 22px;
}

.seo-best-pane-media img {
    width: 100%;
    border-radius: 12px;
}

.seo-best-slider-list .slick-slide {
    padding: 10px;
}

.seo-best-slider-list .slick-prev,
.seo-best-slider-list .slick-next {
    color: var(--theme);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid !important;
    place-items: center;
    opacity: 1;
    font-size: 30px;
}

.seo-best-slider-list .slick-prev {
    left: -10px;
}

.seo-best-slider-list .slick-next {
    right: -10px;
}

.seo-best-slider-list .slick-prev:before,
.seo-best-slider-list .slick-next:before {
    display: none;
}

@media (max-width: 991px) {
    .seo-best-tabs {
        grid-template-columns: 1fr;
        border-bottom: none;
    }

    .seo-best-tab-underline {
        display: none;
    }
}

@media (max-width: 575px) {
    .seo-best-heading h2 {
        font-size: 32px;
    }

    .seo-best-pane-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 1111px) {
    .seo-analysis {
        background-size: 85%;
        background-position: 50% 10px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .seo-analysis {
        padding: 60px 0 70px;
        background-size: 95%;
    }

    .seo-analysis__text h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 30px 0 50px;
    }

    .partners-logos {
        margin: 12px -10px;
    }

    .partners-section .partner {
        width: 180px;
        padding: 12px 14px;
        border-radius: 12px;
    }

}

.seo-audit-banner {
    position: relative;
    padding: 70px 0 100px;
    background-color: transparent;
    overflow: hidden;
}

.seo-audit-banner-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 0;
    pointer-events: none;
}

.seo-audit-banner-bg img {
    width: 100%;
    height: auto;
}

.seo-audit-banner-content {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    margin: 0 auto;
}

.seo-audit-banner-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--theme);
    margin-bottom: 20px;
}

.seo-audit-banner h2 {
    font-size: 55px;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-audit-banner p {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .seo-audit-banner {
        padding: 60px 0 120px;
    }
}

@media (max-width: 575px) {
    .seo-audit-banner {
        padding: 40px 0 100px;
    }

    .seo-audit-banner p {
        font-size: 16px;
    }
}

.seo-audit-banner .logo-flash {
    filter: none;
}

.seo-page .signup-section p {
    font-size: 20px;
    max-width: 85%;
}

.seo-best-tabs .seo-best-tab:hover {
    color: #fff;
    text-shadow: -2px 0 5px rgb(141 0 0 / 98%), 2px 3px 5px #950000, 3px 0 5px #1baaff, -3px -2px 5px #a30000;
}

.seo-best-slider-list .slick-list {
    padding: 0 30px;
}

.seo-best-pane-inner .seo-best-pane-text {
    width: 60%;
    padding: 30px;
}

.seo-best-pane-inner .seo-best-pane-media {
    width: 40%;
}

/* .seo-page .faq-section {
    background: var(--gradient);
} */

.seo-page .faq-title {
    color: #fff;
}

.seo-page .faq-question {
    color: #fff;
    border-bottom: 1px solid #adadad69;
}

.seo-page .faq-item.active .faq-answer p {
    color: #fff;
}


.grow-brand-section {
    background-color: #121212;
    color: #fff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.grow-brand-heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 22px rgba(255, 255, 255, 0.16);
}

.grow-brand-row {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
}

.grow-brand-col {
    position: relative;
    padding: 0 40px;
}

.grow-brand-col:before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 10px;
    left: 0;
    width: 1px;
    background: var(--theme);
    opacity: 0.8;
}

.grow-brand-col-inner h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

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

.grow-brand-list-item {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 400;
}

.grow-brand-list-item a,
.grow-brand-list-item span {
    color: #fff;
}

.grow-brand-list-item a:hover {
    text-decoration: underline;
}

.rank-cta-section {
    position: relative;
    background-color: var(--theme);
    background-image: radial-gradient(circle at 26% bottom, rgba(0, 150, 255, 0.33) -27%, rgba(10, 13, 52, 0.5) 17%), radial-gradient(circle at 60% bottom, rgba(110, 0, 186, 0.5) -7%, var(--theme) 29%);
    padding: 80px 0 90px;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.rank-cta-container {
    position: relative;
    z-index: 1;
}

.rank-cta-content h2 {
    font-size: 55px;
    font-weight: 700;
    margin: 0 0 24px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

/* hammad css */

.our_industries_secc {
    background: linear-gradient(180deg, #cb1f203d, transparent);
    position: relative;
}

.our_industries_secc > .container-fluid {
    padding-right: 0;
    padding-left: 10%;
}

.our_industries_secc .our_industries_textt {
    padding-top: 70px;
    padding-right: 80px;
    position: sticky;
    top: 0;
}

.our_industries_secc .our_industries_textt > span {
    font-size: 19px;
    color: var(--theme);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.our_industries_secc .our_industries_textt > h2 {
    color: #000;
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.our_industries_secc .our_industries_textt > p {
    color: #000;
    font-size: 23px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.our_industries_secc .our_industries_textt > img {
    width: 100%;
}

.our_industries_secc .our_industries_wrpr {
    border-left: 8px solid var(--theme);
}

.our_industries_secc .our_industries_wrpr > .our_industries_box {
    position: relative;
    height: 270px;
    overflow: hidden;
    padding: 50px;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box > img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.3s ease-in-out;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:after {
    position: absolute;
    content: "";
    background-image: linear-gradient(to right, #fff 36%, rgba(255, 255, 255, .15) 74%, rgba(255, 255, 255, 0) 95.19%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box > h3 {
    font-size: 29px;
    color: #000;
    c\: ;
    c\: #;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box > p {
    font-size: 17px;
    color: #000;
    width: 70%;
    font-weight: bold;
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box > a.cp_btn {
    display: flex;
    align-items: center;
    gap: 0px;
    color: var(--theme);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box > a.cp_btn > span {
    width: 19px;
    height: 15px;
    background: var(--theme);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    display: block;
    transition: 0.3s ease-in-out;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover {
    height: 340px;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover > a.cp_btn {
    opacity: 1;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover:after {
    background-image: none;
    background-color: rgba(0, 0, 0, .7);
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover > img {
    filter: brightness(0.5);
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover > p {
    color: #fff;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover > h3 {
    color: #ffff;
}

.service-card span {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    display: block;
}

.service-card:hover span {
    color: #000;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box > h4 {
    color: #000;
    transition: 0.3s ease-in-out;
    font-size: 20px;
    line-height: 1;
}

.our_industries_secc .our_industries_wrpr > .our_industries_box:hover > h4 {
    color: #fff;
}

.talk_cta {
    padding: 60px 0px;
}

.talk_cta .theme_heading>span {
    color: #000;
}

.talk_cta .theme_heading>h2 {
    color: var(--theme);
}

.talk_cta .theme_heading>p {
    color: #000;
}

.talk_cta .theme_heading>a.btn2 {
    margin: 0 auto;
    margin-top: 30px;
}

.f-60{
    font-size: 60px !important;
}

 .creative_sm>ul>li>span {
    font-size: 21px;
}

p.experts-para{
    color: #fff;
}

/**/

.inner_banner_slider_wrp {
    width: 90%;
    margin-left: auto;
}

.inner_banner_slider_wrp > ul.inn_slider_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
    margin-top: -15px;
}

.inner_banner_slider_wrp > ul.inn_slider_btns > li {cursor: pointer;width: 40px;height: 40px;background: var(--theme);display: flex;align-items: center;justify-content: center;clip-path: polygon(72% 0, 75% 0%, 100% 50%, 75% 100%, 73% 100%, 83% 49%);}

.inner_banner_slider_wrp > ul.inn_slider_btns > li:first-child {
    transform: rotate(180deg);
}

.inner_banner_slider_wrp ul.slick-dots {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.inner_banner_slider_wrp ul.slick-dots > li {
    padding: 0;
    margin: 0;
    width: 30px;
    height: 5px;
}

.inner_banner_slider_wrp ul.slick-dots > li > button {
    padding: 0;
    margin: 0;
    height: 5px;
    width: 30px;
}

.inner_banner_slider_wrp ul.slick-dots > li > button:before {
    content: "";
    background: #ffffff;
    width: 100%;
    height: 100%;
    opacity: .6;
}

.inner_banner_slider_wrp ul.slick-dots > li.slick-active > button:before {
    opacity: 1;
    background: var(--theme);
}

.inner_banner_slider_wrp ul.slick-dots > li.slick-active {
    opacity: 1;
}

.cust-content-top > h2 {
    font-size: 26px;
    line-height: 1.2;
}

/**/

.rebranding_process_secc {
    position: relative;
}

.rebranding_process_secc .theme_heading>span {
    color: #000;
}

.rebranding_process_secc .theme_heading>h2 {
    color: #000;
}

.rebranding_process_secc .theme_heading>p {
    color: #000;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0px;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list >li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list >li > span {
    font-size: 20px;
    color: var(--theme-dark);
    font-weight: bold;
    display: block;
    line-height: 1;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list > li > .icon_wrp {
    background: #ededed;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    border: 5px solid #fff;
    box-shadow: 0 0 10px 0 #0000002e;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list > li > .icon_wrp > svg {
    fill: var(--theme);
    width: 50px;
    height: 40px;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list >li.curr-tab > span {
    color: var(--theme);
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list > li.curr-tab > .icon_wrp {
    background: var(--gradient);
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list > li.curr-tab > .icon_wrp > svg {
    fill: #fff;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list > li > .icon_wrp:after {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 15px;
    height: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -8px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    opacity: 0;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr > .tabs_list > li.curr-tab > .icon_wrp:after {
    opacity: 1;
}

.rebranding_process_secc:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 38%;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgb(137 2 9 / 11%) 0%, rgba(255, 255, 255, 1) 100%);
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt > span {
    font-size: 20px;
    color: var(--theme-dark);
    font-weight: bold;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt > h3 {
    font-size: 29px;
    font-weight: bold;
    color: var(--theme);
    line-height: 1.2;
    margin-bottom: 15px;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt > p {
    color: #000;
    margin-bottom: 20px;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt >ul {
    margin: 0;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt >ul > li {
    font-size: 17px;
    color: #000;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt >ul > li:last-child {
    margin: 0;
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_textt >ul > li:after {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent var(--theme);
}

.rebranding_process_secc .rebrand_proc_tabs_wrpr .rebranding_process_imgg > img {
    width: 100%;
}

.seo-audit-banner.rebrand_cta {
    background: var(--gradient);
    padding-bottom: 60px;
}

.seo-audit-banner.rebrand_cta h2 {
    color: #fff;
    margin-bottom: 15px;
}

.seo-audit-banner.rebrand_cta p {
    color: #fff;
    margin-bottom: 10px;
}

.seo-audit-banner.rebrand_cta .btn2.m-auto {
    margin-top: 40px !IMPORTANT;
}

.faq-item.active .faq-answer ul >li {
    color: var(--theme);
    font-size: 18px;
}

.faq-item.active .faq-answer ul {
    margin: 20px 0px;
}

main.seo-page.logo_design_pgg .seo-svcs-content::after {
    display: none;
}

main.seo-page.logo_design_pgg .our_industries_secc .our_industries_wrpr > .our_industries_box {
    height: auto;
}

main.seo-page.logo_design_pgg .our_industries_secc .our_industries_wrpr > .our_industries_box > p {
    width: 100%;
    font-weight: 500;
}

main.seo-page.logo_design_pgg .our_industries_secc .our_industries_wrpr {
    height: 100%;
}

main.seo-page.logo_design_pgg .our_industries_secc .our_industries_textt > p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ppc page */

.full_services_sec .theme_heading h2 {
    font-size: 58px;
}

.full_services_sec .theme_heading p {
    font-size: 24px;
}

.full_services_sec .theme_heading>span {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 900;
}

.carett {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
    width: 15px;
    height: 15px;
    background: #fff;
    opacity: 1;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.ppc-port-imgs {
    position: relative;
}

.ppc-port-imgs .bg-prt {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.ppc-port-imgs:before {
    content: "";
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    inset: 0px;
    background: var(--theme);
}

.ppc-port-imgs .main_image {
    position: relative;
    z-index: 2;
    padding: 20px 20px 0;
}

.ppc-port-imgs .logo_image {
    z-index: 2;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.ppc-port-text h2 {
    font-size: 34px;
    color: var(--theme);
}

.ppc-port-text p {
    font-size: 20px;
    margin: 0 0 30px;
}

.ppc-port-text {
    padding-left: 40px;
}

.ppc-port-bnts>a {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.ppc-port-bnts>a:last-child {
    color: var(--theme);
}

.ppc-page .portfolio_sec {
    background: var(--gradient);
}

.ppc-port-bnts {
    display: flex;
    align-items: baseline;
    gap: 50px;
}

/* Load More Portfolio Styles */
.ppc-hidden-items {
    display: none;
}

.ppc-hidden-items.show {
    display: block;
}

.load-more-wrap {
    margin-top: 40px;
}

.load-more-brt {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-brt:hover span {transform: rotate(86deg) translateX(-3px);}

.load-more-brt.active .carett {
    transform: rotate(86deg) translateX(-3px);
}

.ppc-port-wrap {
    margin: 0 0 70px;
}

.ppc-port-wrap:nth-child(even) > .row {
    flex-direction: row-reverse;
}

.ppc-port-wrap:nth-child(even) .ppc-port-text h2 {
    color: #fff;
}

.ppc-port-wrap:nth-child(even) .ppc-port-bnts>a:last-child {
    color: #fff;
}

.ppc-port-wrap:nth-child(even) .ppc-port-imgs .logo_image {
    left: unset;
    right: 20px;
}

section.seo-svcs-sec.dark {
    background: #121212;
    padding-bottom: 0;
}

.dark p {
    color: #fff;
}

.dark .seo-svcs-heading h2 {
    color: #fff;
}

.dark .seo-svcs-item-header h3 {
    color: #fff;
}

.dark .seo-svcs-item {
    border: 0;
    padding-left: 0;
}

.dark .seo-svcs-item.is-active::before {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    filter: blur(56px);
    top: -40px;
    left: -40px;
    z-index: -1;
}

.dark .seo-svcs-item.is-active::after {
    display: none;
}


.c-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    z-index: 10;
    margin-top: 50px;
    height: 100%;
    margin-bottom: 140px;
}

.c-gallery>.c-image_src,.c-gallery>picture {
    width: 50%;
    height: auto;
    margin-left: -16%;
    position: relative;
    transition: all .44s ease-out,opacity .2s;
    box-shadow: 15px 15px 20px 5px rgba(0,0,0,.25);
    transform: translateY(54%) perspective(1800px) rotateY(-45deg) rotateX(8deg) rotate(1.5deg);
    opacity: 1;
    background-color: #ccc
}

.c-gallery>.c-image_src img,.c-gallery>picture img {
    width: 100%;
    height: auto
}

.c-gallery>.c-image_src:first-child,.c-gallery>picture:first-child {
    margin-left: 8%
}

.c-gallery>.c-image_src:nth-child(odd),.c-gallery>picture:nth-child(odd) {
    transform: perspective(1800px) rotateY(-45deg) rotateX(8deg) rotate(-1.5deg);
}

.c-gallery>.c-image_src:nth-child(1),.c-gallery>picture:nth-child(1) {
    z-index: -1
}

.c-gallery>.c-image_src:nth-child(2),.c-gallery>picture:nth-child(2) {
    z-index: -2
}

.c-gallery>.c-image_src:nth-child(3),.c-gallery>picture:nth-child(3) {
    z-index: -3
}

.c-gallery>.c-image_src:nth-child(4),.c-gallery>picture:nth-child(4) {
    z-index: -4
}

.c-gallery>.c-image_src:nth-child(5),.c-gallery>picture:nth-child(5) {
    z-index: -5
}

.c-gallery>.c-image_src:nth-child(6),.c-gallery>picture:nth-child(6) {
    z-index: -6
}

.c-gallery>.c-image_src:nth-child(1),.c-gallery>picture:nth-child(1) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s
}

.c-gallery>.c-image_src:nth-child(2),.c-gallery>picture:nth-child(2) {
    -webkit-transition-delay: .8s;
    transition-delay: .8s
}

.c-gallery>.c-image_src:nth-child(3),.c-gallery>picture:nth-child(3) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s
}

.c-gallery>.c-image_src:nth-child(4),.c-gallery>picture:nth-child(4) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s
}

.c-gallery>.c-image_src:nth-child(5),.c-gallery>picture:nth-child(5) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s
}

.c-gallery>.c-image_src:nth-child(6),.c-gallery>picture:nth-child(6) {
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s
}

.dark .seo-svcs-content::after{
    display: none;
}

/* custom website design */

/* Wasay */
/* Inner Page Custom Web Design Start */
img.custom_web_des_port_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.custom_web_des_port_image {
    position: relative;
    z-index: 1;
    padding: 30px;
}

img.custom_web_des_port_img {
    width: 100%;
    object-fit: contain;
    height: 450px;
    position: relative;
    z-index: 2;
}

img.custom_web_des_port_logo {
    position: absolute;
    bottom: 20px;
    width: 140px;
    object-fit: contain;
    height: 70px;
    z-index: 3;
}

.left_logo {
    left: 20px;
}

.right_logo {
    right: 20px;
}

.custom_web_des_port_text h3 {
    color: #fff;
}

.custom_web_des_port_text {
    width: 90%;
    margin: 0 0 0 auto;
}

.custom_web_des_port_text p {
    margin: 0 0 20px 0;
}

.black_gradient {
    position: relative;
    z-index: 1;
}

.black_gradient::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(180deg, #0a0a0a87);
}

.custom_web_des_port_text .cust-content-bottom {
    border: none;
    padding: 20px 0;
    justify-content: start;
    gap: 30px;
}

.reverse .row {
    flex-direction: row-reverse;
}

.custom_featured_inner {
    padding: 30px 0;
}

.light_gradient {
    position: relative;
    z-index: 1;
}

.light_gradient::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(271deg, #89020969 27.74%, #12121291 153.14%);
}

.custom_web_des_port_text .btn4 {
    color: #ff000d;
}

.cus_des_web_tab.curr-tab {
    display: block;
}

.cus_des_web_tab {
    display: none;
}

.hide-inner.hidden {
    display: none;
}


section.cus_bef_aft_sec {
    z-index: 1;
    background: radial-gradient(circle, rgba(137, 2, 9, 1) 0%, rgba(18, 18, 18, 1) 100%);
    position: relative;
}

.cus-web-des-content .seo-svcs-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    border-radius: 100%;
    width: 332px;
    height: 332px;
    -webkit-transform: translate(-50%, -50%) scale(.3);
    transform: translate(-50%, -50%) scale(.3);
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 156, 255, .62) 0, rgba(0, 156, 255, .32) 30.21%, rgba(0, 33, 76, 0) 100%);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    z-index: -1;
}

.cus-web-des-content .seo-svcs-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    border-radius: 100%;
    width: 300px;
    height: 300px;
    -webkit-transform: translate(-50%, -50%) scale(.3);
    transform: translate(-50%, -50%) scale(.3);
    background: radial-gradient(50% 50% at 50% 50%, #890209ed 0, #890209a8 30.21%, rgba(0, 33, 76, 0) 100%);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    z-index: -1;
}

.cus-web-des-content .seo-svcs-item.is-active:before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.cus-web-des-content .seo-svcs-item {
    border: none;
}

.cus-web-des-content .seo-svcs-item::after {
    display: none;
}

.cus-web-des-content.seo-svcs-content::after {
    display: none;
}

.custom-web-contct-img-box {
    display: flex;
    margin: 70px 0 70px 8%;
    padding: 50px 0;
}

.custom-web-contct-image {
    transform: translateY(0%) perspective(1800px) rotateY(-45deg) rotateX(8deg) rotate(1.5deg);
    margin-left: -14%;
    width: 35%;
}

img.custom-web-contct-img {
    height: auto;
    object-fit: contain;
    box-shadow: 0 0 11px 0 #00000078;
    width: 100%;
}

.custom-web-contct-image:nth-child(even) {
    transform: perspective(1800px) rotateY(-45deg) rotateX(8deg) rotate(-1.5deg);
}

.custom-web-contct-image:nth-child(odd) {
    position: relative;
    z-index: 1;
    transform: translateY(54%) perspective(1800px) rotateY(-45deg) rotateX(8deg) rotate(1.5deg);
}

.expert-left-content span {
    color: var(--theme);
    line-height: 1;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.expert-left-content h2 {
    color: var(--theme-dark);
    margin: 0 0 10px 0;
    font-size: 35px;
}

.expert-left-content p:last-child {
    font-size: 25px;
}

.expert-left-content p {
    color: #000;
}

.expert-right-text h3 {
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: var(--dark-theme);
}

.expert-right-text {
    margin: 20px 0;
}

.expert-right-box {
    margin: 20px 0;
}

.expert-right-text p {
    color: var(--dark-theme);
}

.expert-right-box-img img {
    width: 190px;
    object-fit: contain;
    height: 110px;
    object-position: left;
}

.quote {
    position: relative;
    padding: 0 0 0 18px;
    z-index: 1;
}

.quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--gradient);
}

.quote p {
    font-size: 14px;
    font-style: italic;
    line-height: 2;
    margin: 0;
}

.cta-custom-box {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Before After Slider Section */
.cus_bef_aft_sec {
    background: #010114;
    /* Dark blue/black background */
    padding: 100px 0;
    overflow: hidden;
}

.cus_bef_aft_slider_labels {
    margin-bottom: 0;
}

.cus_bef_aft_slider_labels ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: -43px;
}

.cus_bef_aft_slider_labels ul li {
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

.cus_bef_aft_slider_labels ul li:first-child {
    color: #fff;
    /* Purple for BEFORE */
}

.cus_bef_aft_slider_labels ul li:last-child {
    color: #fff;
    /* Blue for AFTER */
}

.cus_bef_aft_slider_labels ul li img {
    max-width: 150px;
}

.cus_bef_aft_slider {
    z-index: 999;
}

.cus_bef_aft_slider .slider-item {
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    padding: 0;
    opacity: 1;
    transform: scale(0.7);
    /* -webkit-box-reflect: below 5px linear-gradient(transparent, transparent 70%, rgba(255, 255, 255, 0.2)); */
}

.cus_bef_aft_slider .slider-item img {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
}

.cus_bef_aft_slider .slick-current .slider-item {
    transform: scale(1.1) rotateY(0deg);
    opacity: 1;
    z-index: 5;
}

/* Right slides rotation */
.cus_bef_aft_slider .slick-slide.slick-active+.slick-slide .slider-item {
    transform: scale(0.9) rotateY(-45deg);
}

/* Previous slides rotation override */
.cus_bef_aft_slider .slick-center+.slick-slide .slider-item {
    transform: scale(1) rotateY(-45deg);
}

.cus_bef_aft_slider .slick-prev,
.cus_bef_aft_slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: transparent;
    display: block !important;
}

.cus_bef_aft_slider .slick-prev:before,
.cus_bef_aft_slider .slick-next:before {

    content: '';

    background: #fff;

    width: 30px;

    height: 30px;

    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);

    display: block;
}

.cus_bef_aft_slider .slick-prev:before {
    transform: rotate(180deg);
}

.cus_bef_aft_slider .slick-prev {
    left: 30%;
}

.cus_bef_aft_slider .slick-next {
    right: 30%;
}



.c-btn.-glow:hover {
    /* background: #a855f7; */
    /* box-shadow: 0 0 30px rgba(168, 85, 247, 0.8); */
    color: #fff;
}

.content-single img {
    width: 60%;
    margin: 0 auto;
    display: block;
    height: 500px;
    object-fit: contain;
}

.faq-item a {
    color: var(--theme);
}

.cus_bef_aft_slider .slider-item.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1);
}

/* Decor Icon SVG Styling */
.decor-icon {
    display: block;
    width: 202px;
    height: 112px;
    max-width: 100%;
    transform: rotate(-22deg);
}

main.seo-page.logo_design_pgg .our_industries_secc .our_industries_wrpr > .our_industries_box:hover:after {
    background: var(--gradient);
}

/* services page */

.services_pg_secc {
    padding-top: 170px;
    padding-bottom: 80px;
    background: var(--gradient);
}

.services_pg_secc .serv_banner_textt {
    text-align: center;
    margin-bottom: 50px;
}

.services_pg_secc .serv_banner_textt > span {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.services_pg_secc .serv_banner_textt > a.btn2 {
    margin: 0 auto;
}

.services_pg_secc .serv_vid_wrp {
    position: relative;
    height: 400px;
    z-index: 1;
}

.services_pg_secc .serv_vid_wrp > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_pg_secc .serv_vid_wrp:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(
270deg, #890209 -2.26%, #121212 63.14%);
    left: 0;
    z-index: -1;
    transform: translate(-20px, 20px);
}

.services_pg_secc .row.mt-5 {
    align-items: center;
    margin-top: 70px !IMPORTANT;
}

.services_pg_secc .serv_textt_wrp > h2 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services_pg_secc .serv_textt_wrp > p {
    margin-bottom: 20px;
}

.services_pg_secc .serv_textt_wrp > ul {
    margin-bottom: 0;
    margin-top: 20px;
}

.services_pg_secc .serv_textt_wrp > ul > li {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services_pg_secc .serv_textt_wrp > ul > li:last-child {
    margin: 0;
}

.services_pg_secc .serv_textt_wrp > ul > li > span {
    background: #fff;
    width: 20px;
    height: 20px;
    display: block;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
}

/* contact page */

.contact-section.contact_pgg {
    padding-top: 190px;
}

.contact-section.contact_pgg .contact_info_wrpr > ul {
    display: flex;
    align-items: center;
    width: 80%;
    margin-bottom: 50px;
}

.contact-section.contact_pgg .contact_info_wrpr > ul > li {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    font-size: 18px;
}

.contact-section.contact_pgg .contact_info_wrpr > ul > li > span {
    font-weight: bold;
    margin-top: 5px;
}

.contact-section.contact_pgg .contact_info_wrpr > ul > li:nth-child(2) {
    padding: 0 40px;
    border-left: 1px solid #ffffff42;
    margin: 0 40px;
    border-right: 1px solid #ffffff42;
}

.contact-section.contact_pgg .contact_info_wrpr > h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;
    width: fit-content;
}

.contact-section.contact_pgg .contact_info_wrpr > h3:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 100px;
    height: 3px;
    right: -110px;
    top: 12px;
}

.contact-section.contact_pgg .contact_info_wrpr > .contact_info_imggs {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.contact-section.contact_pgg .contact_info_wrpr > .contact_info_imggs > img {
    width: 120px;
    height: 50px;
    object-fit: contain;
}

.contact-section.contact_pgg .contact-form-wrapper {
    background: #fff;
    padding: 40px;
}

.contact-section.contact_pgg .contact-form-wrapper h2.form-title {
    color: #000;
    font-size: 40px;
}

.contact-section.contact_pgg .contact-form-wrapper span {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.contact-section.contact_pgg .contact-form .form-control {
    color: #000;
    border-bottom: 1px solid rgb(0 0 0 / 52%);
}

section.contact-section.contact_pgg .contact-form .form-control::placeholder {
    color: #000;
}

section.contact-section.contact_pgg .contact-form .form-group label {
    filter: brightness(0);
}

/* pricing page */

.fold_four .theme_heading>h2>span {
    display: block;
    font-size: 67px;
    font-weight: 600;
}

.fold_four .theme_heading {
    position: relative;
    margin-bottom: 40px;
}

.fold_four .theme_heading>.disc_box {
    position: absolute;
    top: -40px;
    right: 1%;
}

.fold_four .theme_heading>.disc_box>span {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 24px;
    font-weight: 500;
    z-index: 2;
}

.fold_four .theme_heading>.disc_box>img {
    animation: 10s linear 0s infinite normal none running abc;
}

@keyframes abc {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pricing_box {
    background-color: #eaeaea;
    padding: 40px 20px;
    margin-top: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    padding-bottom: 20px;
}

.pricing_box>h3 {
    text-align: center;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.pricing_box>h4 {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    gap: 10px;
    color: #000;
}

.pricing_box>h4>span {
    font-size: 16px;
    line-height: 1;
    position: relative;
    bottom: 10px;
    text-decoration: line-through;
}

.pricing_box>ul.price_list {
    height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.pricing_box>ul.price_list::-webkit-scrollbar-track {
    border-radius: 10px;
}

.pricing_box>ul.price_list::-webkit-scrollbar {
    width: 7px;
}

.pricing_box>ul.price_list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #3c3c3c;
}

.pricing_box>ul.price_list>li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #000;
    transition: 0.3s ease-in-out;
}

.pricing_box .price_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.pricing_box .price_btns>.btn2 {width: 100%;margin-top: 10px;}

.pricing_box:after {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 0;
    height: 20px;
    bottom: 0;
    transition: 0.3s ease-in-out;
    right: 0;
}

.pricing_box:hover:after {
    width: 100%;
}

.pricing_box:before {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 0;
    height: 20px;
    left: 0;
    top: 0;
    transition: 0.3s ease-in-out;
}

.pricing_box:hover:before {
    width: 100%;
}

.pricing_box:hover>ul.price_list>li>i {
    color: var(--theme);
}

.pricing_box>ul.price_list>li>i {
    transition: 0.3s ease-in-out;
    margin-right: 6px;
}

.cust_tabs_wrp>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0px;
    border: 1px solid #ffffff;
}

.cust_tabs_wrp>ul>li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.cust_tabs_wrp>ul>li:first-child {
}

.cust_tabs_wrp>ul>li:last-child {
}

.cust_tabs_wrp>ul>li.curr-tab {background: #ffffff;color: var(--theme);}


.cust_tabs_wrp .tabs_box a>img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.cust_tabs_wrp .tabs_box a.port_wrp {
    margin-bottom: 20px;
    display: block;
}

.cust_tabs_wrp .tabs_box a>img:hover {
    transition: .5s ease-in-out;
    transform: scale(.9);
    object-position: bottom;
}

.cust_tabs_wrp .tabs_box a.port_wrp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cust_tabs_wrp .tabs_box a.port_wrp:after {
    position: absolute;
    content: "\f06e";
    font-size: 50px;
    font-family: 'Font Awesome 5 Pro';
    color: var(--theme);
    transform: translate(0%, -170px);
    transition: 0.3s ease-in-out;
    opacity: 0;
    text-shadow: 0px 0px 20px black;
}

.cust_tabs_wrp .tabs_box a.port_wrp:hover:after {
    transform: translate(0%, 0px);
    opacity: 1;
}

.fold_four.all-sec {
    background: var(--gradient);
    padding-top: 170px;
}

.fold_four.all-sec .theme_heading>p {
    width: 60%;
    margin: 0 auto;
}

.pricing_box .price_btns>.btn2>.btn_inn {
    width: 100%;
    justify-content: center;
}

/* Inner Page shopify start */
.shopify-sec * {
    color: var(--theme-dark);
}

.shopify-right img {
    margin: 20px 0;
    width: 100%;
}


section.shopify-sec {
    position: relative;
    z-index: 1;
}

section.shopify-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(184deg, #6e020685 -62.26%, #ffffff00 63.14%);
    z-index: 11;
    transition: all 0.4s ease;
    z-index: -1;
}

.shopify-left {
    width: 90%;
}

.shopify-light h3.section-title {
    font-size: 40px;
}

.shopify-light h3.section-title span {
    color: var(--theme) !important;
}

.shopify-light {
    background: transparent;
}

.shopify-light * {
    color: var(--theme-dark) !important;
}


.shopify-light .service-card {
    background: transparent;
}

.shopify-light .service-icon {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 250px;
    height: auto;
}

.shopify-light .service-icon h5 {
    margin: 0;
    color: var(--theme) !important;
    font-size: 35px;
    font-weight: 700;
}

.shopify-light .service-card {
    flex-direction: row;
}

.shopify-light .service-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.shopify-light .service-card:hover::before {
    background: transparent;
}

.shopify-light .service-card:hover .card-expander {
    background: transparent;
}

/* Inner Page shopify end */

/* Inner Page Wordpress start */
.f-40 {
    font-size: 40px;
}

.wordpress-light .service-card::before {
    background: transparent;
}

.wordpress-light .service-card * {
    color: #fff !important;
}


.wpd-faq-list>li {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpd-faq-list li>span {
    display: block;
    background: #fff;
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 63% 49%);
}

.custom_web_des_port_text .btn4>span {
    background: #ff000d;
}

/* Inner Page Wordpress end */

.professional_design_company_heading p {
    color: #000;
}

.social-link>i {
    font-size: 20px;
}

/* rayyan */

.faq-item+.faq-item {
    border-top: 0;
}

.faq-heads span {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    display: block;
    margin: 0 0 10px;
}

.faq-heads p {
    font-size: 22px;
    color: #fff;
    margin-top: 20px;
}

.faq-answer>img {
    width: 100%;
    display: block;
    margin: 0 0 40px;
}

.faq-answer .carett {
    margin-right: 10px;
}

.seo-page .faq-item.active .faq-answer ul>li {
    color: #fff;
}

section.signup-section.content-vet {
    padding: 70px 80px;
    margin: 0 30px;
}

section.signup-section.content-vet .signup-heading {
    text-align: center;
}

section.signup-section.content-vet p {
    color: #fff;
    font-size: 20px;
    margin: 10px 0 20px;
}

.seo-best-sec.dark h2 {
    color: #fff;
}

section.seo-best-sec.dark {
    background: #121212;
    padding: 80px 0;
}

section.seo-best-sec.dark .seo-best-pane-inner {
    position: relative;
    height: 600px;
    justify-content: start;
    background: linear-gradient(358deg, #000000, #510000);
    padding-left: 100px;
}

section.seo-best-sec.dark .seo-best-pane-media {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
}

section.seo-best-sec.dark .seo-best-pane-media img {
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

section.seo-best-sec.dark .seo-best-pane-text {
    position: relative;
    z-index: 1;
}

section.seo-best-sec.dark .seo-best-tabs {
    position: absolute;
    bottom: 40px;
    width: 85%;
    z-index: 11;
    left: 0;
    right: 0;
    margin: auto;
}

section.seo-best-sec.dark .seo-best-tabs .seo-best-tab:not(.is-active) {
    color: #fff;
}

.dark .seo-best-pane-text h3 {
    color: #fff;
}

section.seo-audit-banner.dark h2 {
    color: #fff;
}

section.seo-audit-banner.dark {
    padding-bottom: 20px;
    background: linear-gradient(354deg, #890209 -2.26%, #121212 63.14%);
}

.btn1:hover {
    color: #fff;
    text-shadow: 0 0 7px #ffffff;
    transition: 0.3s ease-in-out;
}

/* about page */

.about_banner {
    position: relative;
    height: 100vh;
    z-index: 1;
    
    =:
    center;
    padding-top: 200px;
}

.about_banner>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}

.about_banner .about_banner_textt {
    text-align: center;
}

.about_banner .about_banner_textt > span {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 29px;
    line-height: 1.2;
    display: block;
    margin-bottom: 15px;
}

.about_banner .about_banner_textt > h1 {
    font-size: 69px;
    font-weight: bold;
    margin-bottom: 30px;
}

.about_banner .about_banner_textt .about_ban_box > h2 {
    font-size: 82px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--theme);
}

.about_banner .about_banner_textt .about_ban_box > span {
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.about_banner .about_banner_textt .about_ban_box {
    margin-bottom: 40px;
}

.about_banner .about_banner_textt a.btn2 {
    margin: 0 auto;
}

.aboutus_sec .about_textt > h2 {
    font-size: 47px;
    color: var(--theme);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.aboutus_sec .about_textt > h3 {
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2b2b2b;
    font-size: 30px;
    font-weight: 800;
}

.aboutus_sec .aboutus_imgg {
    position: relative;
}

.aboutus_sec .aboutus_imgg>img.abtmain {
    width: 90%;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    height: 500px;
    object-fit: cover;
}

.aboutus_sec .row {
    align-items: center;
}

.aboutus_sec .about_textt > p {
    width: 95%;
    color: #000;
}

.rank-cta-content p {
    margin-bottom: 30px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.thankyou_banner {
    background: var(--gradient);
    padding: 190px 0px 80px;
    text-align: center;
}

.thankyou_banner h1 {
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.thankyou_banner p {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.thankyou_banner a.btn2 {
    margin: 0 auto;
}


.number_head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.number_head > i {
    background: #fffffff2;
    color: var(--theme);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: inset 0 0 11px 1px #89020966;
    animation: tada 1.5s ease infinite;
}

.number_head > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    /*text-shadow: 0px 0px 9px #ffffff;*/
}

.number_head > div > span {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}


@keyframes tada {

    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }

}

.trustpilot_img {
    background: #fff;
    padding: 10px;
    margin-top: 30px;
    width: fit-content;
}

.trustpilot_img > img {
    width: 150px;
}

.wdp_progress {
    display: none;
    position: absolute;
    top: 42.2%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
}

.wdp_progress_fill {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  will-change: width;
  display: block;
}


.services-wrapper.servSlider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.services-wrapper.servSlider .slick-dots > li {
    padding: 0;
    margin: 0;
    width: 15px;
    height: 5px;
}

.services-wrapper.servSlider .slick-dots > li > button {
    padding: 0;
    margin: 0;
    width: 15px;
    height: 5px;
}

.services-wrapper.servSlider .slick-dots > li > button:before {
    content: "";
    background: #ffffff61;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.services-wrapper.servSlider .slick-dots > li.slick-active {
    width: 25px;
    opacity: 1;
}

.services-wrapper.servSlider .slick-dots > li.slick-active > button:before {
    background: var(--theme);
}

.slick-current .service-card {
    border-color: rgba(137, 2, 9, 0.3);
    box-shadow: 0 10px 40px rgba(137, 2, 9, 0.15);
}

.slick-current .service-card::before {
    opacity: 1;
}

.slick-current .service-card .service-image {
    opacity: 1;
}

.slick-current .service-title {
    color: var(--theme);
}

.slick-current .service-description p {
    color: #000;
}

main.seo-page.shopify_pgg .wdp_progress {
    top: 36%;
}

.wordpress_pgg .wdp_progress {
    top: 29.5%;
}

.shopify-light .services-wrapper.servSlider .slick-dots > li > button:before {
    background: #00000061;
}

.shopify-light .services-wrapper.servSlider .slick-dots > li.slick-active > button:before {
    background: var(--theme);
}

ul.list {
    margin-bottom: 40px;
}

.wordpress_pgg.ecom_pgg .wdp_progress {
    top: 30.4%;
}

.hide-inner,
.cus-inner-tabs {
  overflow: hidden;
  height: 0;
}
.hide-inner.open,
.cus-inner-tabs.open {
  height: auto;
}

.pricing_box>h4>span.prc {
    text-decoration: none;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    color: var(--theme);
}


section.banner .contact-form-wrapper {
    background: #ffffffa3;
    padding: 30px 20px;
    border-radius: 10px;
}

section.banner .contact-form-wrapper h2.form-title {
    color: #000;
    font-size: 40px;
}

section.banner .contact-form-wrapper span {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.banner .contact-form .form-control {
    color: #000;
    border: 1px solid rgb(0 0 0 / 52%);
    padding: 10px 40px;
    height: 45px;
}

section.banner .contact-form .form-control::placeholder {
    color: #000;
}

section.banner .contact-form .form-group label {
    filter: brightness(0);
}
section.testi_sec {
    padding: 70px 0 30px;
    text-align: center;
}
section.professional_design_company .col-lg-7 {
    margin: 0 auto;
}
section.wrapped-sections.single-post__content-wrap .custom-accordion {
    padding: 0 1rem;
    margin-top: 30px;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

 section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-item:hover {
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-header {
    margin: 0;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button {
    background: linear-gradient(90deg, rgba(125, 23, 130, 1) 62%, rgba(240, 181, 1, 1) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(125, 23, 130, 1) 62%, rgba(240, 181, 1, 1) 100%);
    color: #ffffff;
    box-shadow: none;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button:hover {
    opacity: 0.95;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(125, 23, 130, 0.3);
    border: none;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body {
    padding: 2rem 1.5rem;
    background: #ffffff;
    color: #333333;
    line-height: 1.7;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body p {
    margin-bottom: 1rem;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body p:last-child {
    margin-bottom: 0;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body li {
    margin-bottom: 0.75rem;
    color: #555555;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body strong {
    color: rgba(125, 23, 130, 1);
    font-weight: 600;
  }

  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-body h4 {
    color: rgba(125, 23, 130, 1);
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-button {
      font-size: 1rem;
      padding: 1rem 1.25rem;
    }

   section.wrapped-sections.single-post__content-wrap  .custom-accordion .accordion-body {
      padding: 1.5rem 1.25rem;
      font-size: 0.95rem;
    }
  }

  /* Smooth Collapse Animation */
  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-collapse {
    transition: all 0.3s ease-in-out;
  }

  /* Add a subtle border accent */
  section.wrapped-sections.single-post__content-wrap .custom-accordion .accordion-item {
    transition: border-color 0.3s ease;
    box-shadow: 0 8px 15px rgba(125, 23, 130, 0.2);
    transform: translateY(-2px);
  }

.accordion-body li {
    position: relative;
    margin-left: 20px;
    line-height: 40px;
}

.accordion-body li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent var(--theme);
}

.cms_platform_secc .cms_plat_right_box img {
    width: 120px;
}
.banner .btn2:after {
    display: none;
}

.each_client_secc .theme_heading>p> span {
    color: #fff;
    font-weight: 700;
}
.why_choose_box:hover {
    background-image: linear-gradient(to bottom, #732776, #57215b, #3d1b41, #251327, #0d040e);
}


.why_choose_box:hover .why_choose_box_content h4 {
    color: #fff;
}

.why_choose_box:hover .why_choose_box_content p {
    color: #fff;
}
section.testi_sec {}

.testi_sec .slick-prev, .testi_sec .slick-next {
    display: block !important;
    background-image: linear-gradient(to bottom, #732776, #57215b, #3d1b41, #251327, #0d040e);
    padding: 10px 10px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
}

.testi_sec .slick-prev:before, .testi_sec .slick-next:before {
    color: #fff;
}

.testi_sec .slick-prev {
    left: -70px;
}

.testi_sec .slick-next {
    right: -60px;
}
ul.logos-thrd {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
}

/*privacycss*/

section.prvybnnr {
    background: var(--gradient);
    padding-top: 150px;
    padding-bottom: 70px;
    text-align: center;
}
section.privay-ploicy p {
    color: #000;
}

section.privay-ploicy p a {
    color: #990002;
    font-weight: 600;
}


section.privay-ploicy h6 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #990002;
}

section.privay-ploicy h3 {
    font-size: 35px;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #990002;
}
section.privay-ploicy ul {
    list-style-type: disc;
    padding-left: 20px;
}

section.privay-ploicy ul li {
    margin-bottom: 10px;
    line-height: 28px;
}

section.privay-ploicy h2 {
    color: #990002;
    margin-top: 20px;
}

section.privay-ploicy h4 {
    color: #990002;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
}
section.privay-ploicy a {
    color: #990002;
    font-weight: 600;
}
/*Privacy css end*/

.website_design_process .slick-initialized .slick-slide {opacity: 1;}

