.elementor-145 .elementor-element.elementor-element-7a3f97d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-f87a51f *//* Hero Section */
        .hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: 
        url('https://psrebuildsite.dvcdevelopment.com/wp-content/uploads/2025/06/how-it-works-bg-ps-hero.webp') center/cover no-repeat, /* 🔔 Add your image here */
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);

    background-blend-mode: overlay, normal, normal, normal; /* 🖌️ Blend the image with gradients */
    opacity: 0.8; /* Adjust overall visibility of the layer */
    z-index: 0;
}

.hero > * {
    position: relative; /* Keeps text/content above the background image/gradients */
    z-index: 1;
}


        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-300);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    /* 👇 Add text shadow for better readability */
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}


        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: var(--gradient-secondary);
            color: #fff !important;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff !important;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Overview Section */
.overview {
    padding: 6rem 2rem;
    background: var(--white);
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.overview-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--gray-800);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.overview-features li:nth-child(1) { animation-delay: 1s; }
.overview-features li:nth-child(2) { animation-delay: 2s; }
.overview-features li:nth-child(3) { animation-delay: 3s; }
.overview-features li:nth-child(4) { animation-delay: 4s; }
.overview-features li:nth-child(5) { animation-delay: 5s; }

.overview-features li::before {
    content: '✔';
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(16,185,129,0.4);
    margin-top: 0.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-visual {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.overview-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

.overview-steps {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;                 /* More spacing between bubbles */
    padding: 2rem;
}

.overview-step {
    background: var(--white);
    width: 130px;              /* Larger bubbles */
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;           /* Adjusted for readability */
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
    padding: 1rem;             /* More inner space for text */
    white-space: normal;
    line-height: 1.3;
    animation: float 6s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}


@media (max-width: 768px) {
    .overview-step {
        width: 110px;
        height: 110px;
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}


.overview-step:nth-child(even) {
    transform: translateY(15px); /* Staggered vertical position for natural feel */
}

.overview-step:hover {
    transform: scale(1.05) translateY(-5px); /* subtle interaction */
}

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


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


        /* Main Process Section */
        .main-process {
            padding: 6rem 2rem;
            background: var(--gray-100);
        }

        .process-container {
            max-width: 1050px;
            margin: 0 auto;
        }

        .process-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .process-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .process-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(2, minmax(300px, 1fr));
            gap: 3rem;
        }

        .process-step {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .process-number {
            width: 5rem;
            height: 5rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            margin: 0 auto 2rem;
            color: var(--white);
            box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
        }

        .process-step h3 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .process-step p {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .process-details {
            list-style: none;
            text-align: left;
        }

        .process-details li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--gray-700);
            font-size: 0.95rem;
        }

        .process-details li::before {
            content: '•';
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 0.1rem;
        }

        /* Timeline Section */
        .timeline {
            padding: 6rem 2rem;
            background: var(--dark);
            color: var(--white);
        }

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .timeline-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .timeline-subtitle {
            font-size: 1.25rem;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .timeline-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .timeline-period {
            background: var(--gradient-secondary);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .timeline-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .timeline-item p {
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* Service-Specific Process */
        .service-process {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .service-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .service-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .service-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 800px;
            margin: 0 auto;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--gray-100);
            padding: 2.5rem;
            border-radius: 20px;
            border-left: 4px solid var(--primary);
        }

        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .service-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-steps {
            list-style: none;
        }

        .service-steps li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--gray-700);
            font-size: 0.95rem;
        }

        .service-steps li::before {
            content: '→';
            color: var(--secondary);
            font-weight: 700;
            margin-top: 0.1rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-secondary);
            color: var(--white);
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        .cta-button {
            background: var(--white);
            color: var(--secondary);
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section ul li a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-400);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .overview-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .process-title,
            .service-title,
            .timeline-title,
            .cta-title {
                font-size: 2rem;
            }

            .timeline-grid,
            .service-grid {
                grid-template-columns: 1fr;
            }

            .overview-steps {
                justify-content: center;
            }
        }

        /* Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }/* End custom CSS */