:root {
    --primary-color: #FF1493;
    --secondary-color: #8A2BE2;
    --purple-bg: rgb(138 43 226 / 0.2);
    --white-color: #fff;
    --primary-bg: linear-gradient(to right, #8A2BE2, #FF1493);
    --tiktok-bg: linear-gradient(to right, #2dd4bf, #000);
    --fb-bg: linear-gradient(to right, #2563eb, #60a5fa);
    --font-size: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(0.75);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.75);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideAnim {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-50%);
    }
    45% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-100%);
    }
    70% {
        transform: translateX(-100%);
    }
    75% {
        transform: translateX(-150%);
    }
    95% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(0);
    }
}

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

.gradient-text {
    background: linear-gradient(to right, #8A2BE2, #FF1493);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secondryBg {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #444;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: #14101f;
    color: #fff;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

h2 {
    font-size: 32px;
    font-weight: bold;
}

.mainBtn {
    background: var(--primary-bg);
    padding: 10px 30px;
    border-radius: 20px;
    margin-right: 10px;
}

.secondryBtn {
    background: transparent;
    border: 1px solid var(--primary-color);
}

.mainBtn:hover {
    box-shadow: 5px 5px 20px -9px #fff;
}

.secondryBtn:hover {
    background: rgb(255 20 147 / 0.1);
}

.shapeBg {
    background-image: url('../img/dots.svg');
    background-repeat: repeat;
    background-color: #191229;
}


/* Header */

header {
    background: #201c2e;
    padding: 10px 0;
    border-bottom: 1px solid #565555;
}

.logoWrap h2 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

.logoWrap h2 span {
    color: #FF1493;
}

.logoWrap h2 .brandBg {
    background: linear-gradient(to right, #8A2BE2, #FF1493);
    font-size: 20px;
    width: 40px;
    display: inline-block;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-weight: 800;
    color: #fff;
}

header .nav-link {
    position: relative;
    color: #333;
    padding-bottom: 5px;
}

header .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #8A2BE2, #FF1493);
    transition: width 0.3s ease-in-out;
}

header .nav-link:hover::before,
header .nav-link.active::before {
    width: 100%;
}

header ul a {
    color: #fff !important;
    font-size: 16px !important;
}

header ul a:hover,
header ul a.active {
    color: var(--primary-color) !important;
}

header .nav-item.dropdown .dropdown-menu {
    background: #503370;
    z-index: 105000;
}

header .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

header .menu-toggle {
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}


/* Banner Area */

.banner {
    position: relative;
    padding: 80px 0;
}

.bg-circle {
    position: absolute;
    opacity: .1;
    right: 0;
    top: 0;
    width: 45%;
}

.banner .row {
    position: relative;
    z-index: 1050;
}

.banner h1 {
    font-size: 60px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner .stars {
    cursor: default;
    display: flex;
    justify-content: start;
    margin-top: 20px;
}

.banner .stars__wrap {
    background: var(--primary-color);
    border-radius: 8px;
    color: #111;
    display: flex;
    gap: 4px;
    letter-spacing: -.06em;
    align-items: center;
    padding: 10px;
}

.banner .stars__note {
    font-weight: 500;
    letter-spacing: -.01em;
    margin: 10px 0 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 0 10px;
}

.banner .stars__users {
    display: flex;
    margin-top: 8px;
    padding: 2px;
}

.banner .stars__users img {
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    display: block;
    float: left;
    height: 32px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 32px;
}

.bannerServices {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #444;
    animation: float 3s ease-in-out infinite;
}

.bannerServices h3 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
}

.BannerNetworks {
    background: #1e172d;
    border-radius: 30px;
    height: 46px;
    border: 3px solid #1e172d;
}

.BannerNetworks li {
    width: 33.3%;
}

.BannerNetworks li button {
    width: 100%;
    border-radius: 20px !important;
    border-bottom: 0px !important;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    line-height: 40px;
    height: 40px;
}

.BannerNetworks li button i {
    font-size: 16px;
    margin-right: 4px;
    position: relative;
    top: 1px;
}

.BannerNetworks li button.nav-link::after,
.banner-services-tabs button.nav-link::after {
    background: transparent;
}

.BannerNetworks li button.active {
    background: var(--primary-bg);
}

.BannerNetworks li button:hover {
    color: #fff;
}

.banner-services-tabs li {
    width: 48%;
    margin: 7px 1%;
}

.banner-services-tabs button {
    width: 100%;
    color: #fff;
    text-align: left;
    border-radius: 10px !important;
    padding: 15px 20px;
}

.banner-services-tabs button.active,
.banner-services-tabs button:hover {
    background-color: rgb(138 43 226 / 0.2) !important;
    color: #fff !important;
}

.banner-services-tabs button i {
    background: #503370;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 3px;
    color: var(--primary-color);
}

.banner-services-tabs .tab-content h5 {
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 3%;
}

.packagesSingle {
    flex: 1;
    min-width: 30%;
    margin: 8px 0;
    padding: 11px 0;
    border-radius: 10px;
    border: 1px solid #555;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.packagesSingle:hover,
.packagesSingle.active {
    background: rgb(81 51 114) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid #444;
}

.packagesSingle h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.packagesSingle p {
    font-size: 12px;
    color: #ccc;
    margin: 0;
}

.selectedPackage {
    margin-top: 20px;
    text-align: left;
    padding: 20px;
    border-radius: 10px;
}

.selectedPackage p {
    position: relative;
    margin: 5px;
    font-size: 15px;
    font-weight: bold;
}

.selectedPackage strong {
    position: absolute;
    right: 0;
}

.selectedPrice strong {
    color: var(--primary-color);
}

.butNowBtn .mainBtn {
    width: 100%;
    display: block;
    margin-top: 20px;
    border-radius: 10px;
}

.bannerServicesCategory h5 {
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}

.packagesHeader {
    display: flex;
    justify-content: space-between;
}

.packagesHeader p {
    font-size: 14px;
}

.packagesHeader i {
    background: linear-gradient(to right, #8A2BE2, #FF1493);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    margin-right: 4px;
}

.instagramUserName {
    position: relative;
}

.instagramUserName input {
    background: rgb(15 15 26 / 50%);
    width: 100%;
    height: 50px;
    border: 1px solid rgb(55 65 81);
    border-radius: 10px;
    padding-left: 40px;
    font-size: 14px;
    color: #fff;
}

.instagramUserName i {
    position: absolute;
    top: 16px;
    font-size: 20px;
    left: 10px;
}

.instagramUserName p {
    font-size: 13px;
    text-align: left;
    margin-top: 5px;
    color: rgb(156 163 175);
}


/* Counter Area */

.counterArea {
    margin: 50px 0;
}

.counterSingle {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    border: 1px solid #444;
    border-radius: 10px;
}

.counterSingle:hover::before {
    transform: translateX(0);
}

.counterSingle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(255, 20, 147, 0.2));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.counterSingle p {
    margin: 0;
    font-size: 14px;
    color: #c9c5c5;
}

.featuresArea {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.featuresSingle i {
    background: var(--purple-bg);
    font-size: 23px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    color: var(--primary-color);
}

.featuresSingle p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0 0;
}


/* Counter End */


/* Services */

.titleArea {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.titleArea p {
    width: 560px;
    font-size: 14px;
    color: #c9c8c8;
}

.servicesInner {
    display: flex;
    gap: 1%;
    padding: 50px 0;
    justify-content: space-between;
    align-items: center;
}

.servicesSingle {
    width: 32%;
    border-radius: 10px;
    padding: 30px;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.servicesSingle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.servicesSingle>i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--primary-bg);
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
}

.servicesSingle.tiktokService>i {
    background: var(--tiktok-bg);
}

.servicesSingle.fbService>i {
    background: var(--fb-bg);
}

.servicesSingle h3 {
    font-size: 20px;
    margin: 20px 0;
}

.servicesSingle ul {
    padding: 0;
}

.servicesSingle li {
    list-style: none;
    margin: 10px 0;
}

.servicesSingle li i {
    color: var(--primary-color);
}

.servicesSingle a {
    border-radius: 10px;
    margin-top: 20px;
    display: block;
    text-align: center;
    padding: 15px 0;
}

.servicesSingle.tiktokService a {
    background: var(--tiktok-bg);
}

.servicesSingle.fbService a {
    background: var(--fb-bg);
}


/* Services End */


/* Why Choose Us */

.WhyUsInner {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1%;
}

.WhyUsSingle {
    width: 32%;
    padding: 20px;
    border-radius: 10px;
    margin: 1% 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.WhyUsSingle:hover {
    background-color: rgb(138 43 226 / 0.1);
}

.WhyUsSingle i {
    color: var(--primary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: var(--purple-bg);
    border-radius: 50%;
    font-size: 24px;
}

.WhyUsSingle h3 {
    font-size: 20px;
    margin: 20px 0;
}

.WhyUsSingle p {
    font-size: 16px;
    color: #c3bcbc;
}


/* How It WOrks */

.howWorksWrap {
    text-align: center;
    position: relative;
}

.howWorksWrap::after {
    content: "";
    background: linear-gradient(to left, rgb(255 20 147 / 0.2), rgb(138 43 226 / 0.2));
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
}

.howWorksWrap a {
    padding: 20px 50px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.howWorksInner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2%;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.howWorksSingle {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    width: 23%;
}

.howWorksSingle span {
    position: absolute;
    background: var(--primary-bg);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    left: -20px;
    top: -20px;
}

.howWorksSingle i {
    font-size: 22px;
    background: var(--purple-bg);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    color: var(--primary-color);
}

.howWorksSingle h3 {
    font-size: 18px;
    margin: 20px 0;
    font-weight: bold;
}

.howWorksSingle p {
    color: #999;
    font-size: 15px;
}


/* How it works End */


/* FAQS */

.faqsInner {
    margin-top: 50px;
}

.faqsInner .accordion-item {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #444;
    color: #fff;
    margin: 20px 0;
    border-radius: 10px;
}

.faqsInner h3 button,
.faqsInner .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 18px;
    font-weight: bold;
}

.faqsInner h3 button::after {
    filter: invert(34%) sepia(96%) saturate(7483%) hue-rotate(312deg) brightness(101%) contrast(101%);
}

.faqsInner h3 button::before {
    background: rgb(37 33 47);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
}

.faqsInner p {
    color: #999;
    font-size: 15px;
}


/* Faqs End */


/* CTA */

.ctaWrap h2 {
    width: 560px;
    font-size: 40px;
}

.ctaWrap p {
    font-size: 18px;
    margin-bottom: 30px;
}

.ctaWrap a {
    margin: 0 10px;
}


/* CTA End */


/* Footer */

footer p {
    color: #c9c6c6;
    font-size: 15px;
    margin-top: 20px;
}

footer i {
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    border-radius: 50%;
    background: var(--purple-bg);
    text-align: center;
    color: var(--primary-color);
}

footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

footer li {
    margin: 10px 0;
}

footer a {
    font-size: 15px;
}

footer a:hover {
    color: var(--primary-color);
}

.bottomBar {
    border-top: 1px solid #333;
    padding: 30px 0;
}

.bottomBar p {
    margin: 0;
}

.bottomBar li {
    display: inline;
    margin: 0 10px;
}


/* Footer End */


/* Premiume Packages */

.premiumPackagesInner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 3%;
    text-align: center;
    position: relative;
}

.highlightedProduct {
    background: var(--primary-bg) !important;
    position: relative;
}

.highlightedProduct::after {
    content: "MOST POPULAR";
    position: absolute;
    background: var(--primary-bg);
    top: 2px;
    right: 0;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 0 10px;
}

.premiumPackagesSingle {
    flex: 1;
    min-width: 30%;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid #555;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 0px 0px 10px -2px #555;
    background: rgb(255 255 255 / 5%);
}

.premiumPackagesSingle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.premiumPackagesInner h3 {
    font-weight: bold;
    font-size: 24px;
}

.premiumPackagesInner h5 {
    font-size: 32px;
    font-weight: bold;
}

.premiumPackagesInner h4 {
    position: relative;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}

.premiumPackagesInner h4 span {
    position: absolute;
    right: 0;
}

.premiumPackagesInner p {
    font-size: 14px;
    color: #a7a7a7;
}

.borderDesign {
    background: #251c3a;
    height: 15px;
    border-radius: 20px;
    position: relative;
}

.borderDesign::after {
    position: absolute;
    content: "";
    background: var(--primary-bg);
    left: 2px;
    top: 2px;
    height: 11px;
    width: 80%;
    border-radius: 10px;
}

.borderDesign.border-1::after {
    width: 30%;
}

.borderDesign.border-2::after {
    width: 60%;
}

.premiumPackagesInner li {
    list-style: none;
    text-align: left;
    margin: 15px 0;
}

.premiumPackagesInner li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.premiumPackagesInner a {
    width: 100%;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    background: #251c3a;
    margin-top: 10px;
    font-weight: bold;
}

.premiumPackagesWrap>div>div {
    text-align: center;
    margin-top: 50px;
}

.premiumPackagesWrap>div>div p {
    font-size: 14px;
    color: #a7a7a7;
    margin: 10px;
}

.premiumPackagesWrap>div>div a.bottomBtn {
    display: inline-block;
    border-radius: 30px;
    width: 350px;
    height: 50px;
    line-height: 50px;
}


/* Premiume Packages End */


/* Testimonials */

.testimonialsInner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 3%;
    margin-bottom: 50px;
}

.testimonialsSingle {
    flex: 1;
    min-width: 30%;
    margin: 8px 0;
    border-radius: 20px;
    border: 1px solid #555;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 0px 0px 10px -2px #555;
    background: rgb(255 255 255 / 5%);
    text-align: left;
}

.testimonialsSingleHead {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonialsSingleHead .mainBg {
    background: var(--primary-bg);
}

.testimonialsSingleHead .fbBg {
    background: var(--fb-bg);
}

.testimonialsSingleHead .tiktokBg {
    background: var(--tiktok-bg);
}

.testimonialsSingleHead h4 {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.testimonialsSingleHead h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.testimonialsSingleHead i {
    font-size: 14px;
    color: var(--primary-color);
}

.testimonialsSingle p {
    margin: 20px 0 0;
    color: #d5d5d5;
    font-size: 16px;
}

.testimonialsSingle p span {
    font-size: 13px;
    color: #c5c5c5;
}

.testimonialsWrap>div>div {
    text-align: center;
}

.testimonialsWrap>div>div>a {
    color: var(--primary-color);
}

.testimonialsWrap form {
    background: var(--purple-bg);
    box-shadow: 0px 0px 20px 0px rgb(255 255 255 / 5%);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: left;
}

.testimonialsWrap form h3 {
    font-size: 18px;
    text-transform: uppercase;
}

.testimonialsWrap form label {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.testimonialsWrap form span {
    font-size: 26px;
}

.testimonialsWrap form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

.testimonialsWrap form button {
    width: 100%;
    height: 40px;
    background: var(--primary-bg);
    border: 1px solid transparent;
    text-transform: uppercase;
    border-radius: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
}


/* End Testimonials */


/* Related Services */

.relatedServicesWrap .premiumPackagesSingle {
    text-align: left;
}

.relatedServicesWrap .premiumPackagesSingle i {
    background: var(--primary-bg);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
}

.relatedServicesWrap .premiumPackagesSingle h3 {
    margin: 20px 0;
    font-size: 20px;
}

.relatedServicesWrap .premiumPackagesSingle h4 span {
    color: var(--primary-color);
}

.relatedServicesWrap .premiumPackagesSingle a {
    text-align: center;
}


/* Related Services End */


/* Popup */

.swal2-container .swal2-popup {
    background: #14101f !important;
    color: #fff !important;
}

.swal2-container .swal2-confirm {
    background: var(--primary-bg) !important;
}

[class^=swal2] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    background: #14101f;
    padding: 25px 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    color: #fff;
}

.loader .spinner {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    border: 3px solid #ddd;
    border-top: 3px solid #8A2BE2;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}


/* Slider Wrapper */

.slider-2 .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}


/* Slide Track */

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-left: 5%;
}

.slider-2 .slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slider-2 .slide {
    min-width: 95%;
    margin-right: 2%;
    display: flex;
    gap: 30px;
    align-items: center;
    border: 1px solid var(--purple-bg);
    padding: 20px;
    border-radius: 10px;
}

.slider-2 .slide-left {
    width: 45%;
    background: linear-gradient(to left, rgb(255 20 147 / 0.2), rgb(138 43 226 / 0.2));
    padding: 30px;
    border-radius: 10px;
    box-shadow: 10px 10px 20px -5px rgb(138 43 226 / 0.2);
}

.slider-2 .slide-right {
    width: 55%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.slider-2 .slide-img {
    width: 70%;
    max-width: 300px;
    border-radius: 10px;
}

.slider-2 .slide-left a {
    margin-top: 10px;
    display: inline-block;
}

.slider-2 .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 27px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.75;
}

.slider-2 .prev {
    left: 0px;
}

.slider-2 .next {
    right: 0px;
}

.slider-2 .nav-btn:hover {
    opacity: 1;
}

.slideInnerCol {
    margin: 0 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px var(--purple-bg);
    width: 50%;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.sliderRating p {
    background: var(--secondary-color);
    display: inline-block;
    padding: 5px 5px 5px 0;
    border-radius: 30px;
    font-size: 12px;
    margin: 0;
    margin-bottom: 10px;
}

.sliderRating p span {
    background: var(--primary-color);
    padding: 6.5px;
    border-radius: 15px 0 0 15px;
}

.sliderRating p i {
    color: #00ff00;
}

.read-more {
    position: relative;
}

.read-more .text-content {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.read-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    color: #fff;
    font-size: 18px;
}

.read-more-btn.rotate {
    transform: rotate(180deg);
}


/* Contact US Page */

.contactUsWrap {
    padding: 100px 0;
}

.contactUsWrap h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contactUsWrap h2,
.contactUsWrap p {
    margin-bottom: 30px;
}

.contactUsWrap .col-md-6.col-12 {
    text-align: left;
}

.contactUsWrap .contactBlock {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
}

.contactUsWrap .contactBlock a {
    font-weight: bold;
}

.contactUsWrap .contactBlock i {
    background: var(--primary-bg);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.contactUsWrap .groupInput label {
    display: block;
    margin-bottom: 10px;
    padding-left: 5px;
}

.contactUsWrap .groupInput input,
.contactUsWrap .groupInput textarea {
    background: var(--purple-bg);
    border: 1px solid #732d9b;
    color: #fff;
    height: 45px;
    padding: 10px;
    border-radius: 30px;
    width: 100%;
    font-size: 14px;
}

.contactUsWrap .groupInput input::placeholder,
.contactUsWrap .groupInput textarea::placeholder {
    color: #ccc;
}

.contactUsWrap .groupInput textarea {
    height: 120px;
    padding: 20px;
}

.contactUsWrap .groupInput input[type='submit'] {
    background: var(--primary-bg);
    height: 55px;
    padding: 0;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 5px;
    transition: ease-in-out .3s;
}

.contactUsWrap .groupInput input[type='submit']:hover {
    opacity: .7;
}

.contactRightSide {
    border-radius: 10px;
}

.contactRightSide form {
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 992px) {
    header .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .slider-2 a {
        padding: 10px;
        font-size: 14px;
    }
    .howWorksSingle {
        padding: 20px;
        width: 45%;
        margin: 20px 0;
    }
    header .mobile-menu {
        display: none;
        width: 100%;
        background: #201c2e;
        padding: 15px 0;
    }
    header .mobile-menu.active {
        display: block;
    }
    header .mobile-menu .nav {
        align-items: center;
    }
    header .mobile-menu .nav-link {
        padding: 10px 15px;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    h2,
    .ctaWrap h2 {
        font-size: 24px;
    }
    .bannerServices {
        margin-top: 40px;
    }
    .banner h1 {
        font-size: 32px !important;
    }
    .featuresArea,
    .servicesInner,
    .WhyUsInner,
    .howWorksInner,
    .slider-2 .slide {
        flex-wrap: wrap;
    }
    .servicesInner,
    .WhyUsInner,
    .howWorksInner {
        gap: 20px;
    }
    .servicesSingle,
    .WhyUsSingle,
    .howWorksSingle,
    .slider-2 .slide-left,
    .slider-2 .slide-right,
    .ctaWrap h2,
    .articlesSearch {
        width: 100%;
    }
    .articlesSearch input {
        width: 100% !important;
    }
    .titleArea p {
        width: auto;
    }
    .ctaWrap p {
        font-size: 16px;
    }
    .howWorksWrap a {
        padding: 10px 20px;
        font-size: 14px;
    }
    .bottomBar p,
    .bottomBar ul {
        text-align: center;
    }
    .bottomBar a {
        font-size: 13px;
    }
    .featuresArea.navigation {
        padding: 20px !important;
    }
    .blogPageWrap,
    .blogPostsWrap {
        padding: 40px 0 !important;
    }
    .blogPostsWrap,
    .myPagination .pagination {
        margin-top: 0 !important;
    }
    .featuresArea {
        gap: 20px;
    }
    .card-single-inner h3 {
        margin-top: 10px !important;
        font-size: 18px !important;
        padding: 0 5px !important;
    }
    .postMeta b {
        display: block;
    }
    .testimonialsSingle {
        min-width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .mainBtn {
        display: inline-block;
        margin: 10px 0;
    }
    .banner .stars,
    .slider-2 .slide-right {
        flex-wrap: wrap;
    }
    .BannerNetworks {
        height: auto;
    }
    .BannerNetworks li,
    .banner-services-tabs li,
    .slideInnerCol,
    .premiumPackagesWrap>div>div a.bottomBtn,
    .premiumPackagesSingle,
    .testimonialsSingle {
        width: 100%;
    }
    .banner {
        padding: 40px 0;
    }
    .ctaWrap a {
        margin: 5px 10px;
    }
    .premiumPackagesSingle,
    .testimonialsSingle {
        min-width: auto;
        flex: auto;
    }
    .howWorksSingle {
        margin: 5px 0;
    }
}
