/* three use cases starts */

.use-cases-section {
    padding: 5px 0;
    font-family: var(--bs-body-font-family), "Poppins", sans-serif;
}

.use-cases-outer-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.use-cases-container {
    padding: 0 15px;
}

.use-cases-section .section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #2c3e50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.use-case-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive design for tablets and mobile */
@media (max-width: 992px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* three use cases ends */



/* restructured tech stack starts */

/* New style for the AR/VR-specific tech stack */
.ta-section--arvr-tech-stack .ta-grid--tech-stack {
    /* Styles for the specific pages */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px 20px;
    justify-content: center;
}

.ta-section--arvr-tech-stack .ta-card--tech-stack {
    padding: 5px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Existing styles for all other pages */
.ta-section--clients-all .ta-grid--tech-stack {
    /* Styles for the default pages */
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .ta-section--clients-all h2.h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    .ta-section--clients-all p.h4 {
        font-size: 1rem;
        text-align: center;
    }
}


.ta-gradient-border-block p.h4 {
    /* ... other styles ... */
    color: #000; /* This will make the text a true black */
}

/* restructured tech stack ends */



/* hover effect */


.ta-section-gradient-block .ta-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.ta-section-gradient-block .ta-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); 
    cursor: pointer; 
}


/* hover effect ends */


/* AR VR Solutions tailored to industry */

/* Styling for the main title */
.tab-title-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-title-wrapper h2.pb-0 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 0;
    text-align: left;
}

/* This rule styles the p tags inside the tabs */
.tab p {
    font-size: var(--bs-body-font-size);
    /* font-weight: 600; */
    margin: 0;
}

/* This rule styles the h3 tags inside the content area */
.content h3 {
    font-size: 18px;
    font-family: var(--bs-body-font-family);
    font-weight: 600;
    margin: 0;
    color: #000000;
}

/* Existing styles for the tabbed interface remain the same */
.tabs-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #f8f9fa;
}

.tabs-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
}

.tab {
    padding: 20px;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #495057;
    transition: background-color 0.3s ease;
}

.tab:hover {
    background-color: #e9ecef;
}

.tab.active {
    background: linear-gradient(287deg, rgba(232, 30, 30, 0.8) 0%, rgba(255, 105, 0, 0.8) 100%);
}

.tab.active p {
    color: #ffffff;
}

.content-wrapper {
    flex: 2;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 1px solid #dee2e6;
}

.content {
    display: none;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content.active {
    display: block;
}

.content p {
    margin-bottom: 0;
    line-height: 1.6;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
}

.tab.active::after {
    /* content: '→'; */
    float: right;
    /* font-weight: 900; */
}

/* -------------------------------------------------------------------------------------------------- */

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column; /* Stack the tabs and content vertically */
        box-shadow: none; /* Optional: Remove box-shadow to fit mobile layout better */
        border-radius: 0; /* Optional: Remove border-radius */
    }

    .tabs-wrapper {
        padding: 10px; /* Adjust padding for mobile */
    }
    
    .tab {
        border-radius: 8px; /* Give each tab its own rounded corners */
        margin-bottom: 5px; /* Adjust space between tabs */
    }

    .content-wrapper {
        flex: 1; /* Remove flex-2 on mobile */
        border-left: none; /* Remove the vertical line */
        padding: 0;
    }

    .content {
        padding: 20px; /* Add padding to the content block itself */
        border-radius: 8px;
        margin: 10px; /* Add a little margin to separate it from the tabs */
    }
}
/* Existing CSS styles for the button, if you have a .btn-primary class, it will be used here. 
If not, you can use these styles as a base. */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(287deg, rgba(232, 30, 30, 0.8) 0%, rgba(255, 105, 0, 0.8) 100%);
    color: #ffffff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(287deg, rgba(255, 105, 0, 0.8) 0%, rgba(232, 30, 30, 0.8) 100%);
}


.tab-title-wrapper h2 {
    font-family: var(--bs-body-font-family), "Poppins", sans-serif;
}

.tabs-container .tab {
    font-family: var(--bs-body-font-family), "Poppins", sans-serif;
}

@media (max-width: 768px) {
    .tab-title-wrapper {
        text-align: center;
    }
}
/* AR VR Solutions tailored to industry ends */



.why-us-section {
    padding: 60px 0;
    background-color: #f8f9fa; /* Or your preferred background color */
}

.why-us-heading {
    font-family: var(--bs-body-font-family), "Poppins", sans-serif;
    font-size: 2.5rem; /* H2 size */
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.why-us-answer {
    font-family: var(--bs-body-font-family), "Poppins", sans-serif;
    font-size: 1.25rem; /* H3 size */
    font-weight: normal;
    color: #555;
    line-height: 1.6;
    /* Removed max-width and margin: auto to allow it to be left-aligned with the container */
}

.why-us-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns all content to the left */
}

.ta-section-gradient-block {
    padding-bottom: 50px; /* Adjust the value as needed */
}


/* augmented reality (ar) development  */
@media (max-width: 768px) {
    .ta-card__content
 {
        text-align: center !important;
 }
}