/*
Theme Name: BLINKLOAD
Theme URI: https://primeflexusa.com
Template: astra
Author: PRIME FLEX
Author URI: https://primeflexusa.com/about/
Description: Child Theme/custom theme customized astra courtesy to astra team and their amazing work
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.9.2.1744154873
Updated: 2025-04-08 23:27:53

*/
/* Checkout row layout */
/* Custom Cehckout page */
/* === Clean Custom Checkout Styling === */
/* Match background for heading inside Your Order section */
/*
========================================
--- ACCESSIBILITY FIXES ---
========================================
*/

/* Fix for links that rely only on color */
.my-home-wrapper p a,
.my-about-wrapper p a,
.my-ai-wrapper p a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px; /* Creates a nice gap between text and line */
}

/* Optional: Make the underline slightly more subtle */
.my-home-wrapper p a {
    text-decoration-color: rgba(67, 135, 246, 0.7); /* A semi-transparent version of your highlight color */
}
/*Accessibility*/
/* Accessibility Helper Class */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*
========================================================================
--- Onlinetist archive blog ---
========================================================================
*/
/* Archive Page Specific Styles */
.archive-page-container {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f8faff;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.archive-page-container {
    display: flex;
    flex-direction: column;
}

/* Reusing your full-width-content for consistency */
.full-width-content {
    max-width: 1400px; /* Adjust this value to control the content width */
    margin: 0 auto;
    padding: 0 40px; /* This creates the equal space from the left and right edges */
}

/* Archive Header Section */
.archive-header-section {
    max-width: 1400px;
    text-align: left; /* Aligned with the single post design */
    padding-top: 60px; /* More padding at the top */
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e6ed;
}

.archive-header-section h1 {
    font-size: 3.5em; /* Larger heading */
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.archive-header-section p {
    font-size: 1.1em;
    color: #4a5568;
    max-width: 800px; /* Narrower for better readability */
    line-height: 1.7;
    margin: 0; /* Align to the left */
}

/* Three-column layout for archive content */
.archive-content-area {
    display: flex;
    gap: 30px; /* More space between columns */
    padding-bottom: 60px;
    align-items: flex-start;
}

/* Left Sidebar for Filters */
.archive-left-sidebar {
    flex: 0 0 280px; /* Slightly narrower to give more space to posts */
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Archive Posts Grid */
.archive-posts-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between post cards */
}

/* Right Sidebar for Popular Posts & CTA */
.archive-right-sidebar {
    flex: 0 0 280px; /* Consistent width with left sidebar */
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Blog Post Card Styling */
.archive-post-card {
    background-color: #fff;
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08); /* Stronger, more elegant shadow */
    overflow: hidden; /* Ensures image corners are rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.archive-post-card:hover {
    transform: translateY(-5px); /* Subtle lift effect */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.archive-post-card .post-thumbnail-link {
    display: block;
    height: 200px; /* Fixed height for consistent image size */
    overflow: hidden;
}

.archive-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.3s ease;
}

.archive-post-card:hover img {
    transform: scale(1.05); /* Slight zoom on image hover */
}

.archive-post-card .post-card-content {
    padding: 25px;
    flex-grow: 1; /* Allows content area to expand */
    display: flex;
    flex-direction: column;
}

.archive-post-card h3 {
    font-size: 1.5em; /* Slightly larger title */
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.archive-post-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.archive-post-card h3 a:hover {
    color: #3182ce;
}

.archive-post-card .post-meta {
    font-size: 0.85em;
    color: #718096;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.archive-post-card .post-meta i {
    color: #3182ce;
    margin-right: 5px;
}

.archive-post-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows excerpt to take available space */
}

.archive-post-card .read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s ease;
    margin-top: auto; /* Pushes button to the bottom */
}

.archive-post-card .read-more-button:hover {
    color: #2c5282;
}

.archive-post-card .read-more-button i {
    transition: transform 0.3s ease;
}

.archive-post-card .read-more-button:hover i {
    transform: translateX(5px);
}

/* Sidebar Widget Styling (reusing your single post styles) */
.sidebar-widget {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
}

.sidebar-widget h3 {
    font-size: 1.2em;
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.sidebar-widget h3 svg, .sidebar-widget h3 i {
    color: #3182ce;
    font-size: 1.2em;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 12px; /* Slightly less space for lists */
}

.sidebar-widget ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95em;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: #3182ce;
}

.sidebar-widget ul li a svg, .sidebar-widget ul li a i {
    color: #3182ce;
    margin-top: 4px; /* Align arrow better with text */
}

/* "Need Help?" Widget specific styles */
.sidebar-widget.need-help {
    text-align: center;
}

.sidebar-widget.need-help .call-to-action {
    background-color: #e6fffa;
    border: 1px solid #b2f5ea;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.sidebar-widget.need-help .call-to-action p {
    font-size: 0.95em;
    color: #2d3748;
    margin-bottom: 15px;
}

.sidebar-widget.need-help .call-to-action .contact-button {
    background-color: #3182ce;
    color: #fff;
    padding: 12px 25px; /* Slightly larger button */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.sidebar-widget.need-help .call-to-action .contact-button:hover {
    background-color: #2c5282;
}


/* Pagination Styling */
.archive-pagination {
    margin-top: 30px;
    margin-bottom: 80px; /* More space below pagination */
    text-align: center;
}

.archive-pagination .pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.archive-pagination .page-numbers {
    display: block;
    padding: 12px 18px;
    color: #4a5568;
    text-decoration: none;
    border-right: 1px solid #e2e8f0;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.archive-pagination .page-numbers:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.archive-pagination .page-numbers:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-right: none;
}


.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background-color: #3182ce;
    color: #fff;
}

/* Ensure current page number is bold and styled */
.archive-pagination .page-numbers.current {
    font-weight: 700;
}

/* Responsive Adjustments for Archive Page */
@media (max-width: 1400px) {
    .full-width-content {
        max-width: none;
        padding: 0 20px; /* Reduce padding on smaller wide screens */
    }
}

@media (max-width: 1200px) {
    .archive-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust grid for smaller screens */
        gap: 20px;
    }
    .archive-header-section h1 {
        font-size: 3em;
    }
    .archive-left-sidebar,
    .archive-right-sidebar {
        flex: 0 0 220px; /* Reduce sidebar width */
    }
}

@media (max-width: 992px) {
    .archive-content-area {
        flex-direction: column; /* Stack columns */
        gap: 40px; /* More space between stacked sections */
    }
    .archive-left-sidebar,
    .archive-right-sidebar {
        position: static; /* Remove sticky on small screens */
        height: auto;
        flex: 1 1 100%; /* Take full width */
        max-width: none; /* Remove max-width for sidebars */
    }
    .archive-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust grid to fill width */
    }
    .archive-header-section h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .archive-posts-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
    .archive-header-section h1 {
        font-size: 2em;
    }
    .archive-header-section p {
        font-size: 0.9em;
    }
    .archive-post-card .post-card-content {
        padding: 20px;
    }
    .archive-post-card h3 {
        font-size: 1.3em;
    }
    .sidebar-widget {
        padding: 20px;
    }
    .archive-pagination .page-numbers {
        padding: 10px 15px;
    }
}

/*
=====================================================
--- STUNNING MODERN FOOTER STYLES (INLINE) ---
=====================================================
*/
 

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e9ecef;
    margin: 0;
    overflow-x: hidden; /* IMPORTANT: Prevents horizontal scrollbar */
}

/*
================================================
>>> THE FIX for Edge-to-Edge Gaps <<<
================================================
*/
.footer-full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: -20px; /* Adjust if the gap is larger/smaller */
}


/* --- Main Footer Container --- */
.site-footer {
    background-color: #0d1d3d;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* --- Main Content Grid --- */
.footer-main {
    padding: 80px 5%;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 2fr 2fr;
    gap: 40px;
    align-items: start; /* Aligns all columns to the top */
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
.footer-about {
    margin: 0;
    margin-bottom: 30px;
}
.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #4387f6;
}
 
/* --- Map inside Column 1 --- */
.footer-map-integrated {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}
.footer-map-integrated iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* --- Links & Contact Lists --- */
.footer-links, .footer-contact {
    list-style: none; padding: 0; margin: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}
.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease;
}
.footer-links a:hover, .footer-contact a:hover {
    color: #ffffff;
}
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
}
.footer-contact svg {
    flex-shrink: 0; margin-top: 5px; color: #4387f6;
}

/* --- Social Icons Styling --- */
.footer-socials {
    margin-top: 20px; /* Space above the icons */
    display: flex;
    gap: 15px;
}
.footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}
.footer-socials svg {
    width: 22px;
    height: 22px;
}

/* --- Tags Styling --- */
.footer-tags {
    display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start;
}
.footer-tags a {
    display: inline-block; background-color: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px; border-radius: 20px; text-decoration: none; font-size: 14px; transition: all 0.3s ease;
}
.footer-tags a:hover {
    background-color: #4387f6; color: #ffffff;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
    background-color: #08142b; padding: 20px 5%; display: flex;
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-copyright {
    margin: 0; font-size: 14px;
}
.footer-rating-cluster {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.google-rating-text {
    font-size: 14px; margin: 0;
}
.google-rating-text a {
    color: #4387f6; font-weight: 600; text-decoration: none;
}
.google-rating-text a:hover {
    text-decoration: underline;
}
.google-review-button {
    display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600;
    color: #ffffff; text-decoration: none; background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px; border-radius: 5px; transition: background-color 0.3s ease;
}
.google-review-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.google-review-button .stars {
    color: #ffc107;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-bar {
        justify-content: center; text-align: center;
    }
    .footer-rating-cluster {
        justify-content: center;
    }
}
/*title section*/
         .page-title-section {
    /* Sets the background color to a dark blue, matching your image. */
    background-color: #0A1F44; 
    
    /* Makes the section span the full width of the screen. */
    width: 100%;
    
    /* Sets a fixed height for the section as you requested. */
    height: 200px;
    
    /* Centers the content both horizontally and vertically. */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title-content {
    /* Centers the title and underline div within the section. */
    text-align: center;
}

.page-title-text {
    /* Sets the font color for the title to a bright blue. */
    color: #4b89ff;
    font-size: 45px;
    
    
    /* Removes any default margin to ensure it's positioned correctly. */
    margin-top: 0;
    margin-bottom: 0;
    
    /* Adds some letter-spacing to match the look in the image. */
    letter-spacing: 5px;
}

.page-title-underline {
    /* Styles the container for the dots and line. */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.dot {
    /* Styles the small dot elements. */
    height: 5px;
    width: 5px;
    background-color: #4b89ff;
    border-radius: 50%; /* Makes the dots circular. */
    margin: 0 2px; /* Adds space between the dots. */
}

.line {
    /* Styles the horizontal line. */
    height: 3px;
    width: 40px;
    background-color: #4b89ff;
    margin-left: 5px; /* Adds a bit of space between the dots and the line. */
}

/*Atyle for all services pages*/
/* All styles are self-contained and match the approved design */
    :root {
        --primary-color: #3a86ff; --primary-dark: #2978f8; --text-dark: #1a202c; --text-medium: #2c3e50;
        --bg-light: #f8f9fa; --bg-white: #ffffff; --border-color: #e9ecef; --font-primary: 'Poppins', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; }
    .my-ai-wrapper html { scroll-behavior: smooth; }
    .my-ai-wrapper body {
        margin: 0; font-family: var(--font-primary); background-color: var(--bg-white);
        color: var(--text-medium); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    }
    .my-ai-wrapper img { max-width: 100%; display: block; }
    .my-ai-wrapper a { color: var(--primary-color); text-decoration: none; transition: all 0.3s ease; }
    .my-ai-wrapper a:hover { color: var(--primary-dark); }
    .my-ai-wrapper .section-intro { max-width: 800px; margin: 0 auto 60px auto; text-align: center; }
    .my-ai-wrapper .section-intro h1, .my-ai-wrapper .section-intro h2 { font-size: 2.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
    .my-ai-wrapper .section-intro .highlight { color: var(--primary-color); }
    .my-ai-wrapper .section-intro p { font-size: 1.05rem; line-height: 1.8; }
    .my-ai-wrapper .section-decorator {
        height: 4px; width: 120px; margin: 0 auto 25px auto;
        background-image: radial-gradient(circle at center, var(--primary-color) 45%, transparent 50%);
        background-size: 15px 4px; background-repeat: repeat-x;
    }

    /* --- NEW HERO SECTION --- */
    .my-ai-wrapper .fullwidth-hero {
        padding: 100px 5%;
        text-align: center;
    }
    .my-ai-wrapper .fullwidth-hero h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 20px 0;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .my-ai-wrapper .fullwidth-hero h2 .highlight { color: var(--primary-color); }
    .my-ai-wrapper .fullwidth-hero p {
        font-size: 1.05rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    /* --- MODIFIED GRID SECTION --- */
    .my-ai-wrapper .page-introduction { padding: 0 5% 100px 5%; } /* Adjusted padding */
    .my-ai-wrapper .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    .my-ai-wrapper .intro-text .section-decorator { margin-left: 0; }
    .my-ai-wrapper .intro-text h2 { /* Changed from h1 */
        text-align: left;
        font-size: 2.4rem; /* Adjusted size */
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .my-ai-wrapper .intro-text p { text-align: left; font-size: 1.05rem; line-height: 1.8; }
    .my-ai-wrapper .intro-image img { border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

    /* TECHNOLOGY EXPLAINER */
    .my-ai-wrapper .tech-explainer-section { padding: 100px 5%; background-color: var(--bg-light); }
    .my-ai-wrapper .tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .my-ai-wrapper .tech-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px 30px; }
    .my-ai-wrapper .tech-card h3 { font-size: 1.3rem; color: var(--text-dark); margin: 0 0 15px 0; }
    .my-ai-wrapper .tech-card p { font-size: 0.95rem; line-height: 1.8; margin: 0; }

    /* --- MODIFICATION 2 --- COMPARISON SECTION (Card Styling) */
    .my-ai-wrapper .comparison-section { padding: 100px 5%; }
    .my-ai-wrapper .comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 60px auto 0 auto; }
    .my-ai-wrapper .comparison-card {
        border: 1px solid var(--border-color);
        background-color: var(--bg-white);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Added shadow for card effect */
        border-radius: 16px;
        padding: 40px;
    }
    .my-ai-wrapper .comparison-card h3 { font-size: 1.5rem; margin: 0 0 25px 0; display: flex; align-items: center; gap: 12px; }
    .my-ai-wrapper .comparison-card.problem h3 { color: #e74c3c; }
    .my-ai-wrapper .comparison-card.solution h3 { color: #2ecc71; }
    .my-ai-wrapper .comparison-card ul { list-style: none; padding: 0; margin: 0; }
    .my-ai-wrapper .comparison-card li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1rem; line-height: 1.6; }
    .my-ai-wrapper .comparison-card li::before { position: absolute; left: 0; top: -2px; font-size: 1.5rem; font-weight: 800; }
    .my-ai-wrapper .comparison-card.problem li::before { content: '×'; color: #e74c3c; }
    .my-ai-wrapper .comparison-card.solution li::before { content: '✓'; color: #2ecc71; }

    /* CORE FEATURES SECTION */
    .my-ai-wrapper .core-features-section { background-color: var(--bg-light); padding: 100px 5%; }
    .my-ai-wrapper .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .my-ai-wrapper .feature-card { background: var(--bg-white); border-radius: 16px; border: 1px solid var(--border-color); padding: 40px 30px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .my-ai-wrapper .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
    .my-ai-wrapper .feature-icon { width: 70px; height: 70px; margin: 0 auto 25px auto; border-radius: 50%; background-color: #eaf3ff; display: flex; align-items: center; justify-content: center; color: var(--primary-color); }
    .my-ai-wrapper .feature-icon svg { width: 32px; height: 32px; }
    .my-ai-wrapper .feature-card h3 { font-size: 1.3rem; color: var(--text-dark); margin: 0 0 15px 0; }
    .my-ai-wrapper .feature-card p { font-size: 0.95rem; line-height: 1.8; margin: 0; }

    /* --- MODIFICATION 3 --- PROCESS SECTION (2x2 Grid) */
    .my-ai-wrapper .process-section { padding: 100px 5%; }
    .my-ai-wrapper .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Changed from 4 to 2 */
        gap: 30px;
        max-width: 900px; /* Adjusted max-width for better spacing */
        margin: 0 auto;
    }
    .my-ai-wrapper .process-step-card { background-color: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; padding: 35px; position: relative; overflow: hidden; text-align: left; }
    .my-ai-wrapper .process-step-card .step-number { position: absolute; top: -20px; right: 20px; font-size: 120px; font-weight: 800; line-height: 1; color: rgba(0, 0, 0, 0.04); z-index: 1; }
    .my-ai-wrapper .process-step-card h3 { font-size: 1.3rem; color: var(--text-dark); margin: 0 0 15px 0; position: relative; z-index: 2; }
    .my-ai-wrapper .process-step-card p { margin: 0; line-height: 1.7; position: relative; z-index: 2; }

    /* FAQ & CTA SECTIONS */
    .my-ai-wrapper .faq-section { background-color: var(--bg-light); padding: 100px 5%; }
    .my-ai-wrapper .faq-accordion { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
    .my-ai-wrapper .faq-item { background-color: var(--bg-white); border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .my-ai-wrapper .faq-item h3 { font-size: 1.2rem; margin: 0; color: var(--text-medium); font-weight: 600; text-align: left; padding-right: 20px; }
    .my-ai-wrapper .faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 20px 25px; cursor: pointer; background: none; border: none; font-family: inherit; }
    .my-ai-wrapper .faq-toggle { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background-color: #f0f3f7; color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; transition: transform 0.3s ease; }
    .my-ai-wrapper .faq-item.active .faq-toggle { transform: rotate(45deg); }
    .my-ai-wrapper .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; text-align: left; }
    .my-ai-wrapper .faq-answer-content { padding: 0 25px 25px 25px; }
    .my-ai-wrapper .faq-answer p { line-height: 1.8; margin: 0; }
    .my-ai-wrapper .cta-section { background-color: #004461; color: #ffffff; padding: 80px 5%; text-align: center; }
    .my-ai-wrapper .cta-container { max-width: 800px; margin: 0 auto; }
    .my-ai-wrapper .cta-container h2 { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin: 0 0 35px 0; color: white; }
    .my-ai-wrapper .cta-container h2 .highlight { color: #82c0ff; }
    .my-ai-wrapper .cta-button { display: inline-block; background-color: var(--primary-color); color: #ffffff; padding: 16px 45px; border-radius: 50px; text-decoration: none; font-weight: 600; letter-spacing: 1px; }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .my-ai-wrapper .intro-grid { grid-template-columns: 1fr; }
        .my-ai-wrapper .intro-text h2, .my-ai-wrapper .intro-text p { text-align: center; }
        .my-ai-wrapper .intro-text .section-decorator { margin: 0 auto 25px auto; }
        .my-ai-wrapper .intro-image { order: -1; margin-bottom: 40px; }
        .my-ai-wrapper .tech-grid, .my-ai-wrapper .comparison-grid { grid-template-columns: 1fr; }
        .my-ai-wrapper .features-grid { grid-template-columns: repeat(2, 1fr); }
        .my-ai-wrapper .process-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
        .my-ai-wrapper .fullwidth-hero h1, .my-ai-wrapper .section-intro h2, .my-ai-wrapper .cta-container h2, .my-ai-wrapper .intro-text h2 { font-size: 2.2rem; }
        .my-ai-wrapper .features-grid { grid-template-columns: 1fr; }
    }
    
    /*title section*/
         .page-title-section {
    /* Sets the background color to a dark blue, matching your image. */
    background-color: #0A1F44; 
    
    /* Makes the section span the full width of the screen. */
    width: 100%;
    
    /* Sets a fixed height for the section as you requested. */
    height: 200px;
    
    /* Centers the content both horizontally and vertically. */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title-content {
    /* Centers the title and underline div within the section. */
    text-align: center;
}

.page-title-text {
    /* Sets the font color for the title to a bright blue. */
    color: #4b89ff;
    font-size: 45px;
    
    
    /* Removes any default margin to ensure it's positioned correctly. */
    margin-top: 0;
    margin-bottom: 0;
    
    /* Adds some letter-spacing to match the look in the image. */
    letter-spacing: 5px;
}

.page-title-underline {
    /* Styles the container for the dots and line. */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.dot {
    /* Styles the small dot elements. */
    height: 5px;
    width: 5px;
    background-color: #4b89ff;
    border-radius: 50%; /* Makes the dots circular. */
    margin: 0 2px; /* Adds space between the dots. */
}

.line {
    /* Styles the horizontal line. */
    height: 3px;
    width: 40px;
    background-color: #4b89ff;
    margin-left: 5px; /* Adds a bit of space between the dots and the line. */
}