/* Common Style starts */

:root {
    --primary-color: #FF5500;
    --gradient: linear-gradient(90deg, #FF5500 0%, #FF5500 100%);
    --secondary-color: #111451;
}

/* body {
    background-color: rgba(15, 20, 26, 1);
} */

.gradient-border {
  --radius: .625rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2.5rem);
  position: relative;
  border-radius: var(--radius);
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: .0625rem;
  /* border: .0625rem solid; */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: -1
}

.text-color-page {
    color: #121212 !important;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secondary-text {
    color: var(--secondary-color) !important;
}

.secondary-bg {
    background-color: var(--secondary-color) !important;
}

.button-primary {
    color: var(--white-color) !important;
    background: var(--primary-color) !important;
}

.button-primary:hover {
    background: var(--page-gradient);
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.bg-wrap {
    background: rgba(255, 85, 0, 0.1);
    border-radius: 48px;
}

.bg-primary-muted {
    background: rgba(255, 85, 0, 0.1);
}

.bg-muted {
    background: #f6f7ff;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

img {
    max-width: 100%;
}

p {
    opacity: 0.8;
}

.zup {
    position: relative;
    z-index: 2
}

/* Hero Section */

section.hero-section {
    background-color: var(--secondary-color);
    /* background-image: url('../images/content-writing-images/hero-bg.webp'); */
    background-size: cover;
    background-position: center;
    margin-bottom: 300px;
}

section.hero-section::after,
section.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('../images/pattern-bg.png');
    /* background-repeat: no-repeat; */
    background-position: top center;
    opacity: 0.05
}

section.hero-section::after {
    height: 300px;
    background: #f6f7ff;
    top: 100%;
    opacity: 1;
}

section.hero-section .container img {
    margin-bottom: -350px;
    /* margin-top: 60px; */
}

section.standout-section h5 {
    padding: 0 30px;
}

.expertise-section {
    background-image: url('../images/content-writing-images/expertise-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.single-service-box {
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    height: 100%;
    background-color: #fff;
}

section.services-section .row>div {
    margin: 1rem 0;
}

.services-section {
    background-image: url('../images/content-writing-images/bg-sr.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.single-service-box,
.single-service-box h5,
.single-service-box p {
    transition: all 0.3s ease;
}

.single-service-box:hover h5,
.single-service-box:hover p {
    color: #fff !important;
}

.single-service-box:hover {
    background-color: var(--secondary-color);
}

.ads-section {
    background-image: url('../images/content-writing-images/ads-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.choose-section {
    background-image: url('../images/content-writing-images/bg-choose.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.choose-box {
    background: var(--gradient);
}

section.choose-section .container>.row>div {
    margin: 1rem 0;
}

.bg-white-btn {
    background-color: #fff !important;
    color: var(--secondary-color) !important;
}

.bg-white-btn svg circle {
    stroke: var(--secondary-color);
}

.bg-white-btn svg circle:last-child {
    fill: var(--secondary-color);
}

.single-service-box.choose-box p {
    color: var(--secondary-color) !important;
}

.single-process {
    display: grid;
    grid-template-columns: 2fr 4fr 1fr;
    column-gap: 40px;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 40px 60px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.single-process span {
    text-align: center;
    font-size: 100px;
    font-weight: 700;
    background: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--primary-color);
}

.process-divs .single-process:nth-child(2n) {
    grid-template-columns: 1fr 4fr 2fr;
}

.single-process:hover {
    background-color: var(--secondary-color);
}

.single-process h3,
.single-process p {
    transition: all 0.3s ease;
}

.single-process:hover h3,
.single-process:hover p {
    color: #fff !important;
}

.process-section {
    background-image: url('../images/content-writing-images/bg-sr.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.icon-list-section ul li {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 15px 0;
}

.icon-list-section ul {
    margin: 0;
    padding: 0;
}

/* ****************************** new ****************************** */
.icon-wrap {
    width: 88px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: #FFF;
    font-size: 30px;
    font-weight: 800;
    flex-shrink: 0;
    border-radius: 50px;
}

.testimonial-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: #FFF
}

.user-profile>img {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    object-fit: cover;
    margin-bottom: 20px
}

.theme-control {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    resize: none;
    box-shadow: none !important;
}

.theme-control:focus {
    border-color: var(--primary-color);
}

.page-hero-wrapper {
    background-image: url(../images/homenew-images/hero-bg-new.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0
}

.page-hero-wrapper::before {
    content: '';
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    background: rgba(255, 255, 255, .1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .3);
    /* z-index: 1 */
}

.page-hero-wrapper::after {
    content: attr(data-page);
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
    color: transparent;
    font-size: 11vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    text-align: center;
}

.pricing-card {
    background: var(--primary-color);
    border-radius: 20px 20px 30px 30px;
}

.pricing-card .pricing-head {
    padding: 20px;
    text-align: center;
}

.pricing-card .pricing-body {
    background: #FFF;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 -6px 0 #c14000;
    border: 1px solid #c14000;
    border-bottom: 10px solid #c14000;
}

.tick-list li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tick-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
}

.price-wrap {
    text-align: center;
}

.price {
    font-size: 50px;
    font-weight: 600;
    line-height: 1
}


.pricing-table-wrap {
    --table-radius: 15px;
    border-radius: var(--table-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-table {
    table-layout: fixed;
}

.pricing-table :is(th, td) {
    padding: 10px 20px;
    whirte-space: nowrap;
    overflow: hidden;
}

.pricing-table :is(th, td):not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-table:not(.theme-table) td:not(:first-child) {
    color: var(--primary-color);
}

.pricing-table th {
    background: var(--primary-color);
    color: #FFF;
    font-weight: 600;
}

.pricing-table td:not(:first-child) path {
    fill: currentColor;
}

.pricing-table th:first-child {
    width: 50%;
    border-top-left-radius: var(--table-radius);
}

.pricing-table th:last-child {
    border-top-right-radius: var(--table-radius);
}

.pricing-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--table-radius);
}

.pricing-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--table-radius);
}

.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-table :is(th, td):not(:first-child) {
    text-align: center;
}

.table-wrap {
    background-color: #f6f7ff;
}

.form-block-new {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}

.inner-form-input label.form-label, .form-message label.form-label {
    font-size: 16px;
}

.inner-form-input {
    width: 100%;
}

.inner-form-input input, .form-message textarea {
    border: 1px solid #FF5500 !important;
    border-radius: 14px !important;
    width: 100% !important;
}
.form-message textarea {
    height: 100px;
}
.form-message {
    margin-top: 5px;
    margin-bottom: 10px;
}
[data-star]::before {
    display: block;
    content: "★★★★★";
    color: rgb(255, 140, 0);
}

.agency-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.site-link {
    display: block;
}

.site-link h3 {
    font-size: 22px;
    color: #ff5500 !important;
    font-weight: bold;
}

.cta-form {
    margin: 0 !important;
}

.column-block {
    white-space: nowrap;
}

.site-link,.site-link:hover {
    color: var(--primary-color);
}

.title {
    color: #ff5500 !important;
    font-weight: 500;
    font-size: 16px;
    display: block;
}
.listing-block p {
    font-size: 16px;
}

.listing-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.listing-btn-group a.button.button-primary {
    width: 100%;
    display: flex;
    align-items: center !important;
    text-align: center;
    justify-content: center;
}
.listing-block {
    border: 1px solid #ff5500;
    padding: 40px;
    border-radius: 24px;
}
.listing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-left {
     border: 1px solid #ff5500;
    padding: 25px;
    border-radius: 24px;
}
.listing-left {
    position: sticky;
    top: 140px;
    height: 100%;
}
section.table-section {
    background: #fff;
}

.table-wrapper-main ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    gap: 24px;
    margin: 0px;
    list-style: none;
    padding: 0px;
    row-gap: 16px;
}

.table-wrapper-main {
    background: #ff5500;
    padding: 40px;
    border-radius: 24px;
    margin-top: -75px;
}


@media (max-width:1439px) {
    .single-service-box {
        padding: 40px 20px;
    }

    .single-process {
        padding: 30px 40px;
    }
}

@media (max-width:991px) {
    section.standout-section .row.text-center {
        row-gap: 30px;
    }

    .text-align-center {
        text-align: center !important;
    }

    section.expertise-section .row {
        row-gap: 30px;
    }

    .icon-list-section ul li {
        justify-content: center;
    }

    .column-reverse-device {
        flex-flow: column-reverse;
    }

    .boost-section .row {
        row-gap: 30px;
    }

    section.ads-section .row {
        row-gap: 30px;
    }
    .col-lg-4.listing-left {
    position: unset;
}
}

@media (max-width:767px) {
    section.hero-section .container img {
        margin-bottom: 0;
        margin-top: 40px;
    }

    section.hero-section {
        margin-bottom: 0;
    }

    .single-process {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-divs .single-process:nth-child(2n) {
        grid-template-columns: 1fr;
    }
    .listing-btn-group {
    flex-direction: column;
}
.list-tools {
    grid-template-columns: repeat(1, 1fr) !important;
}
.form-left.mb-4 {
    margin-top: 25px;
}
.listing-block {
    padding: 25px;
}
}

a:not([class]) {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.primary-text {
    color: var(--primary-color);
}

.navbar {
    background-color: transparent !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    padding-block: 20px !important;
    transition: all .3s ease;
}

.hero-intro {
    padding-top: 150px;
    padding-bottom: 367px !important;
    position: relative;
    background-image: url(https://rankyfy.com/wp-content/themes/rankyfy-new/images/homenew-images/hero-bg-new.webp);
    overflow: hidden;
}

.hero-intro+img {
    margin-top: -367px;
    position: relative;
    z-index: 2;
}

.button {
    border-radius: 50px;
}

.highlight {
    background: linear-gradient(90deg, #FF5500 0%, #FFDCCA 49.52%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-item .nav-link {
    color: #FFF;
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(10px);
}

.analyze-card img {
    padding: 20px;
    border: 3px dashed rgba(255, 85, 0, 0.4);
    border-radius: 50%;
    box-shadow: 0px 24px 34px 0px rgba(255, 85, 0, 0.1);
    margin-bottom: 30px;
}

.page-fade {
    background-color: rgba(255, 85, 0, 0.03);
}

.gradient-border,
.gradient-hover {
    --radius: 20px;
    position: relative;
    border-radius: var(--radius);
}

.gradient-border::before,
.gradient-hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: .0625rem;
    /* border: .0625rem solid; */
    background: linear-gradient(90deg, rgba(255, 85, 0, 0.05) 0%, rgba(255, 85, 0, 0.8) 35%, rgba(255, 85, 0, 0.8) 65%, rgba(255, 85, 0, 0.05) 100%);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease;
}

.gradient-border::before,
.gradient-hover:hover::before {
    opacity: 1;
}

.gradient-hover:hover {
    box-shadow: 0px 18px 40px 0px rgba(94, 36, 7, 0.1);
}

.solution--block,
.service--block {
    border: unset;
    background-color: rgba(252, 249, 247, 1);
}

.solution--block:hover,
.service--block:hover {
    background-color: transparent;
}

section.cta-wrap {
    background: linear-gradient(90deg, #121212 0%, #FF5500 100%);
    padding-block: 90px;
    position: relative;
}

.img-wrap {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
}

.img-wrap img {
    height: 100%;
    -webkit-mask-image: linear-gradient(90deg, rgb(255 255 255 / 0%) 20%, #000000 100%);
    mask-image: linear-gradient(90deg, rgb(255 255 255 / 0%) 20%, #000000 100%);
}

.cta-wrapper {
    position: relative;
    background-color: rgba(18, 18, 18, 1);
    overflow: hidden;
}

.partner-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-card.gradient-border {
    background: transparent;
    padding: 60px 30px;
    align-items: flex-start;
    box-shadow: 0px 18px 100px 0px rgba(255, 85, 0, 0.1);
}

.cta-wrapper .row .col-xxl-4 h2 {
    font-size: clamp(1.75rem, 0.7133rem + 2.8846vw, 2.5rem);
}

.cta-wrapper::before {
    content: '';
    height: 347px;
    width: 347px;
    background: var(--primary-color);
    position: absolute;
    bottom: -262px;
    left: -14px;
    border-radius: 50%;
    filter: blur(200px);
}

.partner-card.gradient-border>img {
    position: absolute;
    bottom: 3px;
    right: 0px;
    z-index: -1;
}

.tick-list li::before {
    width: 24px;
    height: 24px;
    background: url("../images/homenew-images/check-circle.svg");
}

.budget-card {
    --radius: 20px;
    padding: 50px;
}

.budget-card h3 {
    font-size: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(211, 211, 211, 1);
    min-height: 106px;
    background: linear-gradient(90deg, #121212 0%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.budget-card .tick-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-intro {
    background: rgba(18, 18, 18, 1);
}

.testi--block {
    display: flex;
    gap: 34px;
    align-items: center;
    padding: 40px;
    --radius: 20px;
    background: rgba(18, 18, 18, 1);
    height: 100%;
    box-shadow: 0px 18px 100px 0px rgba(255, 85, 0, 0.1);
}

.testi-user {
    height: 220px;
    width: 220px;
    flex-shrink: 0;
}

.testi-user img {
    width: 100%;
}

.testi-swiper .swiper-wrapper {
    display: flex;
}

.testi-swiper .swiper-wrapper .swiper-slide {
    height: auto;
}



section.hero-banner {
    padding: 120px 0 70px !important;
}
section.hero-banner h1 {
    font-weight: 700;
}
.side-services-block {
    background-color: #eee;
    border-radius: 30px;
    overflow:hidden;
}
.side-services-block h4 {
    background-color: var(--primary-color);
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
}
.side-services-block ul {
    list-style: none;
    margin: 0;
    padding: 20px 20px !important;
}
.side-services-block ul li a {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    background-image: url("https://rankyfy.com/wp-content/themes/rankyfy-new/images/homenew-images/check-circle.svg");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 20px;
    padding-left: 29px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.side-services-block ul li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}
.side-services-block ul li:last-child{
	border:hidden;
}
.side-services-block ul li a:hover {
    padding-left: 35px;
}
.single-box-list {
    background-color: #fff;
    padding: 20px;
    border-radius: 0 20px 20px 20px;
    transition: all 0.3s ease;
}
.single-box-list h4 a {
    font-size: 22px;
    line-height: normal;
    text-decoration: none;
    font-weight: 700;
}
.single-box-list h4 {
    margin-bottom: 5px;
}
.single-box-list p {
    font-size: 16px;
    line-height: 1.35;
}
.single-box-list:hover {
    background-color: rgba(255, 85, 0, 1);
}
.single-box-list:hover a, .single-box-list:hover p {
    color:#fff;
}
.list-tools a {
    background: rgba(255, 85, 0, 0.5);
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 10px;
	transition: all 0.3s ease;
}
.list-tools a:hover {
	background-color: rgba(255, 85, 0, 1);
}
.list-tools a svg path {
	fill: rgba(255, 85, 0, 1);
}
.list-tools a p {
	font-weight:500;
	color:#000;
}
.list-tools a:hover p {
	color:#fff;
}
.list-tools a:hover svg path {
	fill:#fff;
}
.list-tools {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
footer.main-footer {
    background-color: #fff;
}
#toc li a {
    color: #fff;
}
@media (max-width: 991px) {
    section.cta-wrap {
        padding-block: 50px;
    }

    .cta-wrap .img-wrap {
        display: none;
    }
}

    /* pagination-custom wrapper */
    .pagination-custom {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
        justify-content: center;
    }

    /* Page links */
    .pagination-custom a,
    .pagination-custom span {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        border: 1px solid #ddd;
        background-color: #f9f9f9;
        color: #333;
        min-width: 40px;
        text-align: center;
    }

    /* Hover effect */
    .pagination-custom a:hover {
        background-color: #ff5500;
        border-color: #ff5500;
        color: #fff;
    }

    /* Active page */
    .pagination-custom .current {
        background-color: #ff5500;
        border-color: #ff5500;
        color: #fff;
        font-weight: 600;
    }

    /* Disabled (Prev/Next when unavailable) */
    .pagination-custom .disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Make numbers rounder if you like */
    .pagination-custom a,
    .pagination-custom span {
        border-radius: 30px;
        /* change to 6px for square buttons */
    }