/**
* Template Name: SIM GEO Page
* Template URL: https://www.submitinme.com/geo/generative-engine-optimization.aspx
* Updated: Apr 04 2025 with Bootstrap v5.3.3
* Author: Submitinme
* License: https://submitinme.com/
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #5a011b; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #c1033a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #c1033a; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #c1033a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f2f2f2;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #56040b;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #0c0091;
    --contrast-color: #ffffff;
    --text-color: #000000;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title .title-shape {
    width: 200px;
    height: 20px;
    margin: 0 auto;
    color: var(--accent-color);
    opacity: 0.5;
}

    .section-title .title-shape svg {
        width: 100%;
        height: 100%;
    }

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
    }

    .section-title p {
        margin: 15px auto 0;
        font-size: 16px;
        max-width: 700px;
        line-height: 1.8;
    }


/*--------------------------------------------------------------
# Image Background Waves Section
--------------------------------------------------------------*/

.bg-img-section {
    width: 100%;
    position: relative;
}

    .bg-img-section .bg-img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .bg-img-section:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 50%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .bg-img-section .container {
        position: relative;
        z-index: 3;
    }

    .bg-img-section .bottom-waves {
        display: block;
        width: 100%;
        height: 60px;
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 3;
    }

    .bg-img-section .wave1 use {
        animation: move-forever1 10s linear infinite;
        animation-delay: -2s;
        fill: var(--default-color);
        opacity: 0.6;
    }

    .bg-img-section .wave2 use {
        animation: move-forever2 8s linear infinite;
        animation-delay: -2s;
        fill: var(--default-color);
        opacity: 0.4;
    }

    .bg-img-section .wave3 use {
        animation: move-forever3 6s linear infinite;
        animation-delay: -2s;
        fill: var(--default-color);
    }

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    min-height: 100vh;
    padding: 120px 0 120px 0;
    display: flex;
    align-items: center;
}

    .hero h1 {
        margin: 0 0 20px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        text-align: center;
    }

        .hero h1 span {
            color: var(--heading-color);
            border-bottom: 4px solid var(--accent-color);
        }

    .hero p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 22px;
        font-weight: 400;
    }

    .hero .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 15px 40px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .hero .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .hero .hero-img {
        background-image: url('../img/hero-img.webp'); /* Replace with your image URL */
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content h2 {
    font-weight: 700;
    margin-top: 50px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .about .content .read-more i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .about .content .read-more:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
        padding-right: 19px;
    }

        .about .content .read-more:hover i {
            margin-left: 10px;
        }

.about .icon-box {
    background-color: var(--surface-color);
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    border: 1px solid var(--surface-color);
    transition: all 0.3s ease-out 0s;
}

.about .top-box {
    min-height: 440px;
}

.about .bottom-box {
    min-height: 390px;
}

.about .icon-box i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.about .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.about .icon-box p {
    margin-bottom: 0;
}

.about .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0px;
}

@media (min-width: 1365px) {
    .about .icon-box:hover {
        border-color: var(--accent-color);
    }
}

@media (max-width: 768px) {

    .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }
}


/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/

.process-item .inner-box {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.process-item:hover .inner-box {
    transform: rotateY(180deg);
}

.process .process-item {
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    height: 100%;
}

    .process .process-item .icon {
        color: var(--contrast-color);
        background: var(--accent-color);
        margin: 0;
        width: 64px;
        height: 64px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 28px;
        transition: ease-in-out 0.3s;
    }

    .process .process-item h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }

    .process .process-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
        text-align: center;
    }

.process-item .front, .process-item .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-item .front {
    z-index: 2;
    transform: rotateY(0deg); /* Add this line */
}

.process-item .back {
    transform: rotateY(180deg);
}

.process-item h3 {
    text-align: center;
}

@media (min-width: 1365px) {
    .process .process-item:hover {
        border-color: var(--accent-color);
    }

        .process .process-item:hover h3 {
            color: var(--accent-color);
        }
}




/*--------------------------------------------------------------
# Strategies Section
--------------------------------------------------------------*/

.strategies {
    padding: 120px 0px;
}

    .strategies .strategy-item {
        background-color: var(--default-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        height: 100%;
        padding: 30px;
        transition: 0.3s;
        border-radius: 10px;
        display: flex;
    }

        .strategies .strategy-item .icon {
            font-size: 32px;
            border-radius: 10px;
            position: relative;
            margin-right: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            padding: 10px;
            flex-shrink: 0;
        }

        .strategies .strategy-item h3 {
            color: color-mix(in srgb, var(--background-color), transparent 25%);
            font-weight: 700;
            font-size: 22px;
            transition: 0.3s;
        }

        .strategies .strategy-item p {
            color: var(--text-color);
        }

        .strategies .strategy-item.item-chatgpt .icon {
            border: 1px solid #14b38b;
            background: rgba(13, 202, 240, 0.1);
        }

        .strategies .strategy-item.item-gemini .icon {
            border: 1px solid #1ba1e3;
            background: rgba(116, 119, 201, 0.15);
        }

        .strategies .strategy-item.item-copilot .icon {
            border: 1px solid #f55589;
            background: rgba(255, 106, 72, 0.16);
        }

        .strategies .strategy-item.item-claude .icon {
            border: 1px solid #da6e4b;
            background: rgba(218, 110, 80, 0.13);
        }

        .strategies .strategy-item.item-perplexity .icon {
            border: 1px solid #20808d;
            background: rgba(33, 128, 140, 0.12);
        }

        .strategies .strategy-item:hover h3 {
            color: var(--accent-color);
        }

        .strategies .strategy-item:hover p {
            color: color-mix(in srgb, var(--text-color), transparent 10%);
        }


@media (min-width: 1365px) {
    .strategies .strategy-item:hover {
        transform: translateY(-5px);
    }
}


/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/
.timeline-block {
    margin-bottom: 3rem;
}

    .timeline-block:last-child {
        margin-bottom: 0;
    }

    .timeline-block h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }

        .timeline-block h2 span {
            color: var(--accent-color);
        }

    .timeline-block .lead {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        margin-bottom: 3rem;
    }

.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 35%;
        top: 0;
        height: 90%;
        width: 2px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    }

    .timeline .timeline-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2.5rem;
        position: relative;
        min-height: 100px;
    }

        .timeline .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline .timeline-item .timeline-left {
            width: 40%;
            padding-right: 5rem;
        }

            .timeline .timeline-item .timeline-left .benefit {
                color: var(--heading-color);
                font-weight: 600;
                font-size: 1.1rem;
                margin-bottom: 0.25rem;
            }

        .timeline .timeline-item .timeline-image {
            position: absolute;
            top: -10px;
            left: calc(35% + 1px);
            transform: translateX(-50%);
            width: 6rem;
            height: 6rem;
            border-radius: 50%;
        }

            .timeline .timeline-item .timeline-image img {
                padding: 5px;
                border-radius: 50%;
                object-fit: cover;
            }

        .timeline .timeline-item .timeline-right {
            width: 65%;
            padding-left: 3rem;
            margin-top: -4px;
        }

            .timeline .timeline-item .timeline-right .position {
                color: var(--heading-color);
                font-size: 1.2rem;
                margin-bottom: 0.6rem;
                font-weight: 600;
            }

            .timeline .timeline-item .timeline-right .description {
                color: color-mix(in srgb, var(--default-color), transparent 25%);
            }

            .timeline .timeline-item .timeline-right ul {
                padding-left: 15px;
            }

                .timeline .timeline-item .timeline-right ul li {
                    padding-bottom: 12px;
                }

    .timeline .timeline-hover:hover .timeline-image {
        background-color: rgba(193, 3, 58, 0.8);
        transition: background-color 0.5s ease-in-out;
    }

    .timeline .timeline-hover:hover .timeline-left .benefit {
        color: var(--accent-color);
        transition: color 0.3s ease-in-out;
    }

    .timeline .timeline-hover:hover .timeline-right .description {
        color: var(--accent-color);
        transition: color 0.3s ease-in-out;
    }

    .timeline .timeline-btn-hover .timeline-image:hover {
        background-color: rgba(193, 3, 58, 0.8);
        transition: background-color 0.5s ease-in-out;
    }

@media (max-width: 992px) {
    .timeline-block h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 1rem;
    }

    .timeline .timeline-item {
        flex-direction: column;
        margin-bottom: 20px;
    }

        .timeline .timeline-item .timeline-left {
            width: 100%;
            text-align: left;
            padding-right: 0;
            padding-left: 6rem;
            margin-bottom: 1.6rem;
            margin-top: -4px;
        }

        .timeline .timeline-item .timeline-image {
            left: calc(1rem + 1px);
        }

        .timeline .timeline-item .timeline-right {
            width: 100%;
            padding-left: 6rem;
        }
}

@media (max-width: 600px) {
    .timeline::before {
        left: 3rem;
    }

    .timeline .timeline-item .timeline-image {
        left: calc(3rem + 1px);
    }

    .timeline .timeline-item .timeline-left {
        padding-left: 8rem;
    }

    .timeline .timeline-item .timeline-right {
        padding-left: 8rem;
    }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0 60px;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 50%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action h3 {
        font-size: 28px;
        font-weight: 700;
        color: var(--default-color);
    }

    .call-to-action p {
        color: var(--default-color);
    }

    .call-to-action .cta-btn {
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 5px;
        transition: 0.5s;
        margin: 10px;
        color: var(--accent-color);
        background: var(--default-color);
        border: 2px solid var(--accent-color);
    }

        .call-to-action .cta-btn:hover {
            color: var(--contrast-color);
            background: var(--accent-color);
            border: 2px solid var(--contrast-color);
        }



/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

    /* FAQ Item Styling */
    .faq .faq-container .faq-item {
        background-color: var(--surface-color);
        position: relative;
        padding: 20px;
        margin-bottom: 15px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        border-radius: 5px;
        overflow: hidden;
        transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
        cursor: pointer;
    }

        /* FAQ Heading Styling */
        .faq .faq-container .faq-item h3 {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            margin: 0;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

            /* Hover Effect */
            .faq .faq-container .faq-item h3:hover {
                color: var(--accent-color);
            }

    /* Toggle Icon */
    .faq .faq-container .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    /* FAQ Content - Initially Hidden */
    .faq .faq-container .faq-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s;
    }

    /* Active State */
    .faq .faq-container .faq-active {
        background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
        border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        /* Active FAQ Content */
        .faq .faq-container .faq-active .faq-content {
            max-height: 200px; /* Adjust based on content size */
            opacity: 1;
            padding-top: 10px;
        }

        /* Rotate Icon when Active */
        .faq .faq-container .faq-active .faq-toggle {
            transform: rotate(90deg);
            color: var(--accent-color);
        }


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 20px 0 20px 0;
    display: flex;
    align-items: center;
}

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

    .contact:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 100%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .contact .contact-bg {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .contact .content h2 {
        font-weight: 700;
        line-height: 1.2;
    }

    .contact .content .lead {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
    }

    .contact .contact-form {
        background-color: var(--surface-color);
        border: none;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
    }

        .contact .contact-form .form-control,
        .contact .contact-form .form-select {
            padding: 0.75rem 1.25rem;
            border-color: #e5e5e5;
            border-radius: 8px;
            font-size: 1rem;
        }

            .contact .contact-form .form-control:focus,
            .contact .contact-form .form-select:focus {
                border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
                box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
            }

            .contact .contact-form .form-control::placeholder,
            .contact .contact-form .form-select::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

        .contact .contact-form .btn-submit {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

            .contact .contact-form .btn-submit:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                transform: translateY(-1px);
            }

            .contact .contact-form .btn-submit:active {
                transform: translateY(0);
            }

/*--------------------------------------------------------------
# Press Release Services Page Styles
# Scoped to .press-release-page to avoid conflicts with other pages
--------------------------------------------------------------*/

/* Press Release Specific Styles */
.press-release-page .pr-hero {
    background: linear-gradient(135deg, #5a011b 0%, #c1033a 50%, #8b0829 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
   /* padding: 100px 0 60px;*/
}

    .press-release-page .pr-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newspaper" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="none"/><rect x="2" y="2" width="16" height="1" fill="white" opacity="0.1"/><rect x="2" y="5" width="12" height="1" fill="white" opacity="0.1"/><rect x="2" y="8" width="14" height="1" fill="white" opacity="0.1"/><rect x="2" y="11" width="10" height="1" fill="white" opacity="0.1"/><rect x="2" y="14" width="13" height="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23newspaper)"/></svg>') repeat;
        opacity: 0.2;
    }

    .press-release-page .pr-hero::after {
        content: '';
        position: absolute;
        top: 20%;
        right: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: pr-float 6s ease-in-out infinite;
    }

@keyframes pr-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.press-release-page .hero-content {
    position: relative;
    z-index: 2;
}

.press-release-page .hero-title {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.press-release-page .hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.press-release-page .hero-description {
    color: rgba(255,255,255,0.85);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.press-release-page .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.press-release-page .mascot-container {
    position: relative;
    z-index: 2;
}

.press-release-page .mascot-space {
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.15);
    border: 3px dashed rgba(255,255,255,0.4);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

    .press-release-page .mascot-space:has(img) {
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
    }

    .press-release-page .mascot-space img {
        max-width: 95%;
        height: auto;
        border-radius: 15px;
        transition: all 0.4s ease;
    }

    .press-release-page .mascot-space::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .press-release-page .mascot-space:hover {
        background: rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.7);
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }

        .press-release-page .mascot-space:hover::before {
            transform: translateX(100%);
        }

.press-release-page .hero-features {
    margin-top: 40px;
}

.press-release-page .feature-highlight {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    margin: 8px 12px 8px 0;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

    .press-release-page .feature-highlight:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .press-release-page .feature-highlight i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

/* Media outlet badges enhancement */
.press-release-page .media-outlets-container {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.press-release-page .media-outlet {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    color: #5a011b;
    padding: 10px 16px;
    border-radius: 25px;
    margin: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .press-release-page .media-outlet:hover {
        background: #c1033a;
        color: white;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(193, 3, 58, 0.3);
    }

/* Mobile responsiveness for hero */
@media (max-width: 768px) {
    .press-release-page .pr-hero {
        padding: 80px 0 50px;
        text-align: center;
        min-height: 85vh;
    }

    .press-release-page .hero-title {
        font-size: 2.8rem;
    }

    .press-release-page .hero-subtitle {
        font-size: 1.5rem;
    }

    .press-release-page .hero-description {
        font-size: 1.1rem;
    }

    .press-release-page .mascot-container .d-flex {
        justify-content: center !important;
    }

    .press-release-page .mascot-space {
        width: 350px;
        height: 350px;
        font-size: 16px;
    }

    .press-release-page .hero-buttons {
        justify-content: center;
    }

    .press-release-page .pr-hero::after {
        display: none;
    }
}

.press-release-page .news-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(90, 1, 27, 0.1);
    border-left: 5px solid #c1033a;
    transition: all 0.3s ease;
    height: 100%;
}

    .press-release-page .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(90, 1, 27, 0.15);
    }

.press-release-page .media-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
}

.press-release-page .stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(193, 3, 58, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .press-release-page .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(193, 3, 58, 0.15);
        border-color: #c1033a;
    }

.press-release-page .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c1033a;
    margin-bottom: 10px;
    display: block;
}

.press-release-page .stat-label {
    color: #5a011b;
    font-weight: 600;
    font-size: 1.1rem;
}

.press-release-page .section-title-pr {
    text-align: center;
    margin-bottom: 60px;
}

    .press-release-page .section-title-pr h2 {
        color: #5a011b;
        font-weight: 700;
        font-size: 2.8rem;
        margin-bottom: 20px;
        position: relative;
    }

        .press-release-page .section-title-pr h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #5a011b 0%, #c1033a 100%);
            border-radius: 2px;
        }

    .press-release-page .section-title-pr p {
        color: #666;
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

.press-release-page .btn-pr-primary {
    background: linear-gradient(135deg, #5a011b 0%, #c1033a 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(193, 3, 58, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

    .press-release-page .btn-pr-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(193, 3, 58, 0.5);
        color: white;
        text-decoration: none;
    }

.press-release-page .btn-pr-outline {
    background: rgba(255,255,255,0.95);
    color: #5a011b;
    border: 3px solid rgba(255,255,255,0.95);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    display: inline-block;
}

    .press-release-page .btn-pr-outline:hover {
        background: #c1033a;
        color: white;
        border-color: #c1033a;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(193, 3, 58, 0.4);
        text-decoration: none;
    }

/* CTA Section White Variant */
.press-release-page .btn-pr-primary.btn-white-variant {
    background: white;
    color: #5a011b;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

    .press-release-page .btn-pr-primary.btn-white-variant:hover {
        background: #f8f9fa;
        color: #c1033a;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    }

/* Submit Button Style */
.press-release-page .btn-submit-form {
    background: linear-gradient(135deg, #5a011b 0%, #c1033a 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 3, 58, 0.3);
    width: 100%;
}

    .press-release-page .btn-submit-form:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(193, 3, 58, 0.4);
        color: white;
    }

.press-release-page .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(90, 1, 27, 0.1);
    position: relative;
    margin: 20px 0;
}

    .press-release-page .testimonial-card::before {
        content: '"';
        font-size: 4rem;
        color: #c1033a;
        position: absolute;
        top: 10px;
        left: 30px;
        font-family: serif;
        opacity: 0.3;
    }

.press-release-page .cta-section {
    background: linear-gradient(135deg, #5a011b 0%, #c1033a 100%);
    padding: 80px 0;
    position: relative;
}

    .press-release-page .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="30" r="1.5" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="white" opacity="0.1"/><circle cx="30" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="70" r="1.5" fill="white" opacity="0.1"/></svg>') repeat;
    }

/* New Pricing Card Styles */
.press-release-page .pr-pricing-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-height: 620px;
}

    .press-release-page .pr-pricing-card:hover {
        transform: translateY(-8px);
        border-color: #c1033a;
        box-shadow: 0 15px 40px rgba(193, 3, 58, 0.15);
    }

    .press-release-page .pr-pricing-card.pr-popular {
        border-color: #c1033a;
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(193, 3, 58, 0.2);
    }

        .press-release-page .pr-pricing-card.pr-popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

.press-release-page .pr-badge {
    position: absolute;
    top: 20px;
    right: -25px;
    background: linear-gradient(135deg, #c1033a 0%, #5a011b 100%);
    color: white;
    padding: 8px 35px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    z-index: 10;
}

.press-release-page .pr-card-header {
    padding: 30px 25px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

    .press-release-page .pr-card-header h3 {
        color: #5a011b;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

.press-release-page .pr-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.press-release-page .pr-price {
    margin-bottom: 0;
}

    .press-release-page .pr-price .currency {
        font-size: 1.2rem;
        color: #c1033a;
        font-weight: 600;
    }

    .press-release-page .pr-price .amount {
        font-size: 3rem;
        color: #c1033a;
        font-weight: 800;
        line-height: 1;
    }

    .press-release-page .pr-price .period {
        font-size: 1rem;
        color: #666;
        font-weight: 500;
    }

.press-release-page .pr-card-body {
    padding: 0 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-release-page .pr-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

    .press-release-page .pr-features li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #555;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .press-release-page .pr-features li:last-child {
            border-bottom: none;
        }

        .press-release-page .pr-features li:hover {
            background: rgba(193, 3, 58, 0.05);
            padding-left: 10px;
            border-radius: 6px;
        }

        .press-release-page .pr-features li i {
            color: #c1033a;
            margin-right: 10px;
            font-size: 1rem;
            flex-shrink: 0;
        }

.press-release-page .pr-card-footer {
    padding: 25px;
    text-align: center;
    margin-top: auto;
}

/* Clean Step Process Styles */
.press-release-page .step-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.press-release-page .step-container {
    max-width: 1200px;
    margin: 0 auto;
}

.press-release-page .step-item {
    margin-bottom: 30px;
    position: relative;
}

.press-release-page .step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(90, 1, 27, 0.1);
    border-left: 5px solid #c1033a;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

    .press-release-page .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(193, 3, 58, 0.02) 0%, rgba(90, 1, 27, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .press-release-page .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(90, 1, 27, 0.15);
        border-left-color: #5a011b;
    }

        .press-release-page .step-card:hover::before {
            opacity: 1;
        }

.press-release-page .step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.press-release-page .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5a011b 0%, #c1033a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(193, 3, 58, 0.3);
}

.press-release-page .step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(193, 3, 58, 0.4);
}

.press-release-page .step-icon {
    width: 50px;
    height: 50px;
    background: rgba(193, 3, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c1033a;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.press-release-page .step-card:hover .step-icon {
    background: #c1033a;
    color: white;
    transform: scale(1.05);
}

.press-release-page .step-content {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.press-release-page .step-title {
    color: #5a011b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.press-release-page .step-card:hover .step-title {
    color: #c1033a;
}

.press-release-page .step-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.press-release-page .step-timeline {
    display: inline-block;
    background: linear-gradient(135deg, #c1033a 0%, #5a011b 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: flex-start;
}

/* Connecting Lines */
.press-release-page .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -30px;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #c1033a, #f0f0f0);
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .press-release-page .step-card {
        padding: 30px 20px;
    }

    .press-release-page .step-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .press-release-page .step-number, .press-release-page .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .press-release-page .step-item:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Enhanced Visual Effects */
.press-release-page .step-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(193,3,58,0.1)"/><circle cx="75" cy="25" r="1.5" fill="rgba(90,1,27,0.1)"/><circle cx="25" cy="75" r="1" fill="rgba(193,3,58,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(90,1,27,0.1)"/></svg>') repeat;
    pointer-events: none;
}

/* Floating Mascot System */
.press-release-page .floating-mascot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.95);
    border: 3px solid #c1033a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #5a011b;
    text-align: center;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(90, 1, 27, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

    .press-release-page .floating-mascot.visible {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .press-release-page .floating-mascot:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 15px 40px rgba(90, 1, 27, 0.4);
        border-color: #5a011b;
    }

    .press-release-page .floating-mascot.changing {
        transform: scale(0.8) rotateY(180deg);
        opacity: 0.7;
    }

/* Hide floating mascot on mobile */
@media (max-width: 768px) {
    .press-release-page .floating-mascot {
        display: none;
    }
}

/*--------------------------------------------------------------
# Media Stats Revamp
--------------------------------------------------------------*/
.media-stats-revamp {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .media-stats-revamp::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        animation: rotate-background 30s linear infinite;
    }

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

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

.media-stats-revamp .stat-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
}

    .media-stats-revamp .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.8);
    }

    .media-stats-revamp .stat-item i {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
        background: -webkit-linear-gradient(135deg, #5a011b, #c1033a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: transform 0.3s ease;
    }

    .media-stats-revamp .stat-item:hover i {
        transform: scale(1.1);
    }

.media-stats-revamp .stat-number {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.media-stats-revamp .stat-label {
    font-family: "Roboto", sans-serif;
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/*--------------------------------------------------------------
# Why Choose Us Revamp
--------------------------------------------------------------*/
.why-choose-us-revamp {
    background: #fff;
    padding: 80px 0;
}

    .why-choose-us-revamp .feature-box {
        background: #f9f9f9;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease-in-out;
        height: 100%;
    }

        .why-choose-us-revamp .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            background: #c1033a;
        }

        .why-choose-us-revamp .feature-box .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px auto;
            border-radius: 50%;
            background: #c1033a;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
        }

        .why-choose-us-revamp .feature-box:hover .feature-icon {
            background: #fff;
            transform: scale(1.1);
        }

        .why-choose-us-revamp .feature-box .feature-icon i {
            color: #fff;
            font-size: 2.5rem;
            transition: all 0.3s ease-in-out;
        }

        .why-choose-us-revamp .feature-box:hover .feature-icon i {
            color: #c1033a;
        }

        .why-choose-us-revamp .feature-box h3 {
            font-family: "Poppins", sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #5a011b;
            margin-bottom: 15px;
            transition: color 0.3s ease-in-out;
        }

        .why-choose-us-revamp .feature-box:hover h3 {
            color: #fff;
        }

        .why-choose-us-revamp .feature-box p {
            font-family: "Roboto", sans-serif;
            color: #666;
            line-height: 1.6;
            margin: 0;
            transition: color 0.3s ease-in-out;
        }

        .why-choose-us-revamp .feature-box:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

/*--------------------------------------------------------------
# Process Revamp
--------------------------------------------------------------*/
.process-revamp {
    background: #f5f7fa;
    padding: 80px 0;
}

    .process-revamp .timeline-container {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

        .process-revamp .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #c1033a;
            top: 20px;
            bottom: 20px;
            left: 50px;
            margin-left: -2px;
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(193, 3, 58, 0.5);
        }

    .process-revamp .timeline-item {
        padding: 20px 0 20px 100px;
        position: relative;
    }

        .process-revamp .timeline-item:last-child {
            padding-bottom: 20px;
        }

    .process-revamp .timeline-icon {
        position: absolute;
        left: 50px;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        margin-left: -30px;
        background: #fff;
        border: 4px solid #c1033a;
        border-radius: 50%;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .process-revamp .timeline-item:hover .timeline-icon {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 0 25px rgba(193, 3, 58, 0.7);
    }

    .process-revamp .timeline-icon i {
        color: #c1033a;
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }

    .process-revamp .timeline-item:hover .timeline-icon i {
        color: #5a011b;
    }

    .process-revamp .timeline-content {
        padding: 30px;
        background: #fff;
        border-radius: 15px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .process-revamp .timeline-item:hover .timeline-content {
        transform: translateX(10px);
        border-color: #c1033a;
    }

    .process-revamp .timeline-step {
        font-size: 0.8rem;
        font-weight: 700;
        color: #c1033a;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: block;
    }

    .process-revamp .timeline-content h3 {
        font-family: "Poppins", sans-serif;
        font-size: 1.6rem;
        font-weight: 600;
        color: #5a011b;
        margin-bottom: 10px;
    }

    .process-revamp .timeline-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .process-revamp .timeline-duration {
        display: inline-block;
        background: #f4f4f4;
        color: #5a011b;
        font-weight: 600;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

@media (max-width: 768px) {
    .process-revamp .timeline-container::after {
        left: 30px;
    }

    .process-revamp .timeline-item {
        padding-left: 70px;
    }

    .process-revamp .timeline-icon {
        left: 30px;
    }
}

/*--------------------------------------------------------------
# Pricing Revamp
--------------------------------------------------------------*/
.pricing-revamp {
    background: #fff;
    padding: 80px 0;
}

    .pricing-revamp .pricing-item {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        text-align: center;
        padding: 40px;
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .pricing-revamp .pricing-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .pricing-revamp .pricing-item.featured {
            border-color: #c1033a;
            box-shadow: 0 10px 40px rgba(193, 3, 58, 0.15);
        }

    .pricing-revamp .featured-badge {
        position: absolute;
        top: 15px;
        right: -30px;
        transform: rotate(45deg);
        background: #c1033a;
        color: #fff;
        padding: 5px 30px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .pricing-revamp .pricing-header {
        margin-bottom: 30px;
    }

        .pricing-revamp .pricing-header h3 {
            font-family: "Poppins", sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #5a011b;
            margin-bottom: 15px;
        }

        .pricing-revamp .pricing-header h4 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #c1033a;
            margin: 0;
        }

            .pricing-revamp .pricing-header h4 sup {
                font-size: 1.5rem;
                top: -1.5rem;
            }

           /* .pricing-revamp .pricing-header h4 span {
                font-size: 1rem;
                color: #666;
                font-weight: 400;
            }*/

    .pricing-revamp ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
        text-align: left;
    }

        .pricing-revamp ul li {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

            .pricing-revamp ul li.na {
                color: #ccc;
            }

                .pricing-revamp ul li.na span {
                    text-decoration: line-through;
                }

        .pricing-revamp ul i {
            color: #c1033a;
            font-size: 1.2rem;
            margin-right: 15px;
        }

        .pricing-revamp ul li.na i {
            color: #ccc;
        }

    .pricing-revamp .pricing-footer {
        text-align: center;
    }

    .pricing-revamp .btn-get-started {
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        background: #5a011b;
        color: #fff;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid #5a011b;
    }

        .pricing-revamp .btn-get-started:hover {
            background: #c1033a;
            border-color: #c1033a;
        }

    .pricing-revamp .featured .btn-get-started {
        background: #c1033a;
        border-color: #c1033a;
    }

        .pricing-revamp .featured .btn-get-started:hover {
            background: #5a011b;
            border-color: #5a011b;
        }

/*--------------------------------------------------------------
# Contact Revamp
--------------------------------------------------------------*/
.contact-revamp {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf2 100%);
    padding: 80px 0;
}

    .contact-revamp .info-container {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        height: 100%;
    }

        .contact-revamp .info-container .section-title-pr {
            text-align: left;
            margin-bottom: 30px;
        }

    .contact-revamp .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }

        .contact-revamp .info-item:last-child {
            margin-bottom: 0;
        }

        .contact-revamp .info-item i {
            font-size: 1.8rem;
            color: #c1033a;
            margin-right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #fdf0f4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-revamp .info-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5a011b;
            margin-bottom: 5px;
        }

        .contact-revamp .info-item p {
            margin: 0;
        }

        .contact-revamp .info-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .contact-revamp .info-item a:hover {
                color: #c1033a;
            }

    .contact-revamp .form-container {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        height: 100%;
    }

    .contact-revamp .form-control {
        border-radius: 10px;
        padding: 12px 15px;
        border: 1px solid #e0e0e0;
    }

        .contact-revamp .form-control:focus {
            border-color: #c1033a;
            box-shadow: 0 0 0 0.2rem rgba(193, 3, 58, 0.1);
        }

    .contact-revamp button[type="submit"] {
        background: #5a011b;
        color: #fff;
        border: 0;
        padding: 12px 40px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .contact-revamp button[type="submit"]:hover {
            background: #c1033a;
        }

/*--------------------------------------------------------------
# Testimonials Revamp
--------------------------------------------------------------*/
.testimonials-revamp {
    background: #f5f7fa;
    padding: 80px 0;
}

    .testimonials-revamp .testimonial-item {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        height: 100%;
    }

    .testimonials-revamp .testimonial-content {
        padding: 40px;
        position: relative;
    }

        .testimonials-revamp .testimonial-content i {
            font-size: 3rem;
            color: #c1033a;
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
        }

        .testimonials-revamp .testimonial-content p {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #666;
            margin: 0;
        }

    .testimonials-revamp .testimonial-author {
        padding: 20px 40px;
        background: #f9f9f9;
        border-top: 1px solid #f0f0f0;
    }

        .testimonials-revamp .testimonial-author h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5a011b;
            margin: 0 0 5px 0;
        }

        .testimonials-revamp .testimonial-author span {
            color: #c1033a;
            font-weight: 500;
        }

/*--------------------------------------------------------------
# FAQ Revamp
--------------------------------------------------------------*/
.faq-revamp {
    background: #fff;
    padding: 80px 0;
}

    .faq-revamp .accordion-item {
        border: 0;
        border-bottom: 1px solid #e9e9e9;
        margin-bottom: 10px;
    }

    .faq-revamp .accordion-button {
        background: none;
        padding: 20px 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #5a011b;
        text-align: left;
        border: 0;
        box-shadow: none;
    }

        .faq-revamp .accordion-button:not(.collapsed) {
            color: #c1033a;
        }

        .faq-revamp .accordion-button:after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            background-image: none;
            transform: rotate(0deg);
            transition: transform 0.2s ease-in-out;
        }

        .faq-revamp .accordion-button:not(.collapsed):after {
            transform: rotate(-180deg);
        }

        .faq-revamp .accordion-button i {
            margin-right: 15px;
            color: #c1033a;
        }

    .faq-revamp .accordion-body {
        padding: 0 0 20px 35px;
        line-height: 1.7;
    }

/*--------------------------------------------------------------
# CTA Revamp
--------------------------------------------------------------*/
.cta-revamp {
    background: linear-gradient(135deg, #5a011b 0%, #c1033a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .cta-revamp::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        animation: bg-scroll 20s linear infinite;
    }

@keyframes bg-scroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -120px -120px;
    }
}

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

.cta-revamp .cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-revamp .cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-revamp .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-revamp .btn-cta-primary,
.cta-revamp .btn-cta-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-revamp .btn-cta-primary {
    background: #fff;
    color: #5a011b;
    border: 2px solid #fff;
}

    .cta-revamp .btn-cta-primary:hover {
        background: transparent;
        color: #fff;
    }

.cta-revamp .btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .cta-revamp .btn-cta-secondary:hover {
        background: #fff;
        color: #5a011b;
    }

/*--------------------------------------------------------------
# Press Release Page Navigation
--------------------------------------------------------------*/
.pr-nav {
    background: #f2dde2; /* rgba(255, 255, 255, 0.85);*/ /* Slightly transparent background */
    backdrop-filter: saturate(180%) blur(10px); /* Frosted glass effect */
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow */
    position: sticky;
    /* top: 130px; Adjust this value based on the height of your main header */
    z-index: 1010;
    transition: top 0.3s ease-in-out;
}

    .pr-nav .nav-links {
        position: relative;
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pr-nav .nav-link {
        padding: 0.6rem 1.2rem;
        text-decoration: none;
        color: #333;
        font-weight: 600; /* Slightly bolder */
        transition: color 0.3s, transform 0.3s;
        position: relative;
        z-index: 1;
    }

        .pr-nav .nav-link:hover {
            color: #c1033a; /* Use a brand color for hover */
            transform: scale(1.05); /* Subtle zoom effect */
        }

        .pr-nav .nav-link.active {
            color: #fff; /* White text for active link */
        }

    /* New active link indicator */
    .pr-nav .nav-link-indicator {
        position: absolute;
        height: 100%;
        background-color: #c1033a; /* Brand color for indicator */
        border-radius: 50px; /* Pill shape */
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth transition */
        z-index: 0;
        box-shadow: 0 2px 5px rgba(193, 3, 58, 0.3);
    }
