.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 60px;
}

.service-card-layout {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ff5800;
}

.service-card-layout:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon {
    position: absolute;
    top: -20px;
    right: 24px;
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-card-layout h3 {
    margin-top: 24px;
    color: #ff3d00;
}

.service-card-layout p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 16px 0;
}

.service-card-layout a {
    color: #ff3d00;
    font-weight: 600;
    text-decoration: none;
}

/* Pricing Table */
/* .pricing-section {
  background: #f5f1e9;
  
} */
.custom-bg-clr {
    /* background: #f5f1e9; */
    background: radial-gradient(circle at top left, #fdf3ec, transparent 105%),
        #fef4ee;
}

.portfolio-detail {
    margin-top: 20px;
}

.section-padding-spacer {
    padding: 90px 20px;
}

.section-title {
    font-size: 34px;
    font-weight: 600;
    color: #111827;
}

.section-subtitle {
    color: #6b7280;
    margin: 12px 0 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #f04d0c;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.06); */
    transform: translateY(-4px);
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    margin: 18px 0 6px;
    color: #ff3d00;
}

.plan-desc {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 26px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.features li:last-child {
    border-bottom: none;
}

h2>span:not(.nocolor) {
    color: #ff3d00 !important;
}

.btn-outline,
.btn-primary-foduu {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: #374151;
    background: #fff;
}

.btn-outline:hover {
    border-color: #ff3d00;
    color: #ff3d00;
}

.btn-primary-foduu {
    background: #ff3d00;
    color: #fff;
}

.btn-primary-foduu:hover {
    color: #fff;
}

.featured {
    border-color: #ff3d00;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3d00;
    color: #fff;
    padding: 6px 18px;
    font-size: 12px;
    border-radius: 20px;
}

.features li {
    position: relative;
    padding: 7px 0;
    padding-left: 20px;
    /* margin-bottom: 5px; */
    font-size: 14px;
    color: #374151;
    /* border-bottom: 1px solid #f1f5f9; */
    display: flex;
    align-items: center;
}

.features li:last-child {
    border-bottom: none;
}

/* Check icon */
.features li.included::before {
    content: "✔";
    /* Unicode check */
    position: absolute;
    left: 0px;
    font-size: 16px;
    color: #22c55e;
    /* green */
    top: 50%;
    transform: translateY(-50%);
}

/* Cross icon */
.features li.excluded::before {
    content: "✖";
    /* Unicode cross */
    position: absolute;
    left: 0px;
    font-size: 16px;
    color: #ef4444;
    /* red */
    top: 50%;
    transform: translateY(-50%);
}

/* affordable section  css start*/

.affordable-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.affordable-about-visual {
    position: relative;
    /* background: linear-gradient(135deg, #1f2933, #020617); */

    /* padding: 60px; */
    display: flex;
    justify-content: center;
}

.affordable-about-visual img {
    border-radius: 20px;
}

/* Floating Stats */
.stat {
    position: absolute;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.stat p {
    margin: 0;
    font-size: 24px;
    color: #ff7a18;
    font-weight: 600;
}

.stat span {
    font-size: 13px;
    color: #cbd5e1;
}

.stat-1 {
    top: 20%;
    left: -30px;
}

.stat-2 {
    bottom: 18%;
    right: -30px;
}

/* RIGHT SIDE */
.affordable-about-content h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 22px;
}

.affordable-about-content h2 span {
    display: block;
    color: #ff3d00;
}

.affordable-about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.affordable-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.affordable-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #444;
}

.affordable-feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* CTA */
.cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

img.lazyload[src*="preloader2.gif"] {
    object-fit: contain;
    /* or use 'cover' if you want it to fill the box entirely */
}

/* Responsive */
@media (max-width: 900px) {
    .affordable-about-grid {
        grid-template-columns: 1fr;
    }

    .affordable-about-visual {
        padding: 40px;
    }

    .affordable-about-content h2 {
        font-size: 32px;
    }

    .stat-1,
    .stat-2 {
        display: none;
    }
}

.fdu-invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fdu-invest-card {
    position: relative;
    /* background: linear-gradient(145deg, #ffff 40%, #ff8e67 168%, #ff8e67 100%); */
    background: linear-gradient(145deg, #ffff 56%, #ff8e67 220%, #ffbfa9 100%);
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    overflow: hidden;
    border-top: 5px solid #ff6a00;
}

.fdu-invest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.fdu-invest-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.fdu-invest-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.fdu-invest-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #666;
}

.fdu-card-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-right: 30px solid #ff6a00;
    border-bottom: 30px solid #ff6a00;
}

/* Container Background */
.fdu-expanding-section {
    /* padding: 80px 20px;
    background: #f8f9fa; */
    /* Use your site's bg color */
    overflow: hidden;
}

.fdu-header .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* The Main Flex Wrapper */
.fdu-flex-gallery {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    /* Fixed height is required for this effect */
    gap: 15px;
}

/* Individual Card Panels */
.fdu-panel {
    position: relative;
    height: 100%;
    border-radius: 20px;
    /* background: url('../../../../images/homethumbnail/banner-view.jpg') center center/cover no-repeat; */
    /* background-color: #ffffff; */
    cursor: pointer;
    overflow: hidden;

    /* Default: All items share space equally initially */
    flex: 1;

    /* The Magic: Smooth Transition */
    /* cubic-bezier makes it start fast and end slow (very smooth) */
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.4s ease;

    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Hover State - Expansion */
.fdu-panel:hover {
    flex: 4;
    /* The hovered item grows 4x larger than the others */
    background-color: #f9b234;
    /* Change to your Brand Color */
}

/* Make text white on hover for contrast */
.fdu-panel:hover h3,
.fdu-panel:hover p {
    color: #ffffff;
}

/* Icon Filter on Hover (Optional: Makes icon white on hover) */
/* .fdu-panel:hover .icon-box img {
    filter: brightness(0) invert(1);
} */

/* Inner Content Layout - Using Flexbox instead of Absolute */
.fdu-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Pushes content to bottom */
    height: 100%;
    padding: 30px;
    box-sizing: border-box;

    /* Prevents text from squashing during animation */
    min-width: 250px;
}

/* Icon Styling */
.fdu-panel .icon-box img {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
    transition: filter 0.3s ease;
    border-radius: 100%;
}

/* Heading Styling */
.fdu-panel h3 {
    margin: 0 0 10px 0;
    color: #fff;
    white-space: nowrap;
    /* Keeps title on one line */
    transition: color 0.3s ease;
}

/* Description Text - The "Hide/Show" Logic */
.fdu-panel p.panel-desc {
    line-height: 1.6;
    color: #fff;
    margin: 0;

    /* Hidden State */
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
    /* Push it down slightly */

    /* Smooth Transition for the text appearance */
    transition: all 0.5s ease;
}

/* Text Visible State (On Hover) */
.fdu-panel:hover p.panel-desc {
    opacity: 1;
    max-height: 200px;
    /* Enough space for text */
    transform: translateY(0);
    /* Slide up to natural position */
    margin-top: 10px;
    /* Add spacing between title and text */
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .fdu-flex-gallery {
        flex-direction: column;
        /* Stack vertically on phone */
        height: auto;
    }

    .fdu-service-title {
        font-size: 22px !important;
    }

    .fdu-panel {
        height: 100px;
        /* Collapsed height */
        width: 100%;
        margin-bottom: 10px;
    }

    .fdu-panel:hover {
        flex: none;
        /* Disable flex growth on mobile */
        height: 350px;
        /* Use fixed height expansion instead */
    }

    /* Ensure content is always visible on mobile if needed */
    .fdu-panel-content {
        min-width: auto;
    }
}

/* ===============================
   SPLIT COUNTER SECTION
================================ */

.sc-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* ===============================
   LEFT LOGO TRUST AREA
================================ */
.sc-logo-area {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.sc-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.sc-logo-grid img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.sc-logo-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sc-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .sc-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* RIGHT COUNTERS */
.sc-counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.sc-counter-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.sc-counter-card:hover {
    transform: translateY(-6px);
}

.sc-counter-icon {
    font-size: 36px;
    color: #ff6a00;
    margin-bottom: 12px;
}

.sc-counter-number {
    font-size: 38px;
    font-weight: 700;
}

.sc-counter-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sc-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .sc-counter-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   WMUD SECTION
/* Section */
/* .wmud-section {
    padding: 4rem 0;
} */

/* Header */

/* Grid */
.wmud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Card */
.wmud-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wmud-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.wmud-card-title {
    font-size: 18px;
}

/* Icon */
.wmud-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-radius: 12px;
    background: #fff3ee;
    color: #ff5a1f;
    margin-bottom: 1rem;
}

/* Card content */

/* --- Main Layout Section --- */
.featured-projects {
    padding: 100px 0;
    position: relative;
}

/* The Grid Parent - Crucial for the sticky behavior */
.featured-projects .container1 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Create the 2-column layout */
    gap: 80px;
    /* Space between the left and right columns */
    align-items: start;
    /* Align items to the top of their tracks */
}

/* --- Left Column (Sticky) --- */
.left-column {
    /* This is the key to the entire effect */
    position: sticky;
    top: 120px;
    /* The distance from the top of the viewport where it sticks */

    /* Ensure it doesn't take more height than needed */
    height: fit-content;
}

/* --- Right Column (Scrolling) --- */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Spacing between each project card */
}

/* Project Card Styling */
.project-info h3 {
    text-align: center;
}

.image-container {
    position: relative;
    border-radius: 30px;
    /* Rounded corners for images */
    overflow: hidden;
    margin-bottom: 5px;
    background-color: #eeebe5;
    padding: 10px;
    /* Placeholder color while loading */
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

/* Optional: Subtle hover effect for images */
.project-item:hover .image-container img {
    transform: scale(1.03);
}

/* --- Responsive Design --- */
@media (max-width: 960px) {
    .featured-projects .container1 {
        /* Stack columns vertically on smaller screens */
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .left-column {
        /* Disable sticky behavior on mobile for better UX */
        position: static;
        margin-bottom: 40px;
    }
}

/* --- Unique CSS for FAQ Section --- */

.faq-section-uniq-faq-9x5 {
    background-color: #f0efe9;
    /* Beige background match */
    padding: 80px 0;
    /* font-family: 'Poppins', sans-serif; */
}

/* --- Left Column Styling --- */
.faq-left-uniq-faq-9x5 {
    padding-right: 30px;
}

/* Badge */
.faq-badge-uniq-faq-9x5 {
    display: inline-block;
    background-color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-badge-uniq-faq-9x5 i {
    color: #ff5722;
    margin-right: 6px;
}

/* Big Heading "FAQ" */
.faq-heading-uniq-faq-9x5 {
    font-size: 80px;
    /* Very large font as per image */
    font-weight: 700;
    color: #111111;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

/* Description */
.faq-desc-uniq-faq-9x5 {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 300px;
}

/* Contact Link */
.faq-link-uniq-faq-9x5 {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    text-decoration: none !important;
    /* Remove default underline */
    border-bottom: 1px solid #111111;
    /* Custom underline */
    padding-bottom: 2px;
    transition: color 0.3s;
}

.faq-link-uniq-faq-9x5:hover {
    color: #ff5722;
    border-color: #ff5722;
}

.faq-link-uniq-faq-9x5 i {
    font-size: 12px;
    margin-left: 5px;
}

/* --- Right Column (Accordion) Styling --- */

/* Individual FAQ Item Container */
.faq-item-uniq-faq-9x5 {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    /* No border or shadow on the item itself, styled via header/body */
}

/* Header (The Question Bar) */
.faq-header-uniq-faq-9x5 {
    padding: 20px 25px;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-radius: 8px;
    /* Rounded corners when collapsed */
}

/* Question Text */
.faq-question-uniq-faq-9x5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #111111;
}

/* Icon Container (The circle) */
.faq-icon-uniq-faq-9x5 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff5722;
    /* Default Orange Circle */
    color: #ffffff;
    /* Default White Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-left: 15px;
    transition: all 0.3s ease;
}

/* --- Active State Styles (Applied via JS) --- */
.faq-item-uniq-faq-9x5.active .faq-header-uniq-faq-9x5 {
    background-color: #ff5722;
    /* Turn Header Orange */
    border-radius: 8px 8px 0 0;
    /* Flatten bottom corners */
}

.faq-item-uniq-faq-9x5.active .faq-question-uniq-faq-9x5 {
    color: #ffffff;
    /* Turn Text White */
}

.faq-item-uniq-faq-9x5.active .faq-icon-uniq-faq-9x5 {
    background-color: #ffffff;
    /* Turn Circle White */
    color: #ff5722;
    /* Turn Icon Orange */
}

/* --- Body (The Answer) --- */
.faq-body-uniq-faq-9x5 {
    background-color: #ffffff;
    padding: 0 25px 25px 25px;
    display: none;
    /* Hidden by default */
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 0 0 8px 8px;
}

/* Padding top added to body content to separate from header */
.faq-body-content-uniq-faq-9x5 {
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-left-uniq-faq-9x5 {
        margin-bottom: 50px;
        text-align: center;
        padding-right: 0;
    }

    .faq-desc-uniq-faq-9x5 {
        margin: 0 auto 30px auto;
    }

    .faq-heading-uniq-faq-9x5 {
        font-size: 60px;
    }
}

/* --- Unique CSS for Blog Section (Final Fix) --- */

/* --- Unique CSS for Testimonials Section --- */

/* --- Centered Header --- */
.tst-header-wrapper-uniq-tst-8w4 {
    text-align: center;
    margin-bottom: 50px;
}

.tst-badge-uniq-tst-8w4 {
    display: inline-block;
    background-color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tst-badge-uniq-tst-8w4 i {
    color: #ff5722;
    margin-right: 6px;
}

.tst-title-uniq-tst-8w4 {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin-top: 0;
}

/* --- Content Area --- */
.tst-content-wrapper-uniq-tst-8w4 {
    display: flex;
    align-items: center;
    /* Vertically centers the text box with image */
    flex-wrap: wrap;
}

/* Main Left Image */
.tst-main-img-uniq-tst-8w4 {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 400px;
    /* Fixed height for consistency */
}

/* Right Text Card */
.tst-card-uniq-tst-8w4 {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 400px;
    /* Match height of image for symmetry */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Stars */
.tst-stars-uniq-tst-8w4 {
    color: #ff5722;
    /* Orange stars */
    font-size: 14px;
    margin-bottom: 20px;
}

.tst-stars-uniq-tst-8w4 i {
    margin-right: 3px;
}

/* Quote Text */
.tst-quote-uniq-tst-8w4 {
    font-size: 20px;
    line-height: 1.8;
    color: #555555;
    font-style: italic;
    /* Often nice for quotes, remove if not desired */
    margin-bottom: 30px;
}

/* Divider Line */
.tst-divider-uniq-tst-8w4 {
    border: 0;
    border-top: 1px solid #eeeeee;
    margin: 0 0 25px 0;
}

/* Author Info Section */
.tst-footer-row-uniq-tst-8w4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tst-author-left-uniq-tst-8w4 {
    display: flex;
    align-items: center;
}

/* Author Thumbnail */
.tst-thumb-uniq-tst-8w4 {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /* Slightly rounded square as per image */
    object-fit: cover;
    margin-right: 15px;
}

.tst-author-details-uniq-tst-8w4 p {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    text-align: left !important;
}

.tst-author-details-uniq-tst-8w4 span {
    font-size: 13px;
    color: #888888;
    text-align: left !important;
}

/* Navigation Dots */
.tst-dots-uniq-tst-8w4 {
    display: flex;
    gap: 5px;
}

.tst-dot-uniq-tst-8w4 {
    width: 8px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.tst-dot-uniq-tst-8w4.active {
    background-color: #ff5722;
    width: 10px;
    /* Active dot slightly bigger? */
    height: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .tst-card-uniq-tst-8w4 {
        height: auto;
        /* Auto height on mobile */
        margin-top: 30px;
    }

    .tst-main-img-uniq-tst-8w4 {
        height: auto;
        min-height: 300px;
    }
}

.testimonial-swiper {
    overflow: hidden;
}

/* --- Unique CSS for FAQ Section --- */

/* SECTION */
.uxs-services {
    padding: 110px 0;
    /* background:
        radial-gradient(circle at top left, #fdf3ec, transparent 45%),
        #ffffff; */
}

/* HEADER */
.uxs-head {
    /* max-width: 760px; */
    margin-bottom: 80px;
}

.uxs-head h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
    color: #111;
}

.uxs-head h2 span {
    display: block;
    font-weight: 400;
    color: #ff6a00;
}

.uxs-head p {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* LIST */
.uxs-list {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

/* ITEM */
.uxs-item {
    display: grid;
    grid-template-columns: 6px 1fr;
    gap: 36px;
}

/* ACCENT RAIL */
.uxs-rail {
    background: linear-gradient(180deg, #ff6a00, #ffb27a);
    border-radius: 6px;
}

/* CONTENT */
.uxs-content {
    max-width: 720px;
}

.uxs-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 12px;
}

.uxs-content h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #111;
}

.uxs-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px;
}

/* LIST */
.uxs-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uxs-content li {
    font-size: 14.5px;
    color: #333;
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
}

.uxs-content li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ff6a00;
    font-weight: 600;
}

/* CTA */
.uxs-cta {
    margin-top: 90px;
}

.uxs-cta a {
    font-size: 16px;
    color: #111;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
}

.uxs-cta a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff6a00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .uxs-head h2 {
        font-size: 32px;
    }

    .uxs-item {
        grid-template-columns: 1fr;
    }

    .uxs-rail {
        height: 4px;
        width: 60px;
    }
}

.unq-sec-container {
    background-color: #dbecee;
    /* Light pastel teal matching the image */
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    /* Clips the corner decoration */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3. Inner Layout (Flexbox) */
.unq-sec-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 20px;
    border-width: 2px;
}

/* 4. Left Column: Image Composition */
.unq-sec-img-wrapper {
    position: relative;
    flex: 0 0 auto;
    /* Don't shrink */
    width: 240px;
    height: 240px;
}

/* The Main Rounded Image */
.unq-sec-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Unique shape: Circle with slightly flattened corners or full circle */
    border-radius: 50% 50% 50% 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    /* Subtle border */
    background-color: #cbd5e1;
}

/* 7. Mobile Responsiveness */
@media (max-width: 850px) {
    .unq-sec-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .unq-sec-img-wrapper {
        width: 280px;
        height: 280px;
    }

    .unq-sec-badge {
        width: 70px;
        height: 70px;
        left: 50%;
        transform: translateX(-50%);
        /* Center badge on mobile */
        bottom: -20px;
    }

    .unq-sec-badge svg {
        width: 35px;
        height: 35px;
    }
}

/* mega menu css for services */

/* Blog Section css start */

/* Section */

/* Grid */
.ui-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card */
.ui-blog-card {
    background: #ffffff;
    border-radius: 24px;
    /* overflow: hidden; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ui-blog-card:hover {
    transform: translateY(-6px);
}

.ui-blog-card:hover .ui-blog-image-wrap img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    opacity: 0.8;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* Image Wrapper */
.ui-blog-image-wrap {
    position: relative;
    /* overflow: hidden; */
}

.ui-blog-image-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Date Badge */

.ui-blog-date {
    position: absolute;
    bottom: 30px;
    left: -10px;
    width: 60px;
    height: 50px;
    padding-left: 22px;
    padding-right: 12px;

    background-color: #ff6b4a;
    /* border-radius: 14px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-align: center;

    z-index: 3;
}

/* CONNECTOR PANEL BEHIND DATE */
.ui-blog-date::before {
    position: absolute;
    content: "";
    top: -10px;
    left: 0;
    color: #912f3d;
    border-bottom: solid #912f3d;
    border-top: solid transparent;
    border-width: 5px;
    border-width: 5px;
    left: 0%;
    top: -10px;
    /* color: #f00; */
    border-right: solid #912f3d;
    border-left: solid transparent;
    border-width: 5px;
    left: 0%;
    top: -10px;
}

/* DAY */
.ui-blog-date strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}

/* MONTH */
.ui-blog-date small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

/* Content */
.ui-blog-content {
    padding: 40px 24px 28px;
}

.ui-blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 14px;
    line-height: 1.35;
}

.ui-blog-desc {
    font-size: 15px;
    color: #8a8a8a;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Read More */
.ui-blog-link {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ui-blog-link:hover {
    color: #e2553a;
}

/* ===== Section Wrapper ===== */

/* ===== Grid ===== */
.fdu-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ===== Card Base ===== */
.fdu-service-card {
    position: relative;
    padding: 48px 36px;
    /* background: rgb(242 242 242 / 31%); */
    /* background: linear-gradient(135deg, #ffff 40%, #ff8e67 168%, #ff8e67 100%);
    */
    background: linear-gradient(145deg, #ffff 56%, #ff8e67 220%, #ffbfa9 100%);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06); */
    transition: transform 0.35s ease;
    overflow: hidden;
}

/* Vertical Accent Bar */
.fdu-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 6px;
}

/* Hover Interaction */
.fdu-service-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); */
}

/* ===== Color Variants ===== */
.fdu-foundation::before {
    background: linear-gradient(180deg, #ff8a00, #ffb347);
}

.fdu-scalable::before {
    background: linear-gradient(180deg, #ff6a00, #ff9f45);
}

.fdu-revenue::before {
    background: linear-gradient(180deg, #ff5400, #ff8c42);
}

.fdu-enterprise::before {
    background: linear-gradient(180deg, #ff3d00, #ff7043);
}

/* ===== Tag ===== */
.fdu-service-tag {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #ff6a00;
}

/* ===== Title ===== */
.fdu-service-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

/* ===== Description ===== */
.fdu-service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

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

@media (max-width: 640px) {
    .fdu-services-grid {
        grid-template-columns: 1fr;
    }

    .fdu-service-card {
        padding: 36px 28px;
    }
}

/* Blog Category Badges */
/* Blog Category Badges */
.ui-blog-content .post-categories-badge {
    margin-bottom: 10px;
    display: block;
    /* width: 100%; */
}

.mod-tag {
    background: #fef4ee;
    background: radial-gradient(circle at top left, #fdf3ec, transparent 105%),
        #fef4ee;
    color: #f04d0c;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    line-height: 1.4;
    vertical-align: middle;
}

.post-categories-badge {
    z-index: 2;
}

@media (max-width: 480px) {
    .px-0-immobile {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .affordable-about-visual {
        padding: 0px;
    }

    .pt-0-immobile {
        padding-top: 0px !important;
    }

    .section-padding-spacer {
        padding: 60px 20px !important;
    }

    .uxs-head {
        margin-bottom: 50px;
    }

    .uxs-head h2,
    .affordable-about-content h2 {
        font-size: 28px;
    }

    .panel-desc {
        line-height: 1.2 !important;
    }

    .featured-projects {
        padding-bottom: 0px;
    }

    .faq-question-uniq-faq-9x5 {
        font-size: 16px;
    }
}