/* ==============================
   UltraFlex Hero – 100% LOCK
   ============================== */

.uf-hero {
    position: relative;
    min-height: 85vh;
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay for text contrast (micro-polish) */
.uf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.48),
        rgba(0,0,0,0.12)
    );
    z-index: 1;
}

/* Hero content */
.uf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 20px;
    color: #ffffff;
}

/* Main heading */
.uf-hero-content h1 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    color: #ffffff;
}

/* Subheading (CTA balance polish) */
.uf-hero-content p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 26px;
    color: rgba(255,255,255,0.9);
}

/* Primary CTA button */
.uf-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #4f46e5;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(79,70,229,0.45);
    transition: all 0.25s ease;
}

.uf-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(79,70,229,0.55);
}

/* ===============================
   UltraFlex Partners 
================================ */
.uf-partners {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.uf-partners-logos {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
}

.uf-partner-item {
    flex: 0 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.uf-partner-item img {
    max-width: 100%;
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.uf-partner-item:hover {
    transform: translateY(-8px);
}

.uf-partners-logos.is-grayscale .uf-partner-item img {
    filter: grayscale(100%);
    opacity: 0.5;
}

.uf-partners-logos.is-grayscale .uf-partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.uf-partner-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .uf-partner-item {
        flex: 0 0 180px;
        padding: 0 30px;
    }
    .uf-partner-item img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .uf-partner-item {
        flex: 0 0 150px;
        padding: 0 20px;
    }
    .uf-partner-item img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .uf-partner-item {
        flex: 0 0 130px;
        padding: 0 15px;
    }
    .uf-partner-item img {
        height: 28px;
    }
}
/* ===============================
    Demo-1 Features Section 
=============================== */

.uf-features {
    padding: 100px 0;
    background: #ffffff;
}

.uf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* ===============================
    FEATURE CARD
=============================== */
.uf-feature-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    border: 1px solid transparent;
}

.uf-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.10);
    border-color: #eee;
}

/* ===============================
    SECTION HEADING
=============================== */
.uf-section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.uf-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
}

.uf-section-title {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
}

.uf-section-subtitle {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
}

/* ===============================
    IMAGE WRAPPER (AUTO FIT TO IMAGE)
=============================== */
.uf-feature-icon {
    width: 100%;
    height: auto; 
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
   
    padding: 0; 
}

/* ===============================
    IMAGE (NATURAL FLOW)
=============================== */
.uf-feature-icon img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

/* SOFT ZOOM ON HOVER */
.uf-feature-box:hover .uf-feature-icon img {
    transform: scale(1.05);
}

/* SOFT ZOOM ON HOVER */
.uf-feature-box:hover .uf-feature-icon img {
    transform: scale(1.05);
}

/* ===============================
    TITLE & DESCRIPTION
=============================== */
.uf-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.uf-feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===============================
    RESPONSIVE
=============================== */
@media (max-width: 991px) {
    .uf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .uf-features-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   Demo-1 — About / Intro Section (FINAL HARD FIX)
   =============================== */

.uf-about {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.uf-about .uf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.uf-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

/* Image */
.uf-about-image {
    display: flex;
    justify-content: center;
}

.uf-about-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Content */
.uf-about-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    color: #111111; 
    position: relative;
    z-index: 5;
}

.uf-about-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 12px;
}

.uf-about-heading {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111111; 
}

.uf-about-desc {
    font-size: 16px;
    color: #444444; 
    margin-bottom: 30px;
}

/* Features */
.uf-about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uf-about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: #111111; 
}

.uf-check {
    color: #10b981;
    margin-right: 10px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .uf-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .uf-about-image {
        margin-bottom: 40px;
    }

    .uf-about-features li {
        justify-content: center;
    }
}
/* === HARD TEXT VISIBILITY FIX === */
.uf-about,
.uf-about * {
    color: #111111 !important;
}

/* ==================================================
 * Why Choose Section - Demo-1 Feature Style
 * ================================================== */
.uf-why-choose-section {
    padding: 100px 0;
    background: #ffffff;
}

.uf-why-choose-section .uf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* SECTION HEADING (Demo-1 Style) */
.uf-section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.uf-section-title {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
}

.uf-section-desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
}

/* GRID SYSTEM */
.uf-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px; /* Exact Demo-1 Gap */
}

/* FEATURE CARD (Exact Demo-1 Style) */
.uf-why-choose-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.uf-why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.10);
    border-color: #eee;
}

/* IMAGE WRAPPER (Auto Fit Idea) */
.uf-why-choose-image {
    width: 100%;
    height: auto; 
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
}

.uf-why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

.uf-why-choose-item:hover .uf-why-choose-image img {
    transform: scale(1.05);
}

/* CONTENT AREA */
.uf-why-choose-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.uf-why-choose-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
 * RESPONSIVE (ThemeForest Standard)
 * ================================================== */

/* TABLET (Laptops/Tablets) */
@media (max-width: 1024px) {
    .uf-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* MOBILE (Standard) */
@media (max-width: 767px) {
    .uf-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .uf-section-title {
        font-size: 32px;
    }
}

/* SMALL MOBILE (480px Optimization) */
@media (max-width: 480px) {
    .uf-why-choose-section {
        padding: 60px 0;
    }
    .uf-why-choose-item {
        padding: 24px;
    }
    .uf-section-title {
        font-size: 28px;
    }
}
/* ===============================
   Process / How It Works Section
================================ */

.uf-process {
    padding: 100px 0;
    background: #f9fafb;
}

.uf-process-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.uf-process-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.uf-process-header p {
    font-size: 16px;
    color: #555;
}

.uf-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.uf-process-step {
    text-align: center;
    padding: 30px 20px;
}

.uf-process-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.uf-process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.uf-process-step p {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .uf-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .uf-process-steps {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   Testimonials Section (FINAL)
================================ */

.uf-testimonials {
    padding: 100px 24px;
    background: #ffffff;
}

@media (min-width: 768px) {
    .uf-testimonials {
        padding: 120px 40px;
    }
}

@media (min-width: 1200px) {
    .uf-testimonials {
        padding: 120px 60px;
    }
}

.uf-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.uf-testimonials-header h2 {
    max-width: 900px;
    margin: 0 auto 14px;
    text-align: center;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}

.uf-section-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.uf-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.uf-testimonial-card {
    background: #f9f9f9;
    padding: 34px;
    border-radius: 16px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.uf-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.uf-testimonial-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 22px;
    line-height: 1.75;
}

.uf-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.uf-testimonial-role {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}
/* ===== UltraFlex Pricing ===== */
.uf-pricing {
    background: linear-gradient(180deg, #101935, #0c132b);
    padding: 100px 20px;
    color: #fff;
}

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

.uf-pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.uf-pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.uf-pricing-header p {
    font-size: 16px;
    opacity: 0.8;
}

/* Grid */
.uf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.uf-pricing-card {
    background: #182255;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
}

.uf-pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.uf-price span {
    font-size: 46px;
    font-weight: 700;
}

.uf-price small {
    font-size: 14px;
    opacity: 0.8;
}

.uf-pricing-card ul {
    list-style: none;
    padding: 30px 0;
}

.uf-pricing-card ul li {
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Button */
.uf-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    background: #2a3570;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.uf-btn:hover {
    background: #3b49a3;
}

.uf-btn.primary {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #000;
}

/* Featured */
.uf-featured {
    border: 2px solid #4facfe;
    transform: translateY(-15px);
}

.uf-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #4facfe;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .uf-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .uf-featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .uf-pricing-grid {
        grid-template-columns: 1fr;
    }

    .uf-pricing {
        padding: 70px 15px;
    }

    .uf-pricing-header h2 {
        font-size: 32px;
    }
}
/* ===== Pricing Hover Premium Effect ===== */
.uf-pricing-card {
    transition: all 0.35s ease;
}

.uf-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* Featured card slightly stronger */
.uf-featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 80px rgba(79, 172, 254, 0.35);
}

/* Button hover polish */
.uf-pricing-card:hover .uf-btn {
    transform: translateY(-2px);
}

/* Smooth button transition */
.uf-btn {
    transition: all 0.3s ease;
}
/* ===============================
   FAQ – FINAL POLISH
=============================== */

.uf-faq {
    padding: 90px 0;
    background: #f7faff;
}

.uf-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.uf-faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.uf-faq-header p {
    color: #6b7280;
    font-size: 16px;
}

.uf-faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* FAQ Card */
.uf-faq-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 32px;
    border: 1px solid #e2ebff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.35s ease;
}

/* Left Accent Line */
.uf-faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 4px;
    border-radius: 4px;
    background: #d6e0ff;
    transition: all 0.35s ease;
}

/* Hover Effect */
.uf-faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.12);
    border-color: #4f6bff;
}

.uf-faq-item:hover::before {
    background: linear-gradient(180deg, #4f6bff, #00c6ff);
}

/* Text */
.uf-faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.uf-faq-item p {
    margin: 0;
    color: #5f6b85;
    line-height: 1.6;
}
/* ===== FAQ CARD – FINAL FIX ===== */

.uf-faq-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 32px;
    border: 1.5px solid #dbe5ff; 
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.35s ease;
}

/* Left accent (default) */
.uf-faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 4px;
    background: #cfdcff;
    transition: all 0.35s ease;
}

/* Hover = 3D premium feel */
.uf-faq-item:hover {
    transform: translateY(-6px);
    border-color: #4f6bff;
    box-shadow:
        0 22px 50px rgba(79,107,255,0.25),
        0 0 0 2px rgba(79,107,255,0.15);
}

.uf-faq-item:hover::before {
    background: linear-gradient(180deg, #4f6bff, #00c6ff);
}
/* ===============================
   UltraFlex Demo-1 — CTA Section 
================================ */

.uf-cta-section {
    padding: 60px 20px; 
    background: radial-gradient(
        circle at top,
        #0b1a33 0%,
        #070f24 60%,
        #050b1a 100%
    );
}

.uf-cta-box {
    max-width: 900px;         
    margin: 0 auto;
    padding: 55px 50px;        
    border-radius: 20px;
    background: linear-gradient(135deg, #122a4d, #0f3556);
    box-shadow: 0 25px 55px rgba(0,0,0,0.4);
    text-align: center;
}

.uf-cta-box h2 {
    font-size: 38px;          
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.uf-cta-box p {
    font-size: 16px;
    color: #cfd8e3;
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

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

.uf-cta-btn-primary {
    background: linear-gradient(135deg, #2fd4ff, #3a7bff);
    color: #001427;
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.uf-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47,212,255,0.45);
}

.uf-cta-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.25s ease;
}

.uf-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
}




/* File:  post demo-1-style.css */

.uf-demo1-home-section {
    padding: 100px 0; 
    background-color: #f9f9f9; 
}

.uf-demo1-home-section .container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px; 
}

.uf-section-header {
    text-align: center;
    margin-bottom: 60px; 
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
}

.uf-demo1-blog-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
}

.uf-modern-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.uf-modern-post-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.uf-post-media {
    height: 240px;
    overflow: hidden;
}

.uf-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uf-post-details {
    padding: 30px;
}

.uf-post-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.uf-post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.uf-post-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.uf-post-meta-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .uf-demo1-blog-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .uf-demo1-blog-wrapper { grid-template-columns: 1fr; }
}
/* Global Section Spacing */
.uf-section-padding {
    padding: 80px 0; 
}

@media (max-width: 767px) {
    .uf-section-padding {
        padding: 50px 0; 
    }
}
/* Typography Scale Consistency */

/* Main Section Titles (H2) */
.uf-section-padding h2, 
.uf-section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Sub-titles/Card Titles (H3) */
.uf-section-padding h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

/* Responsive Typography */
@media (max-width: 767px) {
    .uf-section-padding h2, 
    .uf-section-title {
        font-size: 28px;
    }
}
/* Fix for Dark Sections - Contrast Improvement */
.uf-section-dark-bg h2, 
.uf-section-dark-bg h3, 
.uf-section-dark-bg p {
    color: #ffffff !important; 
}
/* Dark Section Text Color Fix */
.uf-section-dark-bg h2, 
.uf-section-dark-bg h3,
.uf-section-dark-bg .uf-section-title,
.uf-section-dark-bg p,
.uf-section-dark-bg span {
    color: #ffffff !important; 
}


.uf-section-dark-bg p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.uf-section-padding p {
    font-size: 16px;
    line-height: 1.8; 
    color: #555;
    margin-bottom: 25px;
}


.uf-section-heading p, 
.uf-section-title + p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* =====================================================
   Demo-1 Services Section
===================================================== */
.uf-hide-services .uf-services-section {
    display: none !important;
}