       /* --- Main Section Styling --- */
.process-section {
    padding: 90px 0;
    background-color: var(--light-bg-color);
    text-align: center;
}


/* --- Tabs Navigation --- */
.tabs-nav {
    display: inline-flex;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 3px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
    overflow: hidden;
}

.tab-btn {
    background: none;
    border: none;
    padding: 14px 35px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-color);
    border-radius: 50px;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: #dedbdb;
}


.tab-btn.active {
    background: linear-gradient(140deg, var(--purple-color), #22a1afc7, var(--purple-color));
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(34, 160, 175, 0.6);
}

.btn-center{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.btn-secondary-cta{
    text-decoration: none;
    padding: 14px 35px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(140deg, var(--purple-color), #22a1afc7, var(--purple-color));
    color: var(--secondary-color);
    border-radius: 50px;
    margin-right: 10px;
    transition: all .3s ease;
    margin-top: 40px !important;
}

.btn-secondary-cta:hover{
    background: linear-gradient(140deg, #22a1afc7, var(--purple-color), var(--purple-color));
    color: #fff !important;
    box-shadow: 0 4px 15px rgb(172, 170, 170);
    transform: translateY(-5px);
}

.tab-btn:not(.active):hover {
    color: var(--accent-color);
    background: #9e9b9b;
}

/* ------------------------------------------------ */
/* --- NEW 2x2 GRID LAYOUT STYLES --- */
/* ------------------------------------------------ */

.process-flow {
    /* Implement a 2x2 grid */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px; /* Space between the cards */
    padding: 0 20px;
}

.timeline-item {
    /* Each item is a single card spanning one grid cell */
    display: flex; /* Use flexbox for image-left, content-right within the card */
    align-items: stretch; /* Make content and image side by side stretch to max height */
    padding: 0; /* Remove old padding */
    gap: 0; /* No gap between image and content */
    border-radius: 15px;
    overflow: hidden; /* Contains the image and content */
    background-color: var(--secondary-color);
    box-shadow: 0 15px 40px var(--shadow-color);
    transition: all var(--transition-speed);
}

/* Remove old alternation styles - all items are now the same */
.timeline-item:nth-child(even) {
    flex-direction: row; /* Ensure all items have image-left, content-right */
}

.timeline-visual {
    width: 35%; /* Image takes 35% of the card width */
    position: relative;
    /* Use flexbox to center image vertically if needed, though object-fit should handle it */
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content-card {
    width: 65%; /* Content takes 65% of the card width */
    padding: 30px;
    text-align: left;
    /* Remove redundant background and shadow, already on timeline-item */
    background-color: transparent;
    box-shadow: none;
    border: none;
    /* New border style for visual separation */
    border-left: 1px solid #eee;
    height: 100%; /* Important for equal height in flex layout */
}

/* The image-box is now fully contained within the card */
.image-box {
    border-radius: 0; /* Remove border radius for clean integration into the card */
    box-shadow: none; /* Remove shadow from image box */
    width: 100%;
    height: 100%; /* Ensure image box fills its 35% container */
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the fixed box without distortion */
    display: block;
    transition: transform 1s ease;
}

/* Hover effects adapted for the new card structure */
.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.timeline-item:hover .image-box img {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Remove specific border alternation from old design */
.timeline-item:nth-child(even) .timeline-content-card {
     border-right: none;
     border-left: 1px solid #eee;
}

/* Content Card Styling (mostly kept from original) */
.timeline-content-card h3 {
    font-size: 1.4em; /* Slightly smaller for the card space */
    color: #222121;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.timeline-content-card p {
    font-size: 0.95em;
    color: #444;
}

/* Step Badge (kept from original) */
.step-number-badge {
    display: inline-block;
    margin-top: 0; /* Adjust margin */
    padding: 5px 15px;
    border: 1px solid var(--accent-color);
    color: #575252;
    font-weight: 500;
    border-radius: 50px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* --- Hide / Show Tab Content (no change) --- */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    padding-top: 20px;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------ */
/* --- Responsiveness (Mobile View) --- */
/* ------------------------------------------------ */
@media (max-width: 992px) {
    .process-flow {
        grid-template-columns: 1fr; /* Single column layout on tablets/mobiles */
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column !important; /* Stack image and content vertically in the card */
    }

    .timeline-visual, .timeline-content-card {
        width: 100%; /* Both take full width */
        text-align: center;
        border-left: none !important;
        border-right: none !important;
        padding: 20px;
    }

    .timeline-visual {
        height: 200px; /* Give the image a fixed height */
    }
    
    .image-box {
        border-radius: 15px 15px 0 0; /* Round top corners */
        height: 100%;
    }

    .timeline-content-card {
        /* Add a clear visual separation on mobile */
        border-top: 5px solid var(--accent-color) !important;
        border-radius: 0 0 15px 15px; /* Round bottom corners */
    }

    .timeline-content-card h3 {
         font-size: 1.4em;
     }
}

@media (max-width: 600px) {
     .tabs-nav {
        flex-direction: column;
        border: none;
        background-color: transparent;
        box-shadow: none;
        gap: 10px;
        border-radius: 0px;
    }
    .tab-btn {
        border-radius: 10px;
        width: 100%;
        border: 2px solid var(--primary-color);
    }
    .section-header h2 {
        font-size: 2.5em;
    }
}




.section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 50px;
      background: linear-gradient(135deg, #f3f9ff, #e3e3e3);
      -webkit-background-clip: text;
      color: transparent;
      animation: fadeIn 1.2s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
      100% { transform: translateY(0); }
    }

    .feature-wrapper {
      max-width: 1250px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      animation: fadeIn 1.4s ease;
    }

    .feature-block {
      display: flex;
      gap: 20px;
      padding: 28px;
      background: rgba(255, 255, 255, 0.415);
      backdrop-filter: blur(5px);
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 8px 26px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      animation: float 5s ease-in-out infinite;
    }

    .feature-block:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

    .icon-box {
      min-width: 60px;
      height: 60px;
      border-radius: 16px;
      background: linear-gradient(135deg, #dbe7ff, #e8edff);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
      padding: 12px;
    }

    svg {
      width: 32px;
      height: 32px;
      stroke: #2a4bff;
    }

    .feature-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #0d1b2a;
    }

    .feature-text {
      font-size: 15px;
      color: #4a4a4a;
      line-height: 1.5;
    }