/*-----------------------------------------------
# Enhanced Corporate Services Page Styles
# Professional redesign with Roboto font family
# Performance optimized version
-----------------------------------------------*/

/*-----------------------------------------------
# CSS Variables for Corporate Theme
-----------------------------------------------*/
:root {
    --primary-color: #015EBE;
    --primary-dark: #0d47a1;
    --primary-light: #015EBE;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-light: #80868b;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dadce0;
    --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-md: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --shadow-lg: 0 2px 6px 2px rgba(60, 64, 67, 0.15), 0 8px 24px 4px rgba(60, 64, 67, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*-----------------------------------------------
# General Styles - Performance Optimized
-----------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary) !important;
    background-color: var(--background-white);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

/* Force hidden horizontal scroll across all screen widths */
html,
body {
    overflow-x: hidden !important;
}

/* Ensure main content can scroll */
#main {
    overflow-x: hidden !important;
}

/* Prevent any element from blocking scroll events */
* {
    pointer-events: auto;
}

/* Specific fix for service pages */
.inner-pages-wrapper {
    overflow-x: hidden !important;
}

/* Prevent mobile menu from blocking scroll when closed */
body:not(.mobile-menu-active) {
    overflow-y: auto !important;
}

/* Mobile menu specific fixes */
.mobile-menu-active {
    overflow: hidden !important;
}

.mobile-menu-active body {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}


a {
    color: var(--primary-color);
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary) !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 45px;
    font-weight: 900;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--text-secondary) !important;
    font-weight: 400;
    line-height: 1.7;
}

/*-----------------------------------------------
# Layout Styles
-----------------------------------------------*/
.inner-pages-wrapper {
    min-height: 100vh;
    background-color: var(--background-white);
}

.inner-page {
    margin-bottom: 0;
    padding: 15px 0;
}

.services-inner-page {
    padding: 20px 40px;
}

/* ─── SECTION VERTICAL RHYTHM (Gap Fix) ─── */
/* Eliminates excessive spacing between sections on service pages */
.inner-pages-wrapper section,
.custom-serivce-page section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Preserve banner section padding */
.custom-service-banner,
.gen-service-banner,
.healthcare-service {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
}

/* Tighten utility class margins */
.inner-pages-wrapper .mt-5,
.inner-pages-wrapper .mb-5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.inner-pages-wrapper .common-gap {
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-12,
.col-md-6,
.col-md-12 {
    padding: 0 15px;
    flex: 0 0 auto;
    width: 100%;
}

/* Bootstrap Grid System - Responsive */
@media (min-width: 576px) {
    .col-sm-6 {
        width: 50%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666667%;
    }

    .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-5 {
        width: 41.666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.333333%;
    }

    .col-lg-8 {
        width: 66.666667%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        width: 25%;
    }

    .col-xl-4 {
        width: 33.333333%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-12 {
        width: 100%;
    }
}

/*-----------------------------------------------
# Enhanced Service Banner Styles
-----------------------------------------------*/
.custom-service-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.95) 0%, rgba(13, 71, 161, 0.95) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* Changed from fixed for better performance */
    overflow: hidden;
    /* Background image will be loaded after critical rendering */
    will-change: background-image;
}

/* Load background image after initial render to improve LCP */
.custom-service-banner.bg-loaded {
    background-image: url('../img/custom-services/software-dev-banner.webp');
}

.custom-service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(13, 71, 161, 0.2) 100%);
    z-index: 1;
}

.custom-service-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--background-white), transparent);
    z-index: 1;
}

.custom-service-banner .container {
    position: relative;
    z-index: 2;
}

.healthcare-service {
    margin: 0 !important;
    position: relative;
    padding: 120px 0 !important;
}

.service-bg-left-view {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-col .type-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
        /* Use translate3d for hardware acceleration */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.service-content-col .type-text-wrapper h1 {
    font-size: 45px !important;
    line-height: 1.2;
    color: #fff !important;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.service-banner-content {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-white {
    color: #fff !important;
}

.text-left {
    text-align: left;
}

/*-----------------------------------------------
# Enhanced Form Styles (Corporate Design)
-----------------------------------------------*/
.form-col .card {
    background: var(--background-white);
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s ease-out;
    overflow: hidden;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
        /* Use translate3d for hardware acceleration */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.card-body {
    padding: 2.5rem;
}

.card-body h3 {
    color: var(--text-primary) !important;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 24px;
}

.software-service-form {
    width: 100%;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 0.2px;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background-color: var(--background-white);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
    outline: none;
    background-color: var(--background-white);
}


.message-textarea {
    min-height: 120px;
    resize: vertical;
}

.required {
    color: var(--accent-color);
}

.text-danger {
    color: var(--accent-color) !important;
}

.invalid-feedback {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contactform-messages {
    padding: 1rem;
    border-radius: 8px;
    background-color: #e8f5e9;
    border: 1px solid var(--secondary-color);
    color: #1b5e20;
    font-weight: 500;
}

.hidden-section-wrapper {
    display: none;
}

/*-----------------------------------------------
# Professional Feature List Styles
-----------------------------------------------*/
.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .feature-list-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item-minimal {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-minimal:hover {
    border-color: #f0f0f0;
    background: #fafafa;
}

.feature-item-minimal .bullet-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f1f5f9;
    color: #0c5aa8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-item-minimal .feature-info h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 4px !important;
}

.feature-item-minimal .feature-info p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #666 !important;
    margin-bottom: 0 !important;
}

.img-refinement {
    max-width: 85% !important;
    margin: 0 auto;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/*-----------------------------------------------
# Industry Grid V2 Styles (Square Cards)
-----------------------------------------------*/
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translate3d(0, -2px, 0);
    /* Use translate3d for hardware acceleration */
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translate3d(0, -2px, 0);
    /* Use translate3d for hardware acceleration */
    box-shadow: var(--shadow-md);
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.button-row {
    margin-top: 1.5rem;
}

/*-----------------------------------------------
# Enhanced Service Tabs Styles
-----------------------------------------------*/
.tab-view {
    margin-top: 4rem;
}

.head-wrap {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.head-wrap h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.head-wrap p {
    font-size: 16px;
    color: var(--text-secondary) !important;
    line-height: 1.7;
}

.fw-bold {
    font-weight: 700 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.service-tabs {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    background-color: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.nav-pills {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 300px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--background-light);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover {
    background-color: rgba(26, 115, 232, 0.08);
    border-color: var(--primary-light);
    color: var(--primary-color);
    transform: translate3d(4px, 0, 0);
    /* Use translate3d for hardware acceleration */
}

.nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.nav-link .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-white);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link.active .icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-link .icon img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.nav-link:hover .icon img,
.nav-link.active .icon img {
    filter: grayscale(0%);
}

.tab-content {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    min-height: 200px;
}

.tab-pane {
    display: none;
}

.tab-pane.show.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-pane h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.tab-pane p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary) !important;
}

/*-----------------------------------------------
# Enhanced Content Sections
-----------------------------------------------*/
.content-left-img {
    margin: 1.5rem 0;
}

.content-left-img .row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.content-left-img .left-content {
    flex: 1;
}

.content-left-img .right-img {
    flex: 1;
}

/* Ensure columns display side-by-side on desktop */
@media (min-width: 992px) {

    .content-left-img .col-lg-5,
    .content-left-img .col-lg-7 {
        flex: 0 0 auto;
    }

    .content-left-img .col-lg-5 {
        width: 41.666667%;
    }

    .content-left-img .col-lg-7 {
        width: 58.333333%;
    }
}

.left-heading {
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: var(--text-primary) !important;
    font-weight: 700;
    line-height: 1.3;
}

/* Ensure consistent heading sizes in content-left-img sections */
.content-left-img h1,
.left-content h1,
.right-content h1 {
    font-size: 45px !important;
    font-weight: 900 !important;

    line-height: 1.2;
}

.content-left-img h2,
.left-content h2,
.right-content h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1.3;
}

.content-left-img h3,
.left-content h3,
.right-content h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
}

.content-left-img h4,
.left-content h4,
.right-content h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
}

.left-content p,
.right-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary) !important;
    margin-bottom: 1.5rem;
}

.right-img .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}


/* Video wrapper styling */
.content-left-img .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.content-left-img .youtube-facade {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    border-radius: 12px;
}

.content-left-img .youtube-facade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-left-img .youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 1;
    width: 68px;
    height: 48px;
}

.content-left-img .youtube-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.cta-btn {
    margin-top: 2rem;
}

.cta-btn a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0.5rem;
}

.call-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/*-----------------------------------------------
# Enhanced Services Grid (Corporate Cards)
-----------------------------------------------*/
.services {
    padding: 40px 40px;
    overflow: hidden;
}

.section-bg {
    background-color: var(--background-light);
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5000px;
    height: 100%;
    background-color: var(--background-light);
    z-index: -1;
}

.common-gap {
    padding: 15px 0;
}

.service-list-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 2rem;
    color: var(--text-primary) !important;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.service-list-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.services-product-page {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    justify-content: flex-start;
    align-items: stretch !important;
    margin: 0 -1.25rem !important; /* Compels the negative margin for column spacing */
}

/* Specific column widths for desktop to ensure they sit side-by-side */
@media (min-width: 992px) {
    .services-product-page .col-lg-3 {
        flex: 0 0 calc(25% - 1.875rem) !important;
        width: calc(25% - 1.875rem) !important;
    }
    .services-product-page .col-lg-4 {
        flex: 0 0 calc(33.333% - 1.666rem) !important;
        width: calc(33.333% - 1.666rem) !important;
    }
    .services-product-page .col-lg-6 {
        flex: 0 0 calc(50% - 1.25rem) !important;
        width: calc(50% - 1.25rem) !important;
    }
    .services-product-page .col-lg-12 {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .services-product-page .col-md-6 {
        flex: 0 0 calc(50% - 1.25rem) !important;
        width: calc(50% - 1.25rem) !important;
    }
}

@media (max-width: 767px) {
    .services-product-page > [class*="col-"] {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

.services-product-page a.card-link,
.services-product-page .card-link {
    display: flex !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    text-decoration: none !important;
}

.services-product-page > [class*="col-"] {
    display: flex !important;
    padding: 0 1.25rem !important;
    margin-bottom: 2.5rem !important;
    align-items: stretch !important; /* Ensure children stretch to fill height */
}

.services-product-page .icon-box {
    position: relative;
    background: var(--background-white);
    padding: 2rem !important; /* Increased padding */
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 850px;   /* Reduced from 1000px for better readability */
    margin: 0 auto;    /* Centers the card if in single column */
    width: 100%;       /* Ensures it fills smaller containers */
    flex: 1 1 auto !important; /* This is the key fix for equal heights */
}

.icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.icon-box:hover {
    transform: translate3d(0, -8px, 0);
    /* Use translate3d for hardware acceleration */
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-box:hover::before {
    height: 100%;
}

.icon {
    margin-bottom: 1rem;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(1758%) hue-rotate(192deg) brightness(94%) contrast(101%);
}

.icon i {
    color: var(--primary-color);
    font-size: 22px;
    transition: var(--transition);
}

.icon-box:hover .icon i {
    color: white;
}

.icon-box:hover .icon img {
    filter: brightness(0) invert(1);
}

.icon-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 16px;
    transition: var(--transition);
}

.title a {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.icon-box:hover .title a {
    color: var(--primary-color) !important;
}

.description {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary) !important;
    flex-grow: 1;
}

.process-title {
    font-size: 18px !important;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

/*-----------------------------------------------
# Enhanced FAQ Section (Corporate Accordion)
-----------------------------------------------*/
.faq {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-primary) !important;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list li {
    background: var(--background-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-list li:hover {
    box-shadow: var(--shadow-md);
}

.faq-list .question {
    display: block;
    width: 100%;
    padding: 1.5rem 3.5rem 1.5rem 1.5rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--background-white);
    border: none;
    text-align: left;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.faq-list .question:hover {
    color: var(--primary-color);
    background-color: rgba(26, 115, 232, 0.03);
    padding-left: 1.75rem;
}

.faq-list .question.collapsed {
    color: var(--text-primary);
}

.faq-list .question.active,
.faq-list .question:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(26, 115, 232, 0.06);
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

.faq-list .question .icon-show,
.faq-list .question .icon-close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    line-height: 1;
}

.faq-list .question .icon-show {
    transform: translateY(-50%) rotate(0deg);
    opacity: 1;
}

.faq-list .question .icon-close {
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
    position: absolute;
    right: 1.5rem;
    top: 50%;
}

.faq-list .question.collapsed .icon-show {
    transform: translateY(-50%) rotate(0deg);
    opacity: 1;
}

.faq-list .question.collapsed .icon-close {
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
}

.faq-list .question.active .icon-show,
.faq-list .question:not(.collapsed) .icon-show {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
}

.faq-list .question.active .icon-close,
.faq-list .question:not(.collapsed) .icon-close {
    transform: translateY(-50%) rotate(0deg);
    opacity: 1;
}

.faq-list .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    padding: 0 1.5rem;
    opacity: 0;
    background-color: var(--background-white);
}

.faq-list .faq-answer.show {
    max-height: 2000px;
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

.faq-list .faq-answer p {
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--text-secondary) !important;
    font-size: 15px;
    transition: opacity 0.2s ease-in-out 0.1s;
}

.faq-list .faq-answer ul,
.faq-list .faq-answer ol {
    margin: 0.75rem 0 0.75rem 1.5rem;
    color: var(--text-secondary) !important;
}

.faq-list .faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Legacy support for .collapse class */
.faq-list .collapse {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    padding: 0 1.5rem !important;
    opacity: 0 !important;
    display: block;
}

.faq-list .collapse.show {
    max-height: 2000px !important;
    padding: 1.25rem 1.5rem 1.5rem 1.5rem !important;
    opacity: 1 !important;
}

.faq-list .collapse p {
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--text-secondary) !important;
    font-size: 15px;
}

.faq-list .collapse ul,
.faq-list .collapse ol {
    margin: 0.75rem 0 0.75rem 1.5rem;
    padding-left: 0.5rem;
    color: var(--text-secondary) !important;
}

.faq-list .collapse li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-secondary) !important;
    font-size: 15px;
}

/*-----------------------------------------------
# Enhanced CTA Section (Corporate Gradient)
-----------------------------------------------*/
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 50%, #001f3f 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(13, 110, 253, 0.15) 0%, transparent 40%);
    opacity: 1;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff !important;
    font-weight: 700;
    font-size: 42px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00a8ff, #0066cc);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }
}

.cta-form .form-control {
    background: #fff;
    border: 2px solid #e0e7ff;
    color: #2c3e50;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-form .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    outline: none;
    background: #fff;
}

.cta-form .form-control::placeholder {
    color: #9ca3af;
    font-family: 'Roboto', sans-serif;
}

.cta-form .form-label {
    color: #1e293b;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.cta-form .invalid-feedback {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}

.cta-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.cta-form .btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 48px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-form .btn-primary:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cta-form .btn-primary:active {
    transform: translateY(0);
}

.cta-form .row {
    gap: 0.5rem;
}

.block {
    display: block;
}

/*-----------------------------------------------
# Video Wrapper - Performance Optimized
-----------------------------------------------*/
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* YouTube Facade Support */
.video-wrapper .youtube-facade {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper .youtube-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-wrapper .youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.2s ease;
}

.video-wrapper .youtube-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/*-----------------------------------------------
# Back to Top Button
-----------------------------------------------*/
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/*-----------------------------------------------
# Utility Classes
-----------------------------------------------*/
.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-lg-0 {
    margin-bottom: 0 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

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

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    color: #fff !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-lg-1 {
    order: 1 !important;
}

.order-lg-2 {
    order: 2 !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-4 {
    border-radius: 16px !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.g-3>* {
    padding: 0.75rem;
}

.justify-content-center {
    justify-content: center !important;
}

/*-----------------------------------------------
# Section-Specific Enhancements
-----------------------------------------------*/
.ai-powered-sec,
.developer-team-sec,
.custom-soft-dev {
    padding: 20px 0;
    position: relative;
}

.ai-powered-sec {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.03) 0%, rgba(66, 133, 244, 0.03) 100%);
}

.developer-team-sec {
    background-color: var(--background-white);
}

.custom-soft-dev {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.03) 0%, rgba(26, 115, 232, 0.03) 100%);
}

.right-content-img {
    flex-direction: row-reverse;
}

/* Fix for image/video and content positioning on desktop */
/* Images/Videos should appear on LEFT, Content should appear on RIGHT */
@media (min-width: 992px) {

    /* When left-img class is used, image/video should be on left */
    .content-left-img .left-img {
        order: 1 !important;
    }

    /* When right-img class is used, still put image/video on left */
    .content-left-img .right-img {
        order: 1 !important;
    }

    /* When right-content class is used, content should be on right */
    .content-left-img .right-content {
        order: 2 !important;
    }

    /* When left-content class is used, still put content on right */
    .content-left-img .left-content {
        order: 2 !important;
    }
}

/*-----------------------------------------------
# Responsive Design
-----------------------------------------------*/
@media (max-width: 1024px) {
    .service-tabs {
        gap: 1.5rem;
        flex-direction: column;
    }

    .nav-pills {
        min-width: 100%;
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .nav-link {
        min-width: 200px;
    }

    .services-product-page .col-md-6 {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {

    /* Banner Mobile Optimization */
    .custom-service-banner {
        padding: 3rem 0;
    }

    .custom-service-banner .row {
        flex-direction: column-reverse;
        gap: 2.5rem;
    }

    .custom-service-banner .service-bg-left-view.service-content-col {
        padding-top: 0 !important;
    }

    .custom-service-banner .service-content-col .type-text-wrapper h1 {
        font-size: 30px !important;
        line-height: 1.3;
    }

    .form-col .card .card-body.p-4 {
        padding: 1.5rem !important;
    }

    .breadcrumbs {
        font-size: 12px;
        padding: 8px 0;
    }

    /* Content Section Mobile Layout */
    .content-left-img {
        padding: 0;
        margin: 2rem 0;
    }

    .content-left-img .row {
        flex-direction: column;
        gap: 2rem;
    }

    .content-left-img .col-lg-5,
    .content-left-img .col-lg-7,
    .content-left-img .col-lg-6,
    .content-left-img .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 0;
    }

    /* Mobile Heading Sizes - Override Desktop */
    .content-left-img h1,
    .left-content h1,
    .right-content h1 {
        font-size: 28px !important;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .content-left-img h2,
    .left-content h2,
    .right-content h2 {
        font-size: 24px !important;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }

    .content-left-img h3,
    .left-content h3,
    .right-content h3 {
        font-size: 20px !important;
        margin-bottom: 0.75rem;
    }

    .content-left-img h4,
    .left-content h4,
    .right-content h4 {
        font-size: 18px !important;
        margin-bottom: 0.625rem;
    }

    /* Mobile Text Optimization */
    .left-content p,
    .right-content p {
        font-size: 15px !important;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .left-content ul,
    .right-content ul {
        font-size: 15px;
        padding-left: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .left-content ul li,
    .right-content ul li {
        margin-bottom: 0.625rem;
    }

    /* Image Responsive Optimization */
    .right-img,
    .left-img {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .right-img .img-fluid,
    .left-img .img-fluid {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
        display: block;
    }

    /* Video Wrapper Mobile */
    .content-left-img .video-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 1.5rem;
    }

    .content-left-img .youtube-facade {
        border-radius: 8px;
    }

    /* General Heading Sizes */
    .left-heading {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .service-list-heading,
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }

    /* Service Cards Mobile Grid */
    .services-product-page {
        flex-direction: column;
        padding: 0;
        gap: 1.25rem;
    }

    .services-product-page .row {
        gap: 1.25rem;
    }

    .services-product-page .col-lg-3,
    .services-product-page .col-md-6 {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 0;
    }

    .service-card-product {
        margin-bottom: 0;
        width: 100%;
    }

    .icon-box {
        padding: 1.5rem 1.25rem;
        margin-bottom: 0;
    }

    .service-card-product .icon-box {
        padding: 1.5rem 1.25rem;
    }

    .service-card-product h3 {
        font-size: 20px;
    }

    .service-card-product p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* FAQ Mobile */
    /* Section-Specific Mobile Padding */
    .ai-powered-sec,
    .developer-team-sec,
    .custom-soft-dev {
        padding: 2rem 0;
    }

    .faq-section {
        padding: 2rem 0;
    }

    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }

    .faq-list .question {
        padding: 1rem 2.5rem 1rem 1.25rem;
        font-size: 15px;
    }

    .faq-list .question .icon-show,
    .faq-list .question .icon-close {
        right: 1rem;
        font-size: 1rem;
    }

    .faq-list .collapse {
        padding: 0 1.25rem;
    }

    .faq-list .collapse.show {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-list .collapse p {
        font-size: 14px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-section::after {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -20%;
    }

    .cta-section h2 {
        font-size: 32px;
        margin-bottom: 1rem;
        letter-spacing: -0.3px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .cta-form {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }

    .cta-form .row {
        gap: 0.5rem;
    }

    .cta-form .form-control {
        font-size: 15px;
        padding: 12px 16px;
    }

    .cta-form .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Bootstrap Column Override */
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-12 {
        width: 100%;
    }

    /* Order Classes */
    .order-lg-1 {
        order: 2 !important;
    }

    .order-lg-2 {
        order: 1 !important;
    }

    .pt-lg-0 {
        padding-top: 3rem !important;
    }

    .mb-lg-0 {
        margin-bottom: 1rem !important;
    }

    /* Sections Padding */
    .services-inner-page {
        padding: 2rem 0;
    }

    .services,
    .common-gap {
        padding: 2rem 0;
    }

    .section-bg {
        padding: 2rem 0;
    }

    /* Global Headings */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    /* Banner Extra Small */
    .custom-service-banner {
        padding: 2.5rem 0 2rem;
    }

    .custom-service-banner .service-content-col .type-text-wrapper h1 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .custom-service-banner p {
        font-size: 14px;
    }

    /* Content Extra Small */
    .content-left-img {
        padding: 0;
        margin: 1.5rem 0;
    }

    .content-left-img h1,
    .left-content h1,
    .right-content h1 {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .content-left-img h2,
    .left-content h2,
    .right-content h2 {
        font-size: 20px !important;
    }

    .content-left-img h3,
    .left-content h3,
    .right-content h3 {
        font-size: 18px !important;
    }

    .content-left-img h4,
    .left-content h4,
    .right-content h4 {
        font-size: 16px !important;
    }

    .left-content p,
    .right-content p {
        font-size: 14px !important;
        line-height: 1.55;
    }

    .left-content ul,
    .right-content ul {
        font-size: 14px;
    }

    /* Images Extra Small */
    .right-img .img-fluid,
    .left-img .img-fluid {
        border-radius: 6px;
    }

    /* General Headings */
    .left-heading {
        font-size: 24px;
    }

    .service-list-heading,
    .section-title h2 {
        font-size: 24px;
        margin-bottom: 1.25rem;
    }

    /* Service Cards Extra Small */
    .services-product-page {
        padding: 0;
        gap: 1rem;
    }

    .icon-box {
        padding: 1.25rem 1rem;
    }

    .services-product-page .section-heading {
        font-size: 24px;
    }

    .service-card-product .icon-box {
        padding: 1.5rem 1.25rem;
    }

    .service-card-product h3 {
        font-size: 18px;
    }

    .service-card-product p {
        font-size: 13px;
    }

    /* Sections Extra Small */
    .services,
    .common-gap,
    .section-bg,
    .services-inner-page {
        padding: 1.5rem 0;
    }

    .ai-powered-sec,
    .developer-team-sec,
    .custom-soft-dev,
    .faq-section {
        padding: 1.5rem 0;
    }

    .cta-section {
        padding: 2rem 0;
    }

    /* FAQ Extra Small */
    .faq-section {
        padding: 30px 0;
    }

    .faq-section h2 {
        font-size: 24px;
    }

    .faq-list .question {
        padding: 0.875rem 1rem;
        font-size: 15px;
    }

    .faq-list .collapse {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-list .collapse p {
        font-size: 13px;
    }

    /* CTA Extra Small */
    .cta-section {
        padding: 50px 0;
    }

    .cta-section::after {
        width: 300px;
        height: 300px;
        top: -20%;
        right: -30%;
    }

    .cta-section h2 {
        font-size: 26px;
        letter-spacing: -0.2px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .cta-form {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }

    .cta-form .btn-primary {
        width: 100%;
        padding: 14px 32px;
        font-size: 15px;
    }

    .cta-form .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    /* Global Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Container Padding */
    .container {
        padding: 0 16px;
    }

    .card-body {
        padding: 1.5rem;
    }

    .cta-form {
        padding: 1.5rem;
    }
}

/*-----------------------------------------------
# Print Styles
-----------------------------------------------*/
@media print {

    .custom-service-banner,
    .form-col,
    .cta-section,
    .back-to-top {
        display: none;
    }
}

/*-----------------------------------------------
# Header Styles (From header.css)
-----------------------------------------------*/

/* Global reset to prevent white gaps */
#header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

#header.header-scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 27px;
    max-width: 150px;
    width: 120px !important;
    height: auto;
}

.header-social-links {
    margin: 0 0 0 30px;
}

@media (max-width: 768px) {
    .header-social-links {
        margin: 0 15px 0 0;
    }
}

.header-social-links a {
    color: #7b909a;
    display: inline-block;
    line-height: 1;
    margin-left: 10px;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0 10px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #212529;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 2px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #009cea;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #0a58ca;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: calc(100% - 30px);
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #2a2a2a;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2a2a2a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #f7f7f7;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #009cea;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/* Custom Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 10001;
    margin-left: 15px;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 10px;
}

.hamburger-menu span:nth-child(3) {
    top: 20px;
}

/* Hamburger to X animation */
.hamburger-menu.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    font-size: 28px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}

.mobile-menu-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: background 0.2s ease;
}

.mobile-menu-nav li a:hover {
    background: #f8f8f8;
    color: #009cea;
}

.mobile-menu-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-nav .dropdown-toggle::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
}

.mobile-menu-nav .dropdown-toggle.active::after {
    content: '-';
}

.mobile-menu-nav .submenu {
    display: none;
    background: #f8f8f8;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu-nav .submenu.active {
    display: block;
}

.mobile-menu-nav .submenu li a {
    padding: 12px 20px 12px 35px;
    font-size: 14px;
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.mobile-menu-contact span {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.mobile-menu-contact a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .hamburger-menu {
        display: block !important;
    }

    .desktop-contact,
    .header-top-row {
        display: none !important;
    }

    #navbar {
        display: none !important;
    }

    #header .header-social-links {
        display: none !important;
    }

    #header .logo img {
        max-height: 40px !important;
    }
}

/* Body padding for fixed header */
body.inner-pages-wrapper {
    padding-top: 0 !important;
}

body.inner-pages-wrapper .custom-service-banner,
body.inner-pages-wrapper .gen-service-banner,
body.inner-pages-wrapper .healthcare-service {
    padding-top: 100px !important;
}

@media (max-width: 991px) {

    body.inner-pages-wrapper .custom-service-banner,
    body.inner-pages-wrapper .gen-service-banner,
    body.inner-pages-wrapper .healthcare-service {
        padding-top: 80px !important;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #009cea;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #0056b3;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------------------
# Footer Styles - Matching Homepage Layout
-----------------------------------------------*/

#footer {
    background: #f7f8f9;
    color: #212529;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

#footer .footer-top {
    background: #fff;
    padding: 50px 0 30px;
    border-bottom: 2px solid #e9ecee;
}

/* Footer container alignment */
#footer .container {
    max-width: 1200px;
    width: 100%;
}

/* Footer row - flexbox layout for columns */
#footer .footer-top .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 15px;
}

/* Footer columns - base styling */
#footer .footer-top .col-lg-3,
#footer .footer-top .col-lg-2,
#footer .footer-top .col-lg-4,
#footer .footer-top .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Desktop: 4 columns side-by-side */
@media (min-width: 992px) {
    #footer .footer-top .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    #footer .footer-top .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    #footer .footer-top .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    #footer .footer-top .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {

    #footer .footer-top .col-lg-3,
    #footer .footer-top .col-lg-2,
    #footer .footer-top .col-lg-4,
    #footer .footer-top .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    position: relative;
    bottom: 4px;
    padding: 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-info .footer-logo {
    width: 100px;
}

#footer .footer-info .footer-logo img {
    width: 110px;
    height: 30px;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #576971;
}

#footer .mailto-lin {
    margin-left: 7px;
}

/* Social Links */
#footer .footer-top .social-links a {
    font-size: 30px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 10px;
    text-align: center;
    transition: .3s;
}

#footer .footer-top .social-links a.facebook {
    color: #1778f2;
}

#footer .footer-top .social-links a.linkedin {
    color: #0e76a8;
}

#footer .footer-top .social-links a.whatsapp {
    color: #25d366;
}

/* Footer Links Sections */
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #364146;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #009cea;
    font-size: 18px;
    line-height: 1;
    margin-left: -5px;
}

#footer .footer-top .footer-links ul a {
    color: #212529;
    transition: .3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #009cea;
}

/* Footer Newsletter */
#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e3e7e9;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: #009cea;
    font-size: 16px;
    padding: 0 20px;
    color: #fff;
    transition: .3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #007ab7;
}

/* Footer Video/YouTube Section */
.video-wrapper {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    position: relative;
}

#footer .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#footer .video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

#footer .video-wrapper .youtube-facade,
#footer .popup-youtube {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

#footer .video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ytp-large-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 48px;
    margin-left: -34px;
    margin-top: -24px;
    transition: opacity .25s cubic-bezier(0, 0, .2, 1);
    z-index: 63;
}

.ytp-button {
    border: none;
    background-color: transparent;
    padding: 0;
    color: inherit;
    text-align: inherit;
    font-size: 100%;
    font-family: inherit;
}

/* ISO Images */
#footer .iso-img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#footer .iso-img:hover {
    opacity: 1;
}

#footer .iso-img img {
    max-width: 75px;
    max-height: 65px;
    width: auto;
    height: auto;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#footer .iso-img .foot-img-3 {
    max-width: 100px;
    max-height: 65px;
}

#footer .iso-img img:hover {
    filter: grayscale(0%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Bottom/Copyright */
#footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

#footer .copyright {
    text-align: center;
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
}

#footer .copyright strong {
    font-weight: 700;
}

#footer .copyright strong a {
    font-weight: 700;
}

#footer .copyright #yearDiv {
    display: inline;
}

#footer .credits {
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
    color: #364146;
}

.meetri-copyright-link {
    color: #0060b6 !important;
}

.footer-logo {
    width: 100px;
}

.footer-logo img {
    width: 110px;
    height: 30px;
}

/* Footer Responsive Design */
@media (max-width: 768px) {

    #footer .footer-top .footer-links,
    #footer .footer-top h4 {
        margin-bottom: 0 !important;
    }

    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 10px !important;
    }

    .footer-newsletter {
        margin-top: 20px;
    }

    #footer .video-wrapper {
        max-width: 100%;
    }

    #footer .iso-img {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    #footer .iso-img img {
        max-width: 60px;
        max-height: 52px;
    }

    #footer .iso-img .foot-img-3 {
        max-width: 75px;
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    #footer .iso-img {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    #footer .iso-img img {
        max-width: 50px;
        max-height: 45px;
    }

    #footer .iso-img .foot-img-3 {
        max-width: 65px;
        max-height: 55px;
    }
}

/* End of Footer Styles */
@media (max-width: 768px) {

    #footer .footer-top .footer-links,
    #footer .footer-top h4 {
        margin-bottom: 0 !important;
    }

    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 10px !important;
    }

    .footer-newsletter {
        margin-top: 20px;
    }

    #footer .video-wrapper {
        max-width: 100%;
        margin: 15px auto;
    }

    #footer .video-wrapper .youtube-play-button::before,
    #footer .popup-youtube::before {
        width: 68px;
        height: 48px;
    }

    #footer .iso-img {
        gap: 12px;
        flex-wrap: wrap;
    }

    #footer .iso-img img {
        max-width: 65px;
        max-height: 55px;
    }
}

@media (max-width: 480px) {
    #footer .copyright {
        font-size: 12px !important;
        margin-right: 25px;
    }

    #footer .footer-top .footer-links,
    #footer .footer-top h4 {
        margin-bottom: 0 !important;
    }

    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 10px !important;
    }

    .footer-newsletter {
        margin-top: 20px;
    }

    #footer .video-wrapper {
        max-width: 100%;
        margin: 10px auto;
        border-radius: 8px;
    }

    #footer .video-wrapper .youtube-play-button::before,
    #footer .popup-youtube::before {
        width: 60px;
        height: 42px;
        border-radius: 10px;
    }

    #footer .video-wrapper .youtube-play-button::after,
    #footer .popup-youtube::after {
        border-width: 10px 0 10px 16px;
    }

    #footer .iso-img {
        gap: 8px;
    }

    #footer .iso-img img {
        max-width: 55px;
        max-height: 45px;
    }
}

/*=============================================================
  MEETRI INFOTECH — PREMIUM 3D DESIGN ENHANCEMENT
  Drop-in stylesheet. Zero HTML/SEO changes. Zero JS required.
  Add after services.css:
    <link rel="stylesheet" href="meetri-premium-enhancement.css">
=============================================================*/

/* ─── 1. DESIGN TOKENS ─────────────────────────────────── */
:root {
    --mi-blue: #015EBE;
    --mi-blue-dark: #0d47a1;
    --mi-blue-glow: rgba(1, 94, 190, 0.18);
    --mi-cyan: #22d3ee;
    --mi-white: #ffffff;
    --mi-ink: #0f172a;
    --mi-muted: #475569;
    --mi-surface: #f8fafc;
    --mi-border: rgba(226, 232, 240, 0.9);
    --mi-glass-bg: rgba(10, 22, 40, 0.55);
    --mi-glass-bdr: rgba(255, 255, 255, 0.09);

    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;

    --shadow-card:
        0 2px 4px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.08),
        0 24px 48px rgba(15, 23, 42, 0.06);
    --shadow-hover:
        0 8px 16px rgba(1, 94, 190, 0.08),
        0 24px 48px rgba(1, 94, 190, 0.12),
        0 48px 80px rgba(15, 23, 42, 0.12);
}

/* ─── 2. GLOBAL SMOOTH BASE ─────────────────────────────── */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ─── 3. HERO BANNER — Deep Space + Orbs ───────────────── */
.custom-service-banner {
    background:
        radial-gradient(ellipse 80% 60% at 15% 40%, rgba(1, 94, 190, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(34, 211, 238, 0.10) 0%, transparent 55%),
        linear-gradient(155deg, #050d1a 0%, #0a1628 45%, #0f2042 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Animated noise grain overlay */
.custom-service-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-2%, -2%);
    }

    20% {
        transform: translate(2%, -1%);
    }

    30% {
        transform: translate(-1%, 2%);
    }

    40% {
        transform: translate(1%, 1%);
    }

    50% {
        transform: translate(-2%, 2%);
    }

    60% {
        transform: translate(2%, -2%);
    }

    70% {
        transform: translate(-1%, -1%);
    }

    80% {
        transform: translate(1%, 2%);
    }

    90% {
        transform: translate(-2%, 0%);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Floating aurora orb 1 */
.custom-service-banner::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 94, 190, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -180px;
    animation: orbDrift1 14s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes orbDrift1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-25px, 20px) scale(0.94);
    }
}

/* Second orb injected via .container z-index management */
.custom-service-banner .container {
    position: relative;
    z-index: 3;
}

/* Cyan orb bottom-left */
.healthcare-service.custom-service-banner {
    isolation: isolate;
}

.service-content-col .type-text-wrapper h1 {
    font-size: 46px !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    line-height: 1.08 !important;
    color: #fff !important;
    text-shadow:
        0 0 40px rgba(34, 211, 238, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleReveal 1s var(--ease-out) both;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-banner-content {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    animation: titleReveal 1s var(--ease-out) 0.18s both;
}

.service-banner-content a {
    color: var(--mi-cyan) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(34, 211, 238, 0.35);
    padding-bottom: 1px;
    transition: all 0.25s ease;
}

.service-banner-content a:hover {
    border-bottom-color: var(--mi-cyan);
    text-shadow: 0 0 16px rgba(34, 211, 238, 0.4);
}

/* ─── 4. GLASSMORPHISM FORM CARD ────────────────────────── */
.form-col .card {
    background: var(--mi-glass-bg) !important;
    backdrop-filter: blur(24px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    border: 1px solid var(--mi-glass-bdr) !important;
    border-radius: var(--r-lg) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.6s var(--ease-spring) !important;
}


@keyframes cardFly {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Rainbow top border */
.form-col .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mi-blue), var(--mi-cyan), var(--mi-blue));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


.card-body h3 {
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

/* Form labels */
.form-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45) !important;
}

/* Form inputs */
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: var(--r-sm) !important;
    color: #fff !important;
    font-size: 15px !important;
    padding: 12px 14px !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: var(--mi-blue) !important;
    box-shadow: 0 0 0 3px rgba(1, 94, 190, 0.25), 0 0 20px rgba(1, 94, 190, 0.15) !important;
    outline: none !important;
}

/* ─── 5. BUTTONS — Premium Interaction ─────────────────── */
.btn {
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    transition: all 0.4s var(--ease-out) !important;
    position: relative;
    overflow: hidden;
}

/* Ripple on click */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: inherit;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn:active::after {
    transform: scale(2);
    opacity: 0;
    transition-duration: 0s;
}

.btn-primary {
    background: linear-gradient(135deg, #1a73e8 0%, var(--mi-blue) 50%, var(--mi-blue-dark) 100%) !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(1, 94, 190, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.04) !important;
    box-shadow: 0 10px 32px rgba(1, 94, 190, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98) !important;
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

.btn-outline-primary:hover {
    background: rgba(1, 94, 190, 0.18) !important;
    border-color: var(--mi-blue) !important;
    transform: translateY(-3px) scale(1.04) !important;
}

/* ─── 6. PREMIUM ENHANCEMENTS — Premium Cards & Hover Effects ─── */
.icon-box,
.premium-card {
    background: var(--mi-white) !important;
    border: 1px solid var(--mi-border) !important;
    border-radius: var(--r-md) !important;
    padding: 1.25rem 1rem !important;
    box-shadow: var(--shadow-card) !important;
    transition: all 0.5s var(--ease-spring) !important;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
    height: 100%;
}

/* Premium Hover State - DRAMATIC SCALE & TILT (Disabled) */
.icon-box:hover,
.premium-card:hover {
    /* transform: translateY(-12px) scale(1.05) rotateX(2deg) !important; */
    /* Remove transform to prevent form scaling */
    z-index: 10;
}

/* Glow Orb inside card */
.icon-box::before,
.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(1, 94, 190, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.icon-box:hover::before,
.premium-card:hover::before {
    opacity: 1;
}

/* Premium Icon Box Enhancements */
.icon-box .icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: #e1e9f0 !important;
    /* Slightly deeper for white icon contrast */
    border: 1px solid rgba(1, 94, 190, 0.15) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px !important;
    transition: all 0.5s var(--ease-spring) !important;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Only apply filter to actual img tags to avoid filtering the background color */
.icon-box .icon img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(1758%) hue-rotate(192deg) brightness(94%) contrast(101%) !important;
    transition: all 0.5s ease !important;
    max-width: 20px !important;
    height: auto !important;
}

.icon-box .icon i {
    color: var(--mi-blue) !important;
    font-size: 22px !important;
    transition: all 0.3s ease !important;
}

.icon-box:hover .icon i {
    color: white !important;
}

.icon-box:hover .icon {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, var(--mi-blue), var(--mi-blue-dark)) !important;
    box-shadow: 0 15px 35px rgba(1, 94, 190, 0.25) !important;
    border-color: transparent !important;
}

.icon-box:hover .icon img {
    /* Make icons pure white on hover */
    filter: brightness(0) invert(1) !important;
    transform: scale(1.1);
}

.icon-box .title {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 0.8rem !important;
    transition: color 0.3s ease !important;
}

.icon-box:hover .title,
.icon-box:hover .title a {
    color: var(--mi-blue) !important;
}

/* ─── 7. BENEFITS SECTION — Prop Items ──────────────────── */
.feature-prop-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.prop-item {
    background: #fff;
    border: 1px solid var(--mi-border);
    border-radius: var(--r-sm);
    padding: 1rem 1.25rem;
    flex: 1;
    min-width: 140px;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.prop-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mi-blue), var(--mi-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.prop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 94, 190, 0.12);
    border-color: rgba(1, 94, 190, 0.2);
}

.prop-item:hover::before {
    transform: scaleX(1);
}

.prop-item h4 {
    color: var(--mi-ink) !important;
    font-size: 14px !important;
    margin-bottom: 4px !important;
}

.prop-item p {
    color: var(--mi-muted) !important;
    font-size: 13px !important;
    margin: 0 !important;
}

/* ─── 8. PERSPECTIVE & BENEFIT CARDS ─────────────────── */
.perspective-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1200px) rotateY(-8deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
}

.perspective-card:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.benefit-card.premium-card {
    background: linear-gradient(135deg, #0062CB, #004a99) !important;
    color: white !important;
    padding: 30px !important;
    border-radius: 20px !important;
    text-align: center;
    cursor: pointer;
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 98, 203, 0.3) !important;
    transition: all 0.5s var(--ease-spring) !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.benefit-card.premium-card i {
    font-size: 3rem !important;
    margin-bottom: 20px !important;
    transition: transform 0.4s ease;
}

.benefit-card.premium-card:hover {
    transform: translateY(-12px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(0, 98, 203, 0.4) !important;
}

.benefit-card.premium-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ─── 9. MEET FRAMEWORK STYLES ─────────────────── */
.meet-card {
    position: absolute;
    width: 42%;
    height: 42%;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-sizing: border-box;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.meet-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.mapping-card {
    top: 8%;
    left: 8%;
}

.exploration-card {
    top: 8%;
    right: 8%;
}

.execution-card {
    bottom: 8%;
    left: 8%;
}

.transformation-card {
    bottom: 8%;
    right: 8%;
}

/* Fade effect for other cards when one is hovered */
#meet-framework:hover .meet-card:not(:hover) {
    opacity: 0.7;
    filter: grayscale(20%);
}

/* ─── 10. CONTENT IMAGES — Float + Depth ─────────────────── */
.right-img .img-fluid,
.left-img .img-fluid {
    border-radius: var(--r-lg) !important;
    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.04),
        0 12px 32px rgba(15, 23, 42, 0.10),
        0 32px 64px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.6s var(--ease-out) !important;
    animation: imgFloat 7s ease-in-out infinite;
    will-change: transform;
}

@keyframes imgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* ─── 9. SECTION HEADINGS ───────────────────────────────── */
.service-list-heading,
.left-heading {
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.15 !important;
    position: relative;
}

.service-list-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--mi-blue), var(--mi-cyan));
    border-radius: 3px;
    animation: lineGrow 0.8s var(--ease-out) 0.3s both;
}

.left-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--mi-blue), var(--mi-cyan));
    border-radius: 3px;
    display: block;
    transition: width 0.4s var(--ease-out);
}

.left-content:hover .left-heading::after,
.right-content:hover .left-heading::after {
    width: 88px;
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 56px;
        opacity: 1;
    }
}

/* ─── 10. SECTION BACKGROUNDS ───────────────────────────── */
.benefits-sec {
    background:
        radial-gradient(ellipse 70% 50% at 90% 50%, rgba(1, 94, 190, 0.04) 0%, transparent 60%),
        #fff;
}

.ai-powered-sec {
    background:
        radial-gradient(ellipse 60% 80% at 5% 50%, rgba(34, 211, 238, 0.04) 0%, transparent 60%),
        var(--mi-surface) !important;
}

.custom-soft-dev {
    background:
        radial-gradient(ellipse 70% 60% at 95% 50%, rgba(1, 94, 190, 0.05) 0%, transparent 60%),
        #fff !important;
}

/* ─── 11. FAQ ACCORDION — Premium ──────────────────────── */
.faq {
    background: var(--mi-surface) !important;
}

.faq-list li {
    background: #fff !important;
    border: 1px solid var(--mi-border) !important;
    border-radius: var(--r-sm) !important;
    margin-bottom: 0.75rem !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.35s var(--ease-out) !important;
    overflow: hidden;
    position: relative;
}

/* Left accent bar */
.faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--mi-blue), var(--mi-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 3px 0 0 3px;
}

.faq-list li:hover {
    border-color: rgba(1, 94, 190, 0.2) !important;
    box-shadow: 0 6px 24px rgba(1, 94, 190, 0.08) !important;
    transform: translateX(5px);
}

.faq-list li:hover::before {
    opacity: 1;
}

.faq-list .question {
    padding: 1.25rem 3.25rem 1.25rem 1.5rem !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    color: var(--mi-ink) !important;
    border-radius: var(--r-sm) !important;
    transition: color 0.25s ease !important;
}

.faq-list .question:hover,
.faq-list .question:not(.collapsed) {
    color: var(--mi-blue) !important;
    background: rgba(1, 94, 190, 0.03) !important;
}

.faq-list .collapse p,
.faq-list .collapse li {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--mi-muted) !important;
}

/* ─── 12. VIDEO FACADE ──────────────────────────────────── */
.youtube-facade {
    border-radius: var(--r-md) !important;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.45s var(--ease-out) !important;
    cursor: pointer;
}

.youtube-facade:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22), 0 0 40px rgba(1, 94, 190, 0.12) !important;
}

.youtube-play-button {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) !important;
    transition: transform 0.35s var(--ease-bounce) !important;
}

.youtube-facade:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.18) !important;
}

/* ─── 14. SCROLL ENTRANCE ANIMATIONS ─────────────────────── */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger card children */
.services-comp-grid [data-aos]:nth-child(1) {
    transition-delay: 0.05s !important;
}

.services-comp-grid [data-aos]:nth-child(2) {
    transition-delay: 0.15s !important;
}

.services-comp-grid [data-aos]:nth-child(3) {
    transition-delay: 0.25s !important;
}

.services-comp-grid [data-aos]:nth-child(4) {
    transition-delay: 0.35s !important;
}

.services-comp-grid [data-aos]:nth-child(5) {
    transition-delay: 0.10s !important;
}

.services-comp-grid [data-aos]:nth-child(6) {
    transition-delay: 0.20s !important;
}

.services-comp-grid [data-aos]:nth-child(7) {
    transition-delay: 0.30s !important;
}

.services-comp-grid [data-aos]:nth-child(8) {
    transition-delay: 0.40s !important;
}

/* ─── 15. BACK TO TOP ────────────────────────────────────── */
.back-to-top {
    width: 46px !important;
    height: 46px !important;
    border-radius: var(--r-sm) !important;
    background: linear-gradient(135deg, var(--mi-blue), var(--mi-blue-dark)) !important;
    box-shadow: 0 4px 16px rgba(1, 94, 190, 0.35) !important;
    transition: all 0.35s var(--ease-out) !important;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 0 10px 30px rgba(1, 94, 190, 0.5) !important;
}

/* ─── 16. CARD LINKS ─────────────────────────────────────── */
.card-link {
    text-decoration: none !important;
    color: inherit !important;
}

/* ─── 17. INNER PAGE INTRO TEXT ─────────────────────────── */
.services-inner-page h2 {
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    background: linear-gradient(135deg, var(--mi-ink) 0%, var(--mi-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── 18. REVEAL ANIMATIONS ─────────────────────────────── */
/* Default to visible so content isn't trapped if JS fails */
.reveal-hidden {
    opacity: 1;
    transform: none;
}

/* Only hide if JS is available and transition is ready */
html.js-ready .reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: transform, opacity;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ─── 19. FOCUS ACCESSIBILITY ───────────────────────────── */
:focus-visible {
    outline: 2px solid var(--mi-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── 20. MOTION SAFETY ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.15ms !important;
    }

    .right-img .img-fluid,
    .left-img .img-fluid {
        animation: none !important;
    }
}

/* ─── 21. RESPONSIVE ADJUSTMENTS ───────────────────────── */
@media (max-width: 768px) {
    .service-content-col .type-text-wrapper h1 {
        font-size: 30px !important;
    }

    .icon-box:hover {
        transform: translateY(-6px) !important;
    }


    .right-img .img-fluid,
    .left-img .img-fluid {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .service-content-col .type-text-wrapper h1 {
        font-size: 26px !important;
    }

    .prop-item {
        min-width: 100%;
    }
}

/* additional css */

/* ─── Industries Section Redesign ─────────────────────── */
.industry-v2-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.industry-v2-card {
    background: #ffffff;
    border: 1px solid rgba(12, 90, 168, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-v2-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.industry-v2-icon-wrapper img {
    transition: transform 0.5s ease;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 6px rgba(12, 90, 168, 0.1));
}

.industry-v2-title {
    color: #0C5AA8;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.industry-v2-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0 15px;
}

/* Hover Effects */
.industry-v2-card:hover {
    transform: translateY(-12px);
    border-color: #0C5AA8;
    box-shadow: 0 25px 50px -12px rgba(12, 90, 168, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.industry-v2-card:hover .industry-v2-icon-wrapper {
    transform: rotate(5deg);
}

.industry-v2-card:hover .industry-v2-icon-wrapper img {
    transform: scale(1.1);
}

/* Tablet and Mobile Responsiveness */
@media (max-width: 1199px) {
    .industry-v2-card {
        aspect-ratio: auto;
        min-height: 380px;
        padding: 40px 20px !important;
    }
}

@media (max-width: 991px) {
    .industry-v2-card {
        min-height: 340px;
    }

    .industry-v2-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .industry-v2-card {
        aspect-ratio: 1 / 1;
        max-width: 400px;
        margin: 0 auto;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .industry-v2-card {
        aspect-ratio: auto;
        padding: 40px 20px !important;
    }
}

/* ─── HOVER LIFT UTILITY ──────────────────────────── */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hover-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(1, 94, 190, 0.1) !important;
    border-color: rgba(1, 94, 190, 0.2) !important;
}

/*-----------------------------------------------
# Benefits Grid V3 & Card V3 (Modern SaaS Style)
-----------------------------------------------*/
.benefits-v3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 1.5rem;
}

.benefit-card-v3 {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.benefit-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(14, 165, 233, 0.2);
}

.benefit-card-v3 .icon-wrapper {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.benefit-card-v3:hover .icon-wrapper {
    background: #0ea5e9;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card-v3 .icon-wrapper i {
    font-size: 28px;
    color: #0ea5e9;
    transition: all 0.3s ease;
}

.benefit-card-v3:hover .icon-wrapper i {
    color: #ffffff;
}

.benefit-card-v3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* ─── COMPREHENSIVE SERVICES LIST ─────────────────── */
.comprehensive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.comprehensive-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.comprehensive-card:hover {
    border-color: #0ea5e9;
    background: #fcfdfe;
    transform: translateX(8px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.04);
}

.comprehensive-card .card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 22px;
    transition: all 0.3s ease;
}

.comprehensive-card:hover .card-icon {
    background: #0ea5e9;
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

.comprehensive-card .card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.comprehensive-card:hover .card-content h3 {
    color: #0ea5e9;
}

.comprehensive-card .card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .comprehensive-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card-v3 p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .benefits-v3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits-v3-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card-v3 {
        padding: 30px 24px;
    }
}

/* --- 22. ICON BOX HORIZONTAL LAYOUT (LG) --- */
@media (min-width: 992px) {
    .icon-box {
        display: grid !important;
        grid-template-columns: auto 1fr;
        column-gap: 1.5rem;
        align-items: center;
        padding: 24px !important;
    }

    .icon-box .icon {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0 !important;
    }

    .icon-box .title {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0 !important;
        text-align: left !important;
    }

    .icon-box .description,
    .icon-box p.description {
        grid-column: 1 / span 2;
        grid-row: 2;
        margin-top: 20px !important;
    }
}
