/* --- Product Services Base Styling --- */
.product-services-section {
    background-color: #f8fafc; /* Premium soft background */
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif; /* Clean corporate font typography */
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Top Header Center Area --- */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-tagline {
    color: #4f46e5; /* Indigo tone */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.services-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* --- Responsive CSS Flex/Grid Row Framework --- */
.services-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Space between cards */
}

/* --- Individual Card Standard Layout (Desktop 3 Columns Default) --- */
.service-card-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    /* Formula to calculate 3 columns equal sizing with gaps */
    flex: 1 1 calc(33.333% - 20px); 
    box-sizing: border-box;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Top indicator hidden bar */
.card-indicator-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* --- Card Inner Components --- */
.card-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f5f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.card-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.card-item-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* --- Interaction Dynamic Hover Effects --- */
.service-card-item:hover {
    transform: translateY(-8px); /* Card lifts up softly */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.service-card-item:hover .card-indicator-bar {
    opacity: 1; /* Shows the premium top bar on hover */
}

.service-card-item:hover .card-item-title {
    color: #4f46e5; /* Title changes to indigo on hover */
}

/* --- Mobile and Tablet Media Queries Breakpoints --- */

/* Tablet View (2 Columns) */
@media (max-width: 991px) {
    .service-card-item {
        flex: 1 1 calc(50% - 15px); /* Automatically breaks into 2 equal columns */
    }
    .services-title {
        font-size: 30px;
    }
}

/* Mobile View (1 Column Stacked) */
@media (max-width: 767px) {
    .product-services-section {
        padding: 50px 15px;
    }
    .services-grid-row {
        gap: 20px; /* Reduces space on small devices */
    }
    .service-card-item {
        flex: 1 1 100%; /* Fully stretches to occupy 100% mobile screen width */
        padding: 30px 20px;
    }
    .services-title {
        font-size: 26px;
    }
}

/* --- Product Development Process Section Styles --- */
.dev-process-section {
    background-color: #ffffff; /* Clean white background to highlight the process diagram */
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* --- Process Section Header --- */
.process-header {
    margin-bottom: 60px;
}

.process-tagline {
    color: #4f46e5; /* Premium Indigo */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.process-heading {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.process-subtext {
    font-size: 16px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Image Container Framework (Highly Responsive) --- */
.process-image-box {
    background: #f8fafc; /* Subtle gray background card wrapper */
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift transition layout */
.process-image-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

/* Crucial responsiveness handler for the process image vector */
.process-image-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
}

/* --- Mobile Breakpoints (Media Queries) --- */

@media (max-width: 767px) {
    .dev-process-section {
        padding: 60px 15px;
    }
    
    .process-heading {
        font-size: 28px;
    }
    
    .process-subtext {
        font-size: 14px;
    }
    
    .process-image-box {
        padding: 20px 10px; /* Reduces extra padding on smaller smartphone viewports */
        border-radius: 16px;
    }
}
/* --- Technology Grid Section Main Styles --- */
.tech-stack-section {
    background-color: #f8fafc; /* Subtle premium layout gray tint */
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Top Header Alignment --- */
.tech-stack-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-stack-tagline {
    color: #4f46e5;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.tech-stack-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.tech-stack-subtitle {
    font-size: 15px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- Dynamic Responsive CSS Grid Base Model --- */
.tech-logo-grid-layout {
    display: grid;
    /* Automatically calculates rows and columns based on screen width dimensions */
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
    justify-content: center;
}

/* --- Individual Minimalist Tech Cards --- */
.tech-logo-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container for logos to ensure alignment equality */
.tech-icon-wrapper {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tech-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(15%); /* Smooth integrated uniform branding tint */
    transition: filter 0.3s ease;
}

.tech-label-name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin: 0;
    transition: color 0.3s ease;
}

/* --- Interactive Micro Layout Hover States --- */
.tech-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -8px rgba(79, 70, 229, 0.15);
    border-color: #e2e8f0;
}

.tech-logo-card:hover .tech-icon-wrapper img {
    filter: grayscale(0%); /* Restores bright original brand visibility on hover */
}

.tech-logo-card:hover .tech-label-name {
    color: #4f46e5;
}

/* --- Smart Responsive Viewport Adaptations --- */
@media (max-width: 767px) {
    .tech-stack-section {
        padding: 50px 15px;
    }
    
    .tech-logo-grid-layout {
        /* Smaller columns on compact mobile viewport trackers to prevent stacking space loss */
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 16px;
    }
    
    .tech-logo-card {
        padding: 16px 12px;
    }
    
    .tech-icon-wrapper {
        height: 45px;
        width: 45px;
        margin-bottom: 10px;
    }
    
    .tech-stack-title {
        font-size: 26px;
    }
    
    .tech-label-name {
        font-size: 13px;
    }
}
/* --- Industries Section Core Rules --- */
.product-industries-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.industries-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Split Flexbox Wrapper Framework --- */
.industries-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* --- Left Text Block Column Styles --- */
.industries-text-col {
    flex: 1 1 calc(40% - 20px);
    box-sizing: border-box;
}

.industries-mini-tag {
    color: #4f46e5;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.industries-main-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.industries-description {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* --- Right Icon List Grid Column Styles --- */
.industries-logos-col {
    flex: 1 1 calc(60% - 20px);
    box-sizing: border-box;
}

/* Native inside micro grid for logos spacing */
.industries-icon-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns grid setup by default */
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Vertical Logo Cards */
.industry-grid-item {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Soft card interaction animations */
.industry-grid-item:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

/* Image wrappers styling rules */
.industry-image-container {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.industry-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.industry-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* --- Responsive Layout Breakpoints Tracker --- */

/* Tablet Optimization (Stacks Left column over right grid) */
@media (max-width: 991px) {
    .industries-text-col, .industries-logos-col {
        flex: 1 1 100%; /* Stretches blocks fully vertically */
    }
    .industries-text-block {
        text-align: center;
        margin-bottom: 20px;
    }
    .industries-description {
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Mobile Devices Optimization (Converts grid rows layout) */
@media (max-width: 575px) {
    .product-industries-section {
        padding: 50px 15px;
    }
    .industries-icon-list-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile to maintain spacing balance */
        gap: 12px;
    }
    .industry-grid-item {
        padding: 16px 8px;
    }
    .industries-main-title {
        font-size: 26px;
    }
}

/*Product development end*/
/*Staff Augmentation start*/
/* --- Staff Recruitment Grid Block Custom Styles --- */
.talent-requirement-section {
    background-color: #ffffff;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.talent-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Top Header Styles --- */
.talent-header {
    text-align: center;
    margin-bottom: 60px;
}

.talent-mini-tag {
    color: #4f46e5; /* Primary corporate indigo */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.talent-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.025em;
}

.talent-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Responsive Flexbox Row Structural Framework --- */
.talent-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Uniform horizontal and vertical spacing */
}

/* --- Card Structural Layout Configuration (Desktop 3 Columns Default) --- */
.talent-grid-col {
    flex: 1 1 calc(33.333% - 20px); /* Creates absolute equal size tracking */
    box-sizing: border-box;
    display: flex;
}

.talent-card-item {
    background: #f8fafc; /* Premium smooth gray background text block background */
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* --- Card Components Custom Aesthetics --- */
.talent-icon-header {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.talent-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.talent-card-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* --- Interactive Hover Translation States --- */
.talent-card-item:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.talent-card-item:hover .talent-card-title {
    color: #4f46e5; /* Title switches to indigo on mouse interaction */
}

/* --- Responsive Viewport Adaptation Rules --- */

/* Tablet View Intermediary Tracker (Transitions down to 2 columns layout) */
@media (max-width: 991px) {
    .talent-grid-col {
        flex: 1 1 calc(50% - 15px); /* Perfectly grids out 2 items per vertical stack line */
    }
    .talent-main-title {
        font-size: 30px;
    }
}

/* Mobile Screen Sizes Optimization Framework (Stretches blocks to single listing row) */
@media (max-width: 767px) {
    .talent-requirement-section {
        padding: 60px 15px;
    }
    .talent-grid-row {
        gap: 20px; /* Decreases grid layout blank voids inside screens */
    }
    .talent-grid-col {
        flex: 1 1 100%; /* Direct fluid vertical stacking */
    }
    .talent-card-item {
        padding: 30px 20px;
    }
    .talent-main-title {
        font-size: 26px;
    }
    .talent-subtitle {
        font-size: 14.5px;
    }
}

/*Web development page*/
/* --- Web Tech Showcase Section Core Rules --- */
.web-tech-showcase-section {
    background-color: #ffffff;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.tech-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Split Flexbox Wrapper Framework --- */
.tech-showcase-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* --- Left Side Typography Block --- */
.tech-showcase-text-col {
    flex: 1 1 calc(50% - 25px);
    box-sizing: border-box;
}

.tech-mini-tag {
    color: #4f46e5; /* Premium Indigo */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.tech-info-block h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.tech-info-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 16px 0;
}

.tech-info-block p:last-child {
    margin-bottom: 0;
}

/* --- Right Side Tech Badges Columns --- */
.tech-showcase-badges-col {
    flex: 1 1 calc(50% - 25px);
    box-sizing: border-box;
}

.tech-badges-wrapper {
    background-color: #f8fafc; /* Premium subtle card backing */
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.tech-group-box {
    margin-bottom: 24px;
}

.tech-group-box:last-child {
    margin-bottom: 0;
}

.tech-group-box h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b; /* Slate gray section headings */
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

/* Flexwrap grid tracking for clean category tags */
.tech-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag-item {
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

/* Tech badge interactivity animation rules */
.tech-tag-item:hover {
    background-color: #4f46e5;
    color: #ffffff;
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* --- Responsive Media Queries Breakpoints --- */

/* Tablet View (Stacks left text block above the badge cards wrapper) */
@media (max-width: 991px) {
    .tech-showcase-text-col, .tech-showcase-badges-col {
        flex: 1 1 100%; /* Spreads elements fully to boundary widths */
    }
    .tech-info-block {
        text-align: center;
    }
    .tech-info-block h2 {
        font-size: 30px;
    }
    .tech-badges-wrapper {
        padding: 30px;
    }
}

/* Compact Mobile Screen View framework */
@media (max-width: 575px) {
    .web-tech-showcase-section {
        padding: 60px 15px;
    }
    .tech-info-block h2 {
        font-size: 26px;
    }
    .tech-badges-wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .tech-tag-item {
        font-size: 13px;
        padding: 6px 12px;
    }
}
/* --- Web Industries Section Core Base --- */
.web-industries-serve-section {
    background-color: #f8fafc; /* Premium smooth background gray */
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.web-ind-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Split Flexbox Symmetrical Row Architecture --- */
.web-ind-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* --- Left Side Brand Content Styles --- */
.web-ind-text-col {
    flex: 1 1 calc(42% - 25px);
    box-sizing: border-box;
}

.web-ind-mini-tag {
    color: #4f46e5; /* Primary Indigo */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.web-ind-content-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.web-ind-content-box p {
    font-size: 15.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 16px 0;
}

.web-ind-content-box p:last-child {
    margin-bottom: 0;
}

/* --- Right Side Dynamic Industry Cards Styles --- */
.web-ind-grid-col {
    flex: 1 1 calc(58% - 25px);
    box-sizing: border-box;
}

/* Native CSS Grids for logo list formatting */
.web-ind-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row on desktops */
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Card Structural Box */
.web-ind-card-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Interactive Card Hover Transforms */
.web-ind-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

/* Icon Wrap Logic */
.web-ind-icon-wrapper {
    height: 54px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #f8fafc;
    border-radius: 14px;
    transition: background-color 0.3s ease;
}

.web-ind-card-item:hover .web-ind-icon-wrapper {
    background-color: #f5f3ff; /* Shifts to very light indigo tint on hover */
}

.web-ind-icon-wrapper img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.web-ind-card-item h5 {
    font-size: 14.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}

.web-ind-card-item:hover h5 {
    color: #4f46e5; /* Text changes to indigo on hover */
}

/* --- Responsive Viewport Breakpoint Framework --- */

/* Tablet View (Stacks text block above grid items container) */
@media (max-width: 991px) {
    .web-ind-text-col, .web-ind-grid-col {
        flex: 1 1 100%; /* Spreads structural row components to full width bounds */
    }
    .web-ind-content-box {
        text-align: center;
        margin-bottom: 25px;
    }
    .web-ind-content-box p {
        max-width: 750px;
        margin: 0 auto 16px auto;
    }
    .web-ind-content-box h2 {
        font-size: 30px;
    }
}

/* Mobile Screen Formats Optimization Tracker */
@media (max-width: 575px) {
    .web-industries-serve-section {
        padding: 60px 15px;
    }
    .web-ind-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 grid cards per line on smartphone viewports */
        gap: 14px;
    }
    .web-ind-card-item {
        padding: 20px 12px;
        border-radius: 16px;
    }
    .web-ind-icon-wrapper {
        height: 48px;
        width: 48px;
        margin-bottom: 10px;
    }
    .web-ind-content-box h2 {
        font-size: 26px;
    }
}
/*our team */
/*Our team ameging page */
.teamclass{
      margin: 0;
      font-family: 'Poppins', Arial, sans-serif;
      background: #ececec;
    }
    p{
       align-items: center; 
    }
    .team-section {
      padding: 50px 0 0 0;
      background: #ececec;
      text-align: center;
    }
    .team-section h1 {
      font-weight: 700;
      font-size: 2.3rem;
      margin-bottom: 60px;
      letter-spacing: 1px;
    }
    .top-row {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: -46px;
      z-index: 2;
      position: relative;
    }
    .top-card {
      background: #fff;
      border-radius: 18px;
      padding: 36px 28px 18px 28px;
      max-width: 210px;
      flex: 1 1 210px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 2px 13px #e5e8fa14;
    }
    .top-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 10px #e1eaff33;
      margin-bottom: 16px;
    }
    .top-card h3 {
      font-size: 1.07rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin: 0 0 2px 0;
      align-items: center;
    }
    .top-card p {
      margin: 0 0 12px 0;
      font-size: 1.0rem;
      font-weight: 400;
      color: #6a6a6a;
      font-style: italic;
    }
    .top-card .socials {
      display: flex;
      gap: 18px;
    }
    .top-card .socials a {
      color: #444;
      font-size: 1.1em;
      transition: color 0.2s;
    }
    .top-card .socials a:hover {
      color: #ff2c2c;
    }
    .bottom-bg {
      background: #ff2c2c;
      border-radius: 38px 38px 0 0;
      margin-top: -28px;
      padding: 66px 0 55px 0;
      z-index: 1;
    }
    .bottom-row {
      display: flex;
      justify-content: center;
      gap: 38px;
      flex-wrap: wrap;
    }
    .bottom-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 16px rgba(44,93,255,0.05);
      padding: 44px 22px 18px 22px;
      max-width: 212px;
      flex: 1 1 212px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .bottom-card img {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 18px;
      box-shadow: 0 2px 10px #e1eaff33;
    }
    .bottom-card h3 {
      font-size: 1.06rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin: 0 0 2px 0;
    }
    .bottom-card p {
      margin: 0 0 12px 0;
      font-size: 1rem;
      font-weight: 400;
      color: #6a6a6a;
      font-style: italic;
    }
    .bottom-card .socials {
      display: flex;
      gap: 15px;
      margin-top: 7px;
    }
    .bottom-card .socials a {
      color: #191a1d;
      font-size: 1.1em;
      transition: color 0.2s;
    }
    .bottom-card .socials a:hover {
      color: #2c5dff;
    }
    @media (max-width: 970px) {
      .top-row, .bottom-row { flex-wrap: wrap; }
    }
    @media (max-width:700px) {
      .top-row, .bottom-row { flex-direction: column; align-items: center; gap:30px;}
      .top-card, .bottom-card { max-width:96vw; }
      .bottom-bg { padding: 60px 0 20px 0;}
    }
    
    /*Album*/
    .albumarea {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.carousel-container {
width: 100%;
overflow: hidden;
position: relative;
height: auto;
}
h2{
text-align: center; margin-top: 40px;
margin-bottom: 20px;
color: brown;
}
.carousel-slide {
display: flex;
transition: transform 0.5s ease;
}
.carousel-slide img {
width: 50%;
height: 400px;
object-fit: cover;
}
@media (max-width: 600px) {
.carousel-slide {
width: 100%;
}
}
@media (min-width: 601px) and (max-width: 992px) {
.carousel-slide {
width: 200%;
}
}
@media (min-width: 993px) {
.carousel-slide {
width: 300%;
}
}
/*FAQ*/
.faq-section {
            width: 90%;
            max-width: 900px;
            margin: 50px auto;
            font-family: Arial, sans-serif;
            color: #333;
          }

          .faq-main-title {
            text-align: center;
            font-size: 2.5em;
            color: #003366;
            /* Dark blue for a professional look */
            margin-bottom: 20px;
          }

          .faq-intro {
            text-align: center;
            font-size: 1.1em;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.6;
          }

          .contact-link {
            color: #007bff;
            /* Standard link blue */
            text-decoration: none;
            font-weight: bold;
          }

          .contact-link:hover {
            text-decoration: underline;
          }

          .faq-item {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            /* Ensures child elements respect border-radius */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          }

          .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 25px;
            background-color: #f8f8f8;
            /* Light grey for question background */
            border: none;
            text-align: left;
            font-size: 1.2em;
            font-weight: bold;
            color: #003366;
            cursor: pointer;
            transition: background-color 0.3s ease;
          }

          .faq-question:hover {
            background-color: #e9e9e9;
          }

          .faq-question.active {
            background-color: #e0eaff;
            /* Slightly darker on active */
            color: #0056b3;
            /* Darker blue on active */
          }

          .question-text {
            flex-grow: 1;
          }

          .faq-toggle-icon {
            font-size: 1.5em;
            margin-left: 15px;
            transition: transform 0.3s ease;
          }

          .faq-question.active .faq-toggle-icon {
            transform: rotate(45deg);
            /* Changes '+' to 'x' or rotates it */
          }

          .faq-answer {
            padding: 0 25px;
            background-color: #fff;
            max-height: 0;
            /* Hidden by default */
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
          }

          .faq-answer.active {
            max-height: 200px;
            /* Adjust as needed, ensure it's larger than actual content height */
            padding: 20px 25px;
          }

          .faq-answer p {
            margin: 0;
            line-height: 1.8;
            color: #444;
          }

          /* Responsive adjustments */
          @media (max-width: 768px) {
            .faq-main-title {
              font-size: 2em;
            }

            .faq-question {
              font-size: 1em;
              padding: 15px 20px;
            }

            .faq-answer {
              padding: 15px 20px;
            }
          }

          @media (max-width: 480px) {
            .faq-section {
              width: 95%;
              margin: 30px auto;
            }

            .faq-main-title {
              font-size: 1.8em;
            }

            .faq-intro {
              font-size: 1em;
            }

            .faq-question {
              font-size: 0.9em;
              padding: 12px 15px;
            }

            .faq-toggle-icon {
              font-size: 1.2em;
            }

            .faq-answer p {
              font-size: 0.9em;
            }
          }
          /*Why Choose us */
          /* --- Global Talent Core Base Styles --- */
.global-talent-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.talent-edge-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Centered Heading Block --- */
.talent-edge-header {
    text-align: center;
    margin-bottom: 60px;
}

.talent-edge-tagline {
    color: #2563eb; /* Premium Soft Blue */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.talent-edge-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.025em;
}

.talent-edge-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Flexible Grid Framework Row (Desktop 4 Columns Default) --- */
.talent-edge-row-framework {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* Sizing formula for absolute 4 equal columns with dynamic adjustments */
.talent-edge-card-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 35px 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    flex: 1 1 calc(25% - 18px); 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* --- Icon Circular Wrappers --- */
.talent-icon-box-wrapper {
    background-color: #eff6ff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.3s ease;
}

.talent-svg-icon {
    width: 28px;
    height: 28px;
    color: #2563eb;
    transition: color 0.3s ease;
}

/* --- Card Content Typography --- */
.talent-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.talent-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* --- Hover State Triggers (Tailwind Micro-Interactions Simulation) --- */
.talent-edge-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.07);
    border-color: #2563eb;
}

.talent-edge-card-item:hover .talent-icon-box-wrapper {
    background-color: #2563eb; /* Background becomes blue on hover */
}

.talent-edge-card-item:hover .talent-svg-icon {
    color: #ffffff; /* SVG color turns white on hover */
}

/* --- Smart Breakpoints Media Queries --- */

/* Tablets Screens Viewport (Converts to 2 Columns Matrix) */
@media (max-width: 991px) {
    .talent-edge-card-item {
        flex: 1 1 calc(50% - 12px); /* 2 blocks per list line */
    }
    .talent-edge-main-title {
        font-size: 30px;
    }
}

/* Mobile Screens Viewport (Completely stacked single layout block) */
@media (max-width: 767px) {
    .global-talent-section {
        padding: 60px 15px;
    }
    .talent-edge-row-framework {
        gap: 20px;
    }
    .talent-edge-card-item {
        flex: 1 1 100%; /* Spreads fully across phone panels */
        padding: 30px 20px;
    }
    .talent-edge-main-title {
        font-size: 26px;
    }
    .talent-edge-subtitle {
        font-size: 15px;
    }
}
/*global network */
/* --- Global Talent Network Showcase Base Section --- */
.talent-network-showcase-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.network-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Heading Title --- */
.network-showcase-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.025em;
}

/* --- Symmetrical Split Row Framework --- */
.network-showcase-split-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px; /* Precise gap separation balance */
}

/* --- Left Image Column Styling Layout --- */
.network-image-col {
    flex: 1 1 calc(50% - 25px);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.network-image-card-box {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
    background-color: #eff6ff; /* Soft blue brand box background */
    border: 1px solid #dbeafe;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    box-sizing: border-box;
}

/* Micro interaction zoom trigger on box hover */
.network-responsive-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.network-image-card-box:hover .network-responsive-img {
    transform: scale(1.05);
}

/* --- Safe Image Error HTML Fallback Parameters --- */
.fallback-text-center {
    text-align: center;
}

.fallback-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 12px;
}

.fallback-title {
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}

/* --- Right Text Details Column Styling Layout --- */
.network-text-col {
    flex: 1 1 calc(50% - 25px);
    box-sizing: border-box;
}

.network-para-text {
    font-size: 16.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 20px 0;
}

.network-para-text.no-margin {
    margin-bottom: 0;
}

.network-inline-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.network-inline-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* --- Responsive Media Queries Custom Breakpoints --- */

/* Tablets Viewport Integration (Stacks layout block layers) */
@media (max-width: 991px) {
    .network-image-col, .network-text-col {
        flex: 1 1 100%; /* Spreads structural elements to full widths */
    }
    
    .network-showcase-split-row {
        gap: 35px;
    }
    
    .network-image-card-box {
        height: 320px; /* Slight height reduction for standard mid-screens */
    }
    
    .network-showcase-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
}

/* Small Smartphone Viewport Grid System */
@media (max-width: 575px) {
    .talent-network-showcase-section {
        padding: 50px 15px;
    }
    
    .network-image-card-box {
        height: 280px;
        padding: 16px;
        border-radius: 16px;
    }
    
    .network-showcase-title {
        font-size: 26px;
    }
    
    .network-para-text {
        font-size: 15px;
    }
    
    .fallback-title {
        font-size: 18px;
    }
}
/*portfolio page*/
/* --- Core Portfolio Showcase Section Styles --- */
.portfolio-showcase-wrapper-section {
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.portfolio-item-row {
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

/* Alternate light grey stripe background for section breaks */
.portfolio-item-row.alt-bg-slate {
    background-color: #f8fafc;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* --- Flexbox 12-Column Emulation System --- */
.portfolio-flex-grid-system {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Content Area: Occupies 7/12 parts of width */
.portfolio-text-column-7 {
    flex: 1 1 calc(58.333% - 20px);
    box-sizing: border-box;
}

/* Image Area: Occupies 5/12 parts of width */
.portfolio-image-column-5 {
    flex: 1 1 calc(41.666% - 20px);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* --- Content Typo & Links Formatting --- */
.portfolio-brand-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.portfolio-brand-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 24px 0;
    text-align: left;
}

.portfolio-social-links-list {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Link Style Blocks */
.portfolio-link-icon {
    font-size: 22px;
    color: #64748b;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.portfolio-link-icon:hover {
    transform: scale(1.1);
}

.portfolio-link-icon.link-blue:hover { color: #2563eb; }
.portfolio-link-icon.link-green:hover { color: #16a34a; }
.portfolio-link-icon.link-dark:hover { color: #0f172a; }

/* --- Image Containers --- */
.portfolio-image-box-card {
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-fluid-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

/* --- Desktop Orders Alignment Controls --- */
@media (min-width: 992px) {
    .portfolio-flex-grid-system {
        flex-direction: row; /* Forces regular layout rules on monitors */
    }
    .order-text-last { order: 1; }
    .order-image-first { order: 2; }
}

/* --- Responsive Media Queries Breakpoints --- */

/* Tablets & Mobile Devices (Flipping to full vertical stack setup) */
@media (max-width: 991px) {
    .portfolio-item-row {
        padding: 40px 0;
    }
    
    .portfolio-flex-grid-system {
        flex-direction: column; /* Stacks image/content straight line vertical */
        gap: 30px;
    }
    
    .portfolio-text-column-7, .portfolio-image-column-5 {
        flex: 1 1 100%; /* Spreads structural bounds to outer limits */
        width: 100%;
    }
    
    /* Crucial Rule: Mobile par pehle image dikhegi, fir content aayega */
    .order-text-last { order: 2; }
    .order-image-first { order: 1; }
    
    .portfolio-brand-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .portfolio-brand-desc {
        font-size: 14.5px;
        text-align: center; /* Better readability on phones */
    }
    
    .portfolio-social-links-list {
        justify-content: center; /* Centers alignment for mobile devices */
    }
    
    .portfolio-fluid-img {
        max-height: 300px; /* Slight scale decrease for tight displays */
    }
}
/*staff aug Page */
/* ========================================================
   WITQUALIS ISOLATED CARD ENGINE (BOOTSTRAP ALIGNED)
   ======================================================== */

/* Section Outer Resets */
.wit-matrix-wrapper-section, .wit-advantages-wrapper-section {
    font-family: 'Poppins', sans-serif !important;
    display: block !important;
}

/* Sourcing Matrix Cards Formatting */
.wit-matrix-card-box {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 410px !important; /* Forces uniform grid height alignment */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
}

.wit-matrix-icon-layer {
    width: 48px !important;
    height: 48px !important;
    background-color: #f5f3ff !important;
    color: #4f46e5 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

.wit-matrix-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 12px 0 !important;
    transition: color 0.2s ease !important;
}

.wit-matrix-card-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin: 0 0 20px 0 !important;
}

/* Footer Tag Framework inside Cards */
.wit-matrix-footer-grid {
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
}

.wit-footer-tag {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.wit-footer-tag span { color: #eab308 !important; }

/* Matrix Micro Interactions Trigger */
.wit-matrix-card-box:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08) !important;
    border-color: #4f46e5 !important;
}
.wit-matrix-card-box:hover .wit-matrix-card-title {
    color: #4f46e5 !important;
}

/* ========================================================
   SECTION 2: STRATEGIC ADVANTAGES CARDS STYLES
   ======================================================== */
.wit-advantage-card-box {
    background-color: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 280px !important; /* Symmetrical box matching */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease !important;
    box-sizing: border-box !important;
}

.wit-advantage-icon-layer {
    width: 44px !important;
    height: 44px !important;
    background-color: #ffffff !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.wit-advantage-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 12px 0 !important;
    transition: color 0.2s ease !important;
}

.wit-advantage-card-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin: 0 !important;
}

/* Advantage Card Hover Interactions */
.wit-advantage-card-box:hover {
    background-color: #ffffff !important;
    border-color: #4f46e5 !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08) !important;
}
.wit-advantage-card-box:hover .wit-advantage-card-title {
    color: #4f46e5 !important;
}

/* Responsive Fixes for Small Viewports Padding Adjustments */
@media (max-width: 767px) {
    .wit-matrix-wrapper-section, .wit-advantages-wrapper-section {
        padding: 50px 0 !important;
    }
    .wit-matrix-card-box, .wit-advantage-card-box {
        min-height: auto !important; /* Dynamic scale auto-release for mobile screens */
    }
}
/*staff FAQ*/
 .faq {
    background: linear-gradient(180deg, #0e1217 0%, #151b23 100%);
    border-radius: 16px;
    padding: 40px 20px;
  }
  .faq-title {
    text-align: center;
    font-size: 1.8rem;
    color: #f08804;
    margin-bottom: 25px;
  }
  .faq-item {
    background: #151b23;
    border: 1px solid #2a3342;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .faq-item.active {
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    border-color: #f08804;
  }
  .faq-question {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: #f5f7fb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
  }
  .faq-question:hover {
    color: #f08804;
  }
  .faq-question .icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #f08804;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 20px;
  }
  .faq-answer p {
    margin: 14px 0;
    color: #a9b2c1;
  }
  /* Active state */
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 20px 20px;
  }
  .faq-item.active .faq-question .icon {
    transform: rotate(180deg);
  }
  /*AngularJS*/
  /* ========================================================
   WITQUALIS ANGULARJS LANDING PAGE SHIELD (ANTI-CONFLICT)
   ======================================================== */

/* Content Expertise Cards Boxes Layout */
.wit-expert-borderbox {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 30px 24px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.wit-expert-borderbox:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(79, 70, 229, 0.25) !important;
}

/* Verticals Industry Segment Cards Layout */
.wit-ind-solution-box {
    background-color: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 30px 24px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.wit-ind-solution-box:hover {
    background-color: #ffffff !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(79, 70, 229, 0.25) !important;
}

/* --- Process Dynamic Vertical List Engine --- */
.wit-process-ordered-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.wit-process-ordered-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    background: #ffffff !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01) !important;
}

.wit-proc-num {
    background-color: #f5f3ff !important;
    color: #4f46e5 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.wit-proc-info {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    color: #475569 !important;
}

/* --- Responsive Layout Optimization Framework --- */
@media (max-width: 991px) {
    .wit-expert-borderbox, .wit-ind-solution-box {
        padding: 24px 20px !important;
    }
}
/*react JS*/
/* ========================================================
   WITQUALIS REACTJS REVENUE PAGE ENHANCEMENT (BOOTSTRAP SAFE)
   ======================================================== */

/* Why Choose Us Unified Media Cards Styling */
.wit-why-media-card {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 30px 24px !important;
    text-align: center !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
    height: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.wit-why-media-card img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain !important;
    margin-bottom: 20px !important;
}

.wit-why-media-card h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 10px 0 !important;
}

.wit-why-media-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin: 0 !important;
}

/* Hover Actions for Why Us Block Components */
.wit-why-media-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(79, 70, 229, 0.25) !important;
}

/* Symmetrical Row Margin Override Shield */
.row.gap-y-6 {
    margin-right: -15px !important;
    margin-left: -15px !important;
}

/* Compact Smartphone Layout Tuning */
@media (max-width: 767px) {
    .why-us {
        padding: 50px 0 !important;
    }
    .wit-why-media-card {
        padding: 24px 20px !important;
    }
}
/*Ai driven page */
/* ========================================================
   WITQUALIS AI HERO BANNER CORE ENGINE (BOOTSTRAP ALIGNED)
   ======================================================== */

.wit-ai-hero-banner {
    background: radial-gradient(circle at 10% 20%, #0f172a 0%, #070a12 100%) !important;
}

/* Background grid particles simulation */
.ai-bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.04;
    background-image: linear-gradient(#4f46e5 1px, transparent 1px), linear-gradient(90deg, #4f46e5 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

/* Typography Controls */

.ai-mini-badge-tag {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
    border: 1px solid rgba(129, 140, 248, 0.2);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
}

.ai-main-headline {
    font-size: 46px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 20px !important;
}

.ai-main-headline span {
    color: #4f46e5; /* Primary Indigo Pop Variable */
    background: linear-gradient(to right, #818cf8, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-main-subtext {
    font-size: 16.5px !important;
    line-height: 1.7 !important;
    color: #94a3b8 !important; /* Muted soft grey slate text color */
    margin-bottom: 35px !important;
}

/* Custom Interactive Buttons Rules */
.ai-hero-buttons-action-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ========================================================
   WITQUALIS BUTTONS OVERRIDE ENGINE (ANTI-FRAMEWORK CRASH)
   ======================================================== */

.ai-hero-action-btn-primary {
    background-color: #4f46e5 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 14px 30px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.35) !important;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease !important;
    display: inline-block !important; /* Fixes height padding collapsing */
    text-align: center !important;
    line-height: 1.5 !important;
}

.ai-hero-action-btn-primary:hover {
    background-color: #4338ca !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.ai-hero-action-btn-secondary {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 14px 30px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    border: 1px solid #334155 !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
    display: inline-block !important; /* Fixes tracking boundaries */
    text-align: center !important;
    line-height: 1.5 !important;
}

.ai-hero-action-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-color: #475569 !important;
    color: #ffffff !important;
}

/* Mobile full width alignment rules */
@media (max-width: 575px) {
    .ai-hero-buttons-wrapper-flex {
        flex-direction: column !important;
        width: 100% !important;
    }
    .ai-hero-action-btn-primary, .ai-hero-action-btn-secondary {
        width: 100% !important;
        display: block !important;
    }
}

/* Metrics Row Borders Shield */
.border-right.border-secondary-custom {
    border-right: 1px solid #1e293b !important;
}
.metric-num {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 4px 0 !important;
}
.metric-lbl {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* Right Column Code Dashboard Mock Up Layer Graphic Styles */
.ai-hero-interactive-dashboard-card {
    background-color: #090d16;
    border: 1px solid #1e293b;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dashboard-mock-header {
    background-color: #0e1322;
    padding: 12px 20px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dash-dot.color-red { background-color: #ef4444; }
.dash-dot.color-yellow { background-color: #eab308; }
.dash-dot.color-green { background-color: #22c55e; }

.dash-title-file {
    color: #64748b;
    font-size: 13px;
    font-family: monospace;
    margin-left: 10px;
}

.dashboard-mock-body-code {
    padding: 24px;
    margin: 0;
}
.dashboard-mock-body-code pre {
    margin: 0;
    padding: 0;
}
.dashboard-mock-body-code code {
    font-family: 'Consolas', 'Courier New', monospace !important;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Python Code Syntax Highlighter Mock Colors */
.code-keyword { color: #f43f5e; font-weight: bold; }
.code-string { color: #10b981; }
.code-comment { color: #475569; font-style: italic; }
.code-number { color: #3b82f6; }

/* ========================================================
   RESPONSIVE LAYOUT OPTIMIZATION BREAKPOINTS
   ======================================================== */
@media (max-width: 991px) {
    .ai-main-headline {
        font-size: 34px !important;
        text-align: center;
    }
    .ai-main-subtext {
        text-align: center;
        font-size: 15.5px !important;
    }
    .ai-hero-buttons-action-row {
        justify-content: center;
    }
    .ai-metrics-row {
        text-align: center;
    }
    .ai-hero-interactive-dashboard-card {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .wit-ai-hero-banner {
        padding: 60px 0;
    }
    .ai-main-headline {
        font-size: 28px !important;
    }
    .ai-hero-buttons-action-row {
        flex-direction: column;
        width: 100%;
    }
    .ai-btn-primary, .ai-btn-secondary {
        text-align: center;
        width: 100%;
    }
    .dashboard-mock-body-code {
        padding: 16px;
    }
    .dashboard-mock-body-code code {
        font-size: 12px;
    }
}
/*AI Hero section*/
/* ========================================================
   WITQUALIS SPECIALIZED AI ROLES SYSTEM (BOOTSTRAP SHIELD)
   ======================================================== */

.wit-ai-matrix-grid-section {
    display: block !important;
}

/* Premium Card Architecture Structure */
.wit-ai-spec-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 410px !important; /* Uniform strict height alignment */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Icon Frame Layout styling */
.wit-ai-icon-frame {
    width: 48px !important;
    height: 48px !important;
    background-color: #f5f3ff !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

.wit-ai-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 12px 0 !important;
    transition: color 0.2s ease !important;
}

.wit-ai-card-desc {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #64748b !important;
    margin: 0 0 24px 0 !important;
}

/* Symmetrical Tech Tag Badges Engine inside Cards */
.wit-ai-card-footer-tags {
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
}

.wit-tag-pill {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.wit-tag-pill span {
    color: #eab308 !important; /* Yellow spark highlight icon tint */
}

/* Premium Mouse Hover Transitions */
.wit-ai-spec-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06) !important;
    border-color: #4f46e5 !important;
}

.wit-ai-spec-card:hover .wit-ai-card-title {
    color: #4f46e5 !important;
}

/* Responsive Adaptive Adjustments */
@media (max-width: 767px) {
    .wit-ai-matrix-grid-section {
        padding: 50px 0 !important;
    }
    .wit-ai-spec-card {
        min-height: auto !important; /* Releases fixed height locks on small viewports */
        padding: 24px !important;
    }
}
/* ========================================================
   WITQUALIS AI TECH STACK MATRIX ENGINE (ANTI-CONFLICT)
   ======================================================== */

/* Radial shading background element */
.tech-stack-bg-glow {
    position: absolute !important;
    width: 600px !important;
    height: 600px !important;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%) !important;
    bottom: -10% !important;
    right: -10% !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Premium Dark Card Wrapper Styles */
.wit-tech-box {
    background-color: #0e1322 !important;
    border: 1px solid #1e293b !important;
    border-radius: 16px !important;
    padding: 32px !important;
    height: 100% !important; /* Uniform grid card heights alignment */
    display: flex !important;
    flex-direction: column !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
}

.tech-box-header {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
}

/* Rounded Tech Icon Frame Tints */
.tech-icon-circle {
    width: 44px !important;
    height: 44px !important;
    background-color: rgba(79, 70, 229, 0.1) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #818cf8 !important;
    font-size: 18px !important;
}

.tech-box-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.tech-box-desc {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin-bottom: 22px !important;
}

/* Framework Component Lists Elements Rules */
.tech-list-items {
    list-style: none !important;
    padding: 0 !important;
    margin: auto 0 0 0 !important; /* Forces lists down symmetrically */
}

.tech-list-items li {
    font-size: 14.5px !important;
    color: #cbd5e1 !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.tech-list-items li i {
    color: #10b981 !important; /* Modern clean green confirmation check tint */
    font-size: 14px !important;
}

/* Interactive Hover Transitions Modules */
.wit-tech-box:hover {
    border-color: #4f46e5 !important;
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.2) !important;
}
.wit-tech-box:hover .tech-icon-circle {
    background-color: #4f46e5 !important;
    color: #ffffff !important;
}

/* Small Viewport Handling Metrics */
@media (max-width: 991px) {
    .tech-list-items li {
        font-size: 14px !important;
    }
}
/* ========================================================
   WITQUALIS AI ONBOARDING PROCESS PIPELINE (ANTI-CONFLICT)
   ======================================================== */

/* Step Item Flex Row Layout styling */
.ai-step-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    background: #f8fafc !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f1f5f9 !important;
    transition: border-color 0.3s ease, background-color 0.3s ease !important;
}

.ai-step-item:hover {
    border-color: rgba(79, 70, 229, 0.25) !important;
    background-color: #ffffff !important;
}

.ai-step-num {
    background-color: #f5f3ff !important;
    color: #4f46e5 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.ai-step-info {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
}

/* Right Side Value Pitch Form CTA Card Styles */
.ai-process-cta-card-box {
    background-color: #0f172a !important; /* Premium deep dark contrasting card */
    border-radius: 20px !important;
    padding: 40px 35px !important;
    width: 100% !important;
    max-width: 400px !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

.cta-card-upper-accent {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: linear-gradient(90deg, #818cf8, #4f46e5) !important;
}

.ai-process-cta-card-box h3 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 14px 0 !important;
    font-family: 'Poppins', sans-serif !important;
}

.ai-process-cta-card-box p {
    color: #94a3b8 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 0 28px 0 !important;
}

.ai-process-cta-button {
    background-color: #4f46e5 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
    display: block !important;
    margin-bottom: 20px !important;
}
.ai-process-cta-button:hover {
    background-color: #4338ca !important;
    transform: translateY(-2px) !important;
}

.ai-process-cta-button i {
    margin-left: 6px !important;
    font-size: 13px !important;
}

.cta-sub-note {
    font-size: 11.5px !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
}
.cta-sub-note i { color: #10b981 !important; }

/* Responsive Media Queries Configuration Shields */
@media (max-width: 991px) {
    .ai-process-cta-card-box {
        margin: 35px auto 0 auto !important;
        max-width: 440px !important;
    }
}

@media (max-width: 575px) {
    .ai-process-cta-card-box {
        padding: 30px 20px !important;
    }
    .ai-process-cta-card-box h3 { font-size: 21px !important; }
}
/* ========================================================
   WITQUALIS WHY CHOOSE US AI SHIELD (ANTI-CONFLICT ENGINE)
   ======================================================== */

.wit-choose-ai-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 35px 28px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 310px !important; /* Forces perfect equal row balance across wide monitors */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Rounded Icon Frame Styles inside Cards */
.choose-ai-icon {
    width: 44px !important;
    height: 44px !important;
    background-color: #f5f3ff !important;
    color: #4f46e5 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    margin-bottom: 22px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01) !important;
}

.choose-ai-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 12px 0 !important;
    letter-spacing: -0.01em !important;
    transition: color 0.2s ease !important;
}

.choose-ai-desc {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #475569 !important;
    margin: 0 !important;
}

/* Micro Interactions Interactive Hover Actions */
.wit-choose-ai-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06) !important;
    border-color: #4f46e5 !important;
}

.wit-choose-ai-card:hover .choose-ai-title {
    color: #4f46e5 !important;
}

/* Small Viewports Smartphone Breakpoint Rules */
@media (max-width: 767px) {
    .wit-choose-ai-card {
        min-height: auto !important; /* Dynamic height auto release */
        padding: 26px 20px !important;
    }
}
/*React native development*/
/* ========================================================
   WITQUALIS REACT NATIVE HERO BANNER CORE ENGINE (BOOTSTRAP)
   ======================================================== */

.wit-rn-premium-hero-banner {
    background: radial-gradient(circle at 15% 20%, #0f172a 0%, #050811 100%) !important;
}

/* Hybrid Grid Shading Lattice Mask Simulation */
.rn-hero-lattice-mesh {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0.04 !important;
    background-image: linear-gradient(#4f46e5 1px, transparent 1px), linear-gradient(90deg, #4f46e5 1px, transparent 1px) !important;
    background-size: 32px 32px !important;
    z-index: 1 !important;
}

/* Typography Matrix Formats */
.rn-hero-mini-badge {
    background: rgba(79, 70, 229, 0.12) !important;
    color: #a5b4fc !important;
    border: 1px solid rgba(165, 180, 252, 0.2) !important;
    padding: 6px 14px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-bottom: 16px !important;
}

.rn-hero-main-h1 {
    font-size: 44px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    letter-spacing: -0.025em !important;
    margin: 0 !important;
}

.rn-hero-main-h1 span {
    color: #4f46e5 !important;
    background: linear-gradient(to right, #e0e7ff, #4f46e5) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.rn-hero-descriptive-text {
    font-size: 16.5px !important;
    line-height: 1.75 !important;
    color: #cbd5e1 !important; /* Crystal clear readable slate tint */
    margin-bottom: 16px !important;
}

.rn-hero-secondary-text {
    font-size: 15.5px !important;
    line-height: 1.7 !important;
    color: #94a3b8 !important;
    margin-bottom: 35px !important;
}

/* Call-To-Action Sprints Triggers Flow */
.rn-hero-action-buttons-flex {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin-bottom: 40px !important;
}

.rn-hero-btn-primary {
    background-color: #4f46e5 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 14px 30px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.35) !important;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease !important;
    display: inline-block !important;
}
.rn-hero-btn-primary:hover {
    background-color: #4338ca !important;
    transform: translateY(-2px) !important;
}

.rn-hero-btn-secondary {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 14px 30px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    border: 1px solid #334155 !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
    display: inline-block !important;
}
.rn-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border-color: #475569 !important;
}

/* Trust Signals Metrics Framework Rules */
.border-right-slate-shield {
    border-right: 1px solid #1e293b !important;
}
.rn-metric-num {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 4px 0 !important;
}
.rn-metric-lbl {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* Right Column Native Terminal Container Mock Layout */
.rn-hero-terminal-mock-container {
    background-color: #080c14 !important;
    border: 1px solid #1e293b !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 450px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6) !important;
    overflow: hidden !important;
}

.rn-terminal-header-bar {
    background-color: #0d121f !important;
    padding: 14px 20px !important;
    border-bottom: 1px solid #1e293b !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.rn-dot { width: 10px !important; height: 10px !important; border-radius: 50% !important; }
.rn-dot.r-red { background-color: #ef4444 !important; }
.rn-dot.r-yellow { background-color: #eab308 !important; }
.rn-dot.r-green { background-color: #22c55e !important; }

.rn-terminal-filename {
    color: #475569 !important;
    font-size: 13px !important;
    font-family: monospace !important;
    margin-left: 10px !important;
}

.rn-terminal-body-code { padding: 24px !important; margin: 0 !important; }
.rn-terminal-body-code pre { margin: 0 !important; padding: 0 !important; }
.rn-terminal-body-code code {
    font-family: 'Consolas', 'Courier New', monospace !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
}

/* TSX Token Highlighters */
.rn-keyword { color: #f43f5e !important; font-weight: bold !important; }
.rn-string { color: #10b981 !important; }
.rn-function { color: #3b82f6 !important; }
.rn-tag { color: #38bdf8 !important; }
.rn-attr { color: #fb923c !important; }

/* ========================================================
   RESPONSIVE DESIGN ADAPTATION MEDIA BREAKPOINTS
   ======================================================== */
@media (max-width: 991px) {
    .rn-hero-main-h1 { font-size: 34px !important; text-align: center !important; }
    .rn-hero-mini-badge { display: block !important; width: max-content !important; margin: 0 auto 16px auto !important; }
    .rn-hero-descriptive-text, .rn-hero-secondary-text { text-align: center !important; font-size: 15.5px !important; }
    .rn-hero-action-buttons-flex { justify-content: center !important; }
    .rn-hero-metrics-grid { text-align: center !important; }
    .rn-hero-terminal-mock-container { margin: 30px auto 0 auto !important; }
}

@media (max-width: 575px) {
    .wit-rn-premium-hero-banner { padding: 60px 0 !important; }
    .rn-hero-main-h1 { font-size: 26px !important; }
    .rn-hero-action-buttons-flex { flex-direction: column !important; width: 100% !important; }
    .rn-hero-btn-primary, .rn-hero-btn-secondary { text-align: center !important; width: 100% !important; }
    .rn-terminal-body-code { padding: 16px !important; }
    .rn-terminal-body-code code { font-size: 12px !important; }
}