/* 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;
    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;
}
.pricing-table tbody tr:nth-last-child(2) td {
    border-bottom: 0;
}

@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;
    }
}

@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;
    }
}

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;
}

.pricing-table {
    display: flex;
}

.table-left {
    min-width: 270px;
    margin-top: 114px;
}

.table-right {
    width: 100%;
    overflow: hidden;
}

.table-right .table {
    text-align: center;
}

.table-right .table thead th {
    min-width: 250px;
}

.table-left li {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 50px;
}

.table-right .table tbody tr:first-child td {
    font-size: 30px;
}

.table-right .table tbody tr:first-child td span {
    font-size: 16px;
}

.table-right .table tbody tr td {
    height: 50px;
    color: #000 !important;
    min-height: 80px;
    vertical-align: middle;
}
 
/*-- 09-10-2025 --*/
ul.btns-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Footer New */

.main-footer {
    background-image: url(../assets/images/footer-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1F0A00;
    padding: 90px 0 0;
}

.copyright--block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #FFFFFF80;
    padding: 30px 0;
    margin: 70px 0 0;
}

.footer-column h4 {
    padding: 0 0 20px;
    position: relative;
    margin: 0 0 30px;
}

.footer-column h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    border-bottom: 1.33px solid #FFFFFFBA;
    width: 40%;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column ul a {
    transition: all 0.3s;
    color: var(--white-color);
    text-decoration: none !important;
    font-weight: 400;
    display: block;
}

.footer-column ul a:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-5px);
}


/*-- 09-10-2025 End --*/

@media (max-width: 991px) {
    section.cta-wrap {
        padding-block: 50px;
    }

    .cta-wrap .img-wrap {
        display: none;
    }

    .copyright--block {
        flex-direction: column;
        margin: 20px 0 0;
    }
}